bmad-method 6.3.1-next.2 → 6.3.1-next.4

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 (36) hide show
  1. package/package.json +1 -1
  2. package/tools/installer/cli-utils.js +0 -137
  3. package/tools/installer/core/manifest.js +0 -577
  4. package/tools/installer/ide/shared/path-utils.js +0 -145
  5. package/tools/installer/modules/custom-module-manager.js +0 -27
  6. package/tools/installer/modules/external-manager.js +0 -40
  7. package/tools/installer/modules/official-modules.js +2 -50
  8. package/tools/installer/modules/registry-client.js +0 -11
  9. package/tools/installer/prompts.js +0 -106
  10. package/tools/installer/ide/shared/agent-command-generator.js +0 -180
  11. package/tools/installer/ide/shared/bmad-artifacts.js +0 -208
  12. package/tools/installer/ide/shared/module-injections.js +0 -136
  13. package/tools/installer/ide/templates/agent-command-template.md +0 -14
  14. package/tools/installer/ide/templates/combined/antigravity.md +0 -8
  15. package/tools/installer/ide/templates/combined/default-agent.md +0 -15
  16. package/tools/installer/ide/templates/combined/default-task.md +0 -10
  17. package/tools/installer/ide/templates/combined/default-tool.md +0 -10
  18. package/tools/installer/ide/templates/combined/default-workflow.md +0 -6
  19. package/tools/installer/ide/templates/combined/gemini-agent.toml +0 -14
  20. package/tools/installer/ide/templates/combined/gemini-task.toml +0 -11
  21. package/tools/installer/ide/templates/combined/gemini-tool.toml +0 -11
  22. package/tools/installer/ide/templates/combined/gemini-workflow-yaml.toml +0 -16
  23. package/tools/installer/ide/templates/combined/gemini-workflow.toml +0 -14
  24. package/tools/installer/ide/templates/combined/kiro-agent.md +0 -16
  25. package/tools/installer/ide/templates/combined/kiro-task.md +0 -9
  26. package/tools/installer/ide/templates/combined/kiro-tool.md +0 -9
  27. package/tools/installer/ide/templates/combined/kiro-workflow.md +0 -7
  28. package/tools/installer/ide/templates/combined/opencode-agent.md +0 -15
  29. package/tools/installer/ide/templates/combined/opencode-task.md +0 -13
  30. package/tools/installer/ide/templates/combined/opencode-tool.md +0 -13
  31. package/tools/installer/ide/templates/combined/opencode-workflow-yaml.md +0 -16
  32. package/tools/installer/ide/templates/combined/opencode-workflow.md +0 -16
  33. package/tools/installer/ide/templates/combined/rovodev.md +0 -9
  34. package/tools/installer/ide/templates/combined/trae.md +0 -9
  35. package/tools/installer/ide/templates/combined/windsurf-workflow.md +0 -10
  36. package/tools/installer/ide/templates/split/.gitkeep +0 -0
@@ -1,208 +0,0 @@
1
- const path = require('node:path');
2
- const fs = require('fs-extra');
3
- const { loadSkillManifest, getCanonicalId } = require('./skill-manifest');
4
-
5
- /**
6
- * Helpers for gathering BMAD agents/tasks from the installed tree.
7
- * Shared by installers that need Claude-style exports.
8
- *
9
- * TODO: Dead code cleanup — compiled XML agents are retired.
10
- *
11
- * All agents now use the SKILL.md directory format with bmad-skill-manifest.yaml
12
- * (type: agent). The legacy pipeline below only discovers compiled .md files
13
- * containing <agent> XML tags, which no longer exist. The following are dead:
14
- *
15
- * - getAgentsFromBmad() — scans {module}/agents/ for .md files with <agent> tags
16
- * - getAgentsFromDir() — recursive helper for the above
17
- * - AgentCommandGenerator — (agent-command-generator.js) generates launcher .md files
18
- * that tell the LLM to load a compiled agent .md file
19
- * - agent-command-template.md — (templates/) the launcher template with hardcoded
20
- * {module}/agents/{{path}} reference
21
- *
22
- * Agent metadata for agent-manifest.csv is now handled entirely by
23
- * ManifestGenerator.getAgentsFromDirRecursive() in manifest-generator.js,
24
- * which walks the full module tree and finds type:agent directories.
25
- *
26
- * IDE installation of agents is handled by the native skill pipeline —
27
- * each agent's SKILL.md directory is installed directly to the IDE's
28
- * skills path, so no launcher intermediary is needed.
29
- *
30
- * Cleanup: remove getAgentsFromBmad, getAgentsFromDir, their exports,
31
- * AgentCommandGenerator, agent-command-template.md, and all call sites
32
- * in IDE installers that invoke collectAgentArtifacts / writeAgentLaunchers /
33
- * writeColonArtifacts / writeDashArtifacts.
34
- * getTasksFromBmad and getTasksFromDir may still be live — verify before removing.
35
- */
36
- async function getAgentsFromBmad(bmadDir, selectedModules = []) {
37
- const agents = [];
38
-
39
- // Get core agents
40
- if (await fs.pathExists(path.join(bmadDir, 'core', 'agents'))) {
41
- const coreAgents = await getAgentsFromDir(path.join(bmadDir, 'core', 'agents'), 'core');
42
- agents.push(...coreAgents);
43
- }
44
-
45
- // Get module agents
46
- for (const moduleName of selectedModules) {
47
- const agentsPath = path.join(bmadDir, moduleName, 'agents');
48
-
49
- if (await fs.pathExists(agentsPath)) {
50
- const moduleAgents = await getAgentsFromDir(agentsPath, moduleName);
51
- agents.push(...moduleAgents);
52
- }
53
- }
54
-
55
- // Get standalone agents from bmad/agents/ directory
56
- const standaloneAgentsDir = path.join(bmadDir, 'agents');
57
- if (await fs.pathExists(standaloneAgentsDir)) {
58
- const agentDirs = await fs.readdir(standaloneAgentsDir, { withFileTypes: true });
59
-
60
- for (const agentDir of agentDirs) {
61
- if (!agentDir.isDirectory()) continue;
62
-
63
- const agentDirPath = path.join(standaloneAgentsDir, agentDir.name);
64
- const agentFiles = await fs.readdir(agentDirPath);
65
- const skillManifest = await loadSkillManifest(agentDirPath);
66
-
67
- for (const file of agentFiles) {
68
- if (!file.endsWith('.md')) continue;
69
- if (file.includes('.customize.')) continue;
70
-
71
- const filePath = path.join(agentDirPath, file);
72
- const content = await fs.readFile(filePath, 'utf8');
73
-
74
- if (content.includes('localskip="true"')) continue;
75
-
76
- agents.push({
77
- path: filePath,
78
- name: file.replace('.md', ''),
79
- module: 'standalone', // Mark as standalone agent
80
- canonicalId: getCanonicalId(skillManifest, file),
81
- });
82
- }
83
- }
84
- }
85
-
86
- return agents;
87
- }
88
-
89
- async function getTasksFromBmad(bmadDir, selectedModules = []) {
90
- const tasks = [];
91
-
92
- if (await fs.pathExists(path.join(bmadDir, 'core', 'tasks'))) {
93
- const coreTasks = await getTasksFromDir(path.join(bmadDir, 'core', 'tasks'), 'core');
94
- tasks.push(...coreTasks);
95
- }
96
-
97
- for (const moduleName of selectedModules) {
98
- const tasksPath = path.join(bmadDir, moduleName, 'tasks');
99
-
100
- if (await fs.pathExists(tasksPath)) {
101
- const moduleTasks = await getTasksFromDir(tasksPath, moduleName);
102
- tasks.push(...moduleTasks);
103
- }
104
- }
105
-
106
- return tasks;
107
- }
108
-
109
- async function getAgentsFromDir(dirPath, moduleName, relativePath = '') {
110
- const agents = [];
111
-
112
- if (!(await fs.pathExists(dirPath))) {
113
- return agents;
114
- }
115
-
116
- const entries = await fs.readdir(dirPath, { withFileTypes: true });
117
- const skillManifest = await loadSkillManifest(dirPath);
118
-
119
- for (const entry of entries) {
120
- // Skip if entry.name is undefined or not a string
121
- if (!entry.name || typeof entry.name !== 'string') {
122
- continue;
123
- }
124
-
125
- const fullPath = path.join(dirPath, entry.name);
126
- const newRelativePath = relativePath ? `${relativePath}/${entry.name}` : entry.name;
127
-
128
- if (entry.isDirectory()) {
129
- // Recurse into subdirectories
130
- const subDirAgents = await getAgentsFromDir(fullPath, moduleName, newRelativePath);
131
- agents.push(...subDirAgents);
132
- } else if (entry.name.endsWith('.md')) {
133
- // Skip README files and other non-agent files
134
- if (entry.name.toLowerCase() === 'readme.md' || entry.name.toLowerCase().startsWith('readme-')) {
135
- continue;
136
- }
137
-
138
- if (entry.name.includes('.customize.')) {
139
- continue;
140
- }
141
-
142
- const content = await fs.readFile(fullPath, 'utf8');
143
-
144
- if (content.includes('localskip="true"')) {
145
- continue;
146
- }
147
-
148
- // Only include files that have agent-specific content (compiled agents have <agent> tag)
149
- if (!content.includes('<agent')) {
150
- continue;
151
- }
152
-
153
- agents.push({
154
- path: fullPath,
155
- name: entry.name.replace('.md', ''),
156
- module: moduleName,
157
- relativePath: newRelativePath, // Keep the .md extension for the full path
158
- canonicalId: getCanonicalId(skillManifest, entry.name),
159
- });
160
- }
161
- }
162
-
163
- return agents;
164
- }
165
-
166
- async function getTasksFromDir(dirPath, moduleName) {
167
- const tasks = [];
168
-
169
- if (!(await fs.pathExists(dirPath))) {
170
- return tasks;
171
- }
172
-
173
- const files = await fs.readdir(dirPath);
174
- const skillManifest = await loadSkillManifest(dirPath);
175
-
176
- for (const file of files) {
177
- // Include both .md and .xml task files
178
- if (!file.endsWith('.md') && !file.endsWith('.xml')) {
179
- continue;
180
- }
181
-
182
- const filePath = path.join(dirPath, file);
183
- const content = await fs.readFile(filePath, 'utf8');
184
-
185
- // Skip internal/engine files (not user-facing tasks)
186
- if (content.includes('internal="true"')) {
187
- continue;
188
- }
189
-
190
- // Remove extension to get task name
191
- const ext = file.endsWith('.xml') ? '.xml' : '.md';
192
- tasks.push({
193
- path: filePath,
194
- name: file.replace(ext, ''),
195
- module: moduleName,
196
- canonicalId: getCanonicalId(skillManifest, file),
197
- });
198
- }
199
-
200
- return tasks;
201
- }
202
-
203
- module.exports = {
204
- getAgentsFromBmad,
205
- getTasksFromBmad,
206
- getAgentsFromDir,
207
- getTasksFromDir,
208
- };
@@ -1,136 +0,0 @@
1
- const path = require('node:path');
2
- const fs = require('fs-extra');
3
- const yaml = require('yaml');
4
- const { glob } = require('glob');
5
- const { getSourcePath } = require('../../project-root');
6
-
7
- async function loadModuleInjectionConfig(handler, moduleName) {
8
- const sourceModulesPath = getSourcePath('modules');
9
- const handlerBaseDir = path.join(sourceModulesPath, moduleName, 'sub-modules', handler);
10
- const configPath = path.join(handlerBaseDir, 'injections.yaml');
11
-
12
- if (!(await fs.pathExists(configPath))) {
13
- return null;
14
- }
15
-
16
- const configContent = await fs.readFile(configPath, 'utf8');
17
- const config = yaml.parse(configContent) || {};
18
-
19
- return {
20
- config,
21
- handlerBaseDir,
22
- configPath,
23
- };
24
- }
25
-
26
- function shouldApplyInjection(injection, subagentChoices) {
27
- if (!subagentChoices || subagentChoices.install === 'none') {
28
- return false;
29
- }
30
-
31
- if (subagentChoices.install === 'all') {
32
- return true;
33
- }
34
-
35
- if (subagentChoices.install === 'selective') {
36
- const selected = subagentChoices.selected || [];
37
-
38
- if (injection.requires === 'any' && selected.length > 0) {
39
- return true;
40
- }
41
-
42
- if (injection.requires) {
43
- const required = `${injection.requires}.md`;
44
- return selected.includes(required);
45
- }
46
-
47
- if (injection.point) {
48
- const selectedNames = selected.map((file) => file.replace('.md', ''));
49
- return selectedNames.some((name) => injection.point.includes(name));
50
- }
51
- }
52
-
53
- return false;
54
- }
55
-
56
- function filterAgentInstructions(content, selectedFiles) {
57
- if (!selectedFiles || selectedFiles.length === 0) {
58
- return '';
59
- }
60
-
61
- const selectedAgents = selectedFiles.map((file) => file.replace('.md', ''));
62
- const lines = content.split('\n');
63
- const filteredLines = [];
64
-
65
- for (const line of lines) {
66
- if (line.includes('<llm') || line.includes('</llm>')) {
67
- filteredLines.push(line);
68
- } else if (line.includes('subagent')) {
69
- let shouldInclude = false;
70
- for (const agent of selectedAgents) {
71
- if (line.includes(agent)) {
72
- shouldInclude = true;
73
- break;
74
- }
75
- }
76
-
77
- if (shouldInclude) {
78
- filteredLines.push(line);
79
- }
80
- } else if (line.includes('When creating PRDs') || line.includes('ACTIVELY delegate')) {
81
- filteredLines.push(line);
82
- }
83
- }
84
-
85
- if (filteredLines.length > 2) {
86
- return filteredLines.join('\n');
87
- }
88
-
89
- return '';
90
- }
91
-
92
- async function resolveSubagentFiles(handlerBaseDir, subagentConfig, subagentChoices) {
93
- if (!subagentConfig || !subagentConfig.files) {
94
- return [];
95
- }
96
-
97
- if (!subagentChoices || subagentChoices.install === 'none') {
98
- return [];
99
- }
100
-
101
- let filesToCopy = subagentConfig.files;
102
-
103
- if (subagentChoices.install === 'selective') {
104
- filesToCopy = subagentChoices.selected || [];
105
- }
106
-
107
- const sourceDir = path.join(handlerBaseDir, subagentConfig.source || '');
108
- const resolved = [];
109
-
110
- for (const file of filesToCopy) {
111
- // Use forward slashes for glob pattern (works on both Windows and Unix)
112
- // Convert backslashes to forward slashes for glob compatibility
113
- const normalizedSourceDir = sourceDir.replaceAll('\\', '/');
114
- const pattern = `${normalizedSourceDir}/**/${file}`;
115
- const matches = await glob(pattern);
116
-
117
- if (matches.length > 0) {
118
- const absolutePath = matches[0];
119
- resolved.push({
120
- file,
121
- absolutePath,
122
- relativePath: path.relative(sourceDir, absolutePath),
123
- sourceDir,
124
- });
125
- }
126
- }
127
-
128
- return resolved;
129
- }
130
-
131
- module.exports = {
132
- loadModuleInjectionConfig,
133
- shouldApplyInjection,
134
- filterAgentInstructions,
135
- resolveSubagentFiles,
136
- };
@@ -1,14 +0,0 @@
1
- ---
2
- name: '{{name}}'
3
- description: '{{description}}'
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/{{module}}/agents/{{path}}
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,8 +0,0 @@
1
- ---
2
- name: '{{name}}'
3
- description: '{{description}}'
4
- ---
5
-
6
- Read the entire workflow file at: {project-root}/_bmad/{{workflow_path}}
7
-
8
- Follow all instructions in the workflow file exactly as written.
@@ -1,15 +0,0 @@
1
- ---
2
- name: '{{name}}'
3
- description: '{{description}}'
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/{{path}}
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>
@@ -1,10 +0,0 @@
1
- ---
2
- name: '{{name}}'
3
- description: '{{description}}'
4
- ---
5
-
6
- # {{name}}
7
-
8
- Read the entire task file at: {project-root}/{{bmadFolderName}}/{{path}}
9
-
10
- Follow all instructions in the task file exactly as written.
@@ -1,10 +0,0 @@
1
- ---
2
- name: '{{name}}'
3
- description: '{{description}}'
4
- ---
5
-
6
- # {{name}}
7
-
8
- Read the entire tool file at: {project-root}/{{bmadFolderName}}/{{path}}
9
-
10
- Follow all instructions in the tool file exactly as written.
@@ -1,6 +0,0 @@
1
- ---
2
- name: '{{name}}'
3
- description: '{{description}}'
4
- ---
5
-
6
- IT IS CRITICAL THAT YOU FOLLOW THIS COMMAND: LOAD the FULL {project-root}/{{bmadFolderName}}/{{path}}, READ its entire contents and follow its directions exactly!
@@ -1,14 +0,0 @@
1
- description = "Activates the {{name}} agent from the BMad Method."
2
- prompt = """
3
- CRITICAL: You are now the BMad '{{name}}' agent.
4
-
5
- PRE-FLIGHT CHECKLIST:
6
- 1. [ ] IMMEDIATE ACTION: Load and parse {project-root}/{{bmadFolderName}}/{{module}}/config.yaml - store ALL config values in memory for use throughout the session.
7
- 2. [ ] IMMEDIATE ACTION: Read and internalize the full agent definition at {project-root}/{{bmadFolderName}}/{{path}}.
8
- 3. [ ] CONFIRM: The user's name from config is {user_name}.
9
-
10
- Only after all checks are complete, greet the user by name and display the menu.
11
- Acknowledge this checklist is complete in your first response.
12
-
13
- AGENT DEFINITION: {project-root}/{{bmadFolderName}}/{{path}}
14
- """
@@ -1,11 +0,0 @@
1
- description = "Executes the {{name}} task from the BMAD Method."
2
- prompt = """
3
- Execute the BMAD '{{name}}' task.
4
-
5
- TASK INSTRUCTIONS:
6
- 1. LOAD the task file from {project-root}/{{bmadFolderName}}/{{path}}
7
- 2. READ its entire contents
8
- 3. FOLLOW every instruction precisely as specified
9
-
10
- TASK FILE: {project-root}/{{bmadFolderName}}/{{path}}
11
- """
@@ -1,11 +0,0 @@
1
- description = "Executes the {{name}} tool from the BMAD Method."
2
- prompt = """
3
- Execute the BMAD '{{name}}' tool.
4
-
5
- TOOL INSTRUCTIONS:
6
- 1. LOAD the tool file from {project-root}/{{bmadFolderName}}/{{path}}
7
- 2. READ its entire contents
8
- 3. FOLLOW every instruction precisely as specified
9
-
10
- TOOL FILE: {project-root}/{{bmadFolderName}}/{{path}}
11
- """
@@ -1,16 +0,0 @@
1
- description = '{{description}}'
2
- prompt = """
3
- Execute the BMAD '{{name}}' workflow.
4
-
5
- CRITICAL: This is a structured YAML workflow. Follow these steps precisely:
6
-
7
- 1. LOAD the workflow definition from {project-root}/{{bmadFolderName}}/{{workflow_path}}
8
- 2. PARSE the YAML structure to understand:
9
- - Workflow phases and steps
10
- - Required inputs and outputs
11
- - Dependencies between steps
12
- 3. EXECUTE each step in order
13
- 4. VALIDATE outputs before proceeding to next step
14
-
15
- WORKFLOW FILE: {project-root}/{{bmadFolderName}}/{{workflow_path}}
16
- """
@@ -1,14 +0,0 @@
1
- description = '{{description}}'
2
- prompt = """
3
- Execute the BMAD '{{name}}' workflow.
4
-
5
- CRITICAL: You must load and follow the workflow definition exactly.
6
-
7
- WORKFLOW INSTRUCTIONS:
8
- 1. LOAD the workflow file from {project-root}/{{bmadFolderName}}/{{workflow_path}}
9
- 2. READ its entire contents
10
- 3. FOLLOW every step precisely as specified
11
- 4. DO NOT skip or modify any steps
12
-
13
- WORKFLOW FILE: {project-root}/{{bmadFolderName}}/{{workflow_path}}
14
- """
@@ -1,16 +0,0 @@
1
- ---
2
- inclusion: manual
3
- ---
4
-
5
- # {{name}}
6
-
7
- You must fully embody this agent's persona and follow all activation instructions exactly as specified. NEVER break character until given an exit command.
8
-
9
- <agent-activation CRITICAL="TRUE">
10
- 1. LOAD the FULL agent file from #[[file:{{bmadFolderName}}/{{path}}]]
11
- 2. READ its entire contents - this contains the complete agent persona, menu, and instructions
12
- 3. FOLLOW every step in the <activation> section precisely
13
- 4. DISPLAY the welcome/greeting as instructed
14
- 5. PRESENT the numbered menu
15
- 6. WAIT for user input before proceeding
16
- </agent-activation>
@@ -1,9 +0,0 @@
1
- ---
2
- inclusion: manual
3
- ---
4
-
5
- # {{name}}
6
-
7
- Read the entire task file at: #[[file:{{bmadFolderName}}/{{path}}]]
8
-
9
- Follow all instructions in the task file exactly as written.
@@ -1,9 +0,0 @@
1
- ---
2
- inclusion: manual
3
- ---
4
-
5
- # {{name}}
6
-
7
- Read the entire tool file at: #[[file:{{bmadFolderName}}/{{path}}]]
8
-
9
- Follow all instructions in the tool file exactly as written.
@@ -1,7 +0,0 @@
1
- ---
2
- inclusion: manual
3
- ---
4
-
5
- # {{name}}
6
-
7
- IT IS CRITICAL THAT YOU FOLLOW THIS COMMAND: LOAD the FULL #[[file:{{bmadFolderName}}/{{path}}]], READ its entire contents and follow its directions exactly!
@@ -1,15 +0,0 @@
1
- ---
2
- mode: all
3
- description: '{{description}}'
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}/{{bmadFolderName}}/{{path}}
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>
@@ -1,13 +0,0 @@
1
- ---
2
- description: '{{description}}'
3
- ---
4
-
5
- Execute the BMAD '{{name}}' task.
6
-
7
- TASK INSTRUCTIONS:
8
-
9
- 1. LOAD the task file from {project-root}/{{bmadFolderName}}/{{path}}
10
- 2. READ its entire contents
11
- 3. FOLLOW every instruction precisely as specified
12
-
13
- TASK FILE: {project-root}/{{bmadFolderName}}/{{path}}
@@ -1,13 +0,0 @@
1
- ---
2
- description: '{{description}}'
3
- ---
4
-
5
- Execute the BMAD '{{name}}' tool.
6
-
7
- TOOL INSTRUCTIONS:
8
-
9
- 1. LOAD the tool file from {project-root}/{{bmadFolderName}}/{{path}}
10
- 2. READ its entire contents
11
- 3. FOLLOW every instruction precisely as specified
12
-
13
- TOOL FILE: {project-root}/{{bmadFolderName}}/{{path}}
@@ -1,16 +0,0 @@
1
- ---
2
- description: '{{description}}'
3
- ---
4
-
5
- Execute the BMAD '{{name}}' workflow.
6
-
7
- CRITICAL: You must load and follow the workflow definition exactly.
8
-
9
- WORKFLOW INSTRUCTIONS:
10
-
11
- 1. LOAD the workflow file from {project-root}/{{bmadFolderName}}/{{path}}
12
- 2. READ its entire contents
13
- 3. FOLLOW every step precisely as specified
14
- 4. DO NOT skip or modify any steps
15
-
16
- WORKFLOW FILE: {project-root}/{{bmadFolderName}}/{{path}}
@@ -1,16 +0,0 @@
1
- ---
2
- description: '{{description}}'
3
- ---
4
-
5
- Execute the BMAD '{{name}}' workflow.
6
-
7
- CRITICAL: You must load and follow the workflow definition exactly.
8
-
9
- WORKFLOW INSTRUCTIONS:
10
-
11
- 1. LOAD the workflow file from {project-root}/{{bmadFolderName}}/{{path}}
12
- 2. READ its entire contents
13
- 3. FOLLOW every step precisely as specified
14
- 4. DO NOT skip or modify any steps
15
-
16
- WORKFLOW FILE: {project-root}/{{bmadFolderName}}/{{path}}
@@ -1,9 +0,0 @@
1
- # {{name}}
2
-
3
- {{description}}
4
-
5
- ---
6
-
7
- Read the entire workflow file at: {project-root}/_bmad/{{workflow_path}}
8
-
9
- Follow all instructions in the workflow file exactly as written.
@@ -1,9 +0,0 @@
1
- # {{name}}
2
-
3
- {{description}}
4
-
5
- ## Instructions
6
-
7
- Read the entire workflow file at: {project-root}/_bmad/{{workflow_path}}
8
-
9
- Follow all instructions in the workflow file exactly as written.
@@ -1,10 +0,0 @@
1
- ---
2
- description: '{{description}}'
3
- auto_execution_mode: "iterate"
4
- ---
5
-
6
- # {{name}}
7
-
8
- Read the entire workflow file at {project-root}/_bmad/{{workflow_path}}
9
-
10
- Follow all instructions in the workflow file exactly as written.
File without changes