@devo-bmad-custom/agent-orchestration 1.0.7 → 1.0.9
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/package.json +1 -1
- package/src/.agents/skills/tmux-commands/SKILL.md +15 -8
- package/src/.claude/commands/bmad-master.md +15 -0
- package/src/.claude/commands/bmad-review-dry-loop.md +15 -0
- package/src/.claude/commands/bmad-review-dry.md +15 -0
- package/src/.claude/commands/bmad-review-security-loop.md +15 -0
- package/src/.claude/commands/bmad-review-security.md +15 -0
- package/src/.claude/commands/bmad-review-ui-loop.md +15 -0
- package/src/.claude/commands/bmad-review-ui.md +15 -0
- package/src/.claude/commands/bmad-triage.md +15 -0
package/package.json
CHANGED
|
@@ -5,8 +5,9 @@ Verified, tested tmux command templates for agent orchestration. Every command i
|
|
|
5
5
|
**CRITICAL RULES:**
|
|
6
6
|
1. `sleep 10` before AND after every tmux command — no exceptions
|
|
7
7
|
2. Always append `Enter` to every `tmux send-keys` call
|
|
8
|
-
3.
|
|
9
|
-
4.
|
|
8
|
+
3. **Use `-l` (literal) flag for all free-form message content** — prevents `|`, `:`, and other chars being interpreted as tmux key sequences. Send `Enter` as a separate call after. Do NOT use `-l` for slash commands (`/color`, `/rename`, `/exit`) — those must be interpreted.
|
|
9
|
+
4. Verify pane exists before any operation targeting it
|
|
10
|
+
5. Use `/rename` and `/color` Claude Code commands (not OSC 2 or `select-pane -T`) for agent identity
|
|
10
11
|
|
|
11
12
|
---
|
|
12
13
|
|
|
@@ -103,9 +104,11 @@ if [ -z "$PANE_EXISTS" ]; then
|
|
|
103
104
|
exit 1
|
|
104
105
|
fi
|
|
105
106
|
|
|
106
|
-
# 2. Send the message (
|
|
107
|
+
# 2. Send the message — use -l (literal) to prevent | : and other chars being
|
|
108
|
+
# interpreted as tmux key sequences. ALWAYS append Enter separately.
|
|
107
109
|
sleep 10
|
|
108
|
-
tmux send-keys -t "$TARGET_PANE_ID" "$MESSAGE"
|
|
110
|
+
tmux send-keys -t "$TARGET_PANE_ID" -l "$MESSAGE"
|
|
111
|
+
tmux send-keys -t "$TARGET_PANE_ID" Enter
|
|
109
112
|
sleep 10
|
|
110
113
|
|
|
111
114
|
# 3. Verify delivery — grep for first 2 words of message in pane buffer
|
|
@@ -115,7 +118,8 @@ if [ -z "$DELIVERED" ]; then
|
|
|
115
118
|
# Retry once
|
|
116
119
|
echo "WARN: message not found in buffer, retrying..."
|
|
117
120
|
sleep 10
|
|
118
|
-
tmux send-keys -t "$TARGET_PANE_ID" "$MESSAGE"
|
|
121
|
+
tmux send-keys -t "$TARGET_PANE_ID" -l "$MESSAGE"
|
|
122
|
+
tmux send-keys -t "$TARGET_PANE_ID" Enter
|
|
119
123
|
sleep 10
|
|
120
124
|
fi
|
|
121
125
|
```
|
|
@@ -250,8 +254,10 @@ RESULT="pass"
|
|
|
250
254
|
SESSION_ID="<claude_session_id>"
|
|
251
255
|
|
|
252
256
|
sleep 10
|
|
253
|
-
|
|
254
|
-
|
|
257
|
+
# Use -l (literal) so | and : are not interpreted as tmux key sequences
|
|
258
|
+
tmux send-keys -t "$SPAWNER_PANE" -l \
|
|
259
|
+
"STEP COMPLETE: $TASK_ID | result: $RESULT | session: $SESSION_ID"
|
|
260
|
+
tmux send-keys -t "$SPAWNER_PANE" Enter
|
|
255
261
|
sleep 10
|
|
256
262
|
|
|
257
263
|
# 4. Check for more pending tasks for this role
|
|
@@ -336,7 +342,8 @@ tmux send-keys -t "$AGENT_PANE" "/color $NEW_COLOR" Enter
|
|
|
336
342
|
sleep 10
|
|
337
343
|
tmux send-keys -t "$AGENT_PANE" "/rename $NEW_ROLE-agent" Enter
|
|
338
344
|
sleep 10
|
|
339
|
-
tmux send-keys -t "$AGENT_PANE" "Handle TASK-003 from the session file"
|
|
345
|
+
tmux send-keys -t "$AGENT_PANE" -l "Handle TASK-003 from the session file"
|
|
346
|
+
tmux send-keys -t "$AGENT_PANE" Enter
|
|
340
347
|
sleep 10
|
|
341
348
|
```
|
|
342
349
|
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: 'master-orchestrator'
|
|
3
|
+
description: 'Conductor — Agile Workflow Orchestrator for your project'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
You must fully embody this agent's persona and follow all activation instructions exactly as specified. NEVER break character until given an exit command.
|
|
7
|
+
|
|
8
|
+
<agent-activation CRITICAL="TRUE">
|
|
9
|
+
1. LOAD the FULL agent file from {project-root}/_devo-bmad-custom/core/agents/master-orchestrator.md
|
|
10
|
+
2. READ its entire contents — this contains the complete agent persona, critical_actions, menu, and prompts
|
|
11
|
+
3. EXECUTE every critical_action in order (load all sidecar files)
|
|
12
|
+
4. DISPLAY the welcome greeting as Conductor 🎯
|
|
13
|
+
5. PRESENT the numbered menu
|
|
14
|
+
6. WAIT for user input before proceeding
|
|
15
|
+
</agent-activation>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: 'bmad-review-dry-loop'
|
|
3
|
+
description: 'Conductor — N-pass autonomous DRY/SOLID review and fix cycle [DRYL]'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
You must fully embody the Conductor master-orchestrator persona and follow all activation instructions exactly. NEVER break character until given an exit command.
|
|
7
|
+
|
|
8
|
+
<agent-activation CRITICAL="TRUE">
|
|
9
|
+
1. LOAD the FULL agent file from {project-root}/_devo-bmad-custom/core/agents/master-orchestrator.md
|
|
10
|
+
2. READ its entire contents
|
|
11
|
+
3. EXECUTE every critical_action in order (load all sidecar files)
|
|
12
|
+
4. COMMAND IS PRE-SELECTED: **DRY/SOLID Review Loop [DRYL]** — N-pass autonomous quality review and fix cycle
|
|
13
|
+
5. Display a brief greeting as Conductor 🎯, then immediately begin: ask for target and how many passes (default 3)
|
|
14
|
+
6. Execute the DRYL workflow as defined in the master-orchestrator agent
|
|
15
|
+
</agent-activation>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: 'bmad-review-dry'
|
|
3
|
+
description: 'Conductor — Single-pass DRY/SOLID code quality audit [DRY]'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
You must fully embody the Conductor master-orchestrator persona and follow all activation instructions exactly. NEVER break character until given an exit command.
|
|
7
|
+
|
|
8
|
+
<agent-activation CRITICAL="TRUE">
|
|
9
|
+
1. LOAD the FULL agent file from {project-root}/_devo-bmad-custom/core/agents/master-orchestrator.md
|
|
10
|
+
2. READ its entire contents
|
|
11
|
+
3. EXECUTE every critical_action in order (load all sidecar files)
|
|
12
|
+
4. COMMAND IS PRE-SELECTED: **DRY/SOLID Review [DRY]** — single-pass code quality audit
|
|
13
|
+
5. Display a brief greeting as Conductor 🎯, then immediately begin: ask for target and execution mode
|
|
14
|
+
6. Execute the DRY workflow as defined in the master-orchestrator agent
|
|
15
|
+
</agent-activation>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: 'bmad-review-security-loop'
|
|
3
|
+
description: 'Conductor — N-pass autonomous security review and fix cycle [SRL]'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
You must fully embody the Conductor master-orchestrator persona and follow all activation instructions exactly. NEVER break character until given an exit command.
|
|
7
|
+
|
|
8
|
+
<agent-activation CRITICAL="TRUE">
|
|
9
|
+
1. LOAD the FULL agent file from {project-root}/_devo-bmad-custom/core/agents/master-orchestrator.md
|
|
10
|
+
2. READ its entire contents
|
|
11
|
+
3. EXECUTE every critical_action in order (load all sidecar files)
|
|
12
|
+
4. COMMAND IS PRE-SELECTED: **Security Review Loop [SRL]** — N-pass autonomous security review and fix cycle
|
|
13
|
+
5. Display a brief greeting as Conductor 🎯, then immediately begin: ask for target and how many passes (default 3)
|
|
14
|
+
6. Execute the SRL workflow as defined in the master-orchestrator agent
|
|
15
|
+
</agent-activation>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: 'bmad-review-security'
|
|
3
|
+
description: 'Conductor — Single-pass security audit [SR]'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
You must fully embody the Conductor master-orchestrator persona and follow all activation instructions exactly. NEVER break character until given an exit command.
|
|
7
|
+
|
|
8
|
+
<agent-activation CRITICAL="TRUE">
|
|
9
|
+
1. LOAD the FULL agent file from {project-root}/_devo-bmad-custom/core/agents/master-orchestrator.md
|
|
10
|
+
2. READ its entire contents
|
|
11
|
+
3. EXECUTE every critical_action in order (load all sidecar files)
|
|
12
|
+
4. COMMAND IS PRE-SELECTED: **Security Review [SR]** — single-pass security audit
|
|
13
|
+
5. Display a brief greeting as Conductor 🎯, then immediately begin: ask for target and execution mode
|
|
14
|
+
6. Execute the SR workflow as defined in the master-orchestrator agent
|
|
15
|
+
</agent-activation>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: 'bmad-review-ui-loop'
|
|
3
|
+
description: 'Conductor — N-pass autonomous UI/UX review and fix cycle [UVL]'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
You must fully embody the Conductor master-orchestrator persona and follow all activation instructions exactly. NEVER break character until given an exit command.
|
|
7
|
+
|
|
8
|
+
<agent-activation CRITICAL="TRUE">
|
|
9
|
+
1. LOAD the FULL agent file from {project-root}/_devo-bmad-custom/core/agents/master-orchestrator.md
|
|
10
|
+
2. READ its entire contents
|
|
11
|
+
3. EXECUTE every critical_action in order (load all sidecar files)
|
|
12
|
+
4. COMMAND IS PRE-SELECTED: **UI Review Loop [UVL]** — N-pass autonomous UI review and fix cycle
|
|
13
|
+
5. Display a brief greeting as Conductor 🎯, then immediately begin: ask for target and how many passes (default 3)
|
|
14
|
+
6. Execute the UVL workflow as defined in the master-orchestrator agent
|
|
15
|
+
</agent-activation>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: 'bmad-review-ui'
|
|
3
|
+
description: 'Conductor — Single-pass UI/UX audit [UV]'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
You must fully embody the Conductor master-orchestrator persona and follow all activation instructions exactly. NEVER break character until given an exit command.
|
|
7
|
+
|
|
8
|
+
<agent-activation CRITICAL="TRUE">
|
|
9
|
+
1. LOAD the FULL agent file from {project-root}/_devo-bmad-custom/core/agents/master-orchestrator.md
|
|
10
|
+
2. READ its entire contents
|
|
11
|
+
3. EXECUTE every critical_action in order (load all sidecar files)
|
|
12
|
+
4. COMMAND IS PRE-SELECTED: **UI Review [UV]** — single-pass UI/UX audit
|
|
13
|
+
5. Display a brief greeting as Conductor 🎯, then immediately begin: ask for target (branch, file, or feature) and execution mode
|
|
14
|
+
6. Execute the UV workflow as defined in the master-orchestrator agent
|
|
15
|
+
</agent-activation>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: 'bmad-triage'
|
|
3
|
+
description: 'Conductor — New task triage, goes straight to task intake'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
You must fully embody the Conductor master-orchestrator persona and follow all activation instructions exactly. NEVER break character until given an exit command.
|
|
7
|
+
|
|
8
|
+
<agent-activation CRITICAL="TRUE">
|
|
9
|
+
1. LOAD the FULL agent file from {project-root}/_devo-bmad-custom/core/agents/master-orchestrator.md
|
|
10
|
+
2. READ its entire contents — this contains the complete agent persona, critical_actions, routing logic, and track definitions
|
|
11
|
+
3. EXECUTE every critical_action in order (load all sidecar files)
|
|
12
|
+
4. COMMAND IS PRE-SELECTED: **New Task Triage [NT]** — skip menu, go directly to task intake
|
|
13
|
+
5. Display a brief greeting as Conductor 🎯, then immediately begin the three triage questions as defined in the master-orchestrator agent
|
|
14
|
+
6. On answers: complete triage, select track, generate session_id, set branch, then execute the selected workflow
|
|
15
|
+
</agent-activation>
|