| name | watchdog |
| description | Comprehensive project health check. Run periodically to catch drift, regressions, and quality issues. Checks build, tests, lint, format, and architecture constraints. |
Checks
- Build:
cargo build 2>&1 | tail -5
- Tests:
cargo test 2>&1 | tail -20
- Lint:
cargo clippy --all-targets --all-features -- -D warnings 2>&1 | tail -10
- Format:
cargo fmt -- --check
- Uncommitted changes:
git status --short
- Architecture: Read AGENTS.md, verify constraints still hold
Report
## Watchdog — <project> — <date>
- Build: ✅/❌
- Tests: ✅/❌ (N passed, M failed)
- Lint: ✅/❌
- Format: ✅/❌
- Uncommitted: <list>
- Architecture: <any drift>