@@ -16,17 +16,18 @@ These skills form the primary workflow. They ship with the plugin.
1616| ` flow-code-setup ` | ` /flow-code:setup ` | Install flowctl CLI and configure project | ` skills/ ` |
1717| ` flow-code-map ` | ` /flow-code:map ` | Generate codebase architecture maps | ` skills/ ` |
1818
19- ## Extension Skills (26 )
19+ ## Extension Skills (47 )
2020
21- Optional capabilities that extend the core workflow.
21+ Optional capabilities that extend the core workflow. Skills live in ` skills/ ` and/or ` codex/skills/ ` (54 unique skills total, 7 core + 47 extension).
2222
23- ### Review & Quality (codex/skills/)
23+ ### Review & Quality
2424
2525| Skill | Command | Purpose |
2626| -------| ---------| ---------|
2727| ` flow-code-plan-review ` | Internal | Cross-model plan validation (RP or Codex) |
2828| ` flow-code-impl-review ` | Internal | Per-task implementation review with fix loop |
2929| ` flow-code-epic-review ` | Internal | Epic completion adversarial gate |
30+ | ` flow-code-code-review ` | Internal | Five-axis scoring with severity labels (Worker Phase 6, impl-review, PR review) |
3031
3132### Development Extensions
3233
@@ -39,6 +40,28 @@ Optional capabilities that extend the core workflow.
3940| ` flow-code-deps ` | ` /flow-code:deps ` | Dependency graph visualization and execution order |
4041| ` flow-code-api-design ` | ` /flow-code:api-design ` | API design and module boundary review |
4142| ` flow-code-performance ` | ` /flow-code:performance ` | Performance investigation, optimization, and benchmarks |
43+ | ` flow-code-tdd ` | ` /flow-code:tdd ` | Test-first methodology, Prove-It Pattern, coverage strategy |
44+ | ` flow-code-incremental ` | Internal | Vertical slicing, incremental commits, Implement-Test-Verify-Commit cycle |
45+ | ` flow-code-simplify ` | ` /flow-code:simplify ` | Reduce code complexity while preserving exact behavior |
46+ | ` flow-code-frontend-ui ` | ` /flow-code:frontend-ui ` | Production-quality UI: components, layouts, state, accessibility |
47+
48+ ### Architecture & Infrastructure Skills
49+
50+ | Skill | Command | Purpose |
51+ | -------| ---------| ---------|
52+ | ` flow-code-security ` | Internal | OWASP Top 10, three-tier security boundaries |
53+ | ` flow-code-auth ` | Internal | Authentication, authorization, OAuth, JWT, RBAC, session management |
54+ | ` flow-code-database ` | Internal | Schema design, migrations, query optimization, ORM patterns |
55+ | ` flow-code-caching ` | Internal | HTTP cache, CDN, Redis, in-memory, cache invalidation strategy |
56+ | ` flow-code-containerization ` | Internal | Dockerfiles, docker-compose, Kubernetes, image optimization |
57+ | ` flow-code-microservices ` | Internal | Service boundaries, inter-service communication, saga, event-driven |
58+ | ` flow-code-realtime ` | Internal | WebSocket, SSE, long-polling, connection management, scaling |
59+ | ` flow-code-state-management ` | Internal | Frontend/full-stack state architecture, tool selection, patterns |
60+ | ` flow-code-error-handling ` | Internal | Error classification, retry logic, circuit breakers, graceful degradation |
61+ | ` flow-code-i18n ` | Internal | Multi-language support, locale formatting, RTL layouts |
62+ | ` flow-code-monitoring ` | Internal | Dashboards, SLOs/SLIs, alerting rules, on-call runbooks |
63+ | ` flow-code-observability ` | Internal | Logging, tracing, metrics, health endpoints |
64+ | ` flow-code-documentation ` | Internal | ADRs, API docs, READMEs, changelogs, doc-as-code workflow |
4265
4366### Workflow Extensions
4467
@@ -51,6 +74,7 @@ Optional capabilities that extend the core workflow.
5174| ` flow-code-autoplan ` | ` /flow-code:autoplan ` | Multi-perspective auto-review pipeline (CEO, eng, design, DX) |
5275| ` flow-code-qa ` | ` /flow-code:qa ` | Visual QA testing with browser automation |
5376| ` flow-code-design-review ` | ` /flow-code:design-review ` | Visual design audit with browser automation |
77+ | ` flow-code-guide ` | Internal | Skill discovery flowchart — helps select the right skill |
5478
5579### Tooling Extensions
5680
@@ -99,6 +123,7 @@ Simple utilities and wrappers that perform a single focused action.
99123| ` flow-code-export-context ` | Export context for external model review |
100124| ` flow-code-deps ` | Dependency graph visualization |
101125| ` flow-code-loop-status ` | Monitor running loops |
126+ | ` flow-code-guide ` | Skill discovery flowchart |
102127| ` browser ` | Browser automation via agent-browser CLI |
103128| ` flow-code-rp-explorer ` | RepoPrompt-powered codebase exploration |
104129
@@ -114,6 +139,9 @@ Skills that gather information, analyze codebases, or provide monitoring and gui
114139| ` flow-code-performance ` | Performance investigation and benchmarks |
115140| ` flow-code-prompt-eng ` | Prompt engineering guidance for review agents |
116141| ` flow-code-debug ` | Systematic debugging with root cause investigation |
142+ | ` flow-code-monitoring ` | Dashboards, SLOs/SLIs, alerting rules |
143+ | ` flow-code-observability ` | Logging, tracing, metrics, health endpoints |
144+ | ` flow-code-documentation ` | ADRs, API docs, changelogs, doc-as-code |
117145
118146### Tier 3 — Interactive Decision-Making
119147
@@ -138,9 +166,24 @@ Skills that involve planning, design, or interactive multi-step workflows.
138166| ` flow-code-plan-review ` | Cross-model plan validation |
139167| ` flow-code-impl-review ` | Per-task implementation review |
140168| ` flow-code-epic-review ` | Epic completion adversarial gate |
169+ | ` flow-code-code-review ` | Five-axis scoring with severity labels |
141170| ` flow-code-qa ` | Visual QA testing with browser |
142171| ` flow-code-design-review ` | Visual design audit with browser |
143172| ` flow-code-autoplan ` | Multi-perspective auto-review pipeline |
173+ | ` flow-code-tdd ` | Test-first methodology, Prove-It Pattern |
174+ | ` flow-code-incremental ` | Vertical slicing, incremental commits |
175+ | ` flow-code-simplify ` | Reduce complexity while preserving behavior |
176+ | ` flow-code-frontend-ui ` | Production-quality UI components and layouts |
177+ | ` flow-code-security ` | OWASP Top 10, security boundaries |
178+ | ` flow-code-auth ` | Authentication, authorization, OAuth, JWT, RBAC |
179+ | ` flow-code-database ` | Schema design, migrations, query optimization |
180+ | ` flow-code-caching ` | HTTP cache, CDN, Redis, cache invalidation |
181+ | ` flow-code-containerization ` | Docker, Kubernetes, image optimization |
182+ | ` flow-code-microservices ` | Service boundaries, saga, event-driven patterns |
183+ | ` flow-code-realtime ` | WebSocket, SSE, connection management |
184+ | ` flow-code-state-management ` | Frontend/full-stack state architecture |
185+ | ` flow-code-error-handling ` | Error classification, retry, circuit breakers |
186+ | ` flow-code-i18n ` | Multi-language support, locale formatting, RTL |
144187
145188### Tier 4 — Final Decisions & Execution
146189
0 commit comments