Adds a --review flag to all 13 gate-using skills and a global
production/review-mode.txt config (set during /start). Full runs all
director gates, lean skips per-skill gates but keeps phase gates, solo
skips all directors. Documents modes in director-gates.md, WORKFLOW-GUIDE.md,
and README.md.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Creates .claude/docs/director-gates.md as a central registry of 18 named gate
prompts (CD-*, TD-*, PR-*, LP-*, QL-*, ND-*, AD-*) covering all 7 production
stages. Skills now reference gate IDs instead of embedding inline director prompts,
eliminating drift when prompts need updating.
Updated 15 skills to use gate IDs: brainstorm, map-systems, design-system,
architecture-decision, create-architecture, create-epics, create-stories,
sprint-plan, milestone-review, playtest-report, prototype, story-done,
gate-check, setup-engine, start.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- NEW /create-epics (agent: technical-director): architect-level epic scoping,
one epic per architectural module. Does not create stories.
- NEW /create-stories (agent: lead-programmer): decomposes a single epic into
story files with embedded TR-IDs, ADR guidance, and test evidence paths.
- NEW /dev-story: the missing implementation skill — reads a story, loads full
context (TR registry, ADR, control manifest, engine prefs), routes to the
correct programmer agent via Task, and drives implementation to completion
including writing the test.
- DEPRECATED /create-epics-stories: added redirect notice; original content
preserved for reference.
- Updated /gate-check: Pre-Prod→Production artifact check and follow-up actions
now reference the two new skills.
- Updated workflow-catalog.yaml: replaced create-epics-stories step with two
separate steps; implement step now references /dev-story with command field.
Story loop is now explicit:
/story-readiness → /dev-story → /code-review → /story-done
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>