/fix-build — Build Error Resolution
Fix all build/type errors with minimal diffs only. See agents/build-error-resolver.md.
- Collect —
npx tsc --noEmit --pretty 2>&1andnpm run build 2>&1 - Categorize — type inference, missing types, imports, config, deps
- Fix — Add type annotations, null checks, fix imports, install deps. No refactoring.
- Verify — Re-run build after each batch
Success: build exits 0, minimal lines changed (<5% of affected file).