@pjmendonca/devflow 1.9.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.
Files changed (124) hide show
  1. package/CHANGELOG.md +526 -0
  2. package/LICENSE +21 -0
  3. package/README.md +620 -0
  4. package/bin/devflow-checkpoint.js +10 -0
  5. package/bin/devflow-collab.js +10 -0
  6. package/bin/devflow-cost.js +10 -0
  7. package/bin/devflow-create-persona.js +10 -0
  8. package/bin/devflow-init.js +10 -0
  9. package/bin/devflow-memory.js +10 -0
  10. package/bin/devflow-new-doc.js +10 -0
  11. package/bin/devflow-personalize.js +10 -0
  12. package/bin/devflow-setup-checkpoint.js +10 -0
  13. package/bin/devflow-story.js +10 -0
  14. package/bin/devflow-tech-debt.js +10 -0
  15. package/bin/devflow-validate-overrides.js +10 -0
  16. package/bin/devflow-validate.js +10 -0
  17. package/bin/devflow-version.js +10 -0
  18. package/lib/constants.js +30 -0
  19. package/lib/exec-python.js +78 -0
  20. package/lib/python-check.js +178 -0
  21. package/package.json +64 -0
  22. package/tooling/.automation/agents/architect.md +135 -0
  23. package/tooling/.automation/agents/ba.md +70 -0
  24. package/tooling/.automation/agents/dev.md +79 -0
  25. package/tooling/.automation/agents/maintainer.md +97 -0
  26. package/tooling/.automation/agents/pm.md +116 -0
  27. package/tooling/.automation/agents/reviewer.md +141 -0
  28. package/tooling/.automation/agents/sm.md +61 -0
  29. package/tooling/.automation/agents/writer.md +193 -0
  30. package/tooling/.automation/config.ps1.template +61 -0
  31. package/tooling/.automation/config.sh.template +48 -0
  32. package/tooling/.automation/memory/.gitkeep +6 -0
  33. package/tooling/.automation/memory/knowledge/kg_integration-test.json +94 -0
  34. package/tooling/.automation/memory/knowledge/kg_test-story.json +300 -0
  35. package/tooling/.automation/memory/shared/shared_integration-test.json +30 -0
  36. package/tooling/.automation/memory/shared/shared_test-story.json +78 -0
  37. package/tooling/.automation/overrides/templates/README.md +113 -0
  38. package/tooling/.automation/overrides/templates/architect/README.md +27 -0
  39. package/tooling/.automation/overrides/templates/architect/cloud-native.yaml +92 -0
  40. package/tooling/.automation/overrides/templates/architect/enterprise-architect.yaml +85 -0
  41. package/tooling/.automation/overrides/templates/architect/pragmatic-minimalist.yaml +88 -0
  42. package/tooling/.automation/overrides/templates/ba/README.md +27 -0
  43. package/tooling/.automation/overrides/templates/ba/agile-storyteller.yaml +86 -0
  44. package/tooling/.automation/overrides/templates/ba/domain-expert.yaml +91 -0
  45. package/tooling/.automation/overrides/templates/ba/requirements-engineer.yaml +89 -0
  46. package/tooling/.automation/overrides/templates/dev/README.md +32 -0
  47. package/tooling/.automation/overrides/templates/dev/junior-mentored.yaml +39 -0
  48. package/tooling/.automation/overrides/templates/dev/performance-engineer.yaml +43 -0
  49. package/tooling/.automation/overrides/templates/dev/rapid-prototyper.yaml +52 -0
  50. package/tooling/.automation/overrides/templates/dev/security-focused.yaml +43 -0
  51. package/tooling/.automation/overrides/templates/dev/senior-fullstack.yaml +39 -0
  52. package/tooling/.automation/overrides/templates/maintainer/README.md +27 -0
  53. package/tooling/.automation/overrides/templates/maintainer/devops-maintainer.yaml +113 -0
  54. package/tooling/.automation/overrides/templates/maintainer/legacy-steward.yaml +94 -0
  55. package/tooling/.automation/overrides/templates/maintainer/oss-maintainer.yaml +94 -0
  56. package/tooling/.automation/overrides/templates/pm/README.md +27 -0
  57. package/tooling/.automation/overrides/templates/pm/agile-pm.yaml +91 -0
  58. package/tooling/.automation/overrides/templates/pm/hybrid-delivery.yaml +87 -0
  59. package/tooling/.automation/overrides/templates/pm/traditional-pm.yaml +91 -0
  60. package/tooling/.automation/overrides/templates/reviewer/README.md +11 -0
  61. package/tooling/.automation/overrides/templates/reviewer/mentoring-reviewer.yaml +45 -0
  62. package/tooling/.automation/overrides/templates/reviewer/quick-sanity.yaml +50 -0
  63. package/tooling/.automation/overrides/templates/reviewer/thorough-critic.yaml +48 -0
  64. package/tooling/.automation/overrides/templates/sm/README.md +11 -0
  65. package/tooling/.automation/overrides/templates/sm/agile-coach.yaml +52 -0
  66. package/tooling/.automation/overrides/templates/sm/startup-pm.yaml +50 -0
  67. package/tooling/.automation/overrides/templates/sm/technical-lead.yaml +47 -0
  68. package/tooling/.automation/overrides/templates/user-profile.template.yaml +62 -0
  69. package/tooling/.automation/overrides/templates/writer/README.md +27 -0
  70. package/tooling/.automation/overrides/templates/writer/api-documentarian.yaml +99 -0
  71. package/tooling/.automation/overrides/templates/writer/docs-as-code.yaml +108 -0
  72. package/tooling/.automation/overrides/templates/writer/user-guide-author.yaml +100 -0
  73. package/tooling/completions/DevflowCompletion.ps1 +213 -0
  74. package/tooling/completions/_run-story +116 -0
  75. package/tooling/completions/run-story-completion.bash +136 -0
  76. package/tooling/docs/DOC-STANDARD.md +717 -0
  77. package/tooling/docs/sprint-status.yaml.template +24 -0
  78. package/tooling/docs/templates/bug-report.md +234 -0
  79. package/tooling/docs/templates/migration-spec.md +274 -0
  80. package/tooling/docs/templates/refactor-spec.md +86 -0
  81. package/tooling/docs/templates/tech-debt.md +86 -0
  82. package/tooling/scripts/context_checkpoint.py +556 -0
  83. package/tooling/scripts/cost_dashboard.py +617 -0
  84. package/tooling/scripts/create-persona.py +690 -0
  85. package/tooling/scripts/create-persona.sh +435 -0
  86. package/tooling/scripts/init-project-workflow.ps1 +651 -0
  87. package/tooling/scripts/init-project-workflow.py +70 -0
  88. package/tooling/scripts/init-project-workflow.sh +746 -0
  89. package/tooling/scripts/lib/__init__.py +35 -0
  90. package/tooling/scripts/lib/agent_handoff.py +526 -0
  91. package/tooling/scripts/lib/agent_router.py +698 -0
  92. package/tooling/scripts/lib/checkpoint-integration.ps1 +245 -0
  93. package/tooling/scripts/lib/checkpoint-integration.sh +191 -0
  94. package/tooling/scripts/lib/claude-cli.ps1 +952 -0
  95. package/tooling/scripts/lib/claude-cli.sh +1293 -0
  96. package/tooling/scripts/lib/cost_config.py +222 -0
  97. package/tooling/scripts/lib/cost_display.py +443 -0
  98. package/tooling/scripts/lib/cost_tracker.py +710 -0
  99. package/tooling/scripts/lib/currency_converter.py +328 -0
  100. package/tooling/scripts/lib/errors.py +438 -0
  101. package/tooling/scripts/lib/override-loader.sh +286 -0
  102. package/tooling/scripts/lib/pair_programming.py +589 -0
  103. package/tooling/scripts/lib/shared_memory.py +637 -0
  104. package/tooling/scripts/lib/swarm_orchestrator.py +689 -0
  105. package/tooling/scripts/memory_summarize.py +324 -0
  106. package/tooling/scripts/new-doc.ps1 +405 -0
  107. package/tooling/scripts/new-doc.py +93 -0
  108. package/tooling/scripts/new-doc.sh +534 -0
  109. package/tooling/scripts/personalize_agent.py +385 -0
  110. package/tooling/scripts/rollback-migration.sh +540 -0
  111. package/tooling/scripts/run-collab.ps1 +251 -0
  112. package/tooling/scripts/run-collab.py +605 -0
  113. package/tooling/scripts/run-collab.sh +110 -0
  114. package/tooling/scripts/run-story.ps1 +490 -0
  115. package/tooling/scripts/run-story.py +387 -0
  116. package/tooling/scripts/run-story.sh +467 -0
  117. package/tooling/scripts/setup-checkpoint-service.ps1 +219 -0
  118. package/tooling/scripts/setup-checkpoint-service.py +87 -0
  119. package/tooling/scripts/setup-checkpoint-service.sh +236 -0
  120. package/tooling/scripts/tech-debt-tracker.py +608 -0
  121. package/tooling/scripts/update_version.py +244 -0
  122. package/tooling/scripts/validate-overrides.py +511 -0
  123. package/tooling/scripts/validate-overrides.sh +432 -0
  124. package/tooling/scripts/validate_setup.py +539 -0
@@ -0,0 +1,61 @@
1
+ #################################################################################
2
+ # Automation Configuration Template for Windows
3
+ # Copy to config.ps1 and customize for your project
4
+ #################################################################################
5
+
6
+ # Project settings
7
+ $script:PROJECT_NAME = "your-project-name"
8
+ $script:PROJECT_TYPE = "generic" # Supported: node, flutter, python, rust, go, ruby, java, kotlin, swift, android, generic
9
+
10
+ # Claude Code CLI settings
11
+ $script:CLAUDE_CLI = if ($env:CLAUDE_CLI) { $env:CLAUDE_CLI } else { "claude" }
12
+ $script:CLAUDE_MODEL_DEV = "opus"
13
+ $script:CLAUDE_MODEL_PLANNING = "sonnet"
14
+ $script:CLAUDE_MODEL = if ($env:CLAUDE_MODEL) { $env:CLAUDE_MODEL } else { "sonnet" }
15
+
16
+ # Permission mode
17
+ $script:PERMISSION_MODE = if ($env:PERMISSION_MODE) { $env:PERMISSION_MODE } else { "dangerouslySkipPermissions" }
18
+
19
+ # Auto-commit settings
20
+ $script:AUTO_COMMIT = if ($env:AUTO_COMMIT) { $env:AUTO_COMMIT -eq "true" } else { $false }
21
+ $script:AUTO_PR = if ($env:AUTO_PR) { $env:AUTO_PR -eq "true" } else { $false }
22
+
23
+ # Budget limits (USD)
24
+ $script:MAX_BUDGET_CONTEXT = 3.00
25
+ $script:MAX_BUDGET_DEV = 15.00
26
+ $script:MAX_BUDGET_REVIEW = 5.00
27
+
28
+ # Cost tracking settings
29
+ $script:COST_DISPLAY_CURRENCY = "USD" # Primary display currency
30
+ $script:COST_WARNING_PERCENT = 75 # Warning at 75% budget
31
+ $script:COST_CRITICAL_PERCENT = 90 # Critical at 90% budget
32
+ $script:COST_AUTO_STOP = $true # Auto-stop at 100% budget
33
+
34
+ # Currency exchange rates (USD to target)
35
+ # Update these for accurate multi-currency display
36
+ $script:CURRENCY_RATES = @{
37
+ "USD" = 1.0
38
+ "EUR" = 0.92
39
+ "GBP" = 0.79
40
+ "BRL" = 6.10
41
+ "CAD" = 1.36
42
+ "AUD" = 1.53
43
+ }
44
+
45
+ # Paths
46
+ $script:AUTOMATION_DIR = Split-Path -Parent $MyInvocation.MyCommand.Path
47
+ $script:PROJECT_ROOT = (Get-Item "$script:AUTOMATION_DIR\..\..").FullName
48
+ $script:SCRIPTS_DIR = Join-Path $script:PROJECT_ROOT "tooling\scripts"
49
+ $script:DOCS_DIR = Join-Path $script:PROJECT_ROOT "tooling\docs"
50
+
51
+ # Checkpoint thresholds (warning, critical, emergency)
52
+ $script:CHECKPOINT_THRESHOLDS = @(75, 85, 95)
53
+
54
+ # Export variables as environment variables for child processes
55
+ $env:PROJECT_NAME = $script:PROJECT_NAME
56
+ $env:PROJECT_TYPE = $script:PROJECT_TYPE
57
+ $env:CLAUDE_MODEL = $script:CLAUDE_MODEL
58
+ $env:MAX_BUDGET_DEV = $script:MAX_BUDGET_DEV
59
+ $env:COST_DISPLAY_CURRENCY = $script:COST_DISPLAY_CURRENCY
60
+ $env:COST_WARNING_PERCENT = $script:COST_WARNING_PERCENT
61
+ $env:COST_CRITICAL_PERCENT = $script:COST_CRITICAL_PERCENT
@@ -0,0 +1,48 @@
1
+ #!/bin/zsh
2
+ ################################################################################
3
+ # Automation Configuration Template
4
+ # Copy to config.sh and customize for your project
5
+ ################################################################################
6
+
7
+ # Project settings
8
+ export PROJECT_NAME="your-project-name"
9
+ export PROJECT_TYPE="generic" # Supported: node, flutter, python, rust, go, ruby, java, kotlin, swift, android, generic
10
+
11
+ # Claude Code CLI settings
12
+ export CLAUDE_CLI="${CLAUDE_CLI:-claude}"
13
+ export CLAUDE_MODEL_DEV="opus"
14
+ export CLAUDE_MODEL_PLANNING="sonnet"
15
+ export CLAUDE_MODEL="${CLAUDE_MODEL:-sonnet}"
16
+
17
+ # Permission mode
18
+ export PERMISSION_MODE="${PERMISSION_MODE:-dangerouslySkipPermissions}"
19
+
20
+ # Auto-commit settings
21
+ export AUTO_COMMIT="${AUTO_COMMIT:-false}"
22
+ export AUTO_PR="${AUTO_PR:-false}"
23
+
24
+ # Budget limits (USD)
25
+ export MAX_BUDGET_CONTEXT=3.00
26
+ export MAX_BUDGET_DEV=15.00
27
+ export MAX_BUDGET_REVIEW=5.00
28
+
29
+ # Cost tracking settings
30
+ export COST_DISPLAY_CURRENCY="USD" # Primary display currency
31
+ export COST_WARNING_PERCENT=75 # Warning at 75% budget
32
+ export COST_CRITICAL_PERCENT=90 # Critical at 90% budget
33
+ export COST_AUTO_STOP="true" # Auto-stop at 100% budget
34
+
35
+ # Currency exchange rates (USD to target)
36
+ # Update these for accurate multi-currency display
37
+ export CURRENCY_RATE_EUR=0.92
38
+ export CURRENCY_RATE_GBP=0.79
39
+ export CURRENCY_RATE_BRL=6.10
40
+
41
+ # Paths
42
+ export AUTOMATION_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
43
+ export PROJECT_ROOT="$(cd "$AUTOMATION_DIR/../.." && pwd)"
44
+ export SCRIPTS_DIR="$PROJECT_ROOT/tooling/scripts"
45
+ export DOCS_DIR="$PROJECT_ROOT/tooling/docs"
46
+
47
+ # Checkpoint thresholds (warning, critical, emergency)
48
+ export CHECKPOINT_THRESHOLDS="75,85,95"
@@ -0,0 +1,6 @@
1
+ # This directory stores persistent agent memories
2
+ # Memory files are named: {agent-name}.memory.md
3
+ # Example: dev.memory.md
4
+ #
5
+ # Memories are automatically loaded when agents run
6
+ # and help them remember context across sessions.
@@ -0,0 +1,94 @@
1
+ {
2
+ "story_key": "integration-test",
3
+ "last_updated": "2025-12-22T10:21:59.779074",
4
+ "decisions": {},
5
+ "topic_index": {},
6
+ "handoffs": [
7
+ {
8
+ "id": "handoff_550011b1",
9
+ "timestamp": "2025-12-22T10:21:29.593525",
10
+ "from_agent": "SM",
11
+ "to_agent": "DEV",
12
+ "story_key": "integration-test",
13
+ "summary": "Ready for implementation",
14
+ "key_decisions": [],
15
+ "blockers_resolved": [],
16
+ "watch_out_for": [],
17
+ "files_touched": [
18
+ "CHANGELOG.md",
19
+ "CONTRIBUTING.md",
20
+ "README.md",
21
+ "tooling/scripts/create-persona.sh",
22
+ "tooling/scripts/init-project-workflow.sh",
23
+ "tooling/scripts/lib/agent_router.py",
24
+ "tooling/scripts/lib/checkpoint-integration.ps1",
25
+ "tooling/scripts/lib/checkpoint-integration.sh",
26
+ "tooling/scripts/lib/claude-cli.sh",
27
+ "tooling/scripts/lib/cost_config.py",
28
+ "tooling/scripts/lib/cost_display.py",
29
+ "tooling/scripts/lib/cost_tracker.py",
30
+ "tooling/scripts/lib/currency_converter.py",
31
+ "tooling/scripts/lib/override-loader.sh",
32
+ "tooling/scripts/new-doc.sh",
33
+ "tooling/scripts/rollback-migration.sh",
34
+ "tooling/scripts/run-collab.ps1",
35
+ "tooling/scripts/run-collab.py",
36
+ "tooling/scripts/run-collab.sh",
37
+ "tooling/scripts/run-story.sh",
38
+ "tooling/scripts/setup-checkpoint-service.ps1",
39
+ "tooling/scripts/setup-checkpoint-service.sh",
40
+ "tooling/scripts/validate-overrides.sh"
41
+ ],
42
+ "next_steps": [
43
+ "Review the acceptance criteria in the story context",
44
+ "Examine the 23 files that have context",
45
+ "Implement the required functionality",
46
+ "Write tests for the implementation"
47
+ ]
48
+ },
49
+ {
50
+ "id": "handoff_2837adef",
51
+ "timestamp": "2025-12-22T10:21:59.778929",
52
+ "from_agent": "SM",
53
+ "to_agent": "DEV",
54
+ "story_key": "integration-test",
55
+ "summary": "Ready for implementation",
56
+ "key_decisions": [],
57
+ "blockers_resolved": [],
58
+ "watch_out_for": [],
59
+ "files_touched": [
60
+ "CHANGELOG.md",
61
+ "CONTRIBUTING.md",
62
+ "README.md",
63
+ "tests/test_collaboration.py",
64
+ "tests/test_cost_tracker.py",
65
+ "tooling/scripts/create-persona.sh",
66
+ "tooling/scripts/init-project-workflow.sh",
67
+ "tooling/scripts/lib/agent_router.py",
68
+ "tooling/scripts/lib/checkpoint-integration.ps1",
69
+ "tooling/scripts/lib/checkpoint-integration.sh",
70
+ "tooling/scripts/lib/claude-cli.sh",
71
+ "tooling/scripts/lib/cost_config.py",
72
+ "tooling/scripts/lib/cost_display.py",
73
+ "tooling/scripts/lib/cost_tracker.py",
74
+ "tooling/scripts/lib/currency_converter.py",
75
+ "tooling/scripts/lib/override-loader.sh",
76
+ "tooling/scripts/new-doc.sh",
77
+ "tooling/scripts/rollback-migration.sh",
78
+ "tooling/scripts/run-collab.ps1",
79
+ "tooling/scripts/run-collab.py",
80
+ "tooling/scripts/run-collab.sh",
81
+ "tooling/scripts/run-story.sh",
82
+ "tooling/scripts/setup-checkpoint-service.ps1",
83
+ "tooling/scripts/setup-checkpoint-service.sh",
84
+ "tooling/scripts/validate-overrides.sh"
85
+ ],
86
+ "next_steps": [
87
+ "Review the acceptance criteria in the story context",
88
+ "Examine the 25 files that have context",
89
+ "Implement the required functionality",
90
+ "Write tests for the implementation"
91
+ ]
92
+ }
93
+ ]
94
+ }
@@ -0,0 +1,300 @@
1
+ {
2
+ "story_key": "test-story",
3
+ "last_updated": "2025-12-22T10:21:59.754092",
4
+ "decisions": {
5
+ "dec_c5690ae1": {
6
+ "id": "dec_c5690ae1",
7
+ "timestamp": "2025-12-22T10:21:29.542891",
8
+ "agent": "DEV",
9
+ "topic": "approach",
10
+ "decision": "Use REST API",
11
+ "context": {},
12
+ "supersedes": null,
13
+ "status": "active"
14
+ },
15
+ "dec_8da306dc": {
16
+ "id": "dec_8da306dc",
17
+ "timestamp": "2025-12-22T10:21:59.731779",
18
+ "agent": "DEV",
19
+ "topic": "approach",
20
+ "decision": "Use REST API",
21
+ "context": {},
22
+ "supersedes": null,
23
+ "status": "active"
24
+ }
25
+ },
26
+ "topic_index": {
27
+ "approach": [
28
+ "dec_c5690ae1",
29
+ "dec_8da306dc"
30
+ ]
31
+ },
32
+ "handoffs": [
33
+ {
34
+ "id": "handoff_aa65c3ad",
35
+ "timestamp": "2025-12-22T10:21:29.541333",
36
+ "from_agent": "SM",
37
+ "to_agent": "DEV",
38
+ "story_key": "test-story",
39
+ "summary": "Created story context",
40
+ "key_decisions": [],
41
+ "blockers_resolved": [],
42
+ "watch_out_for": [],
43
+ "files_touched": [
44
+ "CHANGELOG.md",
45
+ "CONTRIBUTING.md",
46
+ "README.md",
47
+ "tooling/scripts/create-persona.sh",
48
+ "tooling/scripts/init-project-workflow.sh",
49
+ "tooling/scripts/lib/agent_router.py",
50
+ "tooling/scripts/lib/checkpoint-integration.ps1",
51
+ "tooling/scripts/lib/checkpoint-integration.sh",
52
+ "tooling/scripts/lib/claude-cli.sh",
53
+ "tooling/scripts/lib/cost_config.py",
54
+ "tooling/scripts/lib/cost_display.py",
55
+ "tooling/scripts/lib/cost_tracker.py",
56
+ "tooling/scripts/lib/currency_converter.py",
57
+ "tooling/scripts/lib/override-loader.sh",
58
+ "tooling/scripts/new-doc.sh",
59
+ "tooling/scripts/rollback-migration.sh",
60
+ "tooling/scripts/run-collab.ps1",
61
+ "tooling/scripts/run-collab.py",
62
+ "tooling/scripts/run-collab.sh",
63
+ "tooling/scripts/run-story.sh",
64
+ "tooling/scripts/setup-checkpoint-service.ps1",
65
+ "tooling/scripts/setup-checkpoint-service.sh",
66
+ "tooling/scripts/validate-overrides.sh"
67
+ ],
68
+ "next_steps": [
69
+ "Review the acceptance criteria in the story context",
70
+ "Examine the 23 files that have context",
71
+ "Implement the required functionality",
72
+ "Write tests for the implementation"
73
+ ]
74
+ },
75
+ {
76
+ "id": "handoff_ce2257f6",
77
+ "timestamp": "2025-12-22T10:21:29.553974",
78
+ "from_agent": "DEV",
79
+ "to_agent": "REVIEWER",
80
+ "story_key": "test-story",
81
+ "summary": "Implementation complete",
82
+ "key_decisions": [
83
+ "approach: Use REST API"
84
+ ],
85
+ "blockers_resolved": [],
86
+ "watch_out_for": [
87
+ "Watch out for rate limits"
88
+ ],
89
+ "files_touched": [
90
+ "CHANGELOG.md",
91
+ "CONTRIBUTING.md",
92
+ "README.md",
93
+ "tooling/scripts/create-persona.sh",
94
+ "tooling/scripts/init-project-workflow.sh",
95
+ "tooling/scripts/lib/agent_router.py",
96
+ "tooling/scripts/lib/checkpoint-integration.ps1",
97
+ "tooling/scripts/lib/checkpoint-integration.sh",
98
+ "tooling/scripts/lib/claude-cli.sh",
99
+ "tooling/scripts/lib/cost_config.py",
100
+ "tooling/scripts/lib/cost_display.py",
101
+ "tooling/scripts/lib/cost_tracker.py",
102
+ "tooling/scripts/lib/currency_converter.py",
103
+ "tooling/scripts/lib/override-loader.sh",
104
+ "tooling/scripts/new-doc.sh",
105
+ "tooling/scripts/rollback-migration.sh",
106
+ "tooling/scripts/run-collab.ps1",
107
+ "tooling/scripts/run-collab.py",
108
+ "tooling/scripts/run-collab.sh",
109
+ "tooling/scripts/run-story.sh",
110
+ "tooling/scripts/setup-checkpoint-service.ps1",
111
+ "tooling/scripts/setup-checkpoint-service.sh",
112
+ "tooling/scripts/validate-overrides.sh"
113
+ ],
114
+ "next_steps": [
115
+ "Review the 23 changed files",
116
+ "Check for code quality and best practices",
117
+ "Verify test coverage",
118
+ "Provide actionable feedback"
119
+ ]
120
+ },
121
+ {
122
+ "id": "handoff_a0e8e0e8",
123
+ "timestamp": "2025-12-22T10:21:29.566216",
124
+ "from_agent": "SM",
125
+ "to_agent": "DEV",
126
+ "story_key": "test-story",
127
+ "summary": "Ready for development",
128
+ "key_decisions": [],
129
+ "blockers_resolved": [],
130
+ "watch_out_for": [],
131
+ "files_touched": [
132
+ "CHANGELOG.md",
133
+ "CONTRIBUTING.md",
134
+ "README.md",
135
+ "tooling/scripts/create-persona.sh",
136
+ "tooling/scripts/init-project-workflow.sh",
137
+ "tooling/scripts/lib/agent_router.py",
138
+ "tooling/scripts/lib/checkpoint-integration.ps1",
139
+ "tooling/scripts/lib/checkpoint-integration.sh",
140
+ "tooling/scripts/lib/claude-cli.sh",
141
+ "tooling/scripts/lib/cost_config.py",
142
+ "tooling/scripts/lib/cost_display.py",
143
+ "tooling/scripts/lib/cost_tracker.py",
144
+ "tooling/scripts/lib/currency_converter.py",
145
+ "tooling/scripts/lib/override-loader.sh",
146
+ "tooling/scripts/new-doc.sh",
147
+ "tooling/scripts/rollback-migration.sh",
148
+ "tooling/scripts/run-collab.ps1",
149
+ "tooling/scripts/run-collab.py",
150
+ "tooling/scripts/run-collab.sh",
151
+ "tooling/scripts/run-story.sh",
152
+ "tooling/scripts/setup-checkpoint-service.ps1",
153
+ "tooling/scripts/setup-checkpoint-service.sh",
154
+ "tooling/scripts/validate-overrides.sh"
155
+ ],
156
+ "next_steps": [
157
+ "Review the acceptance criteria in the story context",
158
+ "Examine the 23 files that have context",
159
+ "Implement the required functionality",
160
+ "Write tests for the implementation"
161
+ ]
162
+ },
163
+ {
164
+ "id": "handoff_42d07f24",
165
+ "timestamp": "2025-12-22T10:21:59.730222",
166
+ "from_agent": "SM",
167
+ "to_agent": "DEV",
168
+ "story_key": "test-story",
169
+ "summary": "Created story context",
170
+ "key_decisions": [],
171
+ "blockers_resolved": [],
172
+ "watch_out_for": [],
173
+ "files_touched": [
174
+ "CHANGELOG.md",
175
+ "CONTRIBUTING.md",
176
+ "README.md",
177
+ "tests/test_collaboration.py",
178
+ "tests/test_cost_tracker.py",
179
+ "tooling/scripts/create-persona.sh",
180
+ "tooling/scripts/init-project-workflow.sh",
181
+ "tooling/scripts/lib/agent_router.py",
182
+ "tooling/scripts/lib/checkpoint-integration.ps1",
183
+ "tooling/scripts/lib/checkpoint-integration.sh",
184
+ "tooling/scripts/lib/claude-cli.sh",
185
+ "tooling/scripts/lib/cost_config.py",
186
+ "tooling/scripts/lib/cost_display.py",
187
+ "tooling/scripts/lib/cost_tracker.py",
188
+ "tooling/scripts/lib/currency_converter.py",
189
+ "tooling/scripts/lib/override-loader.sh",
190
+ "tooling/scripts/new-doc.sh",
191
+ "tooling/scripts/rollback-migration.sh",
192
+ "tooling/scripts/run-collab.ps1",
193
+ "tooling/scripts/run-collab.py",
194
+ "tooling/scripts/run-collab.sh",
195
+ "tooling/scripts/run-story.sh",
196
+ "tooling/scripts/setup-checkpoint-service.ps1",
197
+ "tooling/scripts/setup-checkpoint-service.sh",
198
+ "tooling/scripts/validate-overrides.sh"
199
+ ],
200
+ "next_steps": [
201
+ "Review the acceptance criteria in the story context",
202
+ "Examine the 25 files that have context",
203
+ "Implement the required functionality",
204
+ "Write tests for the implementation"
205
+ ]
206
+ },
207
+ {
208
+ "id": "handoff_61307ce4",
209
+ "timestamp": "2025-12-22T10:21:59.742216",
210
+ "from_agent": "DEV",
211
+ "to_agent": "REVIEWER",
212
+ "story_key": "test-story",
213
+ "summary": "Implementation complete",
214
+ "key_decisions": [
215
+ "approach: Use REST API"
216
+ ],
217
+ "blockers_resolved": [],
218
+ "watch_out_for": [
219
+ "Watch out for rate limits"
220
+ ],
221
+ "files_touched": [
222
+ "CHANGELOG.md",
223
+ "CONTRIBUTING.md",
224
+ "README.md",
225
+ "tests/test_collaboration.py",
226
+ "tests/test_cost_tracker.py",
227
+ "tooling/scripts/create-persona.sh",
228
+ "tooling/scripts/init-project-workflow.sh",
229
+ "tooling/scripts/lib/agent_router.py",
230
+ "tooling/scripts/lib/checkpoint-integration.ps1",
231
+ "tooling/scripts/lib/checkpoint-integration.sh",
232
+ "tooling/scripts/lib/claude-cli.sh",
233
+ "tooling/scripts/lib/cost_config.py",
234
+ "tooling/scripts/lib/cost_display.py",
235
+ "tooling/scripts/lib/cost_tracker.py",
236
+ "tooling/scripts/lib/currency_converter.py",
237
+ "tooling/scripts/lib/override-loader.sh",
238
+ "tooling/scripts/new-doc.sh",
239
+ "tooling/scripts/rollback-migration.sh",
240
+ "tooling/scripts/run-collab.ps1",
241
+ "tooling/scripts/run-collab.py",
242
+ "tooling/scripts/run-collab.sh",
243
+ "tooling/scripts/run-story.sh",
244
+ "tooling/scripts/setup-checkpoint-service.ps1",
245
+ "tooling/scripts/setup-checkpoint-service.sh",
246
+ "tooling/scripts/validate-overrides.sh"
247
+ ],
248
+ "next_steps": [
249
+ "Review the 25 changed files",
250
+ "Check for code quality and best practices",
251
+ "Verify test coverage",
252
+ "Provide actionable feedback"
253
+ ]
254
+ },
255
+ {
256
+ "id": "handoff_665a00d8",
257
+ "timestamp": "2025-12-22T10:21:59.753942",
258
+ "from_agent": "SM",
259
+ "to_agent": "DEV",
260
+ "story_key": "test-story",
261
+ "summary": "Ready for development",
262
+ "key_decisions": [],
263
+ "blockers_resolved": [],
264
+ "watch_out_for": [],
265
+ "files_touched": [
266
+ "CHANGELOG.md",
267
+ "CONTRIBUTING.md",
268
+ "README.md",
269
+ "tests/test_collaboration.py",
270
+ "tests/test_cost_tracker.py",
271
+ "tooling/scripts/create-persona.sh",
272
+ "tooling/scripts/init-project-workflow.sh",
273
+ "tooling/scripts/lib/agent_router.py",
274
+ "tooling/scripts/lib/checkpoint-integration.ps1",
275
+ "tooling/scripts/lib/checkpoint-integration.sh",
276
+ "tooling/scripts/lib/claude-cli.sh",
277
+ "tooling/scripts/lib/cost_config.py",
278
+ "tooling/scripts/lib/cost_display.py",
279
+ "tooling/scripts/lib/cost_tracker.py",
280
+ "tooling/scripts/lib/currency_converter.py",
281
+ "tooling/scripts/lib/override-loader.sh",
282
+ "tooling/scripts/new-doc.sh",
283
+ "tooling/scripts/rollback-migration.sh",
284
+ "tooling/scripts/run-collab.ps1",
285
+ "tooling/scripts/run-collab.py",
286
+ "tooling/scripts/run-collab.sh",
287
+ "tooling/scripts/run-story.sh",
288
+ "tooling/scripts/setup-checkpoint-service.ps1",
289
+ "tooling/scripts/setup-checkpoint-service.sh",
290
+ "tooling/scripts/validate-overrides.sh"
291
+ ],
292
+ "next_steps": [
293
+ "Review the acceptance criteria in the story context",
294
+ "Examine the 25 files that have context",
295
+ "Implement the required functionality",
296
+ "Write tests for the implementation"
297
+ ]
298
+ }
299
+ ]
300
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "story_key": "integration-test",
3
+ "last_updated": "2025-12-22T10:21:59.779252",
4
+ "entries": [
5
+ {
6
+ "id": "mem_1bf0cedf",
7
+ "timestamp": "2025-12-22T10:21:29.593840",
8
+ "agent": "SM",
9
+ "content": "Handed off to DEV: Ready for implementation",
10
+ "tags": [
11
+ "handoff",
12
+ "dev"
13
+ ],
14
+ "story_key": "integration-test",
15
+ "references": []
16
+ },
17
+ {
18
+ "id": "mem_bbf9bedd",
19
+ "timestamp": "2025-12-22T10:21:59.779219",
20
+ "agent": "SM",
21
+ "content": "Handed off to DEV: Ready for implementation",
22
+ "tags": [
23
+ "handoff",
24
+ "dev"
25
+ ],
26
+ "story_key": "integration-test",
27
+ "references": []
28
+ }
29
+ ]
30
+ }
@@ -0,0 +1,78 @@
1
+ {
2
+ "story_key": "test-story",
3
+ "last_updated": "2025-12-22T10:21:59.754396",
4
+ "entries": [
5
+ {
6
+ "id": "mem_94d28071",
7
+ "timestamp": "2025-12-22T10:21:29.541596",
8
+ "agent": "SM",
9
+ "content": "Handed off to DEV: Created story context",
10
+ "tags": [
11
+ "handoff",
12
+ "dev"
13
+ ],
14
+ "story_key": "test-story",
15
+ "references": []
16
+ },
17
+ {
18
+ "id": "mem_e2eb9c0b",
19
+ "timestamp": "2025-12-22T10:21:29.554260",
20
+ "agent": "DEV",
21
+ "content": "Handed off to REVIEWER: Implementation complete",
22
+ "tags": [
23
+ "handoff",
24
+ "reviewer"
25
+ ],
26
+ "story_key": "test-story",
27
+ "references": []
28
+ },
29
+ {
30
+ "id": "mem_63bf9312",
31
+ "timestamp": "2025-12-22T10:21:29.566592",
32
+ "agent": "SM",
33
+ "content": "Handed off to DEV: Ready for development",
34
+ "tags": [
35
+ "handoff",
36
+ "dev"
37
+ ],
38
+ "story_key": "test-story",
39
+ "references": []
40
+ },
41
+ {
42
+ "id": "mem_428adad5",
43
+ "timestamp": "2025-12-22T10:21:59.730584",
44
+ "agent": "SM",
45
+ "content": "Handed off to DEV: Created story context",
46
+ "tags": [
47
+ "handoff",
48
+ "dev"
49
+ ],
50
+ "story_key": "test-story",
51
+ "references": []
52
+ },
53
+ {
54
+ "id": "mem_8fc5e0ea",
55
+ "timestamp": "2025-12-22T10:21:59.742576",
56
+ "agent": "DEV",
57
+ "content": "Handed off to REVIEWER: Implementation complete",
58
+ "tags": [
59
+ "handoff",
60
+ "reviewer"
61
+ ],
62
+ "story_key": "test-story",
63
+ "references": []
64
+ },
65
+ {
66
+ "id": "mem_4cdc11f7",
67
+ "timestamp": "2025-12-22T10:21:59.754353",
68
+ "agent": "SM",
69
+ "content": "Handed off to DEV: Ready for development",
70
+ "tags": [
71
+ "handoff",
72
+ "dev"
73
+ ],
74
+ "story_key": "test-story",
75
+ "references": []
76
+ }
77
+ ]
78
+ }