claude-symphony 0.0.5 → 0.0.6
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/bin/create.js +120 -3
- package/package.json +3 -2
- package/template/.claude/settings.json +0 -2
- package/template/.claude/skills/context-compression/README.md +39 -0
- package/template/CLAUDE.md +64 -1
- package/template/config/ai_fallbacks.yaml +130 -0
- package/template/config/implementation.yaml.template +72 -72
- package/template/config/pipeline.yaml +50 -0
- package/template/config/ui-ux.yaml +31 -0
- package/template/scripts/config-manager.sh +350 -0
- package/template/scripts/context-manager.sh +55 -4
- package/template/scripts/goto-stage.sh +264 -0
- package/template/scripts/next-stage.sh +132 -0
- package/template/stages/01-brainstorm/HANDOFF.md.template +42 -42
- package/template/stages/02-research/HANDOFF.md.template +42 -42
- package/template/stages/03-planning/HANDOFF.md.template +39 -39
- package/template/stages/04-ui-ux/CLAUDE.md +40 -0
- package/template/stages/04-ui-ux/HANDOFF.md.template +38 -38
- package/template/stages/04-ui-ux/inputs/moodboard/brand-assets/.gitkeep +3 -0
- package/template/stages/04-ui-ux/inputs/moodboard/sketches/.gitkeep +3 -0
- package/template/stages/04-ui-ux/inputs/moodboard/ui-references/.gitkeep +3 -0
- package/template/stages/05-task-management/HANDOFF.md.template +38 -38
- package/template/stages/06-implementation/CLAUDE.md +39 -0
- package/template/stages/06-implementation/HANDOFF.md.template +76 -76
- package/template/stages/06-implementation/config.yaml +16 -0
- package/template/stages/07-refactoring/HANDOFF.md.template +42 -42
- package/template/stages/08-qa/HANDOFF.md.template +45 -45
- package/template/stages/09-testing/HANDOFF.md.template +46 -46
- package/template/stages/10-deployment/HANDOFF.md.template +60 -60
- package/template/state/progress.json.template +26 -0
- package/template/state/templates/handoff_base.md.template +57 -57
- package/template/state/templates/phase_state.md.template +35 -35
|
@@ -1,91 +1,91 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Work State Save - {{TIMESTAMP}}
|
|
2
2
|
|
|
3
|
-
##
|
|
4
|
-
-
|
|
5
|
-
-
|
|
3
|
+
## Context State
|
|
4
|
+
- **Remaining Context**: {{REMAINING_PERCENT}}%
|
|
5
|
+
- **Save Trigger**: {{TRIGGER_REASON}}
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
-
##
|
|
9
|
+
## Current Stage
|
|
10
10
|
**{{STAGE_ID}}**: {{STAGE_NAME}}
|
|
11
11
|
|
|
12
|
-
##
|
|
13
|
-
-
|
|
14
|
-
-
|
|
15
|
-
-
|
|
12
|
+
## Stage Progress
|
|
13
|
+
- Total Tasks: {{TOTAL_TASKS}}
|
|
14
|
+
- Completed: {{COMPLETED_TASKS}}
|
|
15
|
+
- Progress: {{PROGRESS_PERCENT}}%
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
19
|
-
##
|
|
19
|
+
## Completed Tasks
|
|
20
20
|
{{#each COMPLETED_ITEMS}}
|
|
21
21
|
- [x] {{this.name}} ({{this.completed_at}})
|
|
22
22
|
{{/each}}
|
|
23
23
|
|
|
24
|
-
##
|
|
24
|
+
## Tasks In Progress
|
|
25
25
|
{{#each IN_PROGRESS_ITEMS}}
|
|
26
26
|
- [ ] **{{this.name}}**
|
|
27
|
-
-
|
|
28
|
-
-
|
|
27
|
+
- Started: {{this.started_at}}
|
|
28
|
+
- Status: {{this.status_detail}}
|
|
29
29
|
{{/each}}
|
|
30
30
|
|
|
31
|
-
##
|
|
31
|
+
## Pending Tasks
|
|
32
32
|
{{#each PENDING_ITEMS}}
|
|
33
33
|
- [ ] {{this.name}}
|
|
34
34
|
{{/each}}
|
|
35
35
|
|
|
36
36
|
---
|
|
37
37
|
|
|
38
|
-
##
|
|
38
|
+
## Key Context
|
|
39
39
|
|
|
40
|
-
###
|
|
40
|
+
### Key Decisions
|
|
41
41
|
{{#each KEY_DECISIONS}}
|
|
42
42
|
- **{{this.topic}}**: {{this.decision}}
|
|
43
|
-
-
|
|
43
|
+
- Rationale: {{this.rationale}}
|
|
44
44
|
{{/each}}
|
|
45
45
|
|
|
46
|
-
###
|
|
46
|
+
### Modified Files
|
|
47
47
|
{{#each MODIFIED_FILES}}
|
|
48
48
|
- `{{this.path}}` - {{this.change_type}} ({{this.lines_changed}} lines)
|
|
49
49
|
{{/each}}
|
|
50
50
|
|
|
51
|
-
###
|
|
51
|
+
### Active Issues/Bugs
|
|
52
52
|
{{#each ACTIVE_ISSUES}}
|
|
53
53
|
- {{this.description}}
|
|
54
|
-
-
|
|
54
|
+
- Status: {{this.status}}
|
|
55
55
|
{{/each}}
|
|
56
56
|
|
|
57
57
|
---
|
|
58
58
|
|
|
59
|
-
## AI
|
|
60
|
-
| AI |
|
|
61
|
-
|
|
59
|
+
## AI Call Log
|
|
60
|
+
| AI | Time | Prompt File | Result File |
|
|
61
|
+
|----|------|-------------|-------------|
|
|
62
62
|
{{#each AI_CALLS}}
|
|
63
63
|
| {{this.model}} | {{this.timestamp}} | {{this.prompt_file}} | {{this.output_file}} |
|
|
64
64
|
{{/each}}
|
|
65
65
|
|
|
66
66
|
---
|
|
67
67
|
|
|
68
|
-
##
|
|
68
|
+
## Recovery Instructions
|
|
69
69
|
|
|
70
|
-
###
|
|
71
|
-
1.
|
|
72
|
-
2.
|
|
73
|
-
3.
|
|
70
|
+
### Immediate Actions (On Session Recovery)
|
|
71
|
+
1. Read this file: `state/context/{{FILENAME}}`
|
|
72
|
+
2. Reference current HANDOFF: `{{HANDOFF_FILE}}`
|
|
73
|
+
3. Resume from next task: **{{NEXT_TASK}}**
|
|
74
74
|
|
|
75
|
-
###
|
|
76
|
-
1.
|
|
77
|
-
2.
|
|
78
|
-
3.
|
|
79
|
-
4.
|
|
75
|
+
### Context Restoration Priority
|
|
76
|
+
1. Load current stage `CLAUDE.md`
|
|
77
|
+
2. Reference previous stage `HANDOFF.md`
|
|
78
|
+
3. Check active task status
|
|
79
|
+
4. Open files being modified
|
|
80
80
|
|
|
81
|
-
###
|
|
81
|
+
### Additional Reference Files
|
|
82
82
|
{{#each REFERENCE_FILES}}
|
|
83
83
|
- `{{this}}`
|
|
84
84
|
{{/each}}
|
|
85
85
|
|
|
86
86
|
---
|
|
87
87
|
|
|
88
|
-
##
|
|
88
|
+
## Metadata
|
|
89
89
|
```json
|
|
90
90
|
{
|
|
91
91
|
"created_at": "{{TIMESTAMP}}",
|