Guarded development workflows for Claude Code. Investigation before fixes. Orchestration before implementation. Verification before completion.
Pure discipline, zero infrastructure. No databases, no MCP servers, no build tools. Just markdown skills that teach Claude to work methodically — read before edit, test before ship, verify before done. Works standalone. Layers with patrol and remembrall if installed.
Orchestrated multi-file implementation with regression checkpoints.
- Plan — enters plan mode (read-only), explores the codebase, writes a numbered plan with risks
- Implement — dispatches subagents for larger changes (one per file or logical chunk), type-checks after every file, runs tests every 3 files
- Verify — auto-invokes
/review-gatebefore declaring done
Auto-scales: small changes (1-2 files) run inline, larger changes use subagents to keep context clean. For big plans that consume context, hands off via remembrall and resumes with full budget.
/build-guard → plan mode → approval → subagent dispatch → checkpoints → /review-gate
Investigation-first bug fixing with TDD loop.
- Trace — reads every file in the call chain, documents the root cause before touching code
- Fix — writes a failing test, implements the minimal fix, runs full test suite
- Verify — auto-invokes
/review-gatewhen green
Escapes after 5 failed iterations instead of spinning forever. Falls back gracefully when no test framework or type checker exists.
/trace-fix → trace root cause → failing test → minimal fix → verify → /review-gate
Structured post-implementation review with pass/fail output.
Traces affected code paths, scans for bug patterns (null safety, async errors, security, stale data), runs build/type/test verification, checks architectural consistency. Outputs a structured report:
| Check | Status | Notes |
|------------------|--------|----------------------------|
| Code path trace | PASS | 3 callers, 2 dependents |
| Bug pattern scan | PASS | No issues found |
| Build | PASS | npm run build |
| Type check | PASS | npx tsc --noEmit |
| Tests | PASS | 47 passed, 0 failed |
| Architecture | PASS | Consistent with src/utils |
Both /build-guard and /trace-fix auto-invoke this — nothing ships without passing the gate.
claude plugin marketplace add cukas/claude-workflow-skills
claude plugin install workflow-skills@cukasThese skills are self-contained — they enforce discipline on their own. But they integrate smoothly with:
- patrol — If installed, build-guard and trace-fix respect patrol's investigation warnings and escalation. If not, the skills enforce the same read-before-edit discipline themselves.
- remembrall — If installed, build-guard hands off context-heavy sessions automatically for clean context on resume. If not, plans are saved to
docs/plans/as files.
MIT