create-byan-agent 2.0.0-alpha.1 → 2.0.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.
- package/README.md +193 -316
- package/package.json +19 -25
package/README.md
CHANGED
|
@@ -1,421 +1,298 @@
|
|
|
1
|
-
# BYAN -
|
|
1
|
+
# BYAN - Intelligent AI Agent Creator
|
|
2
2
|
|
|
3
|
-
**
|
|
4
|
-
**Methodology:** Merise Agile + TDD + 64 Mantras
|
|
5
|
-
**Agents Included:** BYAN, BYAN-Test, RACHID, MARC, PATNOTE, CARMACK
|
|
3
|
+
**Create custom AI agents in 15 minutes** | GitHub Copilot CLI, VSCode, Claude Code
|
|
6
4
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
## 📚 Documentation
|
|
10
|
-
|
|
11
|
-
### 🆕 **[Installation Guide for Beginners](https://github.com/Yan-Acadenice/BYAN/blob/main/install/GUIDE-INSTALLATION-BYAN-SIMPLE.md)** ⭐ NEW!
|
|
12
|
-
Complete step-by-step installation guide for Windows + Linux users:
|
|
13
|
-
- ✅ GitHub Copilot CLI installation (detailed)
|
|
14
|
-
- ✅ Claude Code installation (with MCP)
|
|
15
|
-
- ✅ 10 troubleshooting scenarios
|
|
16
|
-
- ✅ 8 FAQ with solutions
|
|
17
|
-
- ✅ Beginner-friendly explanations
|
|
18
|
-
- ✅ Copy-paste ready commands
|
|
19
|
-
|
|
20
|
-
**Perfect for:** First-time users, Windows users, troubleshooting installation issues
|
|
21
|
-
|
|
22
|
-
### ⚡ **[Quickstart Guide - 5 Minutes](https://github.com/Yan-Acadenice/BYAN/blob/main/install/QUICKSTART.md)** 🚀 NEW!
|
|
23
|
-
Ultra-condensed installation for experienced developers:
|
|
24
|
-
- ⚡ Zero explanations, only commands
|
|
25
|
-
- ⚡ 5-minute install promise
|
|
26
|
-
- ⚡ GitHub Copilot CLI + Claude Code
|
|
27
|
-
- ⚡ 1-minute troubleshooting fixes
|
|
28
|
-
- ⚡ Agent reference table
|
|
5
|
+
## Quick Start
|
|
29
6
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
7
|
+
```bash
|
|
8
|
+
npx create-byan-agent
|
|
9
|
+
```
|
|
33
10
|
|
|
34
|
-
|
|
11
|
+
That's it! The installer launches automatically.
|
|
35
12
|
|
|
36
|
-
|
|
13
|
+
## What is BYAN?
|
|
37
14
|
|
|
38
|
-
|
|
39
|
-
- 30-45 min intelligent interview process
|
|
40
|
-
- Applies 64 mantras systematically
|
|
41
|
-
- Zero Trust philosophy (challenges requirements)
|
|
42
|
-
- Multi-platform support (Copilot, VSCode, Claude, Codex)
|
|
43
|
-
- TDD-driven validation
|
|
44
|
-
- Consequences evaluation before actions
|
|
45
|
-
- **Core Team:** BYAN (creator), RACHID (npm), MARC (copilot), PATNOTE (updates), CARMACK (optimizer)
|
|
46
|
-
- **Optimized:** BYAN-Test version with 46% token reduction
|
|
15
|
+
BYAN guides you through an intelligent interview to create personalized AI agents:
|
|
47
16
|
|
|
48
|
-
|
|
17
|
+
1. ✅ Answer 12-15 simple questions (15-30 min)
|
|
18
|
+
2. ✅ BYAN analyzes your needs
|
|
19
|
+
3. ✅ Custom agent generated automatically
|
|
20
|
+
4. ✅ Ready to use immediately
|
|
49
21
|
|
|
50
|
-
##
|
|
22
|
+
## Installation
|
|
51
23
|
|
|
52
|
-
###
|
|
24
|
+
### Option 1: NPX (Recommended)
|
|
53
25
|
|
|
54
|
-
**Option 1: NPX (Recommended)**
|
|
55
26
|
```bash
|
|
56
27
|
npx create-byan-agent
|
|
57
28
|
```
|
|
58
29
|
|
|
59
|
-
|
|
60
|
-
```bash
|
|
61
|
-
curl -fsSL https://raw.githubusercontent.com/yan/byan/main/install/install.sh | bash
|
|
62
|
-
```
|
|
30
|
+
### Option 2: Global Install
|
|
63
31
|
|
|
64
|
-
**Option 3: Manual**
|
|
65
32
|
```bash
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
./install/install.sh
|
|
33
|
+
npm install -g create-byan-agent
|
|
34
|
+
create-byan-agent
|
|
69
35
|
```
|
|
70
36
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
## 📖 Usage
|
|
37
|
+
## Create Your First Agent
|
|
74
38
|
|
|
75
|
-
###
|
|
39
|
+
### 1. Launch BYAN
|
|
76
40
|
|
|
77
41
|
**GitHub Copilot CLI:**
|
|
78
42
|
```bash
|
|
79
|
-
copilot
|
|
80
|
-
|
|
81
|
-
/agent
|
|
82
|
-
# Select one of:
|
|
83
|
-
# - byan (create agents - standard version)
|
|
84
|
-
# - byan-test (create agents - optimized 46% fewer tokens)
|
|
85
|
-
# - rachid (NPM deployment specialist)
|
|
86
|
-
# - marc (Copilot CLI integration expert)
|
|
87
|
-
# - patnote (Update manager & conflict resolution)
|
|
88
|
-
# - carmack (Token optimizer for agents)
|
|
43
|
+
gh copilot
|
|
44
|
+
@byan
|
|
89
45
|
```
|
|
90
46
|
|
|
91
|
-
**
|
|
92
|
-
1. Open Command Palette (Ctrl+Shift+P)
|
|
93
|
-
2. Type: "Activate Agent"
|
|
94
|
-
3. Select from: BYAN, BYAN-Test, RACHID, MARC, PATNOTE, CARMACK
|
|
95
|
-
|
|
96
|
-
**Claude Code:**
|
|
47
|
+
**Command Line:**
|
|
97
48
|
```bash
|
|
98
|
-
|
|
99
|
-
claude chat --agent byan # Full-featured creator
|
|
100
|
-
claude chat --agent byan-test # Optimized creator (46% fewer tokens)
|
|
101
|
-
claude chat --agent rachid # NPM deployment
|
|
102
|
-
claude chat --agent marc # Copilot CLI integration
|
|
103
|
-
claude chat --agent patnote # Update manager
|
|
104
|
-
claude chat --agent carmack # Token optimizer
|
|
49
|
+
npx create-byan-agent
|
|
105
50
|
```
|
|
106
51
|
|
|
107
|
-
###
|
|
52
|
+
### 2. Choose Mode
|
|
108
53
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
Best for: First agent, critical agents, complex requirements
|
|
54
|
+
**🎤 Full Interview (15-30 min)** - Recommended for first agent
|
|
55
|
+
- 12-15 questions
|
|
56
|
+
- In-depth analysis
|
|
57
|
+
- Ultra-personalized agent
|
|
114
58
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
```
|
|
119
|
-
Best for: Additional agents, clear requirements, existing project context
|
|
59
|
+
**⚡ Quick Create (5 min)** - For experienced users
|
|
60
|
+
- 3-5 essential questions
|
|
61
|
+
- Functional agent quickly
|
|
120
62
|
|
|
121
|
-
|
|
63
|
+
### 3. Answer Questions
|
|
122
64
|
|
|
123
|
-
|
|
65
|
+
BYAN asks questions in 4 categories:
|
|
124
66
|
|
|
125
|
-
|
|
67
|
+
1. **Context**: Your project, goals
|
|
68
|
+
2. **Business**: Domain, constraints
|
|
69
|
+
3. **Agent**: Desired skills, tasks
|
|
70
|
+
4. **Validation**: Confirmation, adjustments
|
|
126
71
|
|
|
127
|
-
|
|
128
|
-
**BYAN-Test (Optimized)** - Token-optimized version (-46% tokens, same capabilities)
|
|
72
|
+
### 4. Automatic Generation
|
|
129
73
|
|
|
130
|
-
**Full Interview (30-45 min):**
|
|
131
74
|
```
|
|
132
|
-
|
|
75
|
+
✅ Complete analysis
|
|
76
|
+
✅ Agent created: my-dev-agent.md
|
|
77
|
+
✅ Validated and ready
|
|
133
78
|
```
|
|
134
|
-
Best for: First agent, critical agents, complex requirements
|
|
135
79
|
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
```
|
|
140
|
-
Best for: Additional agents, clear requirements, existing project context
|
|
80
|
+
Agent saved to:
|
|
81
|
+
- GitHub Copilot: `.github/copilot/agents/`
|
|
82
|
+
- Other platforms: `.codex/prompts/`
|
|
141
83
|
|
|
142
|
-
|
|
84
|
+
## Usage Examples
|
|
143
85
|
|
|
144
|
-
|
|
86
|
+
### Code Review Agent
|
|
145
87
|
|
|
146
|
-
|
|
88
|
+
```bash
|
|
89
|
+
npx create-byan-agent
|
|
147
90
|
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
[TEST-NPX] Test npx installation
|
|
153
|
-
[AUDIT] Security audit
|
|
154
|
-
[FIX-DEPS] Fix dependencies
|
|
155
|
-
```
|
|
91
|
+
# BYAN asks:
|
|
92
|
+
# Purpose? → "Review JavaScript code"
|
|
93
|
+
# Tasks? → "Detect bugs, suggest optimizations"
|
|
94
|
+
# Constraints? → "Follow our style guide"
|
|
156
95
|
|
|
157
|
-
|
|
96
|
+
# Result: code-reviewer.md created in 2 seconds
|
|
97
|
+
```
|
|
158
98
|
|
|
159
|
-
|
|
99
|
+
### Documentation Agent
|
|
160
100
|
|
|
161
|
-
|
|
101
|
+
```bash
|
|
102
|
+
npx create-byan-agent
|
|
162
103
|
|
|
163
|
-
|
|
104
|
+
# Purpose? → "Generate API documentation"
|
|
105
|
+
# Tech? → "Node.js, Express, MongoDB"
|
|
106
|
+
# Format? → "Markdown with examples"
|
|
164
107
|
|
|
165
|
-
|
|
166
|
-
```
|
|
167
|
-
[VALIDATE] Validate .github/agents/
|
|
168
|
-
[TEST] Test /agent detection
|
|
169
|
-
[CREATE-STUB] Create agent stub
|
|
170
|
-
[FIX-YAML] Fix YAML frontmatter
|
|
171
|
-
[MCP-CONFIG] Configure MCP server
|
|
108
|
+
# Result: doc-generator.md ready
|
|
172
109
|
```
|
|
173
110
|
|
|
174
|
-
|
|
111
|
+
## Use Your Agent
|
|
175
112
|
|
|
176
|
-
|
|
113
|
+
### With GitHub Copilot CLI
|
|
177
114
|
|
|
178
|
-
|
|
115
|
+
```bash
|
|
116
|
+
gh copilot
|
|
117
|
+
@my-dev-agent
|
|
118
|
+
# Your agent responds!
|
|
119
|
+
```
|
|
179
120
|
|
|
180
|
-
###
|
|
121
|
+
### With VSCode
|
|
181
122
|
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
[MERGE-VERSIONS] Merge agent versions
|
|
186
|
-
[DETECT-CONFLICTS] Detect conflicts
|
|
187
|
-
[BACKUP-RESTORE] Backup/Restore agents
|
|
188
|
-
[CHANGELOG] Generate changelog
|
|
189
|
-
```
|
|
123
|
+
1. Command Palette (Ctrl+Shift+P)
|
|
124
|
+
2. "GitHub Copilot: Chat"
|
|
125
|
+
3. Type `@my-dev-agent`
|
|
190
126
|
|
|
191
|
-
|
|
127
|
+
### With Claude Code
|
|
192
128
|
|
|
193
|
-
|
|
129
|
+
```bash
|
|
130
|
+
claude chat --agent my-dev-agent
|
|
131
|
+
```
|
|
194
132
|
|
|
195
|
-
|
|
133
|
+
## Key Concepts (v2.0)
|
|
196
134
|
|
|
197
|
-
###
|
|
135
|
+
### 1. Intelligent Interview (4 phases)
|
|
198
136
|
|
|
199
|
-
**Token Optimization:**
|
|
200
137
|
```
|
|
201
|
-
|
|
202
|
-
[ANALYZE] Analyze token usage
|
|
203
|
-
[VALIDATE] Validate optimized agent
|
|
204
|
-
[COMPARE] Compare before/after
|
|
205
|
-
[BATCH] Batch optimize multiple agents
|
|
138
|
+
CONTEXT → BUSINESS → AGENT → VALIDATION
|
|
206
139
|
```
|
|
207
140
|
|
|
208
|
-
|
|
141
|
+
Minimum 3 questions per phase = 12 total
|
|
209
142
|
|
|
210
|
-
|
|
143
|
+
### 2. State Machine
|
|
211
144
|
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
145
|
+
```
|
|
146
|
+
INTERVIEW → ANALYSIS → GENERATION → COMPLETED
|
|
147
|
+
```
|
|
215
148
|
|
|
216
|
-
|
|
217
|
-
|---------|-------------|----------|
|
|
218
|
-
| **[INT]** | Intelligent Interview | 30-45 min |
|
|
219
|
-
| **[QC]** | Quick Create | 10 min |
|
|
220
|
-
| **[LA]** | List all agents | Instant |
|
|
221
|
-
| **[EA]** | Edit existing agent | 10-20 min |
|
|
222
|
-
| **[VA]** | Validate agent (64 mantras) | 5-10 min |
|
|
223
|
-
| **[DA-AGENT]** | Delete agent (with backup) | 5 min |
|
|
224
|
-
| **[PC]** | Show project context | Instant |
|
|
225
|
-
| **[MAN]** | Display 64 mantras | Instant |
|
|
149
|
+
### 3. Template System
|
|
226
150
|
|
|
227
|
-
|
|
151
|
+
Agents generated from professional templates with YAML frontmatter + XML structure.
|
|
228
152
|
|
|
229
|
-
|
|
153
|
+
### 4. Automatic Validation
|
|
230
154
|
|
|
231
|
-
|
|
155
|
+
- ✅ Correct YAML format
|
|
156
|
+
- ✅ Valid XML structure
|
|
157
|
+
- ✅ No emojis in code (Mantra IA-23)
|
|
158
|
+
- ✅ Valid agent name
|
|
159
|
+
- ✅ Clear description
|
|
232
160
|
|
|
233
|
-
###
|
|
234
|
-
- Philosophy: Model serves business, not reverse
|
|
235
|
-
- Agility: User stories → Entities (bottom-up)
|
|
236
|
-
- Quality: KISS, DRY, YAGNI
|
|
237
|
-
- Tests: TDD is not optional
|
|
238
|
-
- Merise Rigor: Data Dictionary First, MCD ⇄ MCT
|
|
239
|
-
- Problem Solving: Ockham's Razor, Inversion techniques
|
|
240
|
-
- **Consequences: Evaluate 10 dimensions before action**
|
|
161
|
+
### 5. Methodology: 64 Mantras
|
|
241
162
|
|
|
242
|
-
|
|
243
|
-
-
|
|
244
|
-
- **
|
|
245
|
-
-
|
|
246
|
-
- **
|
|
163
|
+
Quality principles applied:
|
|
164
|
+
- **#37 Ockham's Razor**: Simplicity first
|
|
165
|
+
- **IA-1 Trust But Verify**: Verify user needs
|
|
166
|
+
- **IA-23 No Emoji Pollution**: Clean code
|
|
167
|
+
- **IA-24 Clean Code**: Self-documenting
|
|
247
168
|
|
|
248
|
-
|
|
169
|
+
## Advanced Configuration
|
|
249
170
|
|
|
250
|
-
|
|
171
|
+
### Customize Output
|
|
251
172
|
|
|
252
|
-
|
|
173
|
+
```javascript
|
|
174
|
+
const ByanV2 = require('create-byan-agent');
|
|
253
175
|
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
│ │ │ └── byan.md # BYAN agent definition
|
|
260
|
-
│ │ ├── workflows/
|
|
261
|
-
│ │ │ └── byan/
|
|
262
|
-
│ │ │ ├── interview-workflow.md
|
|
263
|
-
│ │ │ ├── quick-create-workflow.md
|
|
264
|
-
│ │ │ ├── edit-agent-workflow.md
|
|
265
|
-
│ │ │ ├── validate-agent-workflow.md
|
|
266
|
-
│ │ │ ├── delete-agent-workflow.md
|
|
267
|
-
│ │ │ ├── templates/
|
|
268
|
-
│ │ │ │ └── base-agent-template.md
|
|
269
|
-
│ │ │ └── data/
|
|
270
|
-
│ │ │ ├── mantras.yaml
|
|
271
|
-
│ │ │ └── templates.yaml
|
|
272
|
-
│ │ └── config.yaml # Module configuration
|
|
273
|
-
│ ├── core/ # BMAD Core
|
|
274
|
-
│ ├── _output/ # Generated files
|
|
275
|
-
│ └── {your-module}/
|
|
276
|
-
│ └── agents/ # Your generated agents
|
|
277
|
-
└── install/
|
|
278
|
-
├── install.sh # Bash installer
|
|
279
|
-
├── package.json # NPX package
|
|
280
|
-
└── bin/
|
|
281
|
-
└── create-byan-agent.js # NPX installer script
|
|
176
|
+
const byan = new ByanV2({
|
|
177
|
+
outputFolder: './my-agents',
|
|
178
|
+
language: 'en',
|
|
179
|
+
template: 'custom'
|
|
180
|
+
});
|
|
282
181
|
```
|
|
283
182
|
|
|
284
|
-
|
|
183
|
+
### Programmatic Usage
|
|
184
|
+
|
|
185
|
+
```javascript
|
|
186
|
+
const ByanV2 = require('create-byan-agent');
|
|
187
|
+
|
|
188
|
+
async function createAgent() {
|
|
189
|
+
const byan = new ByanV2();
|
|
190
|
+
await byan.startSession();
|
|
191
|
+
|
|
192
|
+
const responses = [
|
|
193
|
+
'Backend development agent',
|
|
194
|
+
'REST API in Node.js',
|
|
195
|
+
'Tests, docs, deployment',
|
|
196
|
+
// ... 12 responses total
|
|
197
|
+
];
|
|
198
|
+
|
|
199
|
+
for (const response of responses) {
|
|
200
|
+
await byan.getNextQuestion();
|
|
201
|
+
await byan.submitResponse(response);
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
const profile = await byan.generateProfile();
|
|
205
|
+
console.log('Agent created:', profile);
|
|
206
|
+
}
|
|
207
|
+
```
|
|
285
208
|
|
|
286
|
-
##
|
|
287
|
-
|
|
288
|
-
BYAN conducts a 4-phase interview:
|
|
289
|
-
|
|
290
|
-
### Phase 1: Project Context (15-30 min)
|
|
291
|
-
- Project name, description, domain
|
|
292
|
-
- Technical stack and constraints
|
|
293
|
-
- Team size, skills, maturity
|
|
294
|
-
- **Pain points (5 Whys on main pain)**
|
|
295
|
-
- Goals and success criteria
|
|
296
|
-
|
|
297
|
-
### Phase 2: Business/Domain (15-20 min)
|
|
298
|
-
- Business domain deep dive
|
|
299
|
-
- **Interactive glossary (minimum 5 concepts)**
|
|
300
|
-
- Actors, processes, business rules
|
|
301
|
-
- Edge cases and constraints
|
|
302
|
-
- Regulatory requirements
|
|
303
|
-
|
|
304
|
-
### Phase 3: Agent Needs (10-15 min)
|
|
305
|
-
- Agent role and responsibilities
|
|
306
|
-
- Required knowledge (business + technical)
|
|
307
|
-
- **Capabilities (minimum 3)**
|
|
308
|
-
- **Mantras to prioritize (minimum 5)**
|
|
309
|
-
- Communication style
|
|
310
|
-
- **Use cases (minimum 3)**
|
|
311
|
-
|
|
312
|
-
### Phase 4: Validation (10 min)
|
|
313
|
-
- Complete synthesis
|
|
314
|
-
- **Challenge inconsistencies**
|
|
315
|
-
- Validate with user
|
|
316
|
-
- Create ProjectContext
|
|
317
|
-
- Finalize AgentSpec
|
|
209
|
+
## Useful Commands
|
|
318
210
|
|
|
319
|
-
|
|
211
|
+
```bash
|
|
212
|
+
# List agents
|
|
213
|
+
ls .github/copilot/agents/
|
|
320
214
|
|
|
321
|
-
|
|
215
|
+
# Edit agent
|
|
216
|
+
code .github/copilot/agents/my-agent.md
|
|
322
217
|
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
- 64 Mantras compliance
|
|
326
|
-
- BMAD format standards
|
|
327
|
-
- Best practices
|
|
218
|
+
# Validate agent
|
|
219
|
+
npx create-byan-agent --validate my-agent.md
|
|
328
220
|
|
|
329
|
-
|
|
330
|
-
-
|
|
331
|
-
|
|
332
|
-
- 🟢 SUGGESTIONS: Nice to have
|
|
221
|
+
# Version
|
|
222
|
+
npx create-byan-agent --version
|
|
223
|
+
```
|
|
333
224
|
|
|
334
|
-
|
|
335
|
-
- A+ (95-100): Exemplary
|
|
336
|
-
- A (90-94): Excellent
|
|
337
|
-
- B (80-89): Good
|
|
338
|
-
- C (70-79): Acceptable
|
|
339
|
-
- D (60-69): Needs improvement
|
|
340
|
-
- F (<60): Failing
|
|
225
|
+
## Help & Support
|
|
341
226
|
|
|
342
|
-
|
|
227
|
+
### Get Help
|
|
343
228
|
|
|
344
|
-
|
|
229
|
+
```
|
|
230
|
+
/bmad-help
|
|
231
|
+
```
|
|
345
232
|
|
|
346
|
-
|
|
233
|
+
### Documentation
|
|
347
234
|
|
|
348
|
-
|
|
349
|
-
-
|
|
350
|
-
-
|
|
351
|
-
- Plays devil's advocate
|
|
352
|
-
- Signals problems early
|
|
235
|
+
- [Full Guide](https://github.com/Yan-Acadenice/BYAN/blob/main/GUIDE-UTILISATION.md)
|
|
236
|
+
- [API Reference](https://github.com/Yan-Acadenice/BYAN/blob/main/API-BYAN-V2.md)
|
|
237
|
+
- [Examples](https://github.com/Yan-Acadenice/BYAN/tree/main/examples)
|
|
353
238
|
|
|
354
|
-
|
|
355
|
-
- Validates all inputs
|
|
356
|
-
- Cross-checks data
|
|
357
|
-
- Ensures coherence
|
|
239
|
+
### Common Issues
|
|
358
240
|
|
|
359
|
-
**
|
|
360
|
-
```
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
agent that does ONE thing exceptionally well be more valuable?
|
|
364
|
-
What's the ONE most critical capability you need?"
|
|
241
|
+
**Agent doesn't appear in Copilot**
|
|
242
|
+
```bash
|
|
243
|
+
cat .github/copilot/agents/my-agent.md
|
|
244
|
+
gh copilot quit && gh copilot
|
|
365
245
|
```
|
|
366
246
|
|
|
367
|
-
|
|
247
|
+
**"Node version too old"**
|
|
248
|
+
```bash
|
|
249
|
+
node --version # Must be >= 18
|
|
250
|
+
nvm install 18 && nvm use 18
|
|
251
|
+
```
|
|
368
252
|
|
|
369
|
-
|
|
253
|
+
**Tests fail**
|
|
254
|
+
```bash
|
|
255
|
+
rm -rf node_modules package-lock.json
|
|
256
|
+
npm install && npm test
|
|
257
|
+
```
|
|
370
258
|
|
|
371
|
-
|
|
259
|
+
## Stats (v2.0)
|
|
372
260
|
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
6. **Legal:** Compliance
|
|
379
|
-
7. **Operations:** Deployment complexity
|
|
380
|
-
8. **Dependencies:** Systems impacted
|
|
381
|
-
9. **Time:** Duration estimates
|
|
382
|
-
10. **Alternatives:** Other options
|
|
261
|
+
- ✅ **881/881 tests passing (100%)**
|
|
262
|
+
- ✅ **14 modules**
|
|
263
|
+
- ✅ **77 Story Points delivered**
|
|
264
|
+
- ✅ **Agent in < 2 seconds** after interview
|
|
265
|
+
- ✅ **64 mantras** applied automatically
|
|
383
266
|
|
|
384
|
-
|
|
385
|
-
- 🟢 LOW: Safe to proceed
|
|
386
|
-
- 🟡 MEDIUM: Caution required
|
|
387
|
-
- 🔴 HIGH: Team approval needed
|
|
388
|
-
- 🔥 CRITICAL: Requires migration plan
|
|
267
|
+
## Use Cases
|
|
389
268
|
|
|
390
|
-
|
|
269
|
+
**Developers**: Code review, test generation, refactoring, security analysis
|
|
391
270
|
|
|
392
|
-
|
|
271
|
+
**Writers**: Documentation, proofreading, translation, content creation
|
|
393
272
|
|
|
394
|
-
|
|
273
|
+
**Project Managers**: Ticket analysis, reports, planning, prioritization
|
|
395
274
|
|
|
396
|
-
|
|
397
|
-
user_name: Your Name
|
|
398
|
-
communication_language: Francais|English
|
|
399
|
-
document_output_language: Francais|English
|
|
400
|
-
output_folder: "{project-root}/_bmad-output"
|
|
401
|
-
platform: copilot|vscode|claude|codex
|
|
402
|
-
```
|
|
275
|
+
**Designers**: UI components, accessibility, CSS optimization, design systems
|
|
403
276
|
|
|
404
|
-
|
|
277
|
+
## License
|
|
405
278
|
|
|
406
|
-
|
|
279
|
+
MIT License
|
|
407
280
|
|
|
408
|
-
|
|
281
|
+
## Contributors
|
|
409
282
|
|
|
410
|
-
|
|
283
|
+
**Core Team:**
|
|
284
|
+
- **BYAN**: Intelligent agent creator
|
|
285
|
+
- **RACHID**: NPM/NPX deployment specialist
|
|
286
|
+
- **MARC**: GitHub Copilot CLI integration expert
|
|
287
|
+
- **PATNOTE**: Update manager
|
|
288
|
+
- **CARMACK**: Token optimizer
|
|
411
289
|
|
|
412
|
-
##
|
|
290
|
+
## Links
|
|
413
291
|
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
**Date:** 2026-02-02
|
|
292
|
+
- 📦 [NPM](https://www.npmjs.com/package/create-byan-agent)
|
|
293
|
+
- 🐙 [GitHub](https://github.com/Yan-Acadenice/BYAN)
|
|
294
|
+
- 📚 [Full Docs](https://github.com/Yan-Acadenice/BYAN/blob/main/install/README.md)
|
|
418
295
|
|
|
419
296
|
---
|
|
420
297
|
|
|
421
|
-
**
|
|
298
|
+
**BYAN v2.0** - Create professional AI agents in 15 minutes 🚀
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-byan-agent",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.0.1",
|
|
4
|
+
"description": "Create custom AI agents in 15 minutes through intelligent interviews. GitHub Copilot CLI, VSCode, Claude Code compatible. 64 quality mantras applied automatically.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"create-byan-agent": "bin/create-byan-agent-v2.js"
|
|
7
7
|
},
|
|
@@ -12,38 +12,32 @@
|
|
|
12
12
|
"test:coverage": "jest --coverage"
|
|
13
13
|
},
|
|
14
14
|
"keywords": [
|
|
15
|
-
"
|
|
16
|
-
"agent",
|
|
17
|
-
"
|
|
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",
|
|
15
|
+
"ai-agent",
|
|
16
|
+
"agent-creator",
|
|
17
|
+
"intelligent-interview",
|
|
34
18
|
"github-copilot",
|
|
35
|
-
"
|
|
19
|
+
"copilot-cli",
|
|
20
|
+
"vscode-extension",
|
|
21
|
+
"claude-code",
|
|
22
|
+
"code-generation",
|
|
23
|
+
"developer-tools",
|
|
24
|
+
"automation",
|
|
25
|
+
"merise-agile",
|
|
26
|
+
"tdd",
|
|
27
|
+
"quality-mantras",
|
|
28
|
+
"agent-builder",
|
|
29
|
+
"conversational-ai"
|
|
36
30
|
],
|
|
37
31
|
"author": "Yan",
|
|
38
32
|
"license": "MIT",
|
|
39
33
|
"repository": {
|
|
40
34
|
"type": "git",
|
|
41
|
-
"url": "https://github.com/
|
|
35
|
+
"url": "git+https://github.com/Yan-Acadenice/BYAN.git"
|
|
42
36
|
},
|
|
43
37
|
"bugs": {
|
|
44
|
-
"url": "https://github.com/
|
|
38
|
+
"url": "https://github.com/Yan-Acadenice/BYAN/issues"
|
|
45
39
|
},
|
|
46
|
-
"homepage": "https://github.com/
|
|
40
|
+
"homepage": "https://github.com/Yan-Acadenice/BYAN#readme",
|
|
47
41
|
"dependencies": {
|
|
48
42
|
"chalk": "^4.1.2",
|
|
49
43
|
"commander": "^11.1.0",
|