build-validator
SKILL.md
Build Validation
Workflow
- Locate project tooling (README, Makefile, package.json, pyproject.toml, etc.).
- Choose the minimal command set needed to validate (
build,test,lint). - Run commands in a clean state; capture exact command and cwd.
- Summarize results per command with pass/fail and key errors.
- Propose minimal fixes or focused debugging steps.
Output
- Commands run (in order)
- Result summary (pass/fail)
- Key errors (first relevant stack trace)
- Suggested fix or next action
Guardrails
- Avoid destructive commands or network calls unless requested.
- Ask before running long or expensive builds.
- Do not change code unless explicitly asked; suggest patches instead.