Capture architecture decisions as lightweight ADR documents. Use when making design choices that affect project structure, technology selection, or architectural direction. Also use during code review when spotting implicit decisions. Triggers on: "adr",…
Contract-first development workflow: contract → code → verify → fix (loop). Drives development from persistent specifications, enabling parallel frontend/backend work. Use PROACTIVELY when implementing features, fixing bugs, refactoring, or making code…
Generate and update project documentation — README, API docs, code comments, ADRs, and CHANGELOG. Detects existing documentation conventions and matches project style. Use PROACTIVELY when asked to "document", "write docs", "add comments", "update README",…
Multi-agent orchestration for complex development tasks. Breaks down large work, delegates to specialized agents, manages contracts, and drives the fix loop. Use when tasks span multiple domains, require parallel execution, or need full lifecycle management.…
Systematic code review for pull requests. Analyzes diff across 5 dimensions: correctness, security, quality, testing, and style. Use PROACTIVELY when reviewing PRs, analyzing code changes, or asked to "review", "audit", "check". Triggers on: "review this PR",…
Analyze source code and generate meaningful tests — unit, integration, and E2E. Detects project test framework, conventions, and existing test patterns automatically. Use PROACTIVELY when asked to "add tests", "write tests", "test this", "cover with tests",…