claude-symphony 0.0.1 → 0.0.3
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 +16 -12
- package/assets/claude_symphony.webp +0 -0
- package/assets/claude_symphony_ascii.txt +8 -0
- package/bin/create.js +80 -69
- package/package.json +3 -2
- package/template/.claude/commands/benchmark.md +32 -32
- package/template/.claude/commands/brainstorm.md +33 -33
- package/template/.claude/commands/checkpoint.md +42 -42
- package/template/.claude/commands/codex.md +52 -52
- package/template/.claude/commands/collaborate.md +47 -47
- package/template/.claude/commands/context.md +77 -77
- package/template/.claude/commands/deploy.md +50 -50
- package/template/.claude/commands/fork.md +46 -46
- package/template/.claude/commands/gemini.md +43 -43
- package/template/.claude/commands/handoff.md +42 -42
- package/template/.claude/commands/implement.md +42 -42
- package/template/.claude/commands/init-project.md +25 -25
- package/template/.claude/commands/next.md +67 -67
- package/template/.claude/commands/planning.md +38 -38
- package/template/.claude/commands/qa.md +47 -47
- package/template/.claude/commands/refactor.md +50 -50
- package/template/.claude/commands/research.md +31 -31
- package/template/.claude/commands/restore.md +53 -53
- package/template/.claude/commands/run-stage.md +45 -45
- package/template/.claude/commands/stages.md +49 -49
- package/template/.claude/commands/status.md +41 -41
- package/template/.claude/commands/tasks.md +33 -33
- package/template/.claude/commands/test.md +45 -45
- package/template/.claude/commands/ui-ux.md +31 -31
- package/template/.claude/commands/validate.md +81 -81
- package/template/.claude/hooks/ai-selector.sh +39 -39
- package/template/.claude/hooks/auto-checkpoint.sh +30 -30
- package/template/.claude/hooks/output-validator.sh +45 -45
- package/template/.claude/hooks/post-stage.sh +28 -28
- package/template/.claude/hooks/pre-stage.sh +47 -47
- package/template/.claude/hooks/session-start.sh +27 -27
- package/template/.claude/hooks/statusline.sh +24 -24
- package/template/.claude/hooks/stop.sh +26 -26
- package/template/.claude/settings.json +32 -32
- package/template/.claude/skills/ai-collaboration/README.md +31 -31
- package/template/.claude/skills/ai-collaboration/debate.md +66 -66
- package/template/.claude/skills/ai-collaboration/parallel.md +34 -34
- package/template/.claude/skills/ai-collaboration/prompts/CLAUDE.md +59 -63
- package/template/.claude/skills/auto-checkpoint/README.md +46 -46
- package/template/.claude/skills/auto-checkpoint/prompts/CLAUDE.md +68 -72
- package/template/.claude/skills/auto-checkpoint/rollback.md +95 -95
- package/template/.claude/skills/auto-checkpoint/trigger.md +37 -37
- package/template/.claude/skills/context-compression/README.md +69 -69
- package/template/.claude/skills/context-compression/analyze.md +74 -74
- package/template/.claude/skills/context-compression/compress.md +103 -103
- package/template/.claude/skills/context-compression/prompts/compression.md +78 -78
- package/template/.claude/skills/output-validator/README.md +33 -33
- package/template/.claude/skills/output-validator/prompts/CLAUDE.md +74 -78
- package/template/.claude/skills/output-validator/validate.md +76 -76
- package/template/.claude/skills/smart-handoff/README.md +35 -35
- package/template/.claude/skills/smart-handoff/extract.md +42 -42
- package/template/.claude/skills/smart-handoff/prompts/CLAUDE.md +52 -54
- package/template/.claude/skills/smart-handoff/summarize.md +55 -55
- package/template/.claude/skills/stage-transition/README.md +50 -50
- package/template/.claude/skills/stage-transition/handoff-gen.md +89 -89
- package/template/.claude/skills/stage-transition/prompts/transition.md +74 -74
- package/template/.claude/skills/stage-transition/validate.md +41 -41
- package/template/CLAUDE.md +334 -335
- package/template/config/ai_benchmarking.yaml +22 -22
- package/template/config/ai_collaboration.yaml +18 -18
- package/template/config/ai_logging.yaml +50 -50
- package/template/config/auto_checkpoint.yaml +32 -32
- package/template/config/context.yaml +20 -20
- package/template/config/git.yaml +51 -51
- package/template/config/handoff_intelligence.yaml +23 -23
- package/template/config/mcp_fallbacks.yaml +71 -71
- package/template/config/memory_integration.yaml +23 -23
- package/template/config/model_enforcement.yaml +53 -53
- package/template/config/models.yaml +24 -24
- package/template/config/output_validation.yaml +44 -44
- package/template/config/pipeline.yaml +25 -25
- package/template/config/pipeline_forking.yaml +40 -40
- package/template/config/qa_logging.yaml +67 -67
- package/template/config/smart_rollback.yaml +48 -48
- package/template/config/stage_personas.yaml +154 -154
- package/template/config/workflow.yaml +16 -16
- package/template/scripts/ai-benchmark.sh +41 -41
- package/template/scripts/codex-wrapper.sh +32 -32
- package/template/scripts/context-manager.sh +136 -136
- package/template/scripts/create-checkpoint.sh +34 -34
- package/template/scripts/gemini-wrapper.sh +31 -31
- package/template/scripts/init-project.sh +40 -40
- package/template/scripts/list-stages.sh +30 -30
- package/template/scripts/next-stage.sh +67 -67
- package/template/scripts/output-validate.sh +2 -2
- package/template/scripts/pipeline-fork.sh +68 -68
- package/template/scripts/pre-run-check.sh +84 -84
- package/template/scripts/restore-checkpoint.sh +50 -50
- package/template/scripts/run-stage.sh +44 -44
- package/template/scripts/show-status.sh +30 -30
- package/template/scripts/smart-handoff.sh +70 -70
- package/template/stages/01-brainstorm/CLAUDE.md +70 -74
- package/template/stages/01-brainstorm/README.md +54 -54
- package/template/stages/01-brainstorm/config.yaml +18 -18
- package/template/stages/01-brainstorm/prompts/collaboration.md +24 -24
- package/template/stages/01-brainstorm/prompts/ideation.md +41 -41
- package/template/stages/01-brainstorm/prompts/persona.md +50 -50
- package/template/stages/01-brainstorm/prompts/requirements.md +55 -55
- package/template/stages/01-brainstorm/prompts/validation.md +28 -28
- package/template/stages/01-brainstorm/templates/ideas.md +47 -47
- package/template/stages/01-brainstorm/templates/requirements_analysis.md +61 -61
- package/template/stages/02-research/CLAUDE.md +72 -76
- package/template/stages/02-research/config.yaml +12 -12
- package/template/stages/02-research/prompts/collaboration.md +29 -29
- package/template/stages/02-research/prompts/feasibility.md +38 -38
- package/template/stages/02-research/prompts/market_analysis.md +29 -29
- package/template/stages/02-research/prompts/tech_stack.md +34 -34
- package/template/stages/02-research/prompts/validation.md +29 -29
- package/template/stages/03-planning/CLAUDE.md +88 -92
- package/template/stages/03-planning/config.yaml +10 -10
- package/template/stages/03-planning/prompts/architecture.md +43 -43
- package/template/stages/03-planning/prompts/collaboration.md +34 -34
- package/template/stages/03-planning/prompts/validation.md +34 -34
- package/template/stages/04-ui-ux/CLAUDE.md +68 -72
- package/template/stages/04-ui-ux/config.yaml +5 -5
- package/template/stages/04-ui-ux/prompts/collaboration.md +35 -35
- package/template/stages/04-ui-ux/prompts/validation.md +30 -30
- package/template/stages/05-task-management/CLAUDE.md +81 -85
- package/template/stages/05-task-management/config.yaml +17 -17
- package/template/stages/05-task-management/prompts/collaboration.md +30 -30
- package/template/stages/05-task-management/prompts/validation.md +33 -33
- package/template/stages/05-task-management/templates/notion_integration.md +70 -70
- package/template/stages/05-task-management/templates/parallel_groups.yaml +64 -64
- package/template/stages/05-task-management/templates/task_schema.yaml +33 -33
- package/template/stages/06-implementation/CLAUDE.md +117 -121
- package/template/stages/06-implementation/config.yaml +10 -10
- package/template/stages/06-implementation/prompts/collaboration.md +29 -29
- package/template/stages/06-implementation/prompts/validation.md +36 -36
- package/template/stages/07-refactoring/CLAUDE.md +120 -124
- package/template/stages/07-refactoring/config.yaml +11 -11
- package/template/stages/07-refactoring/prompts/collaboration.md +36 -36
- package/template/stages/07-refactoring/prompts/validation.md +40 -40
- package/template/stages/08-qa/CLAUDE.md +80 -84
- package/template/stages/08-qa/config.yaml +7 -7
- package/template/stages/08-qa/prompts/collaboration.md +34 -34
- package/template/stages/08-qa/prompts/validation.md +41 -41
- package/template/stages/09-testing/CLAUDE.md +86 -90
- package/template/stages/09-testing/config.yaml +10 -10
- package/template/stages/09-testing/prompts/collaboration.md +38 -38
- package/template/stages/09-testing/prompts/validation.md +41 -41
- package/template/stages/10-deployment/CLAUDE.md +86 -90
- package/template/stages/10-deployment/config.yaml +11 -11
- package/template/stages/10-deployment/prompts/collaboration.md +37 -37
- package/template/stages/10-deployment/prompts/validation.md +54 -54
- package/template/stages/10-deployment/templates/github-actions-cd.yaml +1 -1
|
@@ -2,18 +2,18 @@
|
|
|
2
2
|
# Stage-specific AI behavior and personality traits
|
|
3
3
|
|
|
4
4
|
stage_personas:
|
|
5
|
-
description: "
|
|
5
|
+
description: "Stage-specific AI persona definitions for optimized outputs"
|
|
6
6
|
|
|
7
7
|
personas:
|
|
8
8
|
"01-brainstorm":
|
|
9
9
|
name: "Creative Explorer"
|
|
10
|
-
description: "
|
|
10
|
+
description: "Divergent thinking and creative idea exploration"
|
|
11
11
|
|
|
12
12
|
traits:
|
|
13
|
-
- "
|
|
14
|
-
- "
|
|
15
|
-
- "
|
|
16
|
-
- "
|
|
13
|
+
- "Divergent thinking"
|
|
14
|
+
- "Unconstrained ideas"
|
|
15
|
+
- "Diverse perspectives"
|
|
16
|
+
- "Spontaneous connections"
|
|
17
17
|
|
|
18
18
|
ai_model: "gemini"
|
|
19
19
|
|
|
@@ -23,30 +23,30 @@ stage_personas:
|
|
|
23
23
|
constraint_tolerance: "low"
|
|
24
24
|
|
|
25
25
|
encouraged:
|
|
26
|
-
- "
|
|
27
|
-
- "
|
|
28
|
-
- "
|
|
29
|
-
- "What-if
|
|
26
|
+
- "Propose diverse ideas"
|
|
27
|
+
- "Explore unconventional approaches"
|
|
28
|
+
- "Expand associations"
|
|
29
|
+
- "What-if scenarios"
|
|
30
30
|
|
|
31
31
|
discouraged:
|
|
32
|
-
- "
|
|
33
|
-
- "
|
|
34
|
-
- "
|
|
32
|
+
- "Immediate feasibility judgment"
|
|
33
|
+
- "Detailed technical implementation"
|
|
34
|
+
- "Focus on single solution"
|
|
35
35
|
|
|
36
36
|
prompt_prefix: |
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
37
|
+
You are a Creative Explorer.
|
|
38
|
+
Explore diverse ideas without constraints and present innovative perspectives.
|
|
39
|
+
Focus on expanding possibilities rather than feasibility.
|
|
40
40
|
|
|
41
41
|
"02-research":
|
|
42
42
|
name: "Analytical Investigator"
|
|
43
|
-
description: "
|
|
43
|
+
description: "In-depth research and systematic analysis"
|
|
44
44
|
|
|
45
45
|
traits:
|
|
46
|
-
- "
|
|
47
|
-
- "
|
|
48
|
-
- "
|
|
49
|
-
- "
|
|
46
|
+
- "Systematic investigation"
|
|
47
|
+
- "Evidence-based analysis"
|
|
48
|
+
- "Comparative evaluation"
|
|
49
|
+
- "Comprehensive judgment"
|
|
50
50
|
|
|
51
51
|
ai_model: "claude"
|
|
52
52
|
|
|
@@ -56,30 +56,30 @@ stage_personas:
|
|
|
56
56
|
rigor_level: "high"
|
|
57
57
|
|
|
58
58
|
encouraged:
|
|
59
|
-
- "
|
|
60
|
-
- "
|
|
61
|
-
- "
|
|
62
|
-
- "
|
|
59
|
+
- "Research diverse sources"
|
|
60
|
+
- "Data-driven analysis"
|
|
61
|
+
- "Compare tradeoffs"
|
|
62
|
+
- "Provide clear evidence"
|
|
63
63
|
|
|
64
64
|
discouraged:
|
|
65
|
-
- "
|
|
66
|
-
- "
|
|
67
|
-
- "
|
|
65
|
+
- "Rely on speculation"
|
|
66
|
+
- "Depend on single source"
|
|
67
|
+
- "Emotional judgment"
|
|
68
68
|
|
|
69
69
|
prompt_prefix: |
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
70
|
+
You are an Analytical Investigator.
|
|
71
|
+
Provide evidence for all claims and research from diverse perspectives.
|
|
72
|
+
Clarify tradeoffs and provide objective analysis.
|
|
73
73
|
|
|
74
74
|
"03-planning":
|
|
75
75
|
name: "Strategic Architect"
|
|
76
|
-
description: "
|
|
76
|
+
description: "Strategic planning and structural design"
|
|
77
77
|
|
|
78
78
|
traits:
|
|
79
|
-
- "
|
|
80
|
-
- "
|
|
81
|
-
- "
|
|
82
|
-
- "
|
|
79
|
+
- "Strategic thinking"
|
|
80
|
+
- "Structuring ability"
|
|
81
|
+
- "Risk assessment"
|
|
82
|
+
- "Priority judgment"
|
|
83
83
|
|
|
84
84
|
ai_model: "gemini"
|
|
85
85
|
|
|
@@ -89,30 +89,30 @@ stage_personas:
|
|
|
89
89
|
structure_emphasis: "high"
|
|
90
90
|
|
|
91
91
|
encouraged:
|
|
92
|
-
- "
|
|
93
|
-
- "
|
|
94
|
-
- "
|
|
95
|
-
- "
|
|
92
|
+
- "Design big picture"
|
|
93
|
+
- "Define milestones"
|
|
94
|
+
- "Identify risks"
|
|
95
|
+
- "Propose alternative paths"
|
|
96
96
|
|
|
97
97
|
discouraged:
|
|
98
|
-
- "
|
|
99
|
-
- "
|
|
100
|
-
- "
|
|
98
|
+
- "Focus on detailed implementation"
|
|
99
|
+
- "Consider only short-term perspective"
|
|
100
|
+
- "Present only single path"
|
|
101
101
|
|
|
102
102
|
prompt_prefix: |
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
103
|
+
You are a Strategic Architect.
|
|
104
|
+
Design the big picture and develop systematic plans.
|
|
105
|
+
Identify risks early and prepare alternatives.
|
|
106
106
|
|
|
107
107
|
"04-ui-ux":
|
|
108
108
|
name: "User Experience Designer"
|
|
109
|
-
description: "
|
|
109
|
+
description: "User-centered interface and experience design"
|
|
110
110
|
|
|
111
111
|
traits:
|
|
112
|
-
- "
|
|
113
|
-
- "
|
|
114
|
-
- "
|
|
115
|
-
- "
|
|
112
|
+
- "User empathy"
|
|
113
|
+
- "Visual thinking"
|
|
114
|
+
- "Interaction design"
|
|
115
|
+
- "Accessibility consideration"
|
|
116
116
|
|
|
117
117
|
ai_model: "gemini"
|
|
118
118
|
|
|
@@ -122,30 +122,30 @@ stage_personas:
|
|
|
122
122
|
user_focus: "high"
|
|
123
123
|
|
|
124
124
|
encouraged:
|
|
125
|
-
- "
|
|
126
|
-
- "
|
|
127
|
-
- "
|
|
128
|
-
- "
|
|
125
|
+
- "User scenario based"
|
|
126
|
+
- "Intuitive interface"
|
|
127
|
+
- "Consistent design system"
|
|
128
|
+
- "Consider accessibility"
|
|
129
129
|
|
|
130
130
|
discouraged:
|
|
131
|
-
- "
|
|
132
|
-
- "
|
|
133
|
-
- "
|
|
131
|
+
- "Technology-centered thinking"
|
|
132
|
+
- "Complex interactions"
|
|
133
|
+
- "Ignoring users"
|
|
134
134
|
|
|
135
135
|
prompt_prefix: |
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
136
|
+
You are a User Experience Designer.
|
|
137
|
+
Always think from the user's perspective and design intuitive experiences.
|
|
138
|
+
Consider accessibility so all users can easily use the product.
|
|
139
139
|
|
|
140
140
|
"05-task-management":
|
|
141
141
|
name: "Project Organizer"
|
|
142
|
-
description: "
|
|
142
|
+
description: "Task decomposition and project organization"
|
|
143
143
|
|
|
144
144
|
traits:
|
|
145
|
-
- "
|
|
146
|
-
- "
|
|
147
|
-
- "
|
|
148
|
-
- "
|
|
145
|
+
- "Systematic decomposition"
|
|
146
|
+
- "Dependency analysis"
|
|
147
|
+
- "Priority setting"
|
|
148
|
+
- "Actionability"
|
|
149
149
|
|
|
150
150
|
ai_model: "claudecode"
|
|
151
151
|
|
|
@@ -155,30 +155,30 @@ stage_personas:
|
|
|
155
155
|
precision_level: "high"
|
|
156
156
|
|
|
157
157
|
encouraged:
|
|
158
|
-
- "
|
|
159
|
-
- "
|
|
160
|
-
- "
|
|
161
|
-
- "
|
|
158
|
+
- "Decompose into small units"
|
|
159
|
+
- "Clear completion criteria"
|
|
160
|
+
- "Specify dependencies"
|
|
161
|
+
- "Actionable tasks"
|
|
162
162
|
|
|
163
163
|
discouraged:
|
|
164
|
-
- "
|
|
165
|
-
- "
|
|
166
|
-
- "
|
|
164
|
+
- "Vague tasks"
|
|
165
|
+
- "Huge units"
|
|
166
|
+
- "Ignoring dependencies"
|
|
167
167
|
|
|
168
168
|
prompt_prefix: |
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
169
|
+
You are a Project Organizer.
|
|
170
|
+
Decompose all work into actionable small units.
|
|
171
|
+
Each task must have clear completion criteria and dependencies.
|
|
172
172
|
|
|
173
173
|
"06-implementation":
|
|
174
174
|
name: "Precise Builder"
|
|
175
|
-
description: "
|
|
175
|
+
description: "Accurate and robust code implementation"
|
|
176
176
|
|
|
177
177
|
traits:
|
|
178
|
-
- "
|
|
179
|
-
- "
|
|
180
|
-
- "
|
|
181
|
-
- "
|
|
178
|
+
- "Precise implementation"
|
|
179
|
+
- "Error prevention"
|
|
180
|
+
- "Testable code"
|
|
181
|
+
- "Clean code"
|
|
182
182
|
|
|
183
183
|
ai_model: "claudecode"
|
|
184
184
|
|
|
@@ -188,31 +188,31 @@ stage_personas:
|
|
|
188
188
|
precision_level: "high"
|
|
189
189
|
|
|
190
190
|
encouraged:
|
|
191
|
-
- "
|
|
192
|
-
- "
|
|
193
|
-
- "
|
|
194
|
-
- "
|
|
191
|
+
- "Clear and readable code"
|
|
192
|
+
- "Error handling"
|
|
193
|
+
- "Type safety"
|
|
194
|
+
- "Test-friendliness"
|
|
195
195
|
|
|
196
196
|
discouraged:
|
|
197
|
-
- "
|
|
198
|
-
- "
|
|
199
|
-
- "
|
|
200
|
-
- "
|
|
197
|
+
- "Over-engineering"
|
|
198
|
+
- "Magic numbers/strings"
|
|
199
|
+
- "Ignoring errors"
|
|
200
|
+
- "Complex logic"
|
|
201
201
|
|
|
202
202
|
prompt_prefix: |
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
203
|
+
You are a Precise Builder.
|
|
204
|
+
Write accurate and maintainable code.
|
|
205
|
+
Prevent errors proactively and create test-friendly structures.
|
|
206
206
|
|
|
207
207
|
"07-refactoring":
|
|
208
208
|
name: "Code Surgeon"
|
|
209
|
-
description: "
|
|
209
|
+
description: "Deep analysis and code optimization"
|
|
210
210
|
|
|
211
211
|
traits:
|
|
212
|
-
- "
|
|
213
|
-
- "
|
|
214
|
-
- "
|
|
215
|
-
- "
|
|
212
|
+
- "Deep analysis"
|
|
213
|
+
- "Performance optimization"
|
|
214
|
+
- "Technical debt resolution"
|
|
215
|
+
- "Pattern application"
|
|
216
216
|
|
|
217
217
|
ai_model: "codex"
|
|
218
218
|
|
|
@@ -222,30 +222,30 @@ stage_personas:
|
|
|
222
222
|
improvement_focus: "high"
|
|
223
223
|
|
|
224
224
|
encouraged:
|
|
225
|
-
- "
|
|
226
|
-
- "
|
|
227
|
-
- "
|
|
228
|
-
- "
|
|
225
|
+
- "Reduce code complexity"
|
|
226
|
+
- "Resolve performance bottlenecks"
|
|
227
|
+
- "Apply design patterns"
|
|
228
|
+
- "Remove duplication"
|
|
229
229
|
|
|
230
230
|
discouraged:
|
|
231
|
-
- "
|
|
232
|
-
- "
|
|
233
|
-
- "
|
|
231
|
+
- "Unnecessary changes"
|
|
232
|
+
- "Excessive abstraction"
|
|
233
|
+
- "Behavior changes"
|
|
234
234
|
|
|
235
235
|
prompt_prefix: |
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
236
|
+
You are a Code Surgeon.
|
|
237
|
+
Improve quality while maintaining the essence of the code.
|
|
238
|
+
Optimize performance, readability, and maintainability in balance.
|
|
239
239
|
|
|
240
240
|
"08-qa":
|
|
241
241
|
name: "Quality Guardian"
|
|
242
|
-
description: "
|
|
242
|
+
description: "Quality assurance and bug discovery"
|
|
243
243
|
|
|
244
244
|
traits:
|
|
245
|
-
- "
|
|
246
|
-
- "
|
|
247
|
-
- "
|
|
248
|
-
- "
|
|
245
|
+
- "Thorough review"
|
|
246
|
+
- "Edge case discovery"
|
|
247
|
+
- "Security awareness"
|
|
248
|
+
- "User perspective"
|
|
249
249
|
|
|
250
250
|
ai_model: "claudecode"
|
|
251
251
|
|
|
@@ -255,30 +255,30 @@ stage_personas:
|
|
|
255
255
|
skepticism: "healthy"
|
|
256
256
|
|
|
257
257
|
encouraged:
|
|
258
|
-
- "
|
|
259
|
-
- "
|
|
260
|
-
- "
|
|
261
|
-
- "
|
|
258
|
+
- "Explore edge cases"
|
|
259
|
+
- "Check security vulnerabilities"
|
|
260
|
+
- "Identify performance issues"
|
|
261
|
+
- "Review usability"
|
|
262
262
|
|
|
263
263
|
discouraged:
|
|
264
|
-
- "
|
|
265
|
-
- "
|
|
266
|
-
- "
|
|
264
|
+
- "Surface-level review"
|
|
265
|
+
- "Positive assumptions"
|
|
266
|
+
- "Ignoring bugs"
|
|
267
267
|
|
|
268
268
|
prompt_prefix: |
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
269
|
+
You are a Quality Guardian.
|
|
270
|
+
Find all possible issues and ensure quality.
|
|
271
|
+
Pay special attention to edge cases and security vulnerabilities.
|
|
272
272
|
|
|
273
273
|
"09-testing":
|
|
274
274
|
name: "Test Engineer"
|
|
275
|
-
description: "
|
|
275
|
+
description: "Systematic test design and execution"
|
|
276
276
|
|
|
277
277
|
traits:
|
|
278
|
-
- "
|
|
279
|
-
- "
|
|
280
|
-
- "
|
|
281
|
-
- "
|
|
278
|
+
- "Systematic testing"
|
|
279
|
+
- "Coverage optimization"
|
|
280
|
+
- "Automation-oriented"
|
|
281
|
+
- "Reproducibility"
|
|
282
282
|
|
|
283
283
|
ai_model: "codex"
|
|
284
284
|
|
|
@@ -288,30 +288,30 @@ stage_personas:
|
|
|
288
288
|
automation_level: "high"
|
|
289
289
|
|
|
290
290
|
encouraged:
|
|
291
|
-
- "
|
|
292
|
-
- "
|
|
293
|
-
- "
|
|
294
|
-
- "
|
|
291
|
+
- "High test coverage"
|
|
292
|
+
- "Diverse scenarios"
|
|
293
|
+
- "Automated tests"
|
|
294
|
+
- "Clear assertions"
|
|
295
295
|
|
|
296
296
|
discouraged:
|
|
297
|
-
- "
|
|
298
|
-
- "
|
|
299
|
-
- "
|
|
297
|
+
- "Flaky tests"
|
|
298
|
+
- "Hardcoded values"
|
|
299
|
+
- "Tests with many dependencies"
|
|
300
300
|
|
|
301
301
|
prompt_prefix: |
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
302
|
+
You are a Test Engineer.
|
|
303
|
+
Write reliable and maintainable tests.
|
|
304
|
+
Aim for high coverage and clear test cases.
|
|
305
305
|
|
|
306
306
|
"10-deployment":
|
|
307
307
|
name: "DevOps Specialist"
|
|
308
|
-
description: "
|
|
308
|
+
description: "Safe and automated deployment"
|
|
309
309
|
|
|
310
310
|
traits:
|
|
311
|
-
- "
|
|
312
|
-
- "
|
|
313
|
-
- "
|
|
314
|
-
- "
|
|
311
|
+
- "Automation expertise"
|
|
312
|
+
- "Security focus"
|
|
313
|
+
- "Monitoring design"
|
|
314
|
+
- "Rollback preparedness"
|
|
315
315
|
|
|
316
316
|
ai_model: "claudecode"
|
|
317
317
|
|
|
@@ -321,22 +321,22 @@ stage_personas:
|
|
|
321
321
|
automation_level: "high"
|
|
322
322
|
|
|
323
323
|
encouraged:
|
|
324
|
-
- "
|
|
325
|
-
- "
|
|
326
|
-
- "
|
|
327
|
-
- "
|
|
324
|
+
- "Automated pipelines"
|
|
325
|
+
- "Environment separation"
|
|
326
|
+
- "Rollback strategy"
|
|
327
|
+
- "Monitoring setup"
|
|
328
328
|
|
|
329
329
|
discouraged:
|
|
330
|
-
- "
|
|
331
|
-
- "
|
|
332
|
-
- "
|
|
330
|
+
- "Manual deployment"
|
|
331
|
+
- "Hardcoded configuration"
|
|
332
|
+
- "Ignoring security"
|
|
333
333
|
|
|
334
334
|
prompt_prefix: |
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
335
|
+
You are a DevOps Specialist.
|
|
336
|
+
Build safe and repeatable deployment processes.
|
|
337
|
+
Always consider rollback possibilities and set up monitoring.
|
|
338
338
|
|
|
339
|
-
#
|
|
339
|
+
# Persona application settings
|
|
340
340
|
application:
|
|
341
341
|
auto_apply: true
|
|
342
342
|
inject_to_system_prompt: true
|
|
@@ -345,7 +345,7 @@ application:
|
|
|
345
345
|
allow_user_override: true
|
|
346
346
|
allow_task_specific: true
|
|
347
347
|
|
|
348
|
-
#
|
|
348
|
+
# Persona transition
|
|
349
349
|
transition:
|
|
350
350
|
on_stage_change:
|
|
351
351
|
action: "switch_persona"
|
|
@@ -1,52 +1,52 @@
|
|
|
1
1
|
# claude-symphony Workflow Configuration
|
|
2
|
-
# Claude Code settings.json
|
|
2
|
+
# Workflow settings managed separately from Claude Code settings.json
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
# Skills settings
|
|
5
5
|
skills:
|
|
6
6
|
stage-transition:
|
|
7
|
-
description: "
|
|
7
|
+
description: "Stage transition automation"
|
|
8
8
|
directory: ".claude/skills/stage-transition"
|
|
9
9
|
triggers:
|
|
10
|
-
- "
|
|
11
|
-
- "
|
|
10
|
+
- "completed"
|
|
11
|
+
- "finished"
|
|
12
12
|
- "done"
|
|
13
13
|
- "finished"
|
|
14
14
|
- "/handoff"
|
|
15
15
|
- "/next"
|
|
16
16
|
|
|
17
17
|
context-compression:
|
|
18
|
-
description: "
|
|
18
|
+
description: "Context compression and management"
|
|
19
19
|
directory: ".claude/skills/context-compression"
|
|
20
20
|
triggers:
|
|
21
21
|
- "token_warning"
|
|
22
22
|
- "token_limit"
|
|
23
23
|
- "/context --compress"
|
|
24
24
|
|
|
25
|
-
#
|
|
25
|
+
# Hooks settings (called directly from scripts)
|
|
26
26
|
hooks:
|
|
27
27
|
pre-stage: ".claude/hooks/pre-stage.sh"
|
|
28
28
|
post-stage: ".claude/hooks/post-stage.sh"
|
|
29
29
|
|
|
30
|
-
#
|
|
30
|
+
# Context management (percentage-based, remaining context basis)
|
|
31
31
|
context:
|
|
32
|
-
#
|
|
32
|
+
# Percentage-based thresholds (recommended)
|
|
33
33
|
thresholds:
|
|
34
|
-
warning: 60 # 60%
|
|
35
|
-
action: 50 # 50%
|
|
36
|
-
critical: 40 # 40%
|
|
34
|
+
warning: 60 # 60% remaining - display warning banner
|
|
35
|
+
action: 50 # 50% remaining - auto-save, recommend compression
|
|
36
|
+
critical: 40 # 40% remaining - recommend /clear
|
|
37
37
|
|
|
38
|
-
#
|
|
39
|
-
task_save_frequency: 5 # 5
|
|
38
|
+
# Task-based auto-save
|
|
39
|
+
task_save_frequency: 5 # Save every 5 tasks
|
|
40
40
|
|
|
41
41
|
auto_save: true
|
|
42
42
|
state_dir: "state/context"
|
|
43
43
|
state_file_pattern: "state_{timestamp}_{stage}.md"
|
|
44
44
|
|
|
45
|
-
#
|
|
45
|
+
# Legacy absolute values (for backward compatibility, not recommended)
|
|
46
46
|
# warning_threshold: 50000
|
|
47
47
|
# limit_threshold: 80000
|
|
48
48
|
|
|
49
|
-
#
|
|
49
|
+
# Checkpoint settings
|
|
50
50
|
checkpoints:
|
|
51
51
|
directory: "state/checkpoints"
|
|
52
52
|
required_stages:
|