claude-symphony 0.4.1 → 0.5.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 +72 -25
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ claude-symphony is a 10-stage software development workflow pipeline that orches
|
|
|
15
15
|
|
|
16
16
|
### Key Features
|
|
17
17
|
|
|
18
|
-
- **Sub-Agent System (NEW in v0.
|
|
18
|
+
- **Sub-Agent System (NEW in v0.4.x)**: Specialized agents run in isolated contexts (0% main session usage), achieving 100-120% cumulative context savings
|
|
19
19
|
- **10-Stage Pipeline**: Complete development cycle from brainstorming to deployment
|
|
20
20
|
- **Multi-AI Orchestration**: Intelligent collaboration between Gemini, Claude, and Codex
|
|
21
21
|
- **Smart HANDOFF System**: Automatic context extraction and semantic compression
|
|
@@ -31,13 +31,13 @@ claude-symphony is a 10-stage software development workflow pipeline that orches
|
|
|
31
31
|
|-------|------|----------|------|
|
|
32
32
|
| 01 | Brainstorming | Gemini + Claude | YOLO |
|
|
33
33
|
| 02 | Research | Claude | Plan Mode |
|
|
34
|
-
| 03 | Planning | Gemini | Plan Mode |
|
|
35
|
-
| 04 | UI/UX Planning | Gemini | Plan Mode |
|
|
34
|
+
| 03 | Planning | Gemini + Claude | Plan Mode |
|
|
35
|
+
| 04 | UI/UX Planning | Gemini + Claude | Plan Mode |
|
|
36
36
|
| 05 | Task Management | Claude | Plan Mode |
|
|
37
37
|
| 06 | Implementation | Claude | Plan + Sandbox |
|
|
38
|
-
| 07 | Refactoring | Codex | Deep Dive |
|
|
38
|
+
| 07 | Refactoring | Codex + Claude | Deep Dive |
|
|
39
39
|
| 08 | QA | Claude | Plan + Sandbox |
|
|
40
|
-
| 09 | Testing & E2E | Codex | Sandbox + Playwright |
|
|
40
|
+
| 09 | Testing & E2E | Codex + Claude | Sandbox + Playwright |
|
|
41
41
|
| 10 | CI/CD & Deployment | Claude | Headless |
|
|
42
42
|
|
|
43
43
|
## Quick Start
|
|
@@ -58,7 +58,7 @@ cd my-project
|
|
|
58
58
|
|
|
59
59
|
claude-symphony features a sub-agent system where specialized agents execute tasks in isolated contexts, preserving your main session's context window.
|
|
60
60
|
|
|
61
|
-
### Tier 1 Agents (
|
|
61
|
+
### Tier 1 Agents (Implemented in v0.4.x)
|
|
62
62
|
|
|
63
63
|
| Agent | Purpose | Execution Time | Context Usage |
|
|
64
64
|
|-------|---------|----------------|---------------|
|
|
@@ -68,6 +68,26 @@ claude-symphony features a sub-agent system where specialized agents execute tas
|
|
|
68
68
|
| **architecture-review-agent** | Detects circular dependencies and architectural issues | ~40s | 0% |
|
|
69
69
|
| **research-analysis-agent** | Cross-references research outputs, detects contradictions | ~45s | 0% |
|
|
70
70
|
|
|
71
|
+
### Tier 2 Agents (Structure Only)
|
|
72
|
+
|
|
73
|
+
| Agent | Purpose | Status |
|
|
74
|
+
|-------|---------|--------|
|
|
75
|
+
| **qa-analysis-agent** | QA analysis and defect detection | Structure defined |
|
|
76
|
+
| **test-execution-agent** | Test execution orchestration | Structure defined |
|
|
77
|
+
| **checkpoint-manager-agent** | Checkpoint lifecycle management | Structure defined |
|
|
78
|
+
| **benchmark-analyzer-agent** | Performance benchmark analysis | Structure defined |
|
|
79
|
+
|
|
80
|
+
### Tier 3 Agents (Structure Only)
|
|
81
|
+
|
|
82
|
+
| Agent | Purpose | Status |
|
|
83
|
+
|-------|---------|--------|
|
|
84
|
+
| **requirements-validation-agent** | Requirements completeness validation | Structure defined |
|
|
85
|
+
| **task-decomposition-agent** | Task breakdown and estimation | Structure defined |
|
|
86
|
+
| **moodboard-analysis-agent** | UI/UX moodboard analysis | Structure defined |
|
|
87
|
+
| **cicd-validation-agent** | CI/CD pipeline validation | Structure defined |
|
|
88
|
+
| **smart-rollback-agent** | Intelligent rollback decisions | Structure defined |
|
|
89
|
+
| **refactoring-analysis-agent** | Code refactoring analysis | Structure defined |
|
|
90
|
+
|
|
71
91
|
### Benefits
|
|
72
92
|
|
|
73
93
|
- **Context Preservation**: 0% main session usage (agents run separately)
|
|
@@ -77,9 +97,9 @@ claude-symphony features a sub-agent system where specialized agents execute tas
|
|
|
77
97
|
|
|
78
98
|
### Documentation
|
|
79
99
|
|
|
80
|
-
-
|
|
81
|
-
-
|
|
82
|
-
-
|
|
100
|
+
- Agent definitions: `template/.claude/agents/` (15 agents)
|
|
101
|
+
- End-user guide: `template/docs/`
|
|
102
|
+
- Changelog: `CHANGELOG.md`
|
|
83
103
|
|
|
84
104
|
## Context Management
|
|
85
105
|
|
|
@@ -118,6 +138,8 @@ claude-symphony includes automatic context management to ensure continuous workf
|
|
|
118
138
|
| `.claude/hooks/stop.sh` | Auto-trigger after response |
|
|
119
139
|
| `state/context/` | Auto-saved snapshots |
|
|
120
140
|
| `state/handoffs/` | HANDOFF archive |
|
|
141
|
+
| `state/checkpoints/` | Checkpoint storage |
|
|
142
|
+
| `state/collaborations/` | AI collaboration results |
|
|
121
143
|
|
|
122
144
|
## Commands
|
|
123
145
|
|
|
@@ -126,19 +148,23 @@ claude-symphony includes automatic context management to ensure continuous workf
|
|
|
126
148
|
| Command | Description |
|
|
127
149
|
|---------|-------------|
|
|
128
150
|
| `claude-symphony init` | Initialize a new project |
|
|
151
|
+
| `claude-symphony create` | Create project from template |
|
|
152
|
+
| `claude-symphony stage` | Stage management |
|
|
129
153
|
| `claude-symphony status` | Show pipeline status |
|
|
154
|
+
| `claude-symphony validate` | Run output validation |
|
|
155
|
+
| `claude-symphony checkpoint` | Create/manage checkpoints |
|
|
130
156
|
|
|
131
157
|
### Core Slash Commands
|
|
132
158
|
|
|
133
|
-
|
|
|
134
|
-
|
|
135
|
-
| `/status
|
|
136
|
-
|
|
|
137
|
-
|
|
|
138
|
-
|
|
|
139
|
-
|
|
|
159
|
+
| Category | Commands |
|
|
160
|
+
|----------|---------|
|
|
161
|
+
| **Pipeline** | `/status`, `/next`, `/handoff`, `/checkpoint`, `/context`, `/validate`, `/restore` |
|
|
162
|
+
| **Multi-AI** | `/collaborate`, `/synthesize`, `/benchmark`, `/fork` |
|
|
163
|
+
| **Stage Shortcuts** | `/brainstorm`, `/research`, `/planning`, `/ui-ux`, `/tasks`, `/implement`, `/refactor`, `/qa`, `/test`, `/deploy` |
|
|
164
|
+
| **Agent** | `/arch-review`, `/qa-analyze` |
|
|
165
|
+
| **Configuration** | `/config`, `/goto`, `/init-project` |
|
|
140
166
|
|
|
141
|
-
See [template/docs/commands.md](template/docs/commands.md) for the complete command reference.
|
|
167
|
+
See [template/docs/commands.md](template/docs/commands.md) for the complete command reference (34 commands).
|
|
142
168
|
|
|
143
169
|
---
|
|
144
170
|
|
|
@@ -172,16 +198,32 @@ node dist/cli/index.js init test-project
|
|
|
172
198
|
```
|
|
173
199
|
claude-symphony/
|
|
174
200
|
├── src/ # Framework source code
|
|
175
|
-
│
|
|
201
|
+
│ ├── cli/ # CLI implementation (commands, utils)
|
|
202
|
+
│ ├── core/ # Core modules
|
|
203
|
+
│ │ ├── agents/ # Agent system (spawner, registry, types)
|
|
204
|
+
│ │ ├── ai/ # AI orchestration
|
|
205
|
+
│ │ ├── config/ # Config loader/validation
|
|
206
|
+
│ │ ├── pipeline/ # Pipeline engine
|
|
207
|
+
│ │ └── state/ # State management
|
|
208
|
+
│ ├── hooks/ # Lifecycle hooks
|
|
209
|
+
│ ├── integrations/ # External AI integrations
|
|
210
|
+
│ ├── types/ # Type definitions
|
|
211
|
+
│ └── utils/ # Utilities
|
|
212
|
+
├── test/ # Test suite
|
|
213
|
+
│ ├── unit/ # Unit tests
|
|
214
|
+
│ ├── integration/ # Integration tests
|
|
215
|
+
│ ├── helpers/ # Test helpers
|
|
216
|
+
│ └── fixtures/ # Test fixtures
|
|
176
217
|
├── dist/ # Compiled output
|
|
177
218
|
├── template/ # Project template (copied to user projects)
|
|
178
219
|
│ ├── .claude/ # Claude Code config
|
|
179
|
-
│ │ ├── commands/ # Slash commands (
|
|
180
|
-
│ │ ├── hooks/ # Lifecycle hooks (
|
|
181
|
-
│ │
|
|
220
|
+
│ │ ├── commands/ # Slash commands (34)
|
|
221
|
+
│ │ ├── hooks/ # Lifecycle hooks (13 files)
|
|
222
|
+
│ │ ├── skills/ # AI skills (8)
|
|
223
|
+
│ │ └── agents/ # Sub-agent definitions (15)
|
|
182
224
|
│ ├── scripts/ # Runtime scripts
|
|
183
225
|
│ ├── stages/ # 10-stage pipeline
|
|
184
|
-
│ ├── config/ # Configuration files (
|
|
226
|
+
│ ├── config/ # Configuration files (27)
|
|
185
227
|
│ ├── state/ # State management
|
|
186
228
|
│ ├── docs/ # End-user documentation
|
|
187
229
|
│ └── CLAUDE.md # Main AI instructions
|
|
@@ -190,7 +232,6 @@ claude-symphony/
|
|
|
190
232
|
│ ├── dev/ # Framework development
|
|
191
233
|
│ ├── test/ # Test scripts
|
|
192
234
|
│ └── user/ # End-user runtime scripts
|
|
193
|
-
├── docs/ # Developer documentation
|
|
194
235
|
└── assets/ # Images and assets
|
|
195
236
|
```
|
|
196
237
|
|
|
@@ -203,13 +244,19 @@ claude-symphony/
|
|
|
203
244
|
| `pnpm run typecheck` | Type checking |
|
|
204
245
|
| `pnpm run lint` | Lint source |
|
|
205
246
|
| `pnpm run test` | Run tests |
|
|
247
|
+
| `pnpm run test:watch` | Run tests in watch mode |
|
|
248
|
+
| `pnpm run test:coverage` | Run tests with coverage |
|
|
249
|
+
| `pnpm run test:pipeline` | Run pipeline tests |
|
|
250
|
+
| `pnpm run benchmark` | Run agent benchmarks |
|
|
251
|
+
| `pnpm run clean` | Clean build output |
|
|
206
252
|
|
|
207
253
|
### Testing
|
|
208
254
|
|
|
209
|
-
#### Automated Tests
|
|
255
|
+
#### Automated Tests (Vitest)
|
|
210
256
|
- **109 tests** covering core infrastructure and agent system
|
|
211
257
|
- **5 Tier 1 agents** with fallback verification
|
|
212
258
|
- **Mock utilities** for Task tool simulation
|
|
259
|
+
- **Framework**: Vitest with @vitest/coverage-v8
|
|
213
260
|
|
|
214
261
|
```bash
|
|
215
262
|
# Run all tests
|
|
@@ -236,7 +283,7 @@ pnpm run benchmark
|
|
|
236
283
|
```
|
|
237
284
|
|
|
238
285
|
#### Manual E2E Testing
|
|
239
|
-
- Full Task tool integration
|
|
286
|
+
- Full Task tool integration verified across all Tier 1 agents
|
|
240
287
|
- Average execution: 31s (with actual Task tool)
|
|
241
288
|
- Success rate: 100% across all Tier 1 agents
|
|
242
289
|
|