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.

StackAgentTrigger
TypeScript / JavaScripttypescript-build-resolverpackage.json, tsconfig.json
Pythonpython-build-resolverpyproject.toml, setup.py, requirements.txt
Gogo-build-resolvergo.mod
Rustrust-build-resolverCargo.toml

Load skills: dog:verification-before-completion

The agent will:

  1. Run the build command and capture all errors
  2. Group errors by file; sort by dependency order (fix imports/types before logic)
  3. Fix one error at a time: read context → diagnose root cause → apply minimal fix → re-run build
  4. Never accumulate broken state — verify each fix before moving to the next
  5. Run the full validation suite after all errors are resolved

After all errors are fixed: run /dog:verify to confirm clean state.