claude-symphony 0.2.2 → 0.2.5
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 +19 -22
- package/dist/cli/index.js +334 -683
- package/dist/cli/index.js.map +1 -1
- package/package.json +1 -1
- package/scripts/memory-relay/orchestrator/claude-symphony-play +6 -6
- package/scripts/memory-relay/orchestrator/claude-wrapper.sh +1 -1
- package/scripts/memory-relay/orchestrator/orchestrator.sh +11 -9
- package/scripts/memory-relay/orchestrator/tmux-startup.sh +7 -7
package/README.md
CHANGED
|
@@ -147,23 +147,20 @@ claude-symphony play:status
|
|
|
147
147
|
|
|
148
148
|
# View logs
|
|
149
149
|
claude-symphony play:logs -f
|
|
150
|
-
|
|
151
|
-
# Stop orchestrator
|
|
152
|
-
claude-symphony play:stop
|
|
153
150
|
```
|
|
154
151
|
|
|
155
152
|
### Session Layout
|
|
156
153
|
|
|
157
154
|
```
|
|
158
|
-
|
|
159
|
-
|
|
|
160
|
-
|
|
|
161
|
-
|
|
|
162
|
-
|
|
|
163
|
-
|
|
155
|
+
+------------------+------------------------+
|
|
156
|
+
| | |
|
|
157
|
+
| Context Manager | Claude (50%) |
|
|
158
|
+
| (50%) | |
|
|
159
|
+
| | |
|
|
160
|
+
+------------------+------------------------+
|
|
164
161
|
```
|
|
165
162
|
|
|
166
|
-
- **
|
|
163
|
+
- **Context Manager** (left): Monitors context and handles session handoffs
|
|
167
164
|
- **Claude** (right): Main workspace for development
|
|
168
165
|
|
|
169
166
|
## Commands
|
|
@@ -175,9 +172,8 @@ claude-symphony play:stop
|
|
|
175
172
|
| `claude-symphony init` | Initialize a new project |
|
|
176
173
|
| `claude-symphony play` | Start Encore Mode session |
|
|
177
174
|
| `claude-symphony play --auto` | Start with bypass mode |
|
|
178
|
-
| `claude-symphony play:status` | Show
|
|
175
|
+
| `claude-symphony play:status` | Show Context Manager status |
|
|
179
176
|
| `claude-symphony play:logs` | View relay logs |
|
|
180
|
-
| `claude-symphony play:stop` | Stop orchestrator |
|
|
181
177
|
| `claude-symphony status` | Show pipeline status |
|
|
182
178
|
| `claude-symphony stages` | List all stages |
|
|
183
179
|
|
|
@@ -276,7 +272,7 @@ Each project created with `npx claude-symphony` is fully self-contained:
|
|
|
276
272
|
```
|
|
277
273
|
my-project/ # PROJECT_ROOT
|
|
278
274
|
├── .claude/ # Claude Code configuration
|
|
279
|
-
│ ├── commands/ # Slash commands (
|
|
275
|
+
│ ├── commands/ # Slash commands (30 commands)
|
|
280
276
|
│ │ ├── epic.md # /epic - Epic cycle management
|
|
281
277
|
│ │ ├── moodboard.md # /moodboard - Design collection
|
|
282
278
|
│ │ ├── refine.md # /refine - Requirements refinement
|
|
@@ -302,7 +298,7 @@ my-project/ # PROJECT_ROOT
|
|
|
302
298
|
│ │ └── HANDOFF.md
|
|
303
299
|
│ ├── 02-research/
|
|
304
300
|
│ └── ... (10 stages total)
|
|
305
|
-
├── config/ # Pipeline configuration (
|
|
301
|
+
├── config/ # Pipeline configuration (25 files)
|
|
306
302
|
│ ├── pipeline.yaml # Core pipeline settings
|
|
307
303
|
│ ├── context.yaml # Context management
|
|
308
304
|
│ ├── epic_cycles.yaml # Epic cycle configuration
|
|
@@ -316,13 +312,9 @@ my-project/ # PROJECT_ROOT
|
|
|
316
312
|
│ ├── progress.json # Pipeline progress
|
|
317
313
|
│ ├── checkpoints/ # Recovery points
|
|
318
314
|
│ └── context/ # Context snapshots
|
|
319
|
-
├── scripts/ # Helper scripts
|
|
320
|
-
│ ├──
|
|
321
|
-
│
|
|
322
|
-
│ ├── moodboard-manager.sh # Moodboard collection
|
|
323
|
-
│ ├── requirements-refine.sh # Requirements refinement
|
|
324
|
-
│ ├── ai-benchmark.sh # AI benchmarking
|
|
325
|
-
│ └── ...
|
|
315
|
+
├── scripts/ # Helper scripts
|
|
316
|
+
│ ├── setup-stitch-mcp.sh # Stitch MCP setup
|
|
317
|
+
│ └── stitch-quota-monitor.sh # Quota monitoring
|
|
326
318
|
├── CLAUDE.md # Main AI instructions
|
|
327
319
|
└── src/ # Source code (from stage 06)
|
|
328
320
|
```
|
|
@@ -358,8 +350,13 @@ cd claude-symphony
|
|
|
358
350
|
# Install dependencies
|
|
359
351
|
npm install
|
|
360
352
|
|
|
353
|
+
# Build
|
|
354
|
+
npm run build
|
|
355
|
+
|
|
361
356
|
# Test locally
|
|
362
|
-
|
|
357
|
+
npx . init test-project
|
|
358
|
+
# Or directly
|
|
359
|
+
node dist/cli/index.js init test-project
|
|
363
360
|
```
|
|
364
361
|
|
|
365
362
|
### Repository Structure
|