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.
- package/README.md +79 -120
- package/dist/cli/index.d.ts +2 -0
- package/dist/cli/index.js +3013 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/hooks/ai-selector.d.ts +47 -0
- package/dist/hooks/ai-selector.js +219 -0
- package/dist/hooks/ai-selector.js.map +1 -0
- package/dist/hooks/auto-checkpoint.d.ts +42 -0
- package/dist/hooks/auto-checkpoint.js +559 -0
- package/dist/hooks/auto-checkpoint.js.map +1 -0
- package/dist/hooks/output-validator.d.ts +34 -0
- package/dist/hooks/output-validator.js +351 -0
- package/dist/hooks/output-validator.js.map +1 -0
- package/dist/hooks/post-stage.d.ts +21 -0
- package/dist/hooks/post-stage.js +539 -0
- package/dist/hooks/post-stage.js.map +1 -0
- package/dist/hooks/pre-stage.d.ts +23 -0
- package/dist/hooks/pre-stage.js +245 -0
- package/dist/hooks/pre-stage.js.map +1 -0
- package/dist/hooks/session-start.d.ts +39 -0
- package/dist/hooks/session-start.js +185 -0
- package/dist/hooks/session-start.js.map +1 -0
- package/dist/stage-Cy_k5zNZ.d.ts +11 -0
- package/package.json +33 -6
- package/schemas/ai_collaboration.schema.json +111 -0
- package/schemas/auto_checkpoint.schema.json +150 -0
- package/schemas/context.schema.json +100 -0
- package/schemas/git.schema.json +99 -0
- package/schemas/index.json +16 -0
- package/schemas/models.schema.json +69 -0
- package/schemas/output_validation.schema.json +99 -0
- package/schemas/pipeline.schema.json +152 -0
- package/schemas/stage.schema.json +261 -0
- package/schemas/tech_stack.schema.json +105 -0
- package/scripts/build-schema.ts +155 -0
- package/scripts/memory-relay/README.md +231 -0
- package/scripts/memory-relay/config.json +46 -0
- package/scripts/memory-relay/install.sh +181 -0
- package/scripts/memory-relay/orchestrator/claude-symphony-play +272 -0
- package/scripts/memory-relay/orchestrator/claude-wrapper.sh +146 -0
- package/scripts/memory-relay/orchestrator/orchestrator.sh +257 -0
- package/scripts/memory-relay/orchestrator/tmux-startup.sh +145 -0
- package/scripts/migrate-yaml-to-jsonc.ts +250 -0
- package/template/.claude/commands/codex.md +25 -2
- package/template/.claude/commands/gemini.md +25 -2
- package/template/.claude/commands/stitch.md +244 -0
- package/template/.claude/hooks/ai-selector.sh +21 -214
- package/template/.claude/hooks/auto-checkpoint.sh +20 -178
- package/template/.claude/hooks/output-validator.sh +20 -280
- package/template/.claude/hooks/post-stage.sh +34 -118
- package/template/.claude/hooks/pre-stage.sh +36 -181
- package/template/.claude/hooks/session-start.sh +19 -80
- package/template/.env.example.template +59 -0
- package/template/CLAUDE.md +55 -0
- package/template/config/ai_benchmarking.jsonc +226 -0
- package/template/config/ai_collaboration.jsonc +330 -0
- package/template/config/ai_fallbacks.jsonc +156 -0
- package/template/config/ai_logging.jsonc +107 -0
- package/template/config/auto_checkpoint.jsonc +188 -0
- package/template/config/context.jsonc +72 -0
- package/template/config/epic_cycles.jsonc +165 -0
- package/template/config/git.jsonc +174 -0
- package/template/config/handoff_intelligence.jsonc +492 -0
- package/template/config/implementation_order.jsonc +449 -0
- package/template/config/mcp_fallbacks.jsonc +334 -0
- package/template/config/memory_integration.jsonc +199 -0
- package/template/config/model_enforcement.jsonc +154 -0
- package/template/config/models.jsonc +257 -0
- package/template/config/output_validation.jsonc +440 -0
- package/template/config/pipeline.jsonc +515 -0
- package/template/config/pipeline_forking.jsonc +235 -0
- package/template/config/qa_logging.jsonc +156 -0
- package/template/config/requirements_refinement.jsonc +298 -0
- package/template/config/smart_rollback.jsonc +211 -0
- package/template/config/stage_personas.jsonc +304 -0
- package/template/config/tech_stack_presets.jsonc +336 -0
- package/template/config/ui-ux.jsonc +372 -0
- package/template/config/workflow.jsonc +48 -0
- package/template/scripts/setup-stitch-mcp.sh +118 -0
- package/template/scripts/stitch-quota-monitor.sh +213 -0
- package/template/stages/01-brainstorm/CLAUDE.md +32 -0
- package/template/stages/01-brainstorm/config.jsonc +123 -0
- package/template/stages/01-brainstorm/outputs/_sample_ideas.md +199 -0
- package/template/stages/02-research/CLAUDE.md +4 -3
- package/template/stages/02-research/README.md +91 -0
- package/template/stages/02-research/config.jsonc +96 -0
- package/template/stages/02-research/outputs/_sample_tech_research.md +202 -0
- package/template/stages/03-planning/CLAUDE.md +4 -3
- package/template/stages/03-planning/README.md +100 -0
- package/template/stages/03-planning/config.jsonc +112 -0
- package/template/stages/03-planning/outputs/_sample_architecture.md +327 -0
- package/template/stages/04-ui-ux/CLAUDE.md +88 -3
- package/template/stages/04-ui-ux/README.md +102 -0
- package/template/stages/04-ui-ux/config.jsonc +103 -0
- package/template/stages/04-ui-ux/outputs/_sample_design_system.md +427 -0
- package/template/stages/05-task-management/CLAUDE.md +5 -4
- package/template/stages/05-task-management/README.md +109 -0
- package/template/stages/05-task-management/config.jsonc +107 -0
- package/template/stages/05-task-management/outputs/_sample_tasks.md +391 -0
- package/template/stages/06-implementation/CLAUDE.md +6 -5
- package/template/stages/06-implementation/README.md +117 -0
- package/template/stages/06-implementation/config.jsonc +111 -0
- package/template/stages/06-implementation/outputs/_sample_component.tsx +422 -0
- package/template/stages/07-refactoring/CLAUDE.md +4 -3
- package/template/stages/07-refactoring/README.md +126 -0
- package/template/stages/07-refactoring/config.jsonc +99 -0
- package/template/stages/07-refactoring/outputs/_sample_refactoring_report.md +474 -0
- package/template/stages/08-qa/CLAUDE.md +4 -3
- package/template/stages/08-qa/README.md +126 -0
- package/template/stages/08-qa/config.jsonc +81 -0
- package/template/stages/08-qa/outputs/_sample_qa_report.md +388 -0
- package/template/stages/09-testing/CLAUDE.md +4 -3
- package/template/stages/09-testing/README.md +126 -0
- package/template/stages/09-testing/config.jsonc +109 -0
- package/template/stages/09-testing/outputs/_sample_test_report.md +425 -0
- package/template/stages/09-testing/prompts/e2e_tests.md +324 -0
- package/template/stages/09-testing/prompts/integration_tests.md +393 -0
- package/template/stages/09-testing/prompts/unit_tests.md +281 -0
- package/template/stages/09-testing/templates/e2e-test.template.ts +221 -0
- package/template/stages/09-testing/templates/msw-setup.template.ts +228 -0
- package/template/stages/09-testing/templates/playwright.config.template.ts +106 -0
- package/template/stages/09-testing/templates/supabase-mock.template.ts +400 -0
- package/template/stages/09-testing/templates/test-utils.template.ts +215 -0
- package/template/stages/09-testing/templates/unit-test.template.ts +180 -0
- package/template/stages/09-testing/templates/vitest.config.template.ts +100 -0
- package/template/stages/10-deployment/CLAUDE.md +5 -4
- package/template/stages/10-deployment/README.md +131 -0
- package/template/stages/10-deployment/config.jsonc +90 -0
- package/template/stages/10-deployment/outputs/_sample_deployment_guide.md +517 -0
- package/template/stages/10-deployment/templates/database/supabase.md +291 -0
- package/template/stages/10-deployment/templates/hosting/netlify.md +111 -0
- package/template/stages/10-deployment/templates/hosting/railway.md +148 -0
- package/template/stages/10-deployment/templates/hosting/vercel.md +105 -0
- package/bin/create.js +0 -560
- package/template/config/ai_benchmarking.yaml +0 -184
- package/template/config/ai_collaboration.yaml +0 -215
- package/template/config/ai_fallbacks.yaml +0 -130
- package/template/config/ai_logging.yaml +0 -129
- package/template/config/auto_checkpoint.yaml +0 -189
- package/template/config/context.yaml +0 -78
- package/template/config/epic_cycles.yaml +0 -203
- package/template/config/git.yaml +0 -185
- package/template/config/handoff_intelligence.yaml +0 -401
- package/template/config/implementation_order.yaml +0 -376
- package/template/config/mcp_fallbacks.yaml +0 -252
- package/template/config/memory_integration.yaml +0 -200
- package/template/config/model_enforcement.yaml +0 -141
- package/template/config/models.yaml +0 -242
- package/template/config/output_validation.yaml +0 -352
- package/template/config/pipeline.yaml +0 -441
- package/template/config/pipeline_forking.yaml +0 -236
- package/template/config/qa_logging.yaml +0 -166
- package/template/config/requirements_refinement.yaml +0 -350
- package/template/config/smart_rollback.yaml +0 -209
- package/template/config/stage_personas.yaml +0 -354
- package/template/config/ui-ux.yaml +0 -293
- package/template/config/workflow.yaml +0 -54
- package/template/scripts/ai-benchmark.sh +0 -272
- package/template/scripts/codex-wrapper.sh +0 -97
- package/template/scripts/config-manager.sh +0 -350
- package/template/scripts/context-manager.sh +0 -579
- package/template/scripts/create-checkpoint.sh +0 -116
- package/template/scripts/epic-cycle.sh +0 -421
- package/template/scripts/gemini-wrapper.sh +0 -96
- package/template/scripts/goto-stage.sh +0 -264
- package/template/scripts/init-project.sh +0 -109
- package/template/scripts/list-stages.sh +0 -245
- package/template/scripts/moodboard-manager.sh +0 -458
- package/template/scripts/next-stage.sh +0 -360
- package/template/scripts/output-validate.sh +0 -12
- package/template/scripts/pipeline-fork.sh +0 -293
- package/template/scripts/pre-run-check.sh +0 -361
- package/template/scripts/requirements-refine.sh +0 -369
- package/template/scripts/restore-checkpoint.sh +0 -247
- package/template/scripts/run-stage.sh +0 -139
- package/template/scripts/show-status.sh +0 -185
- package/template/scripts/smart-handoff.sh +0 -254
- package/template/stages/01-brainstorm/config.yaml +0 -92
- package/template/stages/02-research/config.yaml +0 -68
- package/template/stages/03-planning/config.yaml +0 -64
- package/template/stages/04-ui-ux/config.yaml +0 -57
- package/template/stages/05-task-management/config.yaml +0 -81
- package/template/stages/06-implementation/config.yaml +0 -78
- package/template/stages/07-refactoring/config.yaml +0 -68
- package/template/stages/08-qa/config.yaml +0 -56
- package/template/stages/09-testing/config.yaml +0 -65
- 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 |
|
|
150
|
-
|
|
151
|
-
|
|
|
152
|
-
|
|
|
153
|
-
|
|
|
154
|
-
|
|
|
155
|
-
|
|
|
156
|
-
|
|
|
157
|
-
|
|
|
158
|
-
|
|
|
159
|
-
|
|
|
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 |
|
|
164
|
-
|
|
165
|
-
|
|
|
166
|
-
|
|
|
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 |
|
|
171
|
-
|
|
172
|
-
|
|
|
173
|
-
|
|
|
174
|
-
|
|
|
175
|
-
|
|
|
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 |
|
|
180
|
-
|
|
181
|
-
|
|
|
182
|
-
|
|
|
183
|
-
|
|
|
184
|
-
|
|
|
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 |
|
|
189
|
-
|
|
190
|
-
| 01-brainstorm |
|
|
191
|
-
| 02-research |
|
|
192
|
-
| 03-planning |
|
|
193
|
-
| 04-ui-ux |
|
|
194
|
-
| 05-task-management |
|
|
195
|
-
| 06-implementation |
|
|
196
|
-
| 07-refactoring |
|
|
197
|
-
| 08-qa |
|
|
198
|
-
| 09-testing |
|
|
199
|
-
| 10-deployment |
|
|
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
|
|
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: "
|
|
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
|
|
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 (
|
|
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
|
-
│ ├──
|
|
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
|
-
│
|
|
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
|
-
|
|
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 >=
|
|
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
|
-
|
|
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
|
-
#
|
|
340
|
-
|
|
313
|
+
# Test locally
|
|
314
|
+
node bin/create.js test-project
|
|
341
315
|
```
|
|
342
316
|
|
|
343
|
-
###
|
|
317
|
+
### Repository Structure
|
|
344
318
|
|
|
345
319
|
```
|
|
346
320
|
claude-symphony/
|
|
347
|
-
├──
|
|
348
|
-
│
|
|
349
|
-
|
|
350
|
-
│
|
|
351
|
-
│ │
|
|
352
|
-
│ │
|
|
353
|
-
│ │
|
|
354
|
-
│
|
|
355
|
-
│
|
|
356
|
-
│ ├──
|
|
357
|
-
│
|
|
358
|
-
│
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
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
|