@devo-bmad-custom/agent-orchestration 1.0.5 → 1.0.7

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 (31) hide show
  1. package/package.json +4 -2
  2. package/src/.agents/skills/tmux-commands/SKILL.md +353 -0
  3. package/src/bmm/data/project-context-template.md +26 -26
  4. package/src/bmm/teams/default-party.csv +20 -20
  5. package/src/bmm/workflows/2-plan-workflows/create-prd/data/domain-complexity.csv +14 -14
  6. package/src/bmm/workflows/2-plan-workflows/create-prd/data/prd-purpose.md +197 -197
  7. package/src/bmm/workflows/2-plan-workflows/create-prd/data/project-types.csv +10 -10
  8. package/src/bmm/workflows/2-plan-workflows/create-prd/templates/prd-template.md +10 -10
  9. package/src/bmm/workflows/3-solutioning/create-architecture/data/domain-complexity.csv +12 -12
  10. package/src/bmm/workflows/4-implementation/code-review/instructions.xml +226 -226
  11. package/src/bmm/workflows/4-implementation/correct-course/checklist.md +288 -288
  12. package/src/bmm/workflows/4-implementation/correct-course/instructions.md +207 -207
  13. package/src/bmm/workflows/4-implementation/retrospective/instructions.md +1444 -1444
  14. package/src/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +55 -55
  15. package/src/bmm/workflows/4-implementation/sprint-status/instructions.md +230 -230
  16. package/src/bmm/workflows/bmad-quick-flow/quick-spec/tech-spec-template.md +74 -74
  17. package/src/bmm/workflows/document-project/instructions.md +130 -130
  18. package/src/bmm/workflows/document-project/templates/project-scan-report-schema.json +160 -160
  19. package/src/bmm/workflows/document-project/workflows/deep-dive-instructions.md +298 -298
  20. package/src/bmm/workflows/document-project/workflows/deep-dive.yaml +31 -31
  21. package/src/bmm/workflows/document-project/workflows/full-scan-instructions.md +1106 -1106
  22. package/src/bmm/workflows/document-project/workflows/full-scan.yaml +31 -31
  23. package/src/bmm/workflows/qa-generate-e2e-tests/checklist.md +33 -33
  24. package/src/bmm/workflows/qa-generate-e2e-tests/instructions.md +110 -110
  25. package/src/core/agents/bmad-master.md +56 -56
  26. package/src/core/workflows/party-mode/steps/step-02-discussion-orchestration.md +187 -187
  27. package/src/core/workflows/party-mode/steps/step-03-graceful-exit.md +168 -168
  28. package/src/docs/dev/tmux/paste_claude.sh +26 -0
  29. package/src/docs/dev/tmux/paste_image_wrapper.sh +7 -3
  30. package/src/docs/dev/tmux/tmux-test.sh +255 -0
  31. package/src/docs/dev/tmux/tmux.conf +2 -2
@@ -1,160 +1,160 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "title": "Project Scan Report Schema",
4
- "description": "State tracking file for document-project workflow resumability",
5
- "type": "object",
6
- "required": ["workflow_version", "timestamps", "mode", "scan_level", "completed_steps", "current_step"],
7
- "properties": {
8
- "workflow_version": {
9
- "type": "string",
10
- "description": "Version of document-project workflow",
11
- "example": "1.2.0"
12
- },
13
- "timestamps": {
14
- "type": "object",
15
- "required": ["started", "last_updated"],
16
- "properties": {
17
- "started": {
18
- "type": "string",
19
- "format": "date-time",
20
- "description": "ISO 8601 timestamp when workflow started"
21
- },
22
- "last_updated": {
23
- "type": "string",
24
- "format": "date-time",
25
- "description": "ISO 8601 timestamp of last state update"
26
- },
27
- "completed": {
28
- "type": "string",
29
- "format": "date-time",
30
- "description": "ISO 8601 timestamp when workflow completed (if finished)"
31
- }
32
- }
33
- },
34
- "mode": {
35
- "type": "string",
36
- "enum": ["initial_scan", "full_rescan", "deep_dive"],
37
- "description": "Workflow execution mode"
38
- },
39
- "scan_level": {
40
- "type": "string",
41
- "enum": ["quick", "deep", "exhaustive"],
42
- "description": "Scan depth level (deep_dive mode always uses exhaustive)"
43
- },
44
- "project_root": {
45
- "type": "string",
46
- "description": "Absolute path to project root directory"
47
- },
48
- "project_knowledge": {
49
- "type": "string",
50
- "description": "Absolute path to project knowledge folder"
51
- },
52
- "completed_steps": {
53
- "type": "array",
54
- "items": {
55
- "type": "object",
56
- "required": ["step", "status"],
57
- "properties": {
58
- "step": {
59
- "type": "string",
60
- "description": "Step identifier (e.g., 'step_1', 'step_2')"
61
- },
62
- "status": {
63
- "type": "string",
64
- "enum": ["completed", "partial", "failed"]
65
- },
66
- "timestamp": {
67
- "type": "string",
68
- "format": "date-time"
69
- },
70
- "outputs": {
71
- "type": "array",
72
- "items": { "type": "string" },
73
- "description": "Files written during this step"
74
- },
75
- "summary": {
76
- "type": "string",
77
- "description": "1-2 sentence summary of step outcome"
78
- }
79
- }
80
- }
81
- },
82
- "current_step": {
83
- "type": "string",
84
- "description": "Current step identifier for resumption"
85
- },
86
- "findings": {
87
- "type": "object",
88
- "description": "High-level summaries only (detailed findings purged after writing)",
89
- "properties": {
90
- "project_classification": {
91
- "type": "object",
92
- "properties": {
93
- "repository_type": { "type": "string" },
94
- "parts_count": { "type": "integer" },
95
- "primary_language": { "type": "string" },
96
- "architecture_type": { "type": "string" }
97
- }
98
- },
99
- "technology_stack": {
100
- "type": "array",
101
- "items": {
102
- "type": "object",
103
- "properties": {
104
- "part_id": { "type": "string" },
105
- "tech_summary": { "type": "string" }
106
- }
107
- }
108
- },
109
- "batches_completed": {
110
- "type": "array",
111
- "description": "For deep/exhaustive scans: subfolders processed",
112
- "items": {
113
- "type": "object",
114
- "properties": {
115
- "path": { "type": "string" },
116
- "files_scanned": { "type": "integer" },
117
- "summary": { "type": "string" }
118
- }
119
- }
120
- }
121
- }
122
- },
123
- "outputs_generated": {
124
- "type": "array",
125
- "items": { "type": "string" },
126
- "description": "List of all output files generated"
127
- },
128
- "resume_instructions": {
129
- "type": "string",
130
- "description": "Instructions for resuming from current_step"
131
- },
132
- "validation_status": {
133
- "type": "object",
134
- "properties": {
135
- "last_validated": {
136
- "type": "string",
137
- "format": "date-time"
138
- },
139
- "validation_errors": {
140
- "type": "array",
141
- "items": { "type": "string" }
142
- }
143
- }
144
- },
145
- "deep_dive_targets": {
146
- "type": "array",
147
- "description": "Track deep-dive areas analyzed (for deep_dive mode)",
148
- "items": {
149
- "type": "object",
150
- "properties": {
151
- "target_name": { "type": "string" },
152
- "target_path": { "type": "string" },
153
- "files_analyzed": { "type": "integer" },
154
- "output_file": { "type": "string" },
155
- "timestamp": { "type": "string", "format": "date-time" }
156
- }
157
- }
158
- }
159
- }
160
- }
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "title": "Project Scan Report Schema",
4
+ "description": "State tracking file for document-project workflow resumability",
5
+ "type": "object",
6
+ "required": ["workflow_version", "timestamps", "mode", "scan_level", "completed_steps", "current_step"],
7
+ "properties": {
8
+ "workflow_version": {
9
+ "type": "string",
10
+ "description": "Version of document-project workflow",
11
+ "example": "1.2.0"
12
+ },
13
+ "timestamps": {
14
+ "type": "object",
15
+ "required": ["started", "last_updated"],
16
+ "properties": {
17
+ "started": {
18
+ "type": "string",
19
+ "format": "date-time",
20
+ "description": "ISO 8601 timestamp when workflow started"
21
+ },
22
+ "last_updated": {
23
+ "type": "string",
24
+ "format": "date-time",
25
+ "description": "ISO 8601 timestamp of last state update"
26
+ },
27
+ "completed": {
28
+ "type": "string",
29
+ "format": "date-time",
30
+ "description": "ISO 8601 timestamp when workflow completed (if finished)"
31
+ }
32
+ }
33
+ },
34
+ "mode": {
35
+ "type": "string",
36
+ "enum": ["initial_scan", "full_rescan", "deep_dive"],
37
+ "description": "Workflow execution mode"
38
+ },
39
+ "scan_level": {
40
+ "type": "string",
41
+ "enum": ["quick", "deep", "exhaustive"],
42
+ "description": "Scan depth level (deep_dive mode always uses exhaustive)"
43
+ },
44
+ "project_root": {
45
+ "type": "string",
46
+ "description": "Absolute path to project root directory"
47
+ },
48
+ "project_knowledge": {
49
+ "type": "string",
50
+ "description": "Absolute path to project knowledge folder"
51
+ },
52
+ "completed_steps": {
53
+ "type": "array",
54
+ "items": {
55
+ "type": "object",
56
+ "required": ["step", "status"],
57
+ "properties": {
58
+ "step": {
59
+ "type": "string",
60
+ "description": "Step identifier (e.g., 'step_1', 'step_2')"
61
+ },
62
+ "status": {
63
+ "type": "string",
64
+ "enum": ["completed", "partial", "failed"]
65
+ },
66
+ "timestamp": {
67
+ "type": "string",
68
+ "format": "date-time"
69
+ },
70
+ "outputs": {
71
+ "type": "array",
72
+ "items": { "type": "string" },
73
+ "description": "Files written during this step"
74
+ },
75
+ "summary": {
76
+ "type": "string",
77
+ "description": "1-2 sentence summary of step outcome"
78
+ }
79
+ }
80
+ }
81
+ },
82
+ "current_step": {
83
+ "type": "string",
84
+ "description": "Current step identifier for resumption"
85
+ },
86
+ "findings": {
87
+ "type": "object",
88
+ "description": "High-level summaries only (detailed findings purged after writing)",
89
+ "properties": {
90
+ "project_classification": {
91
+ "type": "object",
92
+ "properties": {
93
+ "repository_type": { "type": "string" },
94
+ "parts_count": { "type": "integer" },
95
+ "primary_language": { "type": "string" },
96
+ "architecture_type": { "type": "string" }
97
+ }
98
+ },
99
+ "technology_stack": {
100
+ "type": "array",
101
+ "items": {
102
+ "type": "object",
103
+ "properties": {
104
+ "part_id": { "type": "string" },
105
+ "tech_summary": { "type": "string" }
106
+ }
107
+ }
108
+ },
109
+ "batches_completed": {
110
+ "type": "array",
111
+ "description": "For deep/exhaustive scans: subfolders processed",
112
+ "items": {
113
+ "type": "object",
114
+ "properties": {
115
+ "path": { "type": "string" },
116
+ "files_scanned": { "type": "integer" },
117
+ "summary": { "type": "string" }
118
+ }
119
+ }
120
+ }
121
+ }
122
+ },
123
+ "outputs_generated": {
124
+ "type": "array",
125
+ "items": { "type": "string" },
126
+ "description": "List of all output files generated"
127
+ },
128
+ "resume_instructions": {
129
+ "type": "string",
130
+ "description": "Instructions for resuming from current_step"
131
+ },
132
+ "validation_status": {
133
+ "type": "object",
134
+ "properties": {
135
+ "last_validated": {
136
+ "type": "string",
137
+ "format": "date-time"
138
+ },
139
+ "validation_errors": {
140
+ "type": "array",
141
+ "items": { "type": "string" }
142
+ }
143
+ }
144
+ },
145
+ "deep_dive_targets": {
146
+ "type": "array",
147
+ "description": "Track deep-dive areas analyzed (for deep_dive mode)",
148
+ "items": {
149
+ "type": "object",
150
+ "properties": {
151
+ "target_name": { "type": "string" },
152
+ "target_path": { "type": "string" },
153
+ "files_analyzed": { "type": "integer" },
154
+ "output_file": { "type": "string" },
155
+ "timestamp": { "type": "string", "format": "date-time" }
156
+ }
157
+ }
158
+ }
159
+ }
160
+ }