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
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
# Context Management Configuration
|
|
2
|
-
# claude-symphony
|
|
2
|
+
# claude-symphony context management settings
|
|
3
3
|
|
|
4
4
|
context_management:
|
|
5
|
-
#
|
|
5
|
+
# Percentage-based thresholds (based on remaining context)
|
|
6
6
|
thresholds:
|
|
7
|
-
warning: 60 # 60%
|
|
8
|
-
action: 50 #
|
|
9
|
-
critical: 40 #
|
|
7
|
+
warning: 60 # Display warning at 60% remaining
|
|
8
|
+
action: 50 # Auto-save + recommend compression at 50% remaining
|
|
9
|
+
critical: 40 # Force recommend /clear at 40% remaining
|
|
10
10
|
|
|
11
|
-
#
|
|
12
|
-
task_save_frequency: 5 #
|
|
11
|
+
# Task-based save frequency
|
|
12
|
+
task_save_frequency: 5 # Auto-save state every 5 tasks
|
|
13
13
|
|
|
14
|
-
#
|
|
14
|
+
# Estimated max tokens (Claude basis)
|
|
15
15
|
max_tokens: 200000
|
|
16
16
|
|
|
17
|
-
#
|
|
17
|
+
# Auto action settings
|
|
18
18
|
auto_actions:
|
|
19
19
|
on_warning:
|
|
20
20
|
- display_warning_banner
|
|
@@ -28,21 +28,21 @@ auto_actions:
|
|
|
28
28
|
on_critical:
|
|
29
29
|
- force_state_save
|
|
30
30
|
- generate_recovery_handoff
|
|
31
|
-
- prompt_clear_confirmation #
|
|
31
|
+
- prompt_clear_confirmation # Execute /clear after user confirmation
|
|
32
32
|
|
|
33
|
-
#
|
|
33
|
+
# State saving settings
|
|
34
34
|
state_saving:
|
|
35
35
|
directory: "state/context"
|
|
36
36
|
filename_format: "state_{timestamp}_{stage}.md"
|
|
37
37
|
|
|
38
|
-
#
|
|
38
|
+
# Save triggers
|
|
39
39
|
triggers:
|
|
40
40
|
- threshold_crossed
|
|
41
41
|
- task_batch_complete
|
|
42
42
|
- manual_checkpoint
|
|
43
43
|
- stage_transition
|
|
44
44
|
|
|
45
|
-
#
|
|
45
|
+
# Items to save
|
|
46
46
|
include:
|
|
47
47
|
- current_stage
|
|
48
48
|
- progress_summary
|
|
@@ -51,28 +51,28 @@ state_saving:
|
|
|
51
51
|
- recovery_instructions
|
|
52
52
|
- file_modifications
|
|
53
53
|
|
|
54
|
-
#
|
|
54
|
+
# Context compression settings
|
|
55
55
|
compression:
|
|
56
|
-
auto_activate_at: 50 #
|
|
56
|
+
auto_activate_at: 50 # Auto-activate at action threshold
|
|
57
57
|
|
|
58
58
|
strategies:
|
|
59
59
|
- name: "summarize_completed"
|
|
60
|
-
description: "
|
|
60
|
+
description: "Replace completed work with summaries"
|
|
61
61
|
priority: 1
|
|
62
62
|
|
|
63
63
|
- name: "externalize_code"
|
|
64
|
-
description: "
|
|
64
|
+
description: "Replace code blocks with file references"
|
|
65
65
|
priority: 2
|
|
66
66
|
|
|
67
67
|
- name: "handoff_generation"
|
|
68
|
-
description: "
|
|
68
|
+
description: "Externalize current state to HANDOFF.md"
|
|
69
69
|
priority: 3
|
|
70
70
|
|
|
71
|
-
#
|
|
71
|
+
# Monitoring settings
|
|
72
72
|
monitoring:
|
|
73
73
|
display_in_prompt: true
|
|
74
74
|
update_interval: "per_response"
|
|
75
75
|
|
|
76
|
-
#
|
|
76
|
+
# Status display format
|
|
77
77
|
display_format: |
|
|
78
78
|
[Context: {remaining_percent}% | {remaining_tokens}k tokens]
|
package/template/config/git.yaml
CHANGED
|
@@ -1,61 +1,61 @@
|
|
|
1
1
|
# Git Configuration
|
|
2
|
-
# claude-symphony Git
|
|
2
|
+
# claude-symphony Git auto-commit rules (Issue #15 resolution)
|
|
3
3
|
|
|
4
4
|
git:
|
|
5
|
-
#
|
|
5
|
+
# Auto-commit settings
|
|
6
6
|
auto_commit:
|
|
7
7
|
enabled: true
|
|
8
8
|
|
|
9
|
-
#
|
|
9
|
+
# Trigger events
|
|
10
10
|
triggers:
|
|
11
|
-
on_task_complete: true #
|
|
12
|
-
on_stage_complete: true #
|
|
13
|
-
on_checkpoint: true #
|
|
14
|
-
on_milestone: true #
|
|
11
|
+
on_task_complete: true # On task completion
|
|
12
|
+
on_stage_complete: true # On stage completion
|
|
13
|
+
on_checkpoint: true # On checkpoint creation
|
|
14
|
+
on_milestone: true # On milestone completion
|
|
15
15
|
|
|
16
|
-
#
|
|
16
|
+
# Commit message rules (Conventional Commits)
|
|
17
17
|
commit_convention:
|
|
18
18
|
format: "<type>(<scope>): <description>"
|
|
19
19
|
|
|
20
|
-
#
|
|
20
|
+
# Commit types
|
|
21
21
|
types:
|
|
22
22
|
- name: "feat"
|
|
23
|
-
description: "
|
|
23
|
+
description: "New feature"
|
|
24
24
|
stages: ["06-implementation"]
|
|
25
25
|
|
|
26
26
|
- name: "fix"
|
|
27
|
-
description: "
|
|
27
|
+
description: "Bug fix"
|
|
28
28
|
stages: ["08-qa"]
|
|
29
29
|
|
|
30
30
|
- name: "refactor"
|
|
31
|
-
description: "
|
|
31
|
+
description: "Code refactoring"
|
|
32
32
|
stages: ["07-refactoring"]
|
|
33
33
|
|
|
34
34
|
- name: "test"
|
|
35
|
-
description: "
|
|
35
|
+
description: "Test addition/modification"
|
|
36
36
|
stages: ["09-testing"]
|
|
37
37
|
|
|
38
38
|
- name: "docs"
|
|
39
|
-
description: "
|
|
39
|
+
description: "Documentation modification"
|
|
40
40
|
stages: ["all"]
|
|
41
41
|
|
|
42
42
|
- name: "chore"
|
|
43
|
-
description: "
|
|
43
|
+
description: "Other changes"
|
|
44
44
|
stages: ["10-deployment"]
|
|
45
45
|
|
|
46
46
|
- name: "style"
|
|
47
|
-
description: "
|
|
47
|
+
description: "Code style changes"
|
|
48
48
|
stages: ["04-ui-ux", "06-implementation"]
|
|
49
49
|
|
|
50
50
|
- name: "perf"
|
|
51
|
-
description: "
|
|
51
|
+
description: "Performance improvement"
|
|
52
52
|
stages: ["07-refactoring"]
|
|
53
53
|
|
|
54
54
|
- name: "ci"
|
|
55
|
-
description: "CI/CD
|
|
55
|
+
description: "CI/CD configuration"
|
|
56
56
|
stages: ["10-deployment"]
|
|
57
57
|
|
|
58
|
-
#
|
|
58
|
+
# Stage-specific scope mapping
|
|
59
59
|
scope_mapping:
|
|
60
60
|
"01-brainstorm": "brainstorm"
|
|
61
61
|
"02-research": "research"
|
|
@@ -68,46 +68,46 @@ git:
|
|
|
68
68
|
"09-testing": "test"
|
|
69
69
|
"10-deployment": "deploy"
|
|
70
70
|
|
|
71
|
-
#
|
|
71
|
+
# Description rules
|
|
72
72
|
description_rules:
|
|
73
73
|
max_length: 72
|
|
74
|
-
language: "
|
|
75
|
-
start_with_verb: true
|
|
76
|
-
no_period_at_end: true
|
|
74
|
+
language: "English" # Korean | English
|
|
75
|
+
start_with_verb: true # Start with verb
|
|
76
|
+
no_period_at_end: true # No period at end
|
|
77
77
|
|
|
78
|
-
#
|
|
78
|
+
# Commit message examples
|
|
79
79
|
examples:
|
|
80
|
-
task_complete: "feat(impl):
|
|
81
|
-
stage_complete: "chore(impl): Stage 06
|
|
82
|
-
bug_fix: "fix(qa):
|
|
83
|
-
refactor: "refactor(refactor):
|
|
84
|
-
test: "test(test):
|
|
80
|
+
task_complete: "feat(impl): implement user authentication"
|
|
81
|
+
stage_complete: "chore(impl): complete Stage 06 - generate HANDOFF.md"
|
|
82
|
+
bug_fix: "fix(qa): fix login session expiry bug"
|
|
83
|
+
refactor: "refactor(refactor): optimize auth service code"
|
|
84
|
+
test: "test(test): add user authentication E2E tests"
|
|
85
85
|
|
|
86
|
-
#
|
|
86
|
+
# Branch rules
|
|
87
87
|
branch:
|
|
88
|
-
#
|
|
88
|
+
# Branch naming
|
|
89
89
|
naming:
|
|
90
90
|
feature: "feature/{stage}-{task-id}"
|
|
91
91
|
bugfix: "bugfix/{issue-id}"
|
|
92
92
|
release: "release/v{version}"
|
|
93
93
|
|
|
94
|
-
#
|
|
94
|
+
# Default branch
|
|
95
95
|
default: "main"
|
|
96
96
|
develop: "develop"
|
|
97
97
|
|
|
98
|
-
#
|
|
98
|
+
# Stage-specific branch strategy
|
|
99
99
|
strategy: "feature-branch" # feature-branch | trunk-based
|
|
100
100
|
|
|
101
|
-
#
|
|
101
|
+
# Automation actions
|
|
102
102
|
automation:
|
|
103
|
-
#
|
|
103
|
+
# On task completion
|
|
104
104
|
on_task_complete:
|
|
105
105
|
actions:
|
|
106
106
|
- "stage_changes"
|
|
107
107
|
- "generate_commit_message"
|
|
108
108
|
- "commit"
|
|
109
109
|
|
|
110
|
-
#
|
|
110
|
+
# On stage completion
|
|
111
111
|
on_stage_complete:
|
|
112
112
|
actions:
|
|
113
113
|
- "stage_all_changes"
|
|
@@ -115,13 +115,13 @@ git:
|
|
|
115
115
|
- "commit"
|
|
116
116
|
- "create_tag"
|
|
117
117
|
|
|
118
|
-
#
|
|
118
|
+
# On checkpoint
|
|
119
119
|
on_checkpoint:
|
|
120
120
|
actions:
|
|
121
121
|
- "commit_all"
|
|
122
122
|
- "create_checkpoint_tag"
|
|
123
123
|
|
|
124
|
-
#
|
|
124
|
+
# Commit message generation templates
|
|
125
125
|
templates:
|
|
126
126
|
task_complete: |
|
|
127
127
|
{{type}}({{scope}}): {{description}}
|
|
@@ -130,14 +130,14 @@ git:
|
|
|
130
130
|
Stage: {{stage_id}}
|
|
131
131
|
|
|
132
132
|
stage_complete: |
|
|
133
|
-
chore({{scope}}): Stage {{stage_number}}
|
|
133
|
+
chore({{scope}}): complete Stage {{stage_number}}
|
|
134
134
|
|
|
135
|
-
|
|
135
|
+
Completed tasks:
|
|
136
136
|
{{#each completed_tasks}}
|
|
137
137
|
- {{this}}
|
|
138
138
|
{{/each}}
|
|
139
139
|
|
|
140
|
-
|
|
140
|
+
Next stage: {{next_stage}}
|
|
141
141
|
|
|
142
142
|
checkpoint: |
|
|
143
143
|
chore(checkpoint): {{description}}
|
|
@@ -146,16 +146,16 @@ git:
|
|
|
146
146
|
Checkpoint: {{checkpoint_id}}
|
|
147
147
|
Created: {{timestamp}}
|
|
148
148
|
|
|
149
|
-
#
|
|
149
|
+
# Prohibited actions
|
|
150
150
|
prohibited:
|
|
151
|
-
- "
|
|
152
|
-
- "WIP
|
|
153
|
-
- "
|
|
154
|
-
- "
|
|
151
|
+
- "Commit without commit message"
|
|
152
|
+
- "WIP commits (temporary saves)"
|
|
153
|
+
- "Starting with uppercase (for English)"
|
|
154
|
+
- "Meaningless commit messages"
|
|
155
155
|
|
|
156
|
-
#
|
|
156
|
+
# Recommended actions
|
|
157
157
|
recommended:
|
|
158
|
-
- "
|
|
159
|
-
- "
|
|
160
|
-
- "
|
|
161
|
-
- "
|
|
158
|
+
- "Commit in small units"
|
|
159
|
+
- "Meaningful commit messages"
|
|
160
|
+
- "Stage only related files"
|
|
161
|
+
- "Run lint/format before commit"
|
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
|
|
4
4
|
smart_handoff:
|
|
5
5
|
enabled: true
|
|
6
|
-
description: "
|
|
6
|
+
description: "Automatic context extraction and intelligent HANDOFF generation"
|
|
7
7
|
|
|
8
|
-
#
|
|
8
|
+
# Auto extraction settings
|
|
9
9
|
auto_extraction:
|
|
10
10
|
enabled: true
|
|
11
|
-
description: "
|
|
11
|
+
description: "Auto-extract information to include in HANDOFF"
|
|
12
12
|
|
|
13
13
|
extract_from:
|
|
14
14
|
completed_tasks:
|
|
@@ -36,10 +36,10 @@ smart_handoff:
|
|
|
36
36
|
ai_call_history:
|
|
37
37
|
enabled: true
|
|
38
38
|
format: "table"
|
|
39
|
-
include_prompts: false #
|
|
39
|
+
include_prompts: false # Save tokens
|
|
40
40
|
include_results_summary: true
|
|
41
41
|
|
|
42
|
-
#
|
|
42
|
+
# Extraction priority (higher = first)
|
|
43
43
|
priority:
|
|
44
44
|
- blocking_issues: 100
|
|
45
45
|
- key_decisions: 90
|
|
@@ -48,14 +48,14 @@ smart_handoff:
|
|
|
48
48
|
- completed_tasks: 60
|
|
49
49
|
- ai_call_history: 50
|
|
50
50
|
|
|
51
|
-
#
|
|
51
|
+
# Compression settings
|
|
52
52
|
compression:
|
|
53
53
|
enabled: true
|
|
54
54
|
strategy: "semantic"
|
|
55
|
-
description: "
|
|
55
|
+
description: "Semantic-based context compression"
|
|
56
56
|
|
|
57
57
|
max_tokens: 4000
|
|
58
|
-
compression_ratio_target: 0.3 #
|
|
58
|
+
compression_ratio_target: 0.3 # 30% of original
|
|
59
59
|
|
|
60
60
|
preserve:
|
|
61
61
|
always:
|
|
@@ -71,7 +71,7 @@ smart_handoff:
|
|
|
71
71
|
method: "extractive" # extractive or abstractive
|
|
72
72
|
model: "claude"
|
|
73
73
|
|
|
74
|
-
#
|
|
74
|
+
# Context transfer optimization
|
|
75
75
|
context_transfer:
|
|
76
76
|
format: "structured_markdown"
|
|
77
77
|
|
|
@@ -98,7 +98,7 @@ smart_handoff:
|
|
|
98
98
|
- completed_tasks_summary
|
|
99
99
|
- ai_call_summary
|
|
100
100
|
|
|
101
|
-
#
|
|
101
|
+
# Highlight information immediately needed by next stage
|
|
102
102
|
highlight:
|
|
103
103
|
enabled: true
|
|
104
104
|
marker: "!!"
|
|
@@ -106,10 +106,10 @@ smart_handoff:
|
|
|
106
106
|
- immediate_actions
|
|
107
107
|
- required_inputs
|
|
108
108
|
|
|
109
|
-
#
|
|
109
|
+
# Contextual summarization settings
|
|
110
110
|
contextual_summarization:
|
|
111
111
|
enabled: true
|
|
112
|
-
description: "
|
|
112
|
+
description: "Generate stage-specific customized summaries"
|
|
113
113
|
|
|
114
114
|
strategies:
|
|
115
115
|
completed_tasks:
|
|
@@ -131,16 +131,16 @@ contextual_summarization:
|
|
|
131
131
|
decisions:
|
|
132
132
|
method: "structured"
|
|
133
133
|
format: |
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
134
|
+
**Decision**: {{decision}}
|
|
135
|
+
**Rationale**: {{rationale}}
|
|
136
|
+
**Impact**: {{impact}}
|
|
137
137
|
|
|
138
138
|
next_steps:
|
|
139
139
|
method: "actionable"
|
|
140
140
|
format: "numbered_list"
|
|
141
141
|
include_prerequisites: true
|
|
142
142
|
|
|
143
|
-
#
|
|
143
|
+
# Stage-specific summary focus
|
|
144
144
|
stage_focus:
|
|
145
145
|
"01-brainstorm":
|
|
146
146
|
emphasize: ["ideas", "requirements"]
|
|
@@ -154,7 +154,7 @@ contextual_summarization:
|
|
|
154
154
|
emphasize: ["bugs", "test_results"]
|
|
155
155
|
de_emphasize: ["planning_details"]
|
|
156
156
|
|
|
157
|
-
# HANDOFF
|
|
157
|
+
# HANDOFF template settings
|
|
158
158
|
templates:
|
|
159
159
|
default:
|
|
160
160
|
sections:
|
|
@@ -186,7 +186,7 @@ templates:
|
|
|
186
186
|
required: false
|
|
187
187
|
auto_generate: true
|
|
188
188
|
|
|
189
|
-
#
|
|
189
|
+
# Compact template for stage transitions
|
|
190
190
|
compact:
|
|
191
191
|
max_tokens: 2000
|
|
192
192
|
sections:
|
|
@@ -195,7 +195,7 @@ templates:
|
|
|
195
195
|
- name: "Next Actions"
|
|
196
196
|
required: true
|
|
197
197
|
|
|
198
|
-
#
|
|
198
|
+
# Detailed template for session recovery
|
|
199
199
|
recovery:
|
|
200
200
|
max_tokens: 6000
|
|
201
201
|
sections:
|
|
@@ -204,7 +204,7 @@ templates:
|
|
|
204
204
|
- name: "Step-by-Step Recovery"
|
|
205
205
|
required: true
|
|
206
206
|
|
|
207
|
-
#
|
|
207
|
+
# Quality assurance
|
|
208
208
|
quality_assurance:
|
|
209
209
|
validation:
|
|
210
210
|
check_completeness: true
|
|
@@ -224,6 +224,6 @@ quality_assurance:
|
|
|
224
224
|
enabled: true
|
|
225
225
|
max_iterations: 2
|
|
226
226
|
improvement_prompts:
|
|
227
|
-
low_clarity: "
|
|
228
|
-
low_completeness: "
|
|
229
|
-
low_actionability: "
|
|
227
|
+
low_clarity: "Rewrite this section more clearly."
|
|
228
|
+
low_completeness: "Information is missing. Please add: {{missing}}"
|
|
229
|
+
low_actionability: "Convert next steps into more specific actions."
|