Reads feature spec/design docs, creates PLAN.md and CONTEXT.md inside the feature directory, then spawns the lead-engineer agent after user confirmation. Invoked by the /dev skill. Supports solo mode (default) and team mode (/dev --team) with domain analysis and task tagging.
Creates a pull request with auto-generated body from feature spec. Handles branch strategy-aware target selection, changelog updates, and version bumping. Invoked by the /pr skill.
Generates standard NCC spec.md + design.md for a single feature by blending legacy analysis with requested changes. Reads reforge documents (ANALYSIS.md, CHANGES.md, DELTA.md) and target project context. Invoked by reforge-orchestrator during Phase 4.
Compares implemented code against spec.md requirements and project rules. Produces a compliance report showing which requirements are met, partial, or missing. Does not modify code. Called as part of the /review skill (paired with code-quality-reviewer).
Creates or updates project coding rules in spec/rules/. Each rule is a separate markdown file. Never modifies source code or spec/rules/workflow.md. Invoked by the /rule skill.
Audits code for security vulnerabilities against SECURITYSTRATEGY.md. Checks OWASP Top 10, secrets, injection, auth gaps, data exposure. Invoked by /security or conditionally by /review.
Writes or updates feature spec.md and design.md files for Next.js/React projects. Clarifies missing information before writing. Never modifies source code. Invoked by the /spec skill.
Reads spec/STATE.md to output a concise project status summary. Shows all tracked features with their phases, reads each feature's PLAN.md for task progress, and lists completed items and blockers. Does not modify any files. Invoked by the /status skill.
Fresh-context subagent for [lead] domain tasks (types, utilities, hooks, API routes, server actions, page wiring, configuration, mocks). Spawned by lead-engineer orchestrator with a clean context window per task, preventing context rot. For [db]/[ui] tasks, the orchestrator spawns db-engineer/ui-engineer instead.
Executes tests based on TESTSTRATEGY.md and feature-level TEST.md. Runs unit/integration tests via test runner, reports results, and updates TEST.md checklists. In TDD mode, generates TEST.md skeletons during /spec. In post-dev mode, generates TEST.md and test code after /dev completion.
UI implementation engineer. Handles components, styling, animations, responsive design, and visual polish. Uses Figma MCP when available. Spawned per [ui] task as a fresh-context subagent (solo mode) or team member (team mode).