ma-agents 2.16.0 → 2.16.1

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 (58) hide show
  1. package/.agent/workflows/bmad-agent-bmad-master.md +15 -0
  2. package/.agent/workflows/bmad-agent-bmm-analyst.md +15 -0
  3. package/.agent/workflows/bmad-agent-bmm-architect.md +15 -0
  4. package/.agent/workflows/bmad-agent-bmm-dev.md +15 -0
  5. package/.agent/workflows/bmad-agent-bmm-pm.md +15 -0
  6. package/.agent/workflows/bmad-agent-bmm-qa.md +15 -0
  7. package/.agent/workflows/bmad-agent-bmm-quick-flow-solo-dev.md +15 -0
  8. package/.agent/workflows/bmad-agent-bmm-sm.md +15 -0
  9. package/.agent/workflows/bmad-agent-bmm-tech-writer.md +15 -0
  10. package/.agent/workflows/bmad-agent-bmm-ux-designer.md +15 -0
  11. package/.agent/workflows/bmad-agent-cis-brainstorming-coach.md +15 -0
  12. package/.agent/workflows/bmad-agent-cis-creative-problem-solver.md +15 -0
  13. package/.agent/workflows/bmad-agent-cis-design-thinking-coach.md +15 -0
  14. package/.agent/workflows/bmad-agent-cis-innovation-strategist.md +15 -0
  15. package/.agent/workflows/bmad-agent-cis-presentation-master.md +15 -0
  16. package/.agent/workflows/bmad-agent-cis-storyteller.md +15 -0
  17. package/.agent/workflows/bmad-bmm-check-implementation-readiness.md +6 -0
  18. package/.agent/workflows/bmad-bmm-code-review.md +14 -0
  19. package/.agent/workflows/bmad-bmm-correct-course.md +14 -0
  20. package/.agent/workflows/bmad-bmm-create-architecture.md +6 -0
  21. package/.agent/workflows/bmad-bmm-create-epics-and-stories.md +6 -0
  22. package/.agent/workflows/bmad-bmm-create-prd.md +6 -0
  23. package/.agent/workflows/bmad-bmm-create-product-brief.md +6 -0
  24. package/.agent/workflows/bmad-bmm-create-story.md +14 -0
  25. package/.agent/workflows/bmad-bmm-create-ux-design.md +6 -0
  26. package/.agent/workflows/bmad-bmm-dev-story.md +14 -0
  27. package/.agent/workflows/bmad-bmm-document-project.md +14 -0
  28. package/.agent/workflows/bmad-bmm-domain-research.md +6 -0
  29. package/.agent/workflows/bmad-bmm-edit-prd.md +6 -0
  30. package/.agent/workflows/bmad-bmm-generate-project-context.md +6 -0
  31. package/.agent/workflows/bmad-bmm-market-research.md +6 -0
  32. package/.agent/workflows/bmad-bmm-qa-generate-e2e-tests.md +14 -0
  33. package/.agent/workflows/bmad-bmm-quick-dev.md +6 -0
  34. package/.agent/workflows/bmad-bmm-quick-spec.md +6 -0
  35. package/.agent/workflows/bmad-bmm-retrospective.md +14 -0
  36. package/.agent/workflows/bmad-bmm-sprint-planning.md +14 -0
  37. package/.agent/workflows/bmad-bmm-sprint-status.md +14 -0
  38. package/.agent/workflows/bmad-bmm-technical-research.md +6 -0
  39. package/.agent/workflows/bmad-bmm-validate-prd.md +6 -0
  40. package/.agent/workflows/bmad-brainstorming.md +6 -0
  41. package/.agent/workflows/bmad-cis-design-thinking.md +14 -0
  42. package/.agent/workflows/bmad-cis-innovation-strategy.md +14 -0
  43. package/.agent/workflows/bmad-cis-problem-solving.md +14 -0
  44. package/.agent/workflows/bmad-cis-storytelling.md +14 -0
  45. package/.agent/workflows/bmad-editorial-review-prose.md +10 -0
  46. package/.agent/workflows/bmad-editorial-review-structure.md +10 -0
  47. package/.agent/workflows/bmad-help.md +10 -0
  48. package/.agent/workflows/bmad-index-docs.md +10 -0
  49. package/.agent/workflows/bmad-party-mode.md +6 -0
  50. package/.agent/workflows/bmad-review-adversarial-general.md +10 -0
  51. package/.agent/workflows/bmad-review-edge-case-hunter.md +10 -0
  52. package/.agent/workflows/bmad-shard-doc.md +10 -0
  53. package/README.md +43 -27
  54. package/bin/cli.js +37 -11
  55. package/lib/agents.js +18 -1
  56. package/lib/bmad.js +33 -8
  57. package/lib/installer.js +112 -38
  58. package/package.json +3 -3
@@ -0,0 +1,15 @@
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 {project-root}/_bmad/core/agents/bmad-master.md
10
+ 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
11
+ 3. FOLLOW every step in the <activation> section precisely
12
+ 4. DISPLAY the welcome/greeting as instructed
13
+ 5. PRESENT the numbered menu
14
+ 6. WAIT for user input before proceeding
15
+ </agent-activation>
@@ -0,0 +1,15 @@
1
+ ---
2
+ name: 'analyst'
3
+ description: 'analyst 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 {project-root}/_bmad/bmm/agents/analyst.md
10
+ 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
11
+ 3. FOLLOW every step in the <activation> section precisely
12
+ 4. DISPLAY the welcome/greeting as instructed
13
+ 5. PRESENT the numbered menu
14
+ 6. WAIT for user input before proceeding
15
+ </agent-activation>
@@ -0,0 +1,15 @@
1
+ ---
2
+ name: 'architect'
3
+ description: 'architect 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 {project-root}/_bmad/bmm/agents/architect.md
10
+ 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
11
+ 3. FOLLOW every step in the <activation> section precisely
12
+ 4. DISPLAY the welcome/greeting as instructed
13
+ 5. PRESENT the numbered menu
14
+ 6. WAIT for user input before proceeding
15
+ </agent-activation>
@@ -0,0 +1,15 @@
1
+ ---
2
+ name: 'dev'
3
+ description: 'dev 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 {project-root}/_bmad/bmm/agents/dev.md
10
+ 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
11
+ 3. FOLLOW every step in the <activation> section precisely
12
+ 4. DISPLAY the welcome/greeting as instructed
13
+ 5. PRESENT the numbered menu
14
+ 6. WAIT for user input before proceeding
15
+ </agent-activation>
@@ -0,0 +1,15 @@
1
+ ---
2
+ name: 'pm'
3
+ description: 'pm 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 {project-root}/_bmad/bmm/agents/pm.md
10
+ 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
11
+ 3. FOLLOW every step in the <activation> section precisely
12
+ 4. DISPLAY the welcome/greeting as instructed
13
+ 5. PRESENT the numbered menu
14
+ 6. WAIT for user input before proceeding
15
+ </agent-activation>
@@ -0,0 +1,15 @@
1
+ ---
2
+ name: 'qa'
3
+ description: 'qa 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 {project-root}/_bmad/bmm/agents/qa.md
10
+ 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
11
+ 3. FOLLOW every step in the <activation> section precisely
12
+ 4. DISPLAY the welcome/greeting as instructed
13
+ 5. PRESENT the numbered menu
14
+ 6. WAIT for user input before proceeding
15
+ </agent-activation>
@@ -0,0 +1,15 @@
1
+ ---
2
+ name: 'quick-flow-solo-dev'
3
+ description: 'quick-flow-solo-dev 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 {project-root}/_bmad/bmm/agents/quick-flow-solo-dev.md
10
+ 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
11
+ 3. FOLLOW every step in the <activation> section precisely
12
+ 4. DISPLAY the welcome/greeting as instructed
13
+ 5. PRESENT the numbered menu
14
+ 6. WAIT for user input before proceeding
15
+ </agent-activation>
@@ -0,0 +1,15 @@
1
+ ---
2
+ name: 'sm'
3
+ description: 'sm 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 {project-root}/_bmad/bmm/agents/sm.md
10
+ 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
11
+ 3. FOLLOW every step in the <activation> section precisely
12
+ 4. DISPLAY the welcome/greeting as instructed
13
+ 5. PRESENT the numbered menu
14
+ 6. WAIT for user input before proceeding
15
+ </agent-activation>
@@ -0,0 +1,15 @@
1
+ ---
2
+ name: 'tech-writer'
3
+ description: 'tech-writer 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 {project-root}/_bmad/bmm/agents/tech-writer/tech-writer.md
10
+ 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
11
+ 3. FOLLOW every step in the <activation> section precisely
12
+ 4. DISPLAY the welcome/greeting as instructed
13
+ 5. PRESENT the numbered menu
14
+ 6. WAIT for user input before proceeding
15
+ </agent-activation>
@@ -0,0 +1,15 @@
1
+ ---
2
+ name: 'ux-designer'
3
+ description: 'ux-designer 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 {project-root}/_bmad/bmm/agents/ux-designer.md
10
+ 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
11
+ 3. FOLLOW every step in the <activation> section precisely
12
+ 4. DISPLAY the welcome/greeting as instructed
13
+ 5. PRESENT the numbered menu
14
+ 6. WAIT for user input before proceeding
15
+ </agent-activation>
@@ -0,0 +1,15 @@
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 {project-root}/_bmad/cis/agents/brainstorming-coach.md
10
+ 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
11
+ 3. FOLLOW every step in the <activation> section precisely
12
+ 4. DISPLAY the welcome/greeting as instructed
13
+ 5. PRESENT the numbered menu
14
+ 6. WAIT for user input before proceeding
15
+ </agent-activation>
@@ -0,0 +1,15 @@
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 {project-root}/_bmad/cis/agents/creative-problem-solver.md
10
+ 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
11
+ 3. FOLLOW every step in the <activation> section precisely
12
+ 4. DISPLAY the welcome/greeting as instructed
13
+ 5. PRESENT the numbered menu
14
+ 6. WAIT for user input before proceeding
15
+ </agent-activation>
@@ -0,0 +1,15 @@
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 {project-root}/_bmad/cis/agents/design-thinking-coach.md
10
+ 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
11
+ 3. FOLLOW every step in the <activation> section precisely
12
+ 4. DISPLAY the welcome/greeting as instructed
13
+ 5. PRESENT the numbered menu
14
+ 6. WAIT for user input before proceeding
15
+ </agent-activation>
@@ -0,0 +1,15 @@
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 {project-root}/_bmad/cis/agents/innovation-strategist.md
10
+ 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
11
+ 3. FOLLOW every step in the <activation> section precisely
12
+ 4. DISPLAY the welcome/greeting as instructed
13
+ 5. PRESENT the numbered menu
14
+ 6. WAIT for user input before proceeding
15
+ </agent-activation>
@@ -0,0 +1,15 @@
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 {project-root}/_bmad/cis/agents/presentation-master.md
10
+ 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
11
+ 3. FOLLOW every step in the <activation> section precisely
12
+ 4. DISPLAY the welcome/greeting as instructed
13
+ 5. PRESENT the numbered menu
14
+ 6. WAIT for user input before proceeding
15
+ </agent-activation>
@@ -0,0 +1,15 @@
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 {project-root}/_bmad/cis/agents/storyteller/storyteller.md
10
+ 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
11
+ 3. FOLLOW every step in the <activation> section precisely
12
+ 4. DISPLAY the welcome/greeting as instructed
13
+ 5. PRESENT the numbered menu
14
+ 6. WAIT for user input before proceeding
15
+ </agent-activation>
@@ -0,0 +1,6 @@
1
+ ---
2
+ name: 'check-implementation-readiness'
3
+ description: 'Validate PRD, UX, Architecture and Epics specs are complete. Use when the user says "check implementation readiness".'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THIS COMMAND: LOAD the FULL {project-root}/_bmad/bmm/workflows/3-solutioning/check-implementation-readiness/workflow.md, READ its entire contents and follow its directions exactly!
@@ -0,0 +1,14 @@
1
+ ---
2
+ name: 'code-review'
3
+ description: 'Perform adversarial code review finding specific issues. Use when the user says "run code review" or "review this code"'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
7
+
8
+ <steps CRITICAL="TRUE">
9
+ 1. Always LOAD the FULL {project-root}/_bmad/core/tasks/workflow.xml
10
+ 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config {project-root}/_bmad/bmm/workflows/4-implementation/code-review/workflow.yaml
11
+ 3. Pass the yaml path {project-root}/_bmad/bmm/workflows/4-implementation/code-review/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
12
+ 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
13
+ 5. Save outputs after EACH section when generating any documents from templates
14
+ </steps>
@@ -0,0 +1,14 @@
1
+ ---
2
+ name: 'correct-course'
3
+ description: 'Manage significant changes during sprint execution. Use when the user says "correct course" or "propose sprint change"'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
7
+
8
+ <steps CRITICAL="TRUE">
9
+ 1. Always LOAD the FULL {project-root}/_bmad/core/tasks/workflow.xml
10
+ 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config {project-root}/_bmad/bmm/workflows/4-implementation/correct-course/workflow.yaml
11
+ 3. Pass the yaml path {project-root}/_bmad/bmm/workflows/4-implementation/correct-course/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
12
+ 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
13
+ 5. Save outputs after EACH section when generating any documents from templates
14
+ </steps>
@@ -0,0 +1,6 @@
1
+ ---
2
+ name: 'create-architecture'
3
+ description: 'Create architecture solution design decisions for AI agent consistency. Use when the user says "lets create architecture" or "create technical architecture" or "create a solution design"'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THIS COMMAND: LOAD the FULL {project-root}/_bmad/bmm/workflows/3-solutioning/create-architecture/workflow.md, READ its entire contents and follow its directions exactly!
@@ -0,0 +1,6 @@
1
+ ---
2
+ name: 'create-epics-and-stories'
3
+ description: 'Break requirements into epics and user stories. Use when the user says "create the epics and stories list"'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THIS COMMAND: LOAD the FULL {project-root}/_bmad/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.md, READ its entire contents and follow its directions exactly!
@@ -0,0 +1,6 @@
1
+ ---
2
+ name: 'create-prd'
3
+ description: 'Create a PRD from scratch. Use when the user says "lets create a product requirements document" or "I want to create a new PRD"'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THIS COMMAND: LOAD the FULL {project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/workflow-create-prd.md, READ its entire contents and follow its directions exactly!
@@ -0,0 +1,6 @@
1
+ ---
2
+ name: 'create-product-brief'
3
+ description: 'Create product brief through collaborative discovery. Use when the user says "lets create a product brief" or "help me create a project brief"'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THIS COMMAND: LOAD the FULL {project-root}/_bmad/bmm/workflows/1-analysis/create-product-brief/workflow.md, READ its entire contents and follow its directions exactly!
@@ -0,0 +1,14 @@
1
+ ---
2
+ name: 'create-story'
3
+ description: 'Creates a dedicated story file with all the context the agent will need to implement it later. Use when the user says "create the next story" or "create story [story identifier]"'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
7
+
8
+ <steps CRITICAL="TRUE">
9
+ 1. Always LOAD the FULL {project-root}/_bmad/core/tasks/workflow.xml
10
+ 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config {project-root}/_bmad/bmm/workflows/4-implementation/create-story/workflow.yaml
11
+ 3. Pass the yaml path {project-root}/_bmad/bmm/workflows/4-implementation/create-story/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
12
+ 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
13
+ 5. Save outputs after EACH section when generating any documents from templates
14
+ </steps>
@@ -0,0 +1,6 @@
1
+ ---
2
+ name: 'create-ux-design'
3
+ description: 'Plan UX patterns and design specifications. Use when the user says "lets create UX design" or "create UX specifications" or "help me plan the UX"'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THIS COMMAND: LOAD the FULL {project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/workflow.md, READ its entire contents and follow its directions exactly!
@@ -0,0 +1,14 @@
1
+ ---
2
+ name: 'dev-story'
3
+ description: 'Execute story implementation following a context filled story spec file. Use when the user says "dev this story [story file]" or "implement the next story in the sprint plan"'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
7
+
8
+ <steps CRITICAL="TRUE">
9
+ 1. Always LOAD the FULL {project-root}/_bmad/core/tasks/workflow.xml
10
+ 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config {project-root}/_bmad/bmm/workflows/4-implementation/dev-story/workflow.yaml
11
+ 3. Pass the yaml path {project-root}/_bmad/bmm/workflows/4-implementation/dev-story/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
12
+ 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
13
+ 5. Save outputs after EACH section when generating any documents from templates
14
+ </steps>
@@ -0,0 +1,14 @@
1
+ ---
2
+ name: 'document-project'
3
+ description: 'Document brownfield projects for AI context. Use when the user says "document this project" or "generate project docs"'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
7
+
8
+ <steps CRITICAL="TRUE">
9
+ 1. Always LOAD the FULL {project-root}/_bmad/core/tasks/workflow.xml
10
+ 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config {project-root}/_bmad/bmm/workflows/document-project/workflow.yaml
11
+ 3. Pass the yaml path {project-root}/_bmad/bmm/workflows/document-project/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
12
+ 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
13
+ 5. Save outputs after EACH section when generating any documents from templates
14
+ </steps>
@@ -0,0 +1,6 @@
1
+ ---
2
+ name: 'domain-research'
3
+ description: 'Conduct domain and industry research. Use when the user says "lets create a research report on [domain or industry]"'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THIS COMMAND: LOAD the FULL {project-root}/_bmad/bmm/workflows/1-analysis/research/workflow-domain-research.md, READ its entire contents and follow its directions exactly!
@@ -0,0 +1,6 @@
1
+ ---
2
+ name: 'edit-prd'
3
+ description: 'Edit an existing PRD. Use when the user says "edit this PRD".'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THIS COMMAND: LOAD the FULL {project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/workflow-edit-prd.md, READ its entire contents and follow its directions exactly!
@@ -0,0 +1,6 @@
1
+ ---
2
+ name: 'generate-project-context'
3
+ description: 'Create project-context.md with AI rules. Use when the user says "generate project context" or "create project context"'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THIS COMMAND: LOAD the FULL {project-root}/_bmad/bmm/workflows/generate-project-context/workflow.md, READ its entire contents and follow its directions exactly!
@@ -0,0 +1,6 @@
1
+ ---
2
+ name: 'market-research'
3
+ description: 'Conduct market research on competition and customers. Use when the user says "create a market research report about [business idea]".'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THIS COMMAND: LOAD the FULL {project-root}/_bmad/bmm/workflows/1-analysis/research/workflow-market-research.md, READ its entire contents and follow its directions exactly!
@@ -0,0 +1,14 @@
1
+ ---
2
+ name: 'qa-generate-e2e-tests'
3
+ description: 'Generate end to end automated tests for existing features. Use when the user says "create qa automated tests for [feature]"'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
7
+
8
+ <steps CRITICAL="TRUE">
9
+ 1. Always LOAD the FULL {project-root}/_bmad/core/tasks/workflow.xml
10
+ 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config {project-root}/_bmad/bmm/workflows/qa-generate-e2e-tests/workflow.yaml
11
+ 3. Pass the yaml path {project-root}/_bmad/bmm/workflows/qa-generate-e2e-tests/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
12
+ 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
13
+ 5. Save outputs after EACH section when generating any documents from templates
14
+ </steps>
@@ -0,0 +1,6 @@
1
+ ---
2
+ name: 'quick-dev'
3
+ description: 'Implement a Quick Tech Spec for small changes or features. Use when the user provides a quick tech spec and says "implement this quick spec" or "proceed with implementation of [quick tech spec]"'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THIS COMMAND: LOAD the FULL {project-root}/_bmad/bmm/workflows/bmad-quick-flow/quick-dev/workflow.md, READ its entire contents and follow its directions exactly!
@@ -0,0 +1,6 @@
1
+ ---
2
+ name: 'quick-spec'
3
+ description: 'Very quick process to create implementation-ready quick specs for small changes or features. Use when the user says "create a quick spec" or "generate a quick tech spec"'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THIS COMMAND: LOAD the FULL {project-root}/_bmad/bmm/workflows/bmad-quick-flow/quick-spec/workflow.md, READ its entire contents and follow its directions exactly!
@@ -0,0 +1,14 @@
1
+ ---
2
+ name: 'retrospective'
3
+ description: 'Post-epic review to extract lessons and assess success. Use when the user says "run a retrospective" or "lets retro the epic [epic]"'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
7
+
8
+ <steps CRITICAL="TRUE">
9
+ 1. Always LOAD the FULL {project-root}/_bmad/core/tasks/workflow.xml
10
+ 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config {project-root}/_bmad/bmm/workflows/4-implementation/retrospective/workflow.yaml
11
+ 3. Pass the yaml path {project-root}/_bmad/bmm/workflows/4-implementation/retrospective/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
12
+ 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
13
+ 5. Save outputs after EACH section when generating any documents from templates
14
+ </steps>
@@ -0,0 +1,14 @@
1
+ ---
2
+ name: 'sprint-planning'
3
+ description: 'Generate sprint status tracking from epics. Use when the user says "run sprint planning" or "generate sprint plan"'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
7
+
8
+ <steps CRITICAL="TRUE">
9
+ 1. Always LOAD the FULL {project-root}/_bmad/core/tasks/workflow.xml
10
+ 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config {project-root}/_bmad/bmm/workflows/4-implementation/sprint-planning/workflow.yaml
11
+ 3. Pass the yaml path {project-root}/_bmad/bmm/workflows/4-implementation/sprint-planning/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
12
+ 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
13
+ 5. Save outputs after EACH section when generating any documents from templates
14
+ </steps>
@@ -0,0 +1,14 @@
1
+ ---
2
+ name: 'sprint-status'
3
+ description: 'Summarize sprint status and surface risks. Use when the user says "check sprint status" or "show sprint status"'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
7
+
8
+ <steps CRITICAL="TRUE">
9
+ 1. Always LOAD the FULL {project-root}/_bmad/core/tasks/workflow.xml
10
+ 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config {project-root}/_bmad/bmm/workflows/4-implementation/sprint-status/workflow.yaml
11
+ 3. Pass the yaml path {project-root}/_bmad/bmm/workflows/4-implementation/sprint-status/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
12
+ 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
13
+ 5. Save outputs after EACH section when generating any documents from templates
14
+ </steps>
@@ -0,0 +1,6 @@
1
+ ---
2
+ name: 'technical-research'
3
+ description: 'Conduct technical research on technologies and architecture. Use when the user says "create a technical research report on [topic]".'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THIS COMMAND: LOAD the FULL {project-root}/_bmad/bmm/workflows/1-analysis/research/workflow-technical-research.md, READ its entire contents and follow its directions exactly!
@@ -0,0 +1,6 @@
1
+ ---
2
+ name: 'validate-prd'
3
+ description: 'Validate a PRD against standards. Use when the user says "validate this PRD" or "run PRD validation"'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THIS COMMAND: LOAD the FULL {project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/workflow-validate-prd.md, READ its entire contents and follow its directions exactly!
@@ -0,0 +1,6 @@
1
+ ---
2
+ name: 'brainstorming'
3
+ description: 'Facilitate interactive brainstorming sessions using diverse creative techniques and ideation methods. Use when the user says help me brainstorm or help me ideate.'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THIS COMMAND: LOAD the FULL {project-root}/_bmad/core/workflows/brainstorming/workflow.md, READ its entire contents and follow its directions exactly!
@@ -0,0 +1,14 @@
1
+ ---
2
+ name: 'design-thinking'
3
+ description: 'Guide human-centered design processes using empathy-driven methodologies. Use when the user says "lets run design thinking" or "I want to apply design thinking"'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
7
+
8
+ <steps CRITICAL="TRUE">
9
+ 1. Always LOAD the FULL {project-root}/_bmad/core/tasks/workflow.xml
10
+ 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config {project-root}/_bmad/cis/workflows/design-thinking/workflow.yaml
11
+ 3. Pass the yaml path {project-root}/_bmad/cis/workflows/design-thinking/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
12
+ 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
13
+ 5. Save outputs after EACH section when generating any documents from templates
14
+ </steps>
@@ -0,0 +1,14 @@
1
+ ---
2
+ name: 'innovation-strategy'
3
+ description: 'Identify disruption opportunities and architect business model innovation. Use when the user says "lets create an innovation strategy" or "I want to find disruption opportunities"'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
7
+
8
+ <steps CRITICAL="TRUE">
9
+ 1. Always LOAD the FULL {project-root}/_bmad/core/tasks/workflow.xml
10
+ 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config {project-root}/_bmad/cis/workflows/innovation-strategy/workflow.yaml
11
+ 3. Pass the yaml path {project-root}/_bmad/cis/workflows/innovation-strategy/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
12
+ 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
13
+ 5. Save outputs after EACH section when generating any documents from templates
14
+ </steps>
@@ -0,0 +1,14 @@
1
+ ---
2
+ name: 'problem-solving'
3
+ description: 'Apply systematic problem-solving methodologies to complex challenges. Use when the user says "guide me through structured problem solving" or "I want to crack this challenge with guided problem solving techniques"'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
7
+
8
+ <steps CRITICAL="TRUE">
9
+ 1. Always LOAD the FULL {project-root}/_bmad/core/tasks/workflow.xml
10
+ 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config {project-root}/_bmad/cis/workflows/problem-solving/workflow.yaml
11
+ 3. Pass the yaml path {project-root}/_bmad/cis/workflows/problem-solving/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
12
+ 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
13
+ 5. Save outputs after EACH section when generating any documents from templates
14
+ </steps>
@@ -0,0 +1,14 @@
1
+ ---
2
+ name: 'storytelling'
3
+ description: 'Craft compelling narratives using story frameworks. Use when the user says "help me with storytelling" or "I want to create a narrative through storytelling"'
4
+ ---
5
+
6
+ IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
7
+
8
+ <steps CRITICAL="TRUE">
9
+ 1. Always LOAD the FULL {project-root}/_bmad/core/tasks/workflow.xml
10
+ 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config {project-root}/_bmad/cis/workflows/storytelling/workflow.yaml
11
+ 3. Pass the yaml path {project-root}/_bmad/cis/workflows/storytelling/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
12
+ 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
13
+ 5. Save outputs after EACH section when generating any documents from templates
14
+ </steps>
@@ -0,0 +1,10 @@
1
+ ---
2
+ name: 'editorial-review-prose'
3
+ description: 'Clinical copy-editor that reviews text for communication issues. Use when user says review for prose or improve the prose'
4
+ ---
5
+
6
+ # editorial-review-prose
7
+
8
+ Read the entire task file at: {project-root}/_bmad/core/tasks/editorial-review-prose.xml
9
+
10
+ Follow all instructions in the task file exactly as written.
@@ -0,0 +1,10 @@
1
+ ---
2
+ name: 'editorial-review-structure'
3
+ description: 'Structural editor that proposes cuts, reorganization, and simplification while preserving comprehension. Use when user requests structural review or editorial review of structure'
4
+ ---
5
+
6
+ # editorial-review-structure
7
+
8
+ Read the entire task file at: {project-root}/_bmad/core/tasks/editorial-review-structure.xml
9
+
10
+ Follow all instructions in the task file exactly as written.