We shipped a new command: inariwatch dev.
The problem
You're coding. Your dev server crashes. You read the stack trace, open the file, figure out the fix. 5-10 minutes for something that's often a null check or a missing import.
The solution
inariwatch dev
InariWatch watches for errors from your local dev server via the capture SDK. When one arrives:
1. AI reads your local source files (no GitHub needed) 2. Diagnoses the root cause 3. Generates a fix 4. Self-reviews it (rejects bad fixes) 5. Shows you the diff 6. You press y — fix applied to disk
🔴 TypeError: Cannot read 'user' of undefined
auth/session.ts:84
💡 Known pattern (confidence: 92%)
→ Diagnosing... 92% confidence
→ Fix: session.user?.id ?? null
→ Self-review: 88/100 (approve)
Apply fix? yes ✓ Saved auth/session.ts ✓ Fix applied. Memory saved.
Dev trains prod
Every fix you apply locally gets saved to InariWatch's incident memory. When the same error appears in production, the system already knows the pattern — higher confidence, faster auto-fix.
Your development errors become training data for production reliability.
No GitHub required
Dev mode runs 100% locally. It reads files from your disk, not from GitHub API. Your code never leaves your machine.
Try it
curl -fsSL https://get.inariwatch.com | sh
inariwatch init
inariwatch add capture
inariwatch dev
