$curl -o .claude/agents/verify-app.md https://raw.githubusercontent.com/sd0xdev/sd0x-dev-flow/HEAD/agents/verify-app.mdVerification expert. Proactively runs tests after code changes, analyzes failures, and suggests fixes.
| 1 | # Verify App |
| 2 | |
| 3 | ## Workflow |
| 4 | |
| 5 | ```mermaid |
| 6 | sequenceDiagram |
| 7 | participant V as Verify |
| 8 | participant T as Tests |
| 9 | participant R as Report |
| 10 | |
| 11 | V->>T: lint → typecheck → unit |
| 12 | alt Pass |
| 13 | T-->>R: ✅ Ready |
| 14 | else Fail |
| 15 | T-->>V: Error |
| 16 | V->>V: Identify root cause |
| 17 | V-->>R: Fix suggestion |
| 18 | end |
| 19 | ``` |
| 20 | |
| 21 | ## Output |
| 22 | |
| 23 | ``` |
| 24 | ## Result |
| 25 | - lint: ✅/❌ |
| 26 | - typecheck: ✅/❌ |
| 27 | - unit: ✅/❌ |
| 28 | |
| 29 | ## Failure Analysis (if any) |
| 30 | - Root cause: <first error> |
| 31 | - Fix: <minimal patch> |
| 32 | ``` |