create-byan-agent 1.1.3 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +250 -202
- package/LICENSE +21 -21
- package/README.md +1245 -421
- package/bin/create-byan-agent-backup.js +220 -220
- package/bin/create-byan-agent-fixed.js +301 -301
- package/bin/create-byan-agent.js +322 -322
- package/lib/errors.js +61 -0
- package/lib/exit-codes.js +54 -0
- package/lib/platforms/claude-code.js +113 -0
- package/lib/platforms/codex.js +92 -0
- package/lib/platforms/copilot-cli.js +123 -0
- package/lib/platforms/index.js +14 -0
- package/lib/platforms/vscode.js +51 -0
- package/lib/utils/config-loader.js +79 -0
- package/lib/utils/file-utils.js +104 -0
- package/lib/utils/git-detector.js +35 -0
- package/lib/utils/logger.js +64 -0
- package/lib/utils/node-detector.js +58 -0
- package/lib/utils/os-detector.js +74 -0
- package/lib/utils/yaml-utils.js +87 -0
- package/lib/yanstaller/backuper.js +308 -0
- package/lib/yanstaller/detector.js +141 -0
- package/lib/yanstaller/index.js +93 -0
- package/lib/yanstaller/installer.js +225 -0
- package/lib/yanstaller/interviewer.js +250 -0
- package/lib/yanstaller/recommender.js +298 -0
- package/lib/yanstaller/troubleshooter.js +498 -0
- package/lib/yanstaller/validator.js +578 -0
- package/lib/yanstaller/wizard.js +211 -0
- package/package.json +61 -55
- package/templates/.github/agents/bmad-agent-bmad-master.md +15 -15
- package/templates/.github/agents/bmad-agent-bmb-agent-builder.md +15 -15
- package/templates/.github/agents/bmad-agent-bmb-module-builder.md +15 -15
- package/templates/.github/agents/bmad-agent-bmb-workflow-builder.md +15 -15
- package/templates/.github/agents/bmad-agent-bmm-analyst.md +15 -15
- package/templates/.github/agents/bmad-agent-bmm-architect.md +15 -15
- package/templates/.github/agents/bmad-agent-bmm-dev.md +15 -15
- package/templates/.github/agents/bmad-agent-bmm-pm.md +15 -15
- package/templates/.github/agents/bmad-agent-bmm-quick-flow-solo-dev.md +15 -15
- package/templates/.github/agents/bmad-agent-bmm-quinn.md +15 -15
- package/templates/.github/agents/bmad-agent-bmm-sm.md +15 -15
- package/templates/.github/agents/bmad-agent-bmm-tech-writer.md +15 -15
- package/templates/.github/agents/bmad-agent-bmm-ux-designer.md +15 -15
- package/templates/.github/agents/bmad-agent-byan-test.md +32 -0
- package/templates/.github/agents/bmad-agent-byan.md +224 -224
- package/templates/.github/agents/bmad-agent-carmack.md +18 -0
- package/templates/.github/agents/bmad-agent-cis-brainstorming-coach.md +15 -15
- package/templates/.github/agents/bmad-agent-cis-creative-problem-solver.md +15 -15
- package/templates/.github/agents/bmad-agent-cis-design-thinking-coach.md +15 -15
- package/templates/.github/agents/bmad-agent-cis-innovation-strategist.md +15 -15
- package/templates/.github/agents/bmad-agent-cis-presentation-master.md +15 -15
- package/templates/.github/agents/bmad-agent-cis-storyteller.md +15 -15
- package/templates/.github/agents/bmad-agent-marc.md +48 -48
- package/templates/.github/agents/bmad-agent-patnote.md +48 -0
- package/templates/.github/agents/bmad-agent-rachid.md +47 -47
- package/templates/.github/agents/bmad-agent-tea-tea.md +15 -15
- package/templates/.github/agents/bmad-agent-test-dynamic.md +21 -0
- package/templates/.github/agents/expert-merise-agile.md +1 -0
- package/templates/.github/agents/franck.md +379 -0
- package/templates/_bmad/bmb/agents/agent-builder.md +59 -59
- package/templates/_bmad/bmb/agents/byan-test.md +116 -116
- package/templates/_bmad/bmb/agents/byan.md +215 -215
- package/templates/_bmad/bmb/agents/marc.md +303 -303
- package/templates/_bmad/bmb/agents/module-builder.md +60 -60
- package/templates/_bmad/bmb/agents/patnote.md +495 -495
- package/templates/_bmad/bmb/agents/rachid.md +184 -184
- package/templates/_bmad/bmb/agents/workflow-builder.md +61 -61
- package/templates/_bmad/bmb/workflows/byan/data/mantras.yaml +272 -272
- package/templates/_bmad/bmb/workflows/byan/data/templates.yaml +59 -59
- package/templates/_bmad/bmb/workflows/byan/delete-agent-workflow.md +657 -657
- package/templates/_bmad/bmb/workflows/byan/edit-agent-workflow.md +688 -688
- package/templates/_bmad/bmb/workflows/byan/interview-workflow.md +753 -753
- package/templates/_bmad/bmb/workflows/byan/quick-create-workflow.md +450 -450
- package/templates/_bmad/bmb/workflows/byan/templates/base-agent-template.md +79 -79
- package/templates/_bmad/bmb/workflows/byan/validate-agent-workflow.md +676 -676
- package/templates/_bmad/core/agents/carmack.md +238 -238
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* WIZARD Module
|
|
3
|
+
*
|
|
4
|
+
* Post-installation wizard with 3 options: Create agent / Test / Exit.
|
|
5
|
+
*
|
|
6
|
+
* Phase 7: 16h development
|
|
7
|
+
*
|
|
8
|
+
* @module yanstaller/wizard
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
const inquirer = require('inquirer');
|
|
12
|
+
const chalk = require('chalk');
|
|
13
|
+
const logger = require('../utils/logger');
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Show post-install wizard
|
|
17
|
+
*
|
|
18
|
+
* @param {import('./installer').InstallConfig} config - Installation config
|
|
19
|
+
* @returns {Promise<void>}
|
|
20
|
+
*/
|
|
21
|
+
async function show(config) {
|
|
22
|
+
logger.info('');
|
|
23
|
+
logger.info(chalk.green.bold('✅ BYAN INSTALLATION COMPLETE!'));
|
|
24
|
+
logger.info('');
|
|
25
|
+
logger.info(chalk.gray('═'.repeat(60)));
|
|
26
|
+
logger.info('');
|
|
27
|
+
|
|
28
|
+
// Show installation summary
|
|
29
|
+
logger.info(chalk.bold('📊 Installation Summary:'));
|
|
30
|
+
logger.info(` • Agents installed: ${chalk.cyan(config.agents.length)}`);
|
|
31
|
+
logger.info(` • Platforms: ${chalk.cyan(config.targetPlatforms.join(', '))}`);
|
|
32
|
+
logger.info(` • Mode: ${chalk.cyan(config.mode)}`);
|
|
33
|
+
logger.info(` • Location: ${chalk.gray(config.projectRoot)}`);
|
|
34
|
+
logger.info('');
|
|
35
|
+
|
|
36
|
+
const choices = [
|
|
37
|
+
{
|
|
38
|
+
name: '🎨 Create your first agent (BYAN intelligent interview)',
|
|
39
|
+
value: 'create',
|
|
40
|
+
description: 'Launch BYAN to create a custom agent'
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: '🧪 Test an installed agent',
|
|
44
|
+
value: 'test',
|
|
45
|
+
description: 'Verify agent activation'
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: '📚 View documentation',
|
|
49
|
+
value: 'docs',
|
|
50
|
+
description: 'Open README and guides'
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
name: '🚪 Exit (start using BYAN)',
|
|
54
|
+
value: 'exit',
|
|
55
|
+
description: 'Show quick start guide and exit'
|
|
56
|
+
}
|
|
57
|
+
];
|
|
58
|
+
|
|
59
|
+
const answer = await inquirer.prompt([
|
|
60
|
+
{
|
|
61
|
+
type: 'list',
|
|
62
|
+
name: 'action',
|
|
63
|
+
message: 'What would you like to do next?',
|
|
64
|
+
choices,
|
|
65
|
+
pageSize: 5
|
|
66
|
+
}
|
|
67
|
+
]);
|
|
68
|
+
|
|
69
|
+
logger.info('');
|
|
70
|
+
|
|
71
|
+
switch (answer.action) {
|
|
72
|
+
case 'create':
|
|
73
|
+
await launchByanInterview(config);
|
|
74
|
+
break;
|
|
75
|
+
case 'test':
|
|
76
|
+
await testAgent(config);
|
|
77
|
+
break;
|
|
78
|
+
case 'docs':
|
|
79
|
+
showDocumentation(config);
|
|
80
|
+
break;
|
|
81
|
+
case 'exit':
|
|
82
|
+
showExitMessage(config);
|
|
83
|
+
break;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* Launch BYAN intelligent interview
|
|
89
|
+
*
|
|
90
|
+
* @param {import('./installer').InstallConfig} config - Installation config
|
|
91
|
+
* @returns {Promise<void>}
|
|
92
|
+
*/
|
|
93
|
+
async function launchByanInterview(config) {
|
|
94
|
+
logger.info(chalk.bold('🏗️ Launching BYAN Agent Creator...\n'));
|
|
95
|
+
|
|
96
|
+
logger.info('BYAN will guide you through creating a custom agent.');
|
|
97
|
+
logger.info('The interview takes 30-45 minutes and covers:\n');
|
|
98
|
+
logger.info(' 1️⃣ Project context & goals');
|
|
99
|
+
logger.info(' 2️⃣ Business domain & glossary');
|
|
100
|
+
logger.info(' 3️⃣ Agent capabilities & style');
|
|
101
|
+
logger.info(' 4️⃣ Validation & refinement\n');
|
|
102
|
+
|
|
103
|
+
logger.info(chalk.cyan('To start, run:'));
|
|
104
|
+
logger.info(chalk.bold(' @bmad-agent-byan\n'));
|
|
105
|
+
|
|
106
|
+
logger.info(chalk.gray('Press any key to continue...'));
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/**
|
|
110
|
+
* Test installed agent
|
|
111
|
+
*
|
|
112
|
+
* @param {import('./installer').InstallConfig} config - Installation config
|
|
113
|
+
* @returns {Promise<void>}
|
|
114
|
+
*/
|
|
115
|
+
async function testAgent(config) {
|
|
116
|
+
if (!config.agents || config.agents.length === 0) {
|
|
117
|
+
logger.warn('No agents installed. Install agents first.\n');
|
|
118
|
+
return;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
const agentChoices = config.agents.map(name => ({
|
|
122
|
+
name: `@bmad-agent-${name}`,
|
|
123
|
+
value: name
|
|
124
|
+
}));
|
|
125
|
+
|
|
126
|
+
const answer = await inquirer.prompt([
|
|
127
|
+
{
|
|
128
|
+
type: 'list',
|
|
129
|
+
name: 'agent',
|
|
130
|
+
message: 'Which agent would you like to test?',
|
|
131
|
+
choices: agentChoices,
|
|
132
|
+
pageSize: 10
|
|
133
|
+
}
|
|
134
|
+
]);
|
|
135
|
+
|
|
136
|
+
logger.info('');
|
|
137
|
+
logger.info(chalk.bold(`🧪 Testing: @bmad-agent-${answer.agent}\n`));
|
|
138
|
+
logger.info(chalk.cyan('To activate this agent, run:'));
|
|
139
|
+
logger.info(chalk.bold(` @bmad-agent-${answer.agent}\n`));
|
|
140
|
+
|
|
141
|
+
logger.info(chalk.gray('The agent should:'));
|
|
142
|
+
logger.info(chalk.gray(' ✓ Display welcome message'));
|
|
143
|
+
logger.info(chalk.gray(' ✓ Show menu with options'));
|
|
144
|
+
logger.info(chalk.gray(' ✓ Wait for your input\n'));
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
/**
|
|
148
|
+
* Show documentation guide
|
|
149
|
+
*
|
|
150
|
+
* @param {import('./installer').InstallConfig} config - Installation config
|
|
151
|
+
*/
|
|
152
|
+
function showDocumentation(config) {
|
|
153
|
+
logger.info(chalk.bold('📚 BYAN Documentation\n'));
|
|
154
|
+
|
|
155
|
+
logger.info(chalk.cyan('Core Documentation:'));
|
|
156
|
+
logger.info(` • README: ${chalk.gray('_bmad/README.md')}`);
|
|
157
|
+
logger.info(` • Quick Start: ${chalk.gray('_bmad/QUICK-START.md')}`);
|
|
158
|
+
logger.info(` • Module Help: ${chalk.gray('_bmad/{module}/module-help.csv')}\n`);
|
|
159
|
+
|
|
160
|
+
logger.info(chalk.cyan('Module Guides:'));
|
|
161
|
+
logger.info(` • BMB (Builders): ${chalk.gray('_bmad/bmb/README.md')}`);
|
|
162
|
+
logger.info(` • BMM (Development): ${chalk.gray('_bmad/bmm/README.md')}`);
|
|
163
|
+
logger.info(` • TEA (Testing): ${chalk.gray('_bmad/tea/README.md')}`);
|
|
164
|
+
logger.info(` • CIS (Innovation): ${chalk.gray('_bmad/cis/README.md')}\n`);
|
|
165
|
+
|
|
166
|
+
logger.info(chalk.cyan('Online Resources:'));
|
|
167
|
+
logger.info(` • GitHub: ${chalk.gray('https://github.com/byan-platform')}`);
|
|
168
|
+
logger.info(` • Docs: ${chalk.gray('https://byan.dev/docs')}\n`);
|
|
169
|
+
|
|
170
|
+
logger.info(chalk.cyan('Get Help:'));
|
|
171
|
+
logger.info(' • Type /bmad-help in any conversation');
|
|
172
|
+
logger.info(' • Activate @bmad-agent-bmad-master for guidance\n');
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
/**
|
|
176
|
+
* Show exit message with next steps
|
|
177
|
+
*
|
|
178
|
+
* @param {import('./installer').InstallConfig} config - Installation config
|
|
179
|
+
*/
|
|
180
|
+
function showExitMessage(config) {
|
|
181
|
+
logger.info(chalk.green.bold('🎉 You\'re all set!\n'));
|
|
182
|
+
logger.info(chalk.bold('Quick Start Guide:\n'));
|
|
183
|
+
|
|
184
|
+
logger.info(chalk.cyan('1. Activate an agent:'));
|
|
185
|
+
logger.info(' ' + chalk.bold('@bmad-agent-byan') + ' Create new agents');
|
|
186
|
+
logger.info(' ' + chalk.bold('@bmad-agent-bmm-pm') + ' Project management');
|
|
187
|
+
logger.info(' ' + chalk.bold('@bmad-agent-bmm-dev') + ' Development\n');
|
|
188
|
+
|
|
189
|
+
logger.info(chalk.cyan('2. Get help anytime:'));
|
|
190
|
+
logger.info(' ' + chalk.bold('/bmad-help') + ' Contextual advice\n');
|
|
191
|
+
|
|
192
|
+
logger.info(chalk.cyan('3. Explore workflows:'));
|
|
193
|
+
logger.info(' ' + chalk.bold('@bmad-bmm-create-prd') + ' Start a new project\n');
|
|
194
|
+
|
|
195
|
+
logger.info(chalk.cyan('4. Documentation:'));
|
|
196
|
+
logger.info(' Check ' + chalk.gray('_bmad/README.md') + ' for details\n');
|
|
197
|
+
|
|
198
|
+
logger.info(chalk.gray('═'.repeat(60)));
|
|
199
|
+
logger.info(chalk.yellow('💡 Tip: Use @bmad-party-mode for multi-agent brainstorming!'));
|
|
200
|
+
logger.info(chalk.gray('═'.repeat(60)));
|
|
201
|
+
logger.info('');
|
|
202
|
+
logger.info(chalk.bold('Happy building! 🚀\n'));
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
module.exports = {
|
|
206
|
+
show,
|
|
207
|
+
launchByanInterview,
|
|
208
|
+
testAgent,
|
|
209
|
+
showDocumentation,
|
|
210
|
+
showExitMessage
|
|
211
|
+
};
|
package/package.json
CHANGED
|
@@ -1,55 +1,61 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "create-byan-agent",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "NPX installer for BYAN ecosystem - Agent creators (BYAN, BYAN-Test) with deployment (RACHID), integration (MARC), updates (PATNOTE), and optimization (CARMACK)",
|
|
5
|
-
"bin": {
|
|
6
|
-
"create-byan-agent": "bin/create-byan-agent.js"
|
|
7
|
-
},
|
|
8
|
-
"scripts": {
|
|
9
|
-
"start": "node bin/create-byan-agent.js",
|
|
10
|
-
"test": "
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
"
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
|
|
55
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "create-byan-agent",
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"description": "NPX installer for BYAN ecosystem - Agent creators (BYAN, BYAN-Test) with deployment (RACHID), integration (MARC), updates (PATNOTE), and optimization (CARMACK)",
|
|
5
|
+
"bin": {
|
|
6
|
+
"create-byan-agent": "bin/create-byan-agent.js"
|
|
7
|
+
},
|
|
8
|
+
"scripts": {
|
|
9
|
+
"start": "node bin/create-byan-agent.js",
|
|
10
|
+
"test": "jest",
|
|
11
|
+
"test:watch": "jest --watch",
|
|
12
|
+
"test:coverage": "jest --coverage"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"byan",
|
|
16
|
+
"agent",
|
|
17
|
+
"creator",
|
|
18
|
+
"ai",
|
|
19
|
+
"bmad",
|
|
20
|
+
"merise",
|
|
21
|
+
"tdd",
|
|
22
|
+
"copilot",
|
|
23
|
+
"vscode",
|
|
24
|
+
"claude",
|
|
25
|
+
"rachid",
|
|
26
|
+
"marc",
|
|
27
|
+
"patnote",
|
|
28
|
+
"carmack",
|
|
29
|
+
"npm",
|
|
30
|
+
"deployment",
|
|
31
|
+
"token-optimization",
|
|
32
|
+
"update-manager",
|
|
33
|
+
"conflict-resolution",
|
|
34
|
+
"github-copilot",
|
|
35
|
+
"mcp-server"
|
|
36
|
+
],
|
|
37
|
+
"author": "Yan",
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"chalk": "^4.1.2",
|
|
41
|
+
"commander": "^11.1.0",
|
|
42
|
+
"fs-extra": "^11.2.0",
|
|
43
|
+
"inquirer": "^8.2.5",
|
|
44
|
+
"js-yaml": "^4.1.0",
|
|
45
|
+
"ora": "^5.4.1"
|
|
46
|
+
},
|
|
47
|
+
"engines": {
|
|
48
|
+
"node": ">=18.0.0"
|
|
49
|
+
},
|
|
50
|
+
"files": [
|
|
51
|
+
"bin/",
|
|
52
|
+
"lib/",
|
|
53
|
+
"templates/",
|
|
54
|
+
"README.md",
|
|
55
|
+
"CHANGELOG.md",
|
|
56
|
+
"LICENSE"
|
|
57
|
+
],
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"jest": "^29.7.0"
|
|
60
|
+
}
|
|
61
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: 'bmad-
|
|
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>
|
|
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>
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: '
|
|
3
|
-
description: 'agent-builder 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/bmb/agents/agent-builder.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>
|
|
1
|
+
---
|
|
2
|
+
name: 'bmb-agent-builder'
|
|
3
|
+
description: 'agent-builder 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/bmb/agents/agent-builder.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>
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: '
|
|
3
|
-
description: 'module-builder 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/bmb/agents/module-builder.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>
|
|
1
|
+
---
|
|
2
|
+
name: 'bmb-module-builder'
|
|
3
|
+
description: 'module-builder 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/bmb/agents/module-builder.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>
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: '
|
|
3
|
-
description: 'workflow-builder 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/bmb/agents/workflow-builder.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>
|
|
1
|
+
---
|
|
2
|
+
name: 'bmb-workflow-builder'
|
|
3
|
+
description: 'workflow-builder 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/bmb/agents/workflow-builder.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>
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: '
|
|
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>
|
|
1
|
+
---
|
|
2
|
+
name: 'bmm-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>
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: '
|
|
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>
|
|
1
|
+
---
|
|
2
|
+
name: 'bmm-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>
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: '
|
|
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>
|
|
1
|
+
---
|
|
2
|
+
name: 'bmm-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>
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: '
|
|
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>
|
|
1
|
+
---
|
|
2
|
+
name: 'bmm-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>
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: '
|
|
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>
|
|
1
|
+
---
|
|
2
|
+
name: 'bmm-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>
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: '
|
|
3
|
-
description: 'quinn 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/quinn.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>
|
|
1
|
+
---
|
|
2
|
+
name: 'bmm-quinn'
|
|
3
|
+
description: 'quinn 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/quinn.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>
|