claude-symphony 0.0.11 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (187) hide show
  1. package/README.md +79 -120
  2. package/dist/cli/index.d.ts +2 -0
  3. package/dist/cli/index.js +3013 -0
  4. package/dist/cli/index.js.map +1 -0
  5. package/dist/hooks/ai-selector.d.ts +47 -0
  6. package/dist/hooks/ai-selector.js +219 -0
  7. package/dist/hooks/ai-selector.js.map +1 -0
  8. package/dist/hooks/auto-checkpoint.d.ts +42 -0
  9. package/dist/hooks/auto-checkpoint.js +559 -0
  10. package/dist/hooks/auto-checkpoint.js.map +1 -0
  11. package/dist/hooks/output-validator.d.ts +34 -0
  12. package/dist/hooks/output-validator.js +351 -0
  13. package/dist/hooks/output-validator.js.map +1 -0
  14. package/dist/hooks/post-stage.d.ts +21 -0
  15. package/dist/hooks/post-stage.js +539 -0
  16. package/dist/hooks/post-stage.js.map +1 -0
  17. package/dist/hooks/pre-stage.d.ts +23 -0
  18. package/dist/hooks/pre-stage.js +245 -0
  19. package/dist/hooks/pre-stage.js.map +1 -0
  20. package/dist/hooks/session-start.d.ts +39 -0
  21. package/dist/hooks/session-start.js +185 -0
  22. package/dist/hooks/session-start.js.map +1 -0
  23. package/dist/stage-Cy_k5zNZ.d.ts +11 -0
  24. package/package.json +33 -6
  25. package/schemas/ai_collaboration.schema.json +111 -0
  26. package/schemas/auto_checkpoint.schema.json +150 -0
  27. package/schemas/context.schema.json +100 -0
  28. package/schemas/git.schema.json +99 -0
  29. package/schemas/index.json +16 -0
  30. package/schemas/models.schema.json +69 -0
  31. package/schemas/output_validation.schema.json +99 -0
  32. package/schemas/pipeline.schema.json +152 -0
  33. package/schemas/stage.schema.json +261 -0
  34. package/schemas/tech_stack.schema.json +105 -0
  35. package/scripts/build-schema.ts +155 -0
  36. package/scripts/memory-relay/README.md +231 -0
  37. package/scripts/memory-relay/config.json +46 -0
  38. package/scripts/memory-relay/install.sh +181 -0
  39. package/scripts/memory-relay/orchestrator/claude-symphony-play +272 -0
  40. package/scripts/memory-relay/orchestrator/claude-wrapper.sh +146 -0
  41. package/scripts/memory-relay/orchestrator/orchestrator.sh +257 -0
  42. package/scripts/memory-relay/orchestrator/tmux-startup.sh +145 -0
  43. package/scripts/migrate-yaml-to-jsonc.ts +250 -0
  44. package/template/.claude/commands/codex.md +25 -2
  45. package/template/.claude/commands/gemini.md +25 -2
  46. package/template/.claude/commands/stitch.md +244 -0
  47. package/template/.claude/hooks/ai-selector.sh +21 -214
  48. package/template/.claude/hooks/auto-checkpoint.sh +20 -178
  49. package/template/.claude/hooks/output-validator.sh +20 -280
  50. package/template/.claude/hooks/post-stage.sh +34 -118
  51. package/template/.claude/hooks/pre-stage.sh +36 -181
  52. package/template/.claude/hooks/session-start.sh +19 -80
  53. package/template/.env.example.template +59 -0
  54. package/template/CLAUDE.md +55 -0
  55. package/template/config/ai_benchmarking.jsonc +226 -0
  56. package/template/config/ai_collaboration.jsonc +330 -0
  57. package/template/config/ai_fallbacks.jsonc +156 -0
  58. package/template/config/ai_logging.jsonc +107 -0
  59. package/template/config/auto_checkpoint.jsonc +188 -0
  60. package/template/config/context.jsonc +72 -0
  61. package/template/config/epic_cycles.jsonc +165 -0
  62. package/template/config/git.jsonc +174 -0
  63. package/template/config/handoff_intelligence.jsonc +492 -0
  64. package/template/config/implementation_order.jsonc +449 -0
  65. package/template/config/mcp_fallbacks.jsonc +334 -0
  66. package/template/config/memory_integration.jsonc +199 -0
  67. package/template/config/model_enforcement.jsonc +154 -0
  68. package/template/config/models.jsonc +257 -0
  69. package/template/config/output_validation.jsonc +440 -0
  70. package/template/config/pipeline.jsonc +515 -0
  71. package/template/config/pipeline_forking.jsonc +235 -0
  72. package/template/config/qa_logging.jsonc +156 -0
  73. package/template/config/requirements_refinement.jsonc +298 -0
  74. package/template/config/smart_rollback.jsonc +211 -0
  75. package/template/config/stage_personas.jsonc +304 -0
  76. package/template/config/tech_stack_presets.jsonc +336 -0
  77. package/template/config/ui-ux.jsonc +372 -0
  78. package/template/config/workflow.jsonc +48 -0
  79. package/template/scripts/setup-stitch-mcp.sh +118 -0
  80. package/template/scripts/stitch-quota-monitor.sh +213 -0
  81. package/template/stages/01-brainstorm/CLAUDE.md +32 -0
  82. package/template/stages/01-brainstorm/config.jsonc +123 -0
  83. package/template/stages/01-brainstorm/outputs/_sample_ideas.md +199 -0
  84. package/template/stages/02-research/CLAUDE.md +4 -3
  85. package/template/stages/02-research/README.md +91 -0
  86. package/template/stages/02-research/config.jsonc +96 -0
  87. package/template/stages/02-research/outputs/_sample_tech_research.md +202 -0
  88. package/template/stages/03-planning/CLAUDE.md +4 -3
  89. package/template/stages/03-planning/README.md +100 -0
  90. package/template/stages/03-planning/config.jsonc +112 -0
  91. package/template/stages/03-planning/outputs/_sample_architecture.md +327 -0
  92. package/template/stages/04-ui-ux/CLAUDE.md +88 -3
  93. package/template/stages/04-ui-ux/README.md +102 -0
  94. package/template/stages/04-ui-ux/config.jsonc +103 -0
  95. package/template/stages/04-ui-ux/outputs/_sample_design_system.md +427 -0
  96. package/template/stages/05-task-management/CLAUDE.md +5 -4
  97. package/template/stages/05-task-management/README.md +109 -0
  98. package/template/stages/05-task-management/config.jsonc +107 -0
  99. package/template/stages/05-task-management/outputs/_sample_tasks.md +391 -0
  100. package/template/stages/06-implementation/CLAUDE.md +6 -5
  101. package/template/stages/06-implementation/README.md +117 -0
  102. package/template/stages/06-implementation/config.jsonc +111 -0
  103. package/template/stages/06-implementation/outputs/_sample_component.tsx +422 -0
  104. package/template/stages/07-refactoring/CLAUDE.md +4 -3
  105. package/template/stages/07-refactoring/README.md +126 -0
  106. package/template/stages/07-refactoring/config.jsonc +99 -0
  107. package/template/stages/07-refactoring/outputs/_sample_refactoring_report.md +474 -0
  108. package/template/stages/08-qa/CLAUDE.md +4 -3
  109. package/template/stages/08-qa/README.md +126 -0
  110. package/template/stages/08-qa/config.jsonc +81 -0
  111. package/template/stages/08-qa/outputs/_sample_qa_report.md +388 -0
  112. package/template/stages/09-testing/CLAUDE.md +4 -3
  113. package/template/stages/09-testing/README.md +126 -0
  114. package/template/stages/09-testing/config.jsonc +109 -0
  115. package/template/stages/09-testing/outputs/_sample_test_report.md +425 -0
  116. package/template/stages/09-testing/prompts/e2e_tests.md +324 -0
  117. package/template/stages/09-testing/prompts/integration_tests.md +393 -0
  118. package/template/stages/09-testing/prompts/unit_tests.md +281 -0
  119. package/template/stages/09-testing/templates/e2e-test.template.ts +221 -0
  120. package/template/stages/09-testing/templates/msw-setup.template.ts +228 -0
  121. package/template/stages/09-testing/templates/playwright.config.template.ts +106 -0
  122. package/template/stages/09-testing/templates/supabase-mock.template.ts +400 -0
  123. package/template/stages/09-testing/templates/test-utils.template.ts +215 -0
  124. package/template/stages/09-testing/templates/unit-test.template.ts +180 -0
  125. package/template/stages/09-testing/templates/vitest.config.template.ts +100 -0
  126. package/template/stages/10-deployment/CLAUDE.md +5 -4
  127. package/template/stages/10-deployment/README.md +131 -0
  128. package/template/stages/10-deployment/config.jsonc +90 -0
  129. package/template/stages/10-deployment/outputs/_sample_deployment_guide.md +517 -0
  130. package/template/stages/10-deployment/templates/database/supabase.md +291 -0
  131. package/template/stages/10-deployment/templates/hosting/netlify.md +111 -0
  132. package/template/stages/10-deployment/templates/hosting/railway.md +148 -0
  133. package/template/stages/10-deployment/templates/hosting/vercel.md +105 -0
  134. package/bin/create.js +0 -560
  135. package/template/config/ai_benchmarking.yaml +0 -184
  136. package/template/config/ai_collaboration.yaml +0 -215
  137. package/template/config/ai_fallbacks.yaml +0 -130
  138. package/template/config/ai_logging.yaml +0 -129
  139. package/template/config/auto_checkpoint.yaml +0 -189
  140. package/template/config/context.yaml +0 -78
  141. package/template/config/epic_cycles.yaml +0 -203
  142. package/template/config/git.yaml +0 -185
  143. package/template/config/handoff_intelligence.yaml +0 -401
  144. package/template/config/implementation_order.yaml +0 -376
  145. package/template/config/mcp_fallbacks.yaml +0 -252
  146. package/template/config/memory_integration.yaml +0 -200
  147. package/template/config/model_enforcement.yaml +0 -141
  148. package/template/config/models.yaml +0 -242
  149. package/template/config/output_validation.yaml +0 -352
  150. package/template/config/pipeline.yaml +0 -441
  151. package/template/config/pipeline_forking.yaml +0 -236
  152. package/template/config/qa_logging.yaml +0 -166
  153. package/template/config/requirements_refinement.yaml +0 -350
  154. package/template/config/smart_rollback.yaml +0 -209
  155. package/template/config/stage_personas.yaml +0 -354
  156. package/template/config/ui-ux.yaml +0 -293
  157. package/template/config/workflow.yaml +0 -54
  158. package/template/scripts/ai-benchmark.sh +0 -272
  159. package/template/scripts/codex-wrapper.sh +0 -97
  160. package/template/scripts/config-manager.sh +0 -350
  161. package/template/scripts/context-manager.sh +0 -579
  162. package/template/scripts/create-checkpoint.sh +0 -116
  163. package/template/scripts/epic-cycle.sh +0 -421
  164. package/template/scripts/gemini-wrapper.sh +0 -96
  165. package/template/scripts/goto-stage.sh +0 -264
  166. package/template/scripts/init-project.sh +0 -109
  167. package/template/scripts/list-stages.sh +0 -245
  168. package/template/scripts/moodboard-manager.sh +0 -458
  169. package/template/scripts/next-stage.sh +0 -360
  170. package/template/scripts/output-validate.sh +0 -12
  171. package/template/scripts/pipeline-fork.sh +0 -293
  172. package/template/scripts/pre-run-check.sh +0 -361
  173. package/template/scripts/requirements-refine.sh +0 -369
  174. package/template/scripts/restore-checkpoint.sh +0 -247
  175. package/template/scripts/run-stage.sh +0 -139
  176. package/template/scripts/show-status.sh +0 -185
  177. package/template/scripts/smart-handoff.sh +0 -254
  178. package/template/stages/01-brainstorm/config.yaml +0 -92
  179. package/template/stages/02-research/config.yaml +0 -68
  180. package/template/stages/03-planning/config.yaml +0 -64
  181. package/template/stages/04-ui-ux/config.yaml +0 -57
  182. package/template/stages/05-task-management/config.yaml +0 -81
  183. package/template/stages/06-implementation/config.yaml +0 -78
  184. package/template/stages/07-refactoring/config.yaml +0 -68
  185. package/template/stages/08-qa/config.yaml +0 -56
  186. package/template/stages/09-testing/config.yaml +0 -65
  187. package/template/stages/10-deployment/config.yaml +0 -61
package/README.md CHANGED
@@ -26,7 +26,6 @@ claude-symphony is a 10-stage software development workflow pipeline that orches
26
26
  - **Implementation Order**: Frontend-first or backend-first development approach with reference links
27
27
  - **Requirements Refinement**: 4-level breakdown system (Epic → Feature → Task → Subtask) with INVEST validation
28
28
  - **Moodboard UX**: Interactive design reference collection with Claude Vision/Figma MCP analysis
29
- - **Dual Distribution**: Both NPM CLI and Claude Code plugin available
30
29
 
31
30
  ### Pipeline Stages
32
31
 
@@ -132,82 +131,72 @@ my-saas-app
132
131
  3. [Feature 3]
133
132
  ```
134
133
 
135
- ## Packages
136
-
137
- This monorepo contains three packages:
138
-
139
- | Package | Description | Install |
140
- |---------|-------------|---------|
141
- | [`claude-symphony`](./packages/cli) | NPM CLI | `npm install -g claude-symphony` |
142
- | [`@claude-symphony/core`](./packages/core) | Core library | `npm install @claude-symphony/core` |
143
- | [`@claude-symphony/plugin`](./packages/plugin) | Claude Code plugin | `claude plugin install @claude-symphony/plugin` |
144
-
145
134
  ## Commands
146
135
 
147
136
  ### Core Commands
148
137
 
149
- | Command | CLI | Plugin |
150
- |---------|-----|--------|
151
- | Initialize project | `symphony init` | `/init-project` |
152
- | Show status | `symphony status` | `/status` |
153
- | List stages | `symphony stages` | `/stages` |
154
- | Run stage | `symphony run-stage <id>` | `/run-stage <id>` |
155
- | Next stage | `symphony next` | `/next` |
156
- | Create handoff | `symphony handoff` | `/handoff` |
157
- | Create checkpoint | `symphony checkpoint` | `/checkpoint` |
158
- | Restore checkpoint | `symphony restore` | `/restore` |
159
- | Check context | `symphony context` | `/context` |
138
+ | Command | Description |
139
+ |---------|-------------|
140
+ | `/status` | Check pipeline status |
141
+ | `/stages` | List all stages |
142
+ | `/run-stage <id>` | Run specific stage |
143
+ | `/next` | Move to next stage |
144
+ | `/handoff` | Create handoff document |
145
+ | `/checkpoint` | Create checkpoint |
146
+ | `/restore` | Restore checkpoint |
147
+ | `/context` | Check context usage |
148
+ | `/init-project` | Initialize project |
160
149
 
161
150
  ### AI Commands
162
151
 
163
- | Command | CLI | Plugin |
164
- |---------|-----|--------|
165
- | Gemini prompt | `symphony gemini <prompt>` | `/gemini <prompt>` |
166
- | Codex prompt | `symphony codex <prompt>` | `/codex <prompt>` |
152
+ | Command | Description |
153
+ |---------|-------------|
154
+ | `/gemini <prompt>` | Send prompt to Gemini |
155
+ | `/codex <prompt>` | Send prompt to Codex |
167
156
 
168
157
  ### Multi-AI Commands
169
158
 
170
- | Command | CLI | Plugin | Description |
171
- |---------|-----|--------|-------------|
172
- | AI Collaboration | `symphony collaborate` | `/collaborate` | Run multi-AI collaboration (parallel, sequential, debate modes) |
173
- | AI Benchmarking | `symphony benchmark` | `/benchmark` | Compare AI model performance on tasks |
174
- | Pipeline Fork | `symphony fork` | `/fork` | Create/manage pipeline branches for exploration |
175
- | Output Validation | `symphony validate` | `/validate` | Validate stage outputs against quality criteria |
159
+ | Command | Description |
160
+ |---------|-------------|
161
+ | `/collaborate` | Run multi-AI collaboration (parallel, sequential, debate modes) |
162
+ | `/benchmark` | Compare AI model performance on tasks |
163
+ | `/fork` | Create/manage pipeline branches for exploration |
164
+ | `/validate` | Validate stage outputs against quality criteria |
176
165
 
177
166
  ### Workflow Commands
178
167
 
179
- | Command | Plugin | Description |
180
- |---------|--------|-------------|
181
- | Epic Cycle | `/epic` | Manage epic cycles (new, set-scope, set-count, history) |
182
- | Implementation Order | `/config order` | Set development order (frontend/backend/parallel) |
183
- | Moodboard | `/moodboard` | Interactive design reference collection and analysis |
184
- | Requirements Refine | `/refine` | Break down requirements (Epic → Feature → Task → Subtask) |
168
+ | Command | Description |
169
+ |---------|-------------|
170
+ | `/epic` | Manage epic cycles (new, set-scope, set-count, history) |
171
+ | `/config order` | Set development order (frontend/backend/parallel) |
172
+ | `/moodboard` | Interactive design reference collection and analysis |
173
+ | `/refine` | Break down requirements (Epic → Feature → Task → Subtask) |
185
174
 
186
175
  ### Stage Shortcuts
187
176
 
188
- | Stage | CLI | Plugin |
189
- |-------|-----|--------|
190
- | 01-brainstorm | `symphony brainstorm` | `/brainstorm` |
191
- | 02-research | `symphony research` | `/research` |
192
- | 03-planning | `symphony planning` | `/planning` |
193
- | 04-ui-ux | `symphony ui-ux` | `/ui-ux` |
194
- | 05-task-management | `symphony tasks` | `/tasks` |
195
- | 06-implementation | `symphony implement` | `/implement` |
196
- | 07-refactoring | `symphony refactor` | `/refactor` |
197
- | 08-qa | `symphony qa` | `/qa` |
198
- | 09-testing | `symphony test` | `/test` |
199
- | 10-deployment | `symphony deploy` | `/deploy` |
177
+ | Stage | Command |
178
+ |-------|---------|
179
+ | 01-brainstorm | `/brainstorm` |
180
+ | 02-research | `/research` |
181
+ | 03-planning | `/planning` |
182
+ | 04-ui-ux | `/ui-ux` |
183
+ | 05-task-management | `/tasks` |
184
+ | 06-implementation | `/implement` |
185
+ | 07-refactoring | `/refactor` |
186
+ | 08-qa | `/qa` |
187
+ | 09-testing | `/test` |
188
+ | 10-deployment | `/deploy` |
200
189
 
201
190
  ## Configuration
202
191
 
203
- Project configuration is stored in `.symphony-config.yaml`:
192
+ Project configuration is stored in `config/pipeline.yaml` and other YAML files:
204
193
 
205
194
  ```yaml
206
195
  claude_symphony:
207
196
  version: "2.0.0"
208
197
 
209
198
  paths:
210
- project_root: "./my-app"
199
+ project_root: "."
211
200
  stages_output: "./stages"
212
201
  state: "./state"
213
202
  checkpoints: "./state/checkpoints"
@@ -234,19 +223,25 @@ git:
234
223
 
235
224
  ## Project Structure
236
225
 
237
- Each project is fully self-contained with all pipeline components:
226
+ Each project created with `npx claude-symphony` is fully self-contained:
238
227
 
239
228
  ```
240
229
  my-project/ # PROJECT_ROOT
241
230
  ├── .claude/ # Claude Code configuration
242
- │ ├── commands/ # Slash commands (30+ commands)
231
+ │ ├── commands/ # Slash commands (29 commands)
243
232
  │ │ ├── epic.md # /epic - Epic cycle management
244
233
  │ │ ├── moodboard.md # /moodboard - Design collection
245
234
  │ │ ├── refine.md # /refine - Requirements refinement
246
235
  │ │ ├── config.md # /config - Implementation order
236
+ │ │ ├── status.md # /status - Pipeline status
237
+ │ │ ├── collaborate.md # /collaborate - Multi-AI collaboration
238
+ │ │ └── ...
239
+ │ ├── hooks/ # Lifecycle hooks (8 hooks)
240
+ │ │ ├── pre-stage.sh
241
+ │ │ ├── post-stage.sh
242
+ │ │ ├── auto-checkpoint.sh
247
243
  │ │ └── ...
248
- │ ├── hooks/ # Lifecycle hooks
249
- │ ├── skills/ # AI skills
244
+ │ ├── skills/ # AI skills (7 skills)
250
245
  │ └── settings.json
251
246
  ├── stages/ # 10-stage pipeline
252
247
  │ ├── 01-brainstorm/
@@ -259,26 +254,29 @@ my-project/ # PROJECT_ROOT
259
254
  │ │ └── HANDOFF.md
260
255
  │ ├── 02-research/
261
256
  │ └── ... (10 stages total)
262
- ├── config/ # Pipeline configuration
257
+ ├── config/ # Pipeline configuration (24 files)
263
258
  │ ├── pipeline.yaml # Core pipeline settings
264
259
  │ ├── context.yaml # Context management
265
260
  │ ├── epic_cycles.yaml # Epic cycle configuration
266
261
  │ ├── implementation_order.yaml # Dev order settings
267
262
  │ ├── requirements_refinement.yaml # Refinement rules
268
263
  │ ├── ui-ux.yaml # Moodboard & design settings
269
- └── ... (20+ config files)
264
+ ├── ai_collaboration.yaml # Multi-AI collaboration
265
+ │ ├── models.yaml # AI model configuration
266
+ │ └── ...
270
267
  ├── state/ # Project state
271
268
  │ ├── progress.json # Pipeline progress
272
269
  │ ├── checkpoints/ # Recovery points
273
270
  │ └── context/ # Context snapshots
274
- ├── scripts/ # Helper scripts
271
+ ├── scripts/ # Helper scripts (25 scripts)
272
+ │ ├── common.sh # Shared utilities
275
273
  │ ├── epic-cycle.sh # Epic cycle management
276
274
  │ ├── moodboard-manager.sh # Moodboard collection
277
275
  │ ├── requirements-refine.sh # Requirements refinement
276
+ │ ├── ai-benchmark.sh # AI benchmarking
278
277
  │ └── ...
279
278
  ├── CLAUDE.md # Main AI instructions
280
- ├── src/ # Source code (from stage 06)
281
- └── package.json
279
+ └── src/ # Source code (from stage 06)
282
280
  ```
283
281
 
284
282
  ## Design Patterns
@@ -295,18 +293,11 @@ my-project/ # PROJECT_ROOT
295
293
  10. **Iterative Refinement Loops** - Epic cycles, requirements refinement, and moodboard feedback
296
294
  11. **Hierarchical Decomposition** - 4-level requirement breakdown (Epic → Feature → Task → Subtask)
297
295
 
298
- ## Documentation
299
-
300
- - [CLI Reference](./packages/cli/README.md)
301
- - [Plugin Reference](./packages/plugin/README.md)
302
- - [Migration Guide](./docs/migration-guide.md)
303
-
304
296
  ## Development
305
297
 
306
298
  ### Prerequisites
307
299
 
308
- - Node.js >= 18.0.0
309
- - pnpm >= 8.0.0
300
+ - Node.js >= 20.12.0
310
301
  - tmux (for AI sessions)
311
302
 
312
303
  ### Setup
@@ -317,63 +308,31 @@ git clone https://github.com/znehraks/claude-symphony.git
317
308
  cd claude-symphony
318
309
 
319
310
  # Install dependencies
320
- pnpm install
321
-
322
- # Build all packages
323
- pnpm build
324
-
325
- # Run tests
326
- pnpm test
327
- ```
328
-
329
- ### Local Development
330
-
331
- ```bash
332
- # Link CLI globally
333
- cd packages/cli
334
- pnpm link --global
335
-
336
- # Test CLI
337
- symphony --help
311
+ npm install
338
312
 
339
- # Link plugin to Claude Code
340
- claude plugin link ./packages/plugin
313
+ # Test locally
314
+ node bin/create.js test-project
341
315
  ```
342
316
 
343
- ### Monorepo Structure
317
+ ### Repository Structure
344
318
 
345
319
  ```
346
320
  claude-symphony/
347
- ├── packages/
348
- ├── core/ # Shared business logic
349
- │ │ ├── src/
350
- │ │ ├── config/ # Configuration management
351
- │ │ ├── stage/ # Stage management
352
- │ │ ├── context/ # Context management
353
- │ │ └── ai/ # AI model abstraction
354
- │ └── package.json
355
-
356
- │ ├── cli/ # NPM CLI package
357
- ├── src/
358
- │ │ ├── commands/ # CLI commands
359
- │ │ │ └── prompts/ # Interactive prompts
360
- │ │ ├── bin/ax.js
361
- │ │ └── package.json
362
- │ │
363
- │ └── plugin/ # Claude Code plugin
364
- │ ├── plugin.json
365
- │ ├── CLAUDE.md
366
- │ ├── .claude/
367
- │ │ ├── commands/ # Slash commands
368
- │ │ └── hooks/ # Lifecycle hooks
369
- │ ├── scripts/ # Helper scripts
370
- │ └── package.json
371
-
372
- ├── templates/ # Installable templates
373
- │ └── default/ # Default 10-stage template
374
-
375
- ├── docs/ # Documentation
376
- └── package.json # Monorepo root
321
+ ├── bin/
322
+ └── create.js # npx entry point
323
+ ├── template/ # Project template
324
+ │ ├── .claude/ # Claude Code config
325
+ │ │ ├── commands/ # Slash commands
326
+ │ │ ├── hooks/ # Lifecycle hooks
327
+ │ │ └── skills/ # AI skills
328
+ ├── stages/ # 10-stage pipeline
329
+ ├── config/ # Configuration files
330
+ │ ├── scripts/ # Helper scripts
331
+ │ ├── state/ # State management
332
+ └── CLAUDE.md
333
+ ├── assets/ # Images and assets
334
+ ├── package.json
335
+ └── README.md
377
336
  ```
378
337
 
379
338
  ## Contributing
@@ -0,0 +1,2 @@
1
+
2
+ export { }