@devo-bmad-custom/agent-orchestration 1.0.6 → 1.0.8

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 (71) hide show
  1. package/package.json +4 -2
  2. package/src/.agents/skills/tmux-commands/SKILL.md +1 -1
  3. package/src/.agents/skills/ui-ux-pro-custom/data/swift-ios-skills/vision-framework/SKILL.md +475 -0
  4. package/src/.agents/skills/ui-ux-pro-custom/data/swift-ios-skills/vision-framework/references/vision-requests.md +736 -0
  5. package/src/.agents/skills/ui-ux-pro-custom/data/swift-ios-skills/vision-framework/references/visionkit-scanner.md +738 -0
  6. package/src/.agents/skills/ui-ux-pro-custom/data/swift-ios-skills/weatherkit/SKILL.md +410 -0
  7. package/src/.agents/skills/ui-ux-pro-custom/data/swift-ios-skills/weatherkit/references/weatherkit-patterns.md +567 -0
  8. package/src/.agents/skills/ui-ux-pro-custom/data/swift-ios-skills/widgetkit/SKILL.md +497 -0
  9. package/src/.agents/skills/ui-ux-pro-custom/data/swift-ios-skills/widgetkit/references/widgetkit-advanced.md +871 -0
  10. package/src/.agents/skills/ui-ux-pro-custom/data/typography.csv +58 -0
  11. package/src/.agents/skills/ui-ux-pro-custom/data/ui-reasoning.csv +101 -0
  12. package/src/.agents/skills/ui-ux-pro-custom/data/ux-guidelines.csv +100 -0
  13. package/src/.agents/skills/ui-ux-pro-custom/data/web-interface.csv +31 -0
  14. package/src/.agents/skills/ui-ux-pro-custom/scripts/core.py +253 -0
  15. package/src/.agents/skills/ui-ux-pro-custom/scripts/design_system.py +1067 -0
  16. package/src/.agents/skills/ui-ux-pro-custom/scripts/search.py +114 -0
  17. package/src/.agents/skills/ux-audit/SKILL.md +151 -0
  18. package/src/.agents/skills/websocket-engineer/SKILL.md +168 -0
  19. package/src/.agents/skills/websocket-engineer/references/alternatives.md +391 -0
  20. package/src/.agents/skills/websocket-engineer/references/patterns.md +400 -0
  21. package/src/.agents/skills/websocket-engineer/references/protocol.md +195 -0
  22. package/src/.agents/skills/websocket-engineer/references/scaling.md +333 -0
  23. package/src/.agents/skills/websocket-engineer/references/security.md +474 -0
  24. package/src/.agents/skills/writing-skills/SKILL.md +655 -0
  25. package/src/.agents/skills/writing-skills/anthropic-best-practices.md +1150 -0
  26. package/src/.agents/skills/writing-skills/examples/CLAUDE_MD_TESTING.md +189 -0
  27. package/src/.agents/skills/writing-skills/graphviz-conventions.dot +172 -0
  28. package/src/.agents/skills/writing-skills/persuasion-principles.md +187 -0
  29. package/src/.agents/skills/writing-skills/render-graphs.js +168 -0
  30. package/src/.agents/skills/writing-skills/testing-skills-with-subagents.md +384 -0
  31. package/src/.claude/commands/bmad-master.md +15 -0
  32. package/src/.claude/commands/bmad-review-dry-loop.md +15 -0
  33. package/src/.claude/commands/bmad-review-dry.md +15 -0
  34. package/src/.claude/commands/bmad-review-security-loop.md +15 -0
  35. package/src/.claude/commands/bmad-review-security.md +15 -0
  36. package/src/.claude/commands/bmad-review-ui-loop.md +15 -0
  37. package/src/.claude/commands/bmad-review-ui.md +15 -0
  38. package/src/.claude/commands/bmad-track-compact.md +19 -0
  39. package/src/.claude/commands/bmad-track-extended.md +19 -0
  40. package/src/.claude/commands/bmad-track-large.md +19 -0
  41. package/src/.claude/commands/bmad-track-medium.md +19 -0
  42. package/src/.claude/commands/bmad-track-nano.md +19 -0
  43. package/src/.claude/commands/bmad-track-rv.md +18 -0
  44. package/src/.claude/commands/bmad-track-small.md +19 -0
  45. package/src/.claude/commands/bmad-triage.md +15 -0
  46. package/src/.claude/commands/master-orchestrator.md +15 -0
  47. package/src/_memory/master-orchestrator-sidecar/docs-index.md +3 -0
  48. package/src/_memory/master-orchestrator-sidecar/instructions.md +2616 -0
  49. package/src/_memory/master-orchestrator-sidecar/memories.md +8 -0
  50. package/src/_memory/master-orchestrator-sidecar/session-state.md +15 -0
  51. package/src/_memory/master-orchestrator-sidecar/triage-history.md +3 -0
  52. package/src/_memory/master-orchestrator-sidecar/workflows-overview.html +1230 -0
  53. package/src/core/agents/master-orchestrator.md +54 -0
  54. package/src/docs/dev/tmux/actions_popup.py +291 -0
  55. package/src/docs/dev/tmux/actions_popup.sh +110 -0
  56. package/src/docs/dev/tmux/claude_usage.sh +15 -0
  57. package/src/docs/dev/tmux/colors.conf +26 -0
  58. package/src/docs/dev/tmux/cpu_usage.sh +7 -0
  59. package/src/docs/dev/tmux/dispatch.sh +10 -0
  60. package/src/docs/dev/tmux/float_init.sh +13 -0
  61. package/src/docs/dev/tmux/float_term.sh +23 -0
  62. package/src/docs/dev/tmux/open_clip.sh +14 -0
  63. package/src/docs/dev/tmux/paste_claude.sh +26 -0
  64. package/src/docs/dev/tmux/paste_clipboard.sh +13 -0
  65. package/src/docs/dev/tmux/paste_image_wrapper.sh +98 -0
  66. package/src/docs/dev/tmux/ram_usage.sh +3 -0
  67. package/src/docs/dev/tmux/title_sync.sh +54 -0
  68. package/src/docs/dev/tmux/tmux-setup.md +867 -0
  69. package/src/docs/dev/tmux/tmux-test.sh +255 -0
  70. package/src/docs/dev/tmux/tmux.conf +127 -0
  71. package/src/docs/dev/tmux/xclip +18 -0
@@ -0,0 +1,19 @@
1
+ ---
2
+ name: 'bmad-track-extended'
3
+ description: 'Start an Extended track session — master-orchestrator activated, track pre-selected, 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
11
+ 3. EXECUTE every critical_action in order (load all sidecar files)
12
+ 4. TRACK IS PRE-SELECTED: **Extended** — skip complexity triage entirely
13
+ 5. Display a brief greeting as Conductor 🎯, then immediately ask the three intake questions:
14
+ - "What are we building / fixing? Give me the task description."
15
+ - "New branch or existing? (name it if existing)"
16
+ - "Execution mode? [1] same-conversation · [2] command blocks · [3] launch scripts · [4] agent teams"
17
+ 6. On answers: generate session_id, create branch if needed, route directly to the **Extended** workflow chain:
18
+ Chain: Quick Spec → Research (1–2 analyst-agent) → PRD → UX Design + Architecture + Sprint Plan (split panes) → Review Gate 1 (3-sub) → Dev (split pane) → Review Gate 2 (3-sub) → QA Tests → USER APPROVAL GATE → /prepare-to-merge
19
+ </agent-activation>
@@ -0,0 +1,19 @@
1
+ ---
2
+ name: 'bmad-track-large'
3
+ description: 'Start a Large track session — master-orchestrator activated, track pre-selected, 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
11
+ 3. EXECUTE every critical_action in order (load all sidecar files)
12
+ 4. TRACK IS PRE-SELECTED: **Large** — skip complexity triage entirely
13
+ 5. Display a brief greeting as Conductor 🎯, then immediately ask the three intake questions:
14
+ - "What are we building / fixing? Give me the task description."
15
+ - "New branch or existing? (name it if existing)"
16
+ - "Execution mode? [1] same-conversation · [2] command blocks · [3] launch scripts · [4] agent teams"
17
+ 6. On answers: generate session_id, create branch if needed, route directly to the **Large** workflow chain:
18
+ Chain: Product Brief → Research ×3 (parallel: Domain + Market + Technical) → PRD → Planning Gate (2-sub-spec) → UX Design + Architecture (parallel split panes) → Design Gate (2-sub-spec) → Epics & Stories → Implementation Readiness → Sprint Planning → Epic Dev Loop (Dev Story → Review Gate → QA per epic) → Final Review Gate (3-sub) → Final QA → Retros → USER APPROVAL GATE → /prepare-to-merge
19
+ </agent-activation>
@@ -0,0 +1,19 @@
1
+ ---
2
+ name: 'bmad-track-medium'
3
+ description: 'Start a Medium track session — master-orchestrator activated, track pre-selected, 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
11
+ 3. EXECUTE every critical_action in order (load all sidecar files)
12
+ 4. TRACK IS PRE-SELECTED: **Medium** — skip complexity triage entirely
13
+ 5. Display a brief greeting as Conductor 🎯, then immediately ask the three intake questions:
14
+ - "What are we building / fixing? Give me the task description."
15
+ - "New branch or existing? (name it if existing)"
16
+ - "Execution mode? [1] same-conversation · [2] command blocks · [3] launch scripts · [4] agent teams"
17
+ 6. On answers: generate session_id, create branch if needed, route directly to the **Medium** workflow chain:
18
+ Chain: Quick Spec → Research (1–2 analyst-agent, in-process) → UX Design (split pane) → Review Gate 1 (3-sub: AR+DRY · UV · SR) → Quick Dev (split pane) → Final Review Gate (3-sub) → QA Tests → USER APPROVAL GATE → /prepare-to-merge
19
+ </agent-activation>
@@ -0,0 +1,19 @@
1
+ ---
2
+ name: 'bmad-track-nano'
3
+ description: 'Start a Nano track session — master-orchestrator activated, track pre-selected, 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
11
+ 3. EXECUTE every critical_action in order (load all sidecar files)
12
+ 4. TRACK IS PRE-SELECTED: **Nano** — skip complexity triage entirely
13
+ 5. Display a brief greeting as Conductor 🎯, then immediately ask the three intake questions:
14
+ - "What are we building / fixing? Give me the task description."
15
+ - "New branch or existing? (name it if existing)"
16
+ - "Execution mode? [1] same-conversation · [2] command blocks · [3] launch scripts · [4] agent teams"
17
+ 6. On answers: generate session_id, create branch if needed, route directly to the **Nano** workflow chain:
18
+ Chain: Quick Dev (split pane, --dangerously-skip-permissions) → DRY+UV Gate (2-sub-spec) → USER APPROVAL GATE
19
+ </agent-activation>
@@ -0,0 +1,18 @@
1
+ ---
2
+ name: 'bmad-track-rv'
3
+ description: 'Start a Review Track session — master-orchestrator activated, track pre-selected, goes straight to target definition'
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. TRACK IS PRE-SELECTED: **Review Track [RV]** — skip all triage, go directly to target definition
13
+ 5. Display a brief greeting as Conductor 🎯, then immediately begin the Review Track intake:
14
+ - "What are we reviewing? Provide the target — branch name, file path, or feature description."
15
+ - "New branch or existing? (Review Track always works on a branch)"
16
+ - "Execution mode? [1] same-conversation · [2] command blocks · [3] launch scripts · [4] agent teams"
17
+ 6. On answers: generate session_id, set branch, then execute the **Review Track** [RV] workflow directly as defined in the master-orchestrator agent — Target Definition → Complexity Assessment → Research (if needed) → Multi-Lens Review (review-agent, review_type: full) → Findings Synthesis → Sort Artifacts → Volume Gate → SMALL path (Quick Dev + Review Gate + QA → USER APPROVAL) or LARGE path (Epics → IR → Sprint → Epic Dev Loop → Final Review Gate → Final QA → Retros → USER APPROVAL)
18
+ </agent-activation>
@@ -0,0 +1,19 @@
1
+ ---
2
+ name: 'bmad-track-small'
3
+ description: 'Start a Small track session — master-orchestrator activated, track pre-selected, 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
11
+ 3. EXECUTE every critical_action in order (load all sidecar files)
12
+ 4. TRACK IS PRE-SELECTED: **Small** — skip complexity triage entirely
13
+ 5. Display a brief greeting as Conductor 🎯, then immediately ask the three intake questions:
14
+ - "What are we building / fixing? Give me the task description."
15
+ - "New branch or existing? (name it if existing)"
16
+ - "Execution mode? [1] same-conversation · [2] command blocks · [3] launch scripts · [4] agent teams"
17
+ 6. On answers: generate session_id, create branch if needed, route directly to the **Small** workflow chain:
18
+ Chain: Quick Spec → Quick Dev (split pane) → Review Gate (3-sub: AR+DRY · UV · SR) → QA Tests → USER APPROVAL GATE → /prepare-to-merge
19
+ </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>
@@ -0,0 +1,15 @@
1
+ ---
2
+ name: 'orchestration-master'
3
+ description: 'Conductor — Agile Workflow Orchestrator for your project. Triages task complexity, routes BMAD workflow tracks, gates milestones with review gates, manages branch lifecycle.'
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,3 @@
1
+ # Docs Index
2
+
3
+ Not yet generated