@delorenj/pjangler 1.1.5 → 1.2.2

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 (139) hide show
  1. package/.mise/scripts/link-agentfiles.sh +9 -0
  2. package/dist/index.js +1492 -358
  3. package/dist/mcp-server.js +2391 -290
  4. package/package.json +5 -2
  5. package/templates/commonproject/.mise/scripts/create-plane-project.sh +26 -0
  6. package/templates/commonproject/copier.yml +2 -0
  7. package/templates/commonproject/template/.agents/hooks/README.md +151 -0
  8. package/templates/commonproject/template/.agents/hooks/hermes/hindsight-hook.sh +63 -0
  9. package/templates/commonproject/template/.agents/hooks/hindsight/hindsight-journal-write.sh +327 -0
  10. package/templates/commonproject/template/.agents/hooks/hindsight/hindsight-recall.sh +180 -0
  11. package/templates/commonproject/template/.agents/hooks/hindsight/hindsight-retain.sh +74 -0
  12. package/templates/commonproject/template/.agents/hooks/hindsight/hindsight-session-end.sh +57 -0
  13. package/templates/commonproject/template/.agents/hooks/hindsight/lib/hindsight-bank.sh +57 -0
  14. package/templates/commonproject/template/.agents/hooks/hindsight/lib/hindsight-journal.sh +48 -0
  15. package/templates/commonproject/template/.agents/hooks/hooks.master.json +97 -0
  16. package/templates/commonproject/template/.agents/hooks/lib/hook-guard.sh +30 -0
  17. package/templates/commonproject/template/.agents/hooks/lib/local-config.sh +51 -0
  18. package/templates/commonproject/template/.agents/hooks/reminder-for-skill-check.sh +20 -0
  19. package/templates/commonproject/template/.agents/hooks/sync.py +618 -0
  20. package/templates/commonproject/template/.agents/local.example.json +15 -0
  21. package/templates/commonproject/template/.mise/scripts/hindsight-setup.sh +62 -0
  22. package/templates/commonproject/template/.mise/scripts/link-project-skills-to-clis.sh +110 -0
  23. package/templates/commonproject/template/.mise/scripts/unlink-project-skills-from-clis.sh +45 -0
  24. package/templates/commonproject/template/mise.toml.jinja +42 -0
  25. package/templates/hermes-agent/.codegraph/daemon.pid +6 -0
  26. package/templates/hermes-agent/.omo/run-continuation/ses_0e5b28303ffeXxL53hZjKggXDW.json +10 -0
  27. package/templates/hermes-agent/README.md +16 -14
  28. package/templates/hermes-agent/copier.yml +7 -25
  29. package/templates/hermes-agent/docs/architecture.md +16 -18
  30. package/templates/hermes-agent/docs/fleet-control-plane/README.md +35 -0
  31. package/templates/hermes-agent/docs/fleet-control-plane/architecture.md +253 -0
  32. package/templates/hermes-agent/docs/fleet-control-plane/epics-and-stories.md +280 -0
  33. package/templates/hermes-agent/docs/fleet-control-plane/implementation-readiness-report-2026-06-27.md +118 -0
  34. package/templates/hermes-agent/docs/fleet-control-plane/prd.md +141 -0
  35. package/templates/hermes-agent/docs/operations.md +17 -19
  36. package/templates/hermes-agent/docs/runbooks/runtime-checkpoint-repair.md +17 -13
  37. package/templates/hermes-agent/docs/{scrum-master → sentinel}/README.md +47 -46
  38. package/templates/hermes-agent/docs/{scrum-master → sentinel}/architecture.md +39 -38
  39. package/templates/hermes-agent/docs/{scrum-master → sentinel}/development.md +63 -99
  40. package/templates/hermes-agent/docs/{scrum-master → sentinel}/providers.md +2 -2
  41. package/templates/hermes-agent/docs/sentinel.md +18 -0
  42. package/templates/hermes-agent/install-local.sh +22 -20
  43. package/templates/hermes-agent/runtime-scaffold/README.md +10 -9
  44. package/templates/hermes-agent/scripts/backfill-fleet-sot.sh +12 -21
  45. package/templates/hermes-agent/scripts/fleet-sync.sh +369 -0
  46. package/templates/hermes-agent/scripts/migrate-unify.sh +252 -0
  47. package/templates/hermes-agent/scripts/unify-pm.sh +148 -0
  48. package/templates/hermes-agent/template/.runtime-scaffold/README.md +10 -9
  49. package/templates/hermes-agent/template/.scripts/01-config.sh +2 -3
  50. package/templates/hermes-agent/template/.scripts/05-fleet-env.sh +0 -2
  51. package/templates/hermes-agent/template/.scripts/10-hermes-profile.sh +47 -19
  52. package/templates/hermes-agent/template/.scripts/20-runtime-repo.sh +71 -27
  53. package/templates/hermes-agent/template/.scripts/30-telegram.sh +3 -3
  54. package/templates/hermes-agent/template/.scripts/42-ticket-provider.sh +3 -3
  55. package/templates/hermes-agent/template/.scripts/70-systemd.sh +48 -43
  56. package/templates/hermes-agent/template/.scripts/80-registry.sh +2 -2
  57. package/templates/hermes-agent/template/.scripts/99-summary.sh +3 -4
  58. package/templates/hermes-agent/template/.scripts/_lib.sh +4 -19
  59. package/templates/hermes-agent/template/.scripts/checkpoint.sh +36 -0
  60. package/templates/hermes-agent/template/.scripts/config.example.toml +11 -5
  61. package/templates/hermes-agent/template/.scripts/{scrum-master/continuous-ticket-sentinel.sh → heartbeat.sh} +84 -31
  62. package/templates/hermes-agent/template/.scripts/lib/ticket-provider.sh +1 -1
  63. package/templates/hermes-agent/template/.scripts/providers/plane.sh +9 -3
  64. package/templates/hermes-agent/template/.scripts/{scrum-master → sentinel}/bin/emit-event.py +5 -5
  65. package/templates/hermes-agent/template/.scripts/{scrum-master → sentinel}/bin/issue-autonomous-review.sh +6 -6
  66. package/templates/hermes-agent/template/.scripts/{scrum-master → sentinel}/bin/issue-close-gate.sh +2 -2
  67. package/templates/hermes-agent/template/.scripts/{scrum-master → sentinel}/docs/autonomous-delegated-review.md +7 -7
  68. package/templates/hermes-agent/template/.scripts/{scrum-master → sentinel}/docs/bloodbank-events.md +3 -3
  69. package/templates/hermes-agent/template/.scripts/{scrum-master → sentinel}/docs/continuous-ticket-orchestration.md +6 -6
  70. package/templates/hermes-agent/template/.scripts/{scrum-master/continuous-ticket-sentinel.prompt.md.jinja → sentinel.prompt.md.jinja} +5 -4
  71. package/templates/hermes-agent/template/SOUL.md.jinja +3 -6
  72. package/templates/hermes-agent/template/hermes.jinja +6 -15
  73. package/templates/hermes-agent/template/role.yaml.jinja +9 -8
  74. package/templates/commonproject/.claude/commands/bmad/bmb/agents/agent-builder.md +0 -14
  75. package/templates/commonproject/.claude/commands/bmad/bmb/agents/module-builder.md +0 -14
  76. package/templates/commonproject/.claude/commands/bmad/bmb/agents/workflow-builder.md +0 -14
  77. package/templates/commonproject/.claude/commands/bmad/bmb/workflows/agent.md +0 -5
  78. package/templates/commonproject/.claude/commands/bmad/bmb/workflows/module.md +0 -5
  79. package/templates/commonproject/.claude/commands/bmad/bmb/workflows/workflow.md +0 -5
  80. package/templates/commonproject/.claude/commands/bmad/bmm/agents/analyst.md +0 -14
  81. package/templates/commonproject/.claude/commands/bmad/bmm/agents/architect.md +0 -14
  82. package/templates/commonproject/.claude/commands/bmad/bmm/agents/dev.md +0 -14
  83. package/templates/commonproject/.claude/commands/bmad/bmm/agents/pm.md +0 -14
  84. package/templates/commonproject/.claude/commands/bmad/bmm/agents/quick-flow-solo-dev.md +0 -14
  85. package/templates/commonproject/.claude/commands/bmad/bmm/agents/sm.md +0 -14
  86. package/templates/commonproject/.claude/commands/bmad/bmm/agents/tea.md +0 -14
  87. package/templates/commonproject/.claude/commands/bmad/bmm/agents/tech-writer.md +0 -14
  88. package/templates/commonproject/.claude/commands/bmad/bmm/agents/ux-designer.md +0 -14
  89. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/check-implementation-readiness.md +0 -5
  90. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/code-review.md +0 -13
  91. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/correct-course.md +0 -13
  92. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/create-architecture.md +0 -5
  93. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/create-epics-and-stories.md +0 -5
  94. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/create-excalidraw-dataflow.md +0 -13
  95. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/create-excalidraw-diagram.md +0 -13
  96. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/create-excalidraw-flowchart.md +0 -13
  97. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/create-excalidraw-wireframe.md +0 -13
  98. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/create-product-brief.md +0 -5
  99. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/create-story.md +0 -13
  100. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/create-ux-design.md +0 -5
  101. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/dev-story.md +0 -13
  102. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/document-project.md +0 -13
  103. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/generate-project-context.md +0 -5
  104. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/prd.md +0 -5
  105. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/quick-dev.md +0 -5
  106. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/quick-spec.md +0 -5
  107. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/research.md +0 -5
  108. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/retrospective.md +0 -13
  109. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/sprint-planning.md +0 -13
  110. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/sprint-status.md +0 -13
  111. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/testarch-atdd.md +0 -13
  112. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/testarch-automate.md +0 -13
  113. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/testarch-ci.md +0 -13
  114. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/testarch-framework.md +0 -13
  115. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/testarch-nfr.md +0 -13
  116. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/testarch-test-design.md +0 -13
  117. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/testarch-test-review.md +0 -13
  118. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/testarch-trace.md +0 -13
  119. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/workflow-init.md +0 -13
  120. package/templates/commonproject/.claude/commands/bmad/bmm/workflows/workflow-status.md +0 -13
  121. package/templates/commonproject/.claude/commands/bmad/cis/agents/brainstorming-coach.md +0 -14
  122. package/templates/commonproject/.claude/commands/bmad/cis/agents/creative-problem-solver.md +0 -14
  123. package/templates/commonproject/.claude/commands/bmad/cis/agents/design-thinking-coach.md +0 -14
  124. package/templates/commonproject/.claude/commands/bmad/cis/agents/innovation-strategist.md +0 -14
  125. package/templates/commonproject/.claude/commands/bmad/cis/agents/presentation-master.md +0 -14
  126. package/templates/commonproject/.claude/commands/bmad/cis/agents/storyteller.md +0 -14
  127. package/templates/commonproject/.claude/commands/bmad/cis/workflows/design-thinking.md +0 -13
  128. package/templates/commonproject/.claude/commands/bmad/cis/workflows/innovation-strategy.md +0 -13
  129. package/templates/commonproject/.claude/commands/bmad/cis/workflows/problem-solving.md +0 -13
  130. package/templates/commonproject/.claude/commands/bmad/cis/workflows/storytelling.md +0 -13
  131. package/templates/commonproject/.claude/commands/bmad/core/agents/bmad-master.md +0 -14
  132. package/templates/commonproject/.claude/commands/bmad/core/tasks/index-docs.md +0 -9
  133. package/templates/commonproject/.claude/commands/bmad/core/tasks/shard-doc.md +0 -9
  134. package/templates/commonproject/.claude/commands/bmad/core/workflows/brainstorming.md +0 -5
  135. package/templates/commonproject/.claude/commands/bmad/core/workflows/party-mode.md +0 -5
  136. package/templates/commonproject/.claude/commands/bmad/custom/workflows/ticket-lifecycle.md +0 -5
  137. package/templates/hermes-agent/docs/scrum-master-sentinel.md +0 -17
  138. package/templates/hermes-agent/template/.scripts/75-scrum-master.sh +0 -117
  139. package/templates/hermes-agent/template/.scripts/90-chain-scrum-master.sh +0 -45
@@ -1,13 +0,0 @@
1
- ---
2
- description: 'Initialize production-ready test framework architecture (Playwright or Cypress) with fixtures, helpers, and configuration'
3
- ---
4
-
5
- IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
6
-
7
- <steps CRITICAL="TRUE">
8
- 1. Always LOAD the FULL @_bmad/core/tasks/workflow.xml
9
- 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config @_bmad/bmm/workflows/testarch/framework/workflow.yaml
10
- 3. Pass the yaml path _bmad/bmm/workflows/testarch/framework/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
11
- 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
12
- 5. Save outputs after EACH section when generating any documents from templates
13
- </steps>
@@ -1,13 +0,0 @@
1
- ---
2
- description: 'Assess non-functional requirements (performance, security, reliability, maintainability) before release with evidence-based validation'
3
- ---
4
-
5
- IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
6
-
7
- <steps CRITICAL="TRUE">
8
- 1. Always LOAD the FULL @_bmad/core/tasks/workflow.xml
9
- 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config @_bmad/bmm/workflows/testarch/nfr-assess/workflow.yaml
10
- 3. Pass the yaml path _bmad/bmm/workflows/testarch/nfr-assess/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
11
- 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
12
- 5. Save outputs after EACH section when generating any documents from templates
13
- </steps>
@@ -1,13 +0,0 @@
1
- ---
2
- description: 'Dual-mode workflow: (1) System-level testability review in Solutioning phase, or (2) Epic-level test planning in Implementation phase. Auto-detects mode based on project phase.'
3
- ---
4
-
5
- IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
6
-
7
- <steps CRITICAL="TRUE">
8
- 1. Always LOAD the FULL @_bmad/core/tasks/workflow.xml
9
- 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config @_bmad/bmm/workflows/testarch/test-design/workflow.yaml
10
- 3. Pass the yaml path _bmad/bmm/workflows/testarch/test-design/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
11
- 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
12
- 5. Save outputs after EACH section when generating any documents from templates
13
- </steps>
@@ -1,13 +0,0 @@
1
- ---
2
- description: 'Review test quality using comprehensive knowledge base and best practices validation'
3
- ---
4
-
5
- IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
6
-
7
- <steps CRITICAL="TRUE">
8
- 1. Always LOAD the FULL @_bmad/core/tasks/workflow.xml
9
- 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config @_bmad/bmm/workflows/testarch/test-review/workflow.yaml
10
- 3. Pass the yaml path _bmad/bmm/workflows/testarch/test-review/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
11
- 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
12
- 5. Save outputs after EACH section when generating any documents from templates
13
- </steps>
@@ -1,13 +0,0 @@
1
- ---
2
- description: 'Generate requirements-to-tests traceability matrix, analyze coverage, and make quality gate decision (PASS/CONCERNS/FAIL/WAIVED)'
3
- ---
4
-
5
- IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
6
-
7
- <steps CRITICAL="TRUE">
8
- 1. Always LOAD the FULL @_bmad/core/tasks/workflow.xml
9
- 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config @_bmad/bmm/workflows/testarch/trace/workflow.yaml
10
- 3. Pass the yaml path _bmad/bmm/workflows/testarch/trace/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
11
- 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
12
- 5. Save outputs after EACH section when generating any documents from templates
13
- </steps>
@@ -1,13 +0,0 @@
1
- ---
2
- description: 'Initialize a new BMM project by determining level, type, and creating workflow path'
3
- ---
4
-
5
- IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
6
-
7
- <steps CRITICAL="TRUE">
8
- 1. Always LOAD the FULL @_bmad/core/tasks/workflow.xml
9
- 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config @_bmad/bmm/workflows/workflow-status/init/workflow.yaml
10
- 3. Pass the yaml path _bmad/bmm/workflows/workflow-status/init/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
11
- 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
12
- 5. Save outputs after EACH section when generating any documents from templates
13
- </steps>
@@ -1,13 +0,0 @@
1
- ---
2
- description: 'Lightweight status checker - answers ""what should I do now?"" for any agent. Reads YAML status file for workflow tracking. Use workflow-init for new projects.'
3
- ---
4
-
5
- IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
6
-
7
- <steps CRITICAL="TRUE">
8
- 1. Always LOAD the FULL @_bmad/core/tasks/workflow.xml
9
- 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config @_bmad/bmm/workflows/workflow-status/workflow.yaml
10
- 3. Pass the yaml path _bmad/bmm/workflows/workflow-status/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
11
- 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
12
- 5. Save outputs after EACH section when generating any documents from templates
13
- </steps>
@@ -1,14 +0,0 @@
1
- ---
2
- name: 'brainstorming-coach'
3
- description: 'brainstorming-coach agent'
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 @_bmad/cis/agents/brainstorming-coach.md
10
- 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
11
- 3. Execute ALL activation steps exactly as written in the agent file
12
- 4. Follow the agent's persona and menu system precisely
13
- 5. Stay in character throughout the session
14
- </agent-activation>
@@ -1,14 +0,0 @@
1
- ---
2
- name: 'creative-problem-solver'
3
- description: 'creative-problem-solver agent'
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 @_bmad/cis/agents/creative-problem-solver.md
10
- 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
11
- 3. Execute ALL activation steps exactly as written in the agent file
12
- 4. Follow the agent's persona and menu system precisely
13
- 5. Stay in character throughout the session
14
- </agent-activation>
@@ -1,14 +0,0 @@
1
- ---
2
- name: 'design-thinking-coach'
3
- description: 'design-thinking-coach agent'
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 @_bmad/cis/agents/design-thinking-coach.md
10
- 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
11
- 3. Execute ALL activation steps exactly as written in the agent file
12
- 4. Follow the agent's persona and menu system precisely
13
- 5. Stay in character throughout the session
14
- </agent-activation>
@@ -1,14 +0,0 @@
1
- ---
2
- name: 'innovation-strategist'
3
- description: 'innovation-strategist agent'
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 @_bmad/cis/agents/innovation-strategist.md
10
- 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
11
- 3. Execute ALL activation steps exactly as written in the agent file
12
- 4. Follow the agent's persona and menu system precisely
13
- 5. Stay in character throughout the session
14
- </agent-activation>
@@ -1,14 +0,0 @@
1
- ---
2
- name: 'presentation-master'
3
- description: 'presentation-master agent'
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 @_bmad/cis/agents/presentation-master.md
10
- 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
11
- 3. Execute ALL activation steps exactly as written in the agent file
12
- 4. Follow the agent's persona and menu system precisely
13
- 5. Stay in character throughout the session
14
- </agent-activation>
@@ -1,14 +0,0 @@
1
- ---
2
- name: 'storyteller'
3
- description: 'storyteller agent'
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 @_bmad/cis/agents/storyteller/storyteller.md
10
- 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
11
- 3. Execute ALL activation steps exactly as written in the agent file
12
- 4. Follow the agent's persona and menu system precisely
13
- 5. Stay in character throughout the session
14
- </agent-activation>
@@ -1,13 +0,0 @@
1
- ---
2
- description: 'Guide human-centered design processes using empathy-driven methodologies. This workflow walks through the design thinking phases - Empathize, Define, Ideate, Prototype, and Test - to create solutions deeply rooted in user needs.'
3
- ---
4
-
5
- IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
6
-
7
- <steps CRITICAL="TRUE">
8
- 1. Always LOAD the FULL @_bmad/core/tasks/workflow.xml
9
- 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config @_bmad/cis/workflows/design-thinking/workflow.yaml
10
- 3. Pass the yaml path _bmad/cis/workflows/design-thinking/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
11
- 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
12
- 5. Save outputs after EACH section when generating any documents from templates
13
- </steps>
@@ -1,13 +0,0 @@
1
- ---
2
- description: 'Identify disruption opportunities and architect business model innovation. This workflow guides strategic analysis of markets, competitive dynamics, and business model innovation to uncover sustainable competitive advantages and breakthrough opportunities.'
3
- ---
4
-
5
- IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
6
-
7
- <steps CRITICAL="TRUE">
8
- 1. Always LOAD the FULL @_bmad/core/tasks/workflow.xml
9
- 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config @_bmad/cis/workflows/innovation-strategy/workflow.yaml
10
- 3. Pass the yaml path _bmad/cis/workflows/innovation-strategy/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
11
- 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
12
- 5. Save outputs after EACH section when generating any documents from templates
13
- </steps>
@@ -1,13 +0,0 @@
1
- ---
2
- description: 'Apply systematic problem-solving methodologies to crack complex challenges. This workflow guides through problem diagnosis, root cause analysis, creative solution generation, evaluation, and implementation planning using proven frameworks.'
3
- ---
4
-
5
- IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
6
-
7
- <steps CRITICAL="TRUE">
8
- 1. Always LOAD the FULL @_bmad/core/tasks/workflow.xml
9
- 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config @_bmad/cis/workflows/problem-solving/workflow.yaml
10
- 3. Pass the yaml path _bmad/cis/workflows/problem-solving/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
11
- 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
12
- 5. Save outputs after EACH section when generating any documents from templates
13
- </steps>
@@ -1,13 +0,0 @@
1
- ---
2
- description: 'Craft compelling narratives using proven story frameworks and techniques. This workflow guides users through structured narrative development, applying appropriate story frameworks to create emotionally resonant and engaging stories for any purpose.'
3
- ---
4
-
5
- IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
6
-
7
- <steps CRITICAL="TRUE">
8
- 1. Always LOAD the FULL @_bmad/core/tasks/workflow.xml
9
- 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config @_bmad/cis/workflows/storytelling/workflow.yaml
10
- 3. Pass the yaml path _bmad/cis/workflows/storytelling/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
11
- 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
12
- 5. Save outputs after EACH section when generating any documents from templates
13
- </steps>
@@ -1,14 +0,0 @@
1
- ---
2
- name: 'bmad-master'
3
- description: 'bmad-master agent'
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 @_bmad/core/agents/bmad-master.md
10
- 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
11
- 3. Execute ALL activation steps exactly as written in the agent file
12
- 4. Follow the agent's persona and menu system precisely
13
- 5. Stay in character throughout the session
14
- </agent-activation>
@@ -1,9 +0,0 @@
1
- ---
2
- description: 'Generates or updates an index.md of all documents in the specified directory'
3
- ---
4
-
5
- # Index Docs
6
-
7
- LOAD and execute the task at: _bmad/core/tasks/index-docs.xml
8
-
9
- Follow all instructions in the task file exactly as written.
@@ -1,9 +0,0 @@
1
- ---
2
- description: 'Splits large markdown documents into smaller, organized files based on level 2 (default) sections'
3
- ---
4
-
5
- # Shard Document
6
-
7
- LOAD and execute the task at: _bmad/core/tasks/shard-doc.xml
8
-
9
- Follow all instructions in the task file exactly as written.
@@ -1,5 +0,0 @@
1
- ---
2
- description: 'Facilitate interactive brainstorming sessions using diverse creative techniques and ideation methods'
3
- ---
4
-
5
- IT IS CRITICAL THAT YOU FOLLOW THIS COMMAND: LOAD the FULL @_bmad/core/workflows/brainstorming/workflow.md, READ its entire contents and follow its directions exactly!
@@ -1,5 +0,0 @@
1
- ---
2
- description: 'Orchestrates group discussions between all installed BMAD agents, enabling natural multi-agent conversations'
3
- ---
4
-
5
- IT IS CRITICAL THAT YOU FOLLOW THIS COMMAND: LOAD the FULL @_bmad/core/workflows/party-mode/workflow.md, READ its entire contents and follow its directions exactly!
@@ -1,5 +0,0 @@
1
- ---
2
- description: 'Autonomous multi-agent ticket lifecycle: triage, AC refinement, implementation, and QA verification via Plane + Bloodbank (tri-modal: create, validate, edit)'
3
- ---
4
-
5
- IT IS CRITICAL THAT YOU FOLLOW THIS COMMAND: LOAD the FULL @_bmad/custom/workflows/ticket-lifecycle/workflow.md, READ its entire contents and follow its directions exactly!
@@ -1,17 +0,0 @@
1
- # Scrum Master role and the ticket sentinel
2
-
3
- The Scrum Master is a Hermes agent role whose core loop is a provider-agnostic
4
- ticket sentinel with an autonomous adversarial review (act, do not wait). The
5
- full documentation has moved to a dedicated handoff guide.
6
-
7
- This page is kept as a stable pointer so existing links keep working.
8
-
9
- ## Where the docs live now
10
-
11
- - [Scrum Master handoff overview](scrum-master/README.md): start here.
12
- - [Architecture](scrum-master/architecture.md): the watch loop, the provider
13
- abstraction, and the autonomous adversarial review.
14
- - [Providers](scrum-master/providers.md): the adapter contract and how to add or
15
- verify a provider.
16
- - [Development guide](scrum-master/development.md): editing, validating,
17
- provisioning, propagating, the Drumjangler cutover record, and the roadmap.
@@ -1,117 +0,0 @@
1
- #!/usr/bin/env bash
2
- # Install the Scrum Master continuous-ticket sentinel: systemd timer + runner,
3
- # and stage the engine docs + enforcement tools into the role dir.
4
- # Only meaningful for role: scrum-master (copier guards the _tasks call).
5
- # shellcheck source=_lib.sh
6
- source "$(dirname "$0")/_lib.sh"
7
- load_role_env
8
-
9
- if [[ "$ROLE" != "scrum-master" ]]; then
10
- log "[75] role is '$ROLE', not scrum-master — skipping sentinel install"; exit 0
11
- fi
12
- if already_done 75-scrum-master && [[ "${FORCE_SENTINEL:-0}" != "1" ]]; then
13
- log "[75] scrum master sentinel already installed — skipping"; exit 0
14
- fi
15
-
16
- RUNTIME="$ROLE_DIR/runtime"
17
- PROFILE_HOME="$(profile_or_runtime_home)"
18
- REPO_ROOT="$(project_repo_path)"
19
- RUNNER="$ROLE_DIR/.scripts/scrum-master/continuous-ticket-sentinel.sh"
20
- SYS_DIR="$HOME/.config/systemd/user"
21
- mkdir -p "$SYS_DIR" "$PROFILE_HOME/logs"
22
-
23
- [[ -f "$RUNNER" ]] || die "[75] runner missing: $RUNNER (template render incomplete)"
24
- chmod +x "$RUNNER" "$ROLE_DIR/.scripts/scrum-master/"*.sh 2>/dev/null || true
25
- chmod +x "$ROLE_DIR/.scripts/scrum-master/bin/"*.sh 2>/dev/null || true
26
-
27
- LOG="$PROFILE_HOME/logs/continuous-ticket-sentinel.log"
28
- ENV_FILE="$HOME/.hermes/${AGENT_ID}.env"
29
-
30
- if [[ "$(uname -s)" == "Darwin" ]]; then
31
- # macOS: a launchd LaunchAgent that runs the sentinel every 60 seconds. It
32
- # sources the per-agent env file (ticket-provider keys) and exports them.
33
- LA_DIR="$HOME/Library/LaunchAgents"
34
- mkdir -p "$LA_DIR"
35
- LABEL="com.hermes.${AGENT_ID}.sentinel"
36
- PLIST="$LA_DIR/$LABEL.plist"
37
- cat > "$PLIST" <<PLIST
38
- <?xml version="1.0" encoding="UTF-8"?>
39
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
40
- <plist version="1.0">
41
- <dict>
42
- <key>Label</key><string>$LABEL</string>
43
- <key>ProgramArguments</key>
44
- <array>
45
- <string>/bin/sh</string>
46
- <string>-lc</string>
47
- <string>set -a; [ -f "$ENV_FILE" ] &amp;&amp; . "$ENV_FILE"; set +a; exec "$RUNNER"</string>
48
- </array>
49
- <key>StartInterval</key><integer>60</integer>
50
- <key>RunAtLoad</key><true/>
51
- <key>WorkingDirectory</key><string>$REPO_ROOT</string>
52
- <key>EnvironmentVariables</key>
53
- <dict><key>HERMES_HOME</key><string>$PROFILE_HOME</string></dict>
54
- <key>StandardOutPath</key><string>$LOG</string>
55
- <key>StandardErrorPath</key><string>$LOG</string>
56
- </dict>
57
- </plist>
58
- PLIST
59
- launchctl unload "$PLIST" >/dev/null 2>&1 || true
60
- if launchctl load -w "$PLIST" >/dev/null 2>&1; then
61
- log " loaded launchd agent: $LABEL"
62
- else
63
- warn " launchd load failed; plist written at $PLIST"
64
- fi
65
- else
66
- # Linux: systemd --user oneshot service plus a 1-minute timer.
67
- ENV_FILES="$(cat <<'ENVFILES'
68
- EnvironmentFile=-%h/.config/hermes-agent/env
69
- EnvironmentFile=-%h/.hermes/env
70
- EnvironmentFile=-%h/.hermes/hermes-agent.env
71
- ENVFILES
72
- )"
73
- ENV_FILES="$ENV_FILES
74
- EnvironmentFile=-%h/.hermes/${AGENT_ID}.env"
75
- SVC_UNIT="hermes-${AGENT_ID}-continuous-ticket-sentinel.service"
76
- TIMER_UNIT="hermes-${AGENT_ID}-continuous-ticket-sentinel.timer"
77
- cat > "$SYS_DIR/$SVC_UNIT" <<UNIT
78
- [Unit]
79
- Description=Hermes Continuous Ticket Sentinel — $DISPLAY_NAME
80
- After=network-online.target
81
- Wants=network-online.target
82
-
83
- [Service]
84
- Type=oneshot
85
- WorkingDirectory=$REPO_ROOT
86
- Environment=HERMES_HOME=$PROFILE_HOME
87
- $ENV_FILES
88
- ExecStart=$RUNNER
89
- TimeoutStartSec=45min
90
- StandardOutput=append:$LOG
91
- StandardError=append:$LOG
92
- UNIT
93
- cat > "$SYS_DIR/$TIMER_UNIT" <<UNIT
94
- [Unit]
95
- Description=Continuous ticket sentinel for $AGENT_ID
96
-
97
- [Timer]
98
- OnBootSec=1min
99
- OnUnitInactiveSec=1min
100
- Unit=$SVC_UNIT
101
- Persistent=true
102
-
103
- [Install]
104
- WantedBy=timers.target
105
- UNIT
106
- if systemd_user_available; then
107
- systemctl --user daemon-reload
108
- systemctl --user enable --now "$TIMER_UNIT" >/dev/null 2>&1 \
109
- && log " enabled: $TIMER_UNIT" \
110
- || warn " failed to enable: $TIMER_UNIT"
111
- else
112
- warn " systemd --user not available; units installed at $SYS_DIR but not enabled"
113
- fi
114
- fi
115
-
116
- log "[75] scrum master sentinel installed (provider: $(yaml_get ticket_provider.name))"
117
- mark_done 75-scrum-master
@@ -1,45 +0,0 @@
1
- #!/usr/bin/env bash
2
- # When a PM is provisioned with with_scrum_master=yes, chain a paired Scrum
3
- # Master provision for the same repo + ticket provider into a sibling role dir.
4
- # Idempotent: skips if agents/hermes/scrum-master already exists.
5
- # shellcheck source=_lib.sh
6
- source "$(dirname "$0")/_lib.sh"
7
- load_role_env
8
-
9
- already_done 90-chain-scrum-master && { log "[90] scrum master already chained — skipping"; exit 0; }
10
-
11
- # Sibling path: .../agents/hermes/scrum-master (peer of this pm role dir).
12
- HERMES_DIR="$(dirname "$ROLE_DIR")"
13
- SM_DIR="$HERMES_DIR/scrum-master"
14
-
15
- if [[ -d "$SM_DIR" ]]; then
16
- log "[90] $SM_DIR already exists — not re-provisioning"; mark_done 90-chain-scrum-master; exit 0
17
- fi
18
-
19
- # Resolve the template source from this provision's copier answers.
20
- ANSWERS="$ROLE_DIR/.copier-answers.yml"
21
- SRC="$(yaml_get _src_path 2>/dev/null || true)"
22
- [[ -z "$SRC" && -f "$ANSWERS" ]] && SRC="$(python3 -c 'import sys,re,pathlib;
23
- t=pathlib.Path(sys.argv[1]).read_text();m=re.search(r"(?m)^_src_path:\s*(.+)$",t);print((m.group(1).strip() if m else ""))' "$ANSWERS")"
24
- SRC="${SRC:-gh:delorenj/hermes-agent-template}"
25
-
26
- PROVIDER="$(yaml_get ticket_provider.name)"; PROVIDER="${PROVIDER:-plane}"
27
-
28
- if ! command -v copier >/dev/null 2>&1; then
29
- warn "[90] copier not on PATH; provision the Scrum Master manually:"
30
- warn " copier copy --trust $SRC $SM_DIR --data role=scrum-master --data target_repo=$REPO --data ticket_provider=$PROVIDER"
31
- mark_done 90-chain-scrum-master; exit 0
32
- fi
33
-
34
- log "[90] chaining Scrum Master provision -> $SM_DIR (provider: $PROVIDER)"
35
- # --trust is REQUIRED: the hermes-agent template uses copier `tasks`, which copier
36
- # refuses to run unless explicitly trusted. Without it the chained provision aborts
37
- # with "Template uses potentially unsafe feature: tasks" and the SM is never created.
38
- copier copy --defaults --overwrite --trust \
39
- --data role=scrum-master \
40
- --data target_repo="$REPO" \
41
- --data ticket_provider="$PROVIDER" \
42
- "$SRC" "$SM_DIR" \
43
- || warn "[90] chained scrum-master provision failed; run it manually (see command above)"
44
-
45
- mark_done 90-chain-scrum-master