Build Fix
Incrementally fix build and type errors with minimal, safe changes
Input: $ARGUMENTS (optional: specific file or error to target)
Detect the project's build system and invoke the appropriate specialized agent.
| Stack | Agent | Trigger |
|---|---|---|
| TypeScript / JavaScript | typescript-build-resolver | package.json, tsconfig.json |
| Python | python-build-resolver | pyproject.toml, setup.py, requirements.txt |
| Go | go-build-resolver | go.mod |
| Rust | rust-build-resolver | Cargo.toml |
Load skills: dog:verification-before-completion
The agent will:
- Run the build command and capture all errors
- Group errors by file; sort by dependency order (fix imports/types before logic)
- Fix one error at a time: read context → diagnose root cause → apply minimal fix → re-run build
- Never accumulate broken state — verify each fix before moving to the next
- Run the full validation suite after all errors are resolved
After all errors are fixed: run /dog:verify to confirm clean state.