create-byan-agent 2.3.2 → 2.3.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.
- package/README.md +10 -10
- package/install/bin/create-byan-agent-v2.js +17 -17
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/create-byan-agent)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
|
-
[](https://github.com/
|
|
5
|
+
[](https://github.com/Yan-Acadenice/BYAN)
|
|
6
6
|
[](https://nodejs.org)
|
|
7
7
|
|
|
8
8
|
**🏛️ Intelligent AI Agent Ecosystem** | Powered by Merise Agile + TDD + 64 Mantras
|
|
@@ -313,23 +313,23 @@ await byan.startSession();
|
|
|
313
313
|
// ... your existing workflow
|
|
314
314
|
```
|
|
315
315
|
|
|
316
|
-
To use new BMAD features, simply enable them in config. See [MIGRATION.md](https://github.com/
|
|
316
|
+
To use new BMAD features, simply enable them in config. See [MIGRATION.md](https://github.com/Yan-Acadenice/BYAN/blob/main/MIGRATION-v2.0-to-v2.1.md) for details.
|
|
317
317
|
|
|
318
318
|
---
|
|
319
319
|
|
|
320
320
|
## 📖 Documentation
|
|
321
321
|
|
|
322
|
-
- [Full Documentation](https://github.com/
|
|
323
|
-
- [CHANGELOG v2.1.0](https://github.com/
|
|
324
|
-
- [Migration Guide](https://github.com/
|
|
325
|
-
- [Manual Testing Guide](https://github.com/
|
|
326
|
-
- [BMAD Quick Reference](https://github.com/
|
|
322
|
+
- [Full Documentation](https://github.com/Yan-Acadenice/BYAN/blob/main/README-BYAN-V2.md)
|
|
323
|
+
- [CHANGELOG v2.1.0](https://github.com/Yan-Acadenice/BYAN/blob/main/CHANGELOG-v2.1.0.md)
|
|
324
|
+
- [Migration Guide](https://github.com/Yan-Acadenice/BYAN/blob/main/MIGRATION-v2.0-to-v2.1.md)
|
|
325
|
+
- [Manual Testing Guide](https://github.com/Yan-Acadenice/BYAN/blob/main/BYAN-V2.1.0-MANUAL-TEST-PLAN.md)
|
|
326
|
+
- [BMAD Quick Reference](https://github.com/Yan-Acadenice/BYAN/blob/main/BMAD-QUICK-REFERENCE.md)
|
|
327
327
|
|
|
328
328
|
---
|
|
329
329
|
|
|
330
330
|
## 🤝 Contributing
|
|
331
331
|
|
|
332
|
-
Contributions welcome! Please read our contributing guidelines and submit pull requests to our [GitHub repository](https://github.com/
|
|
332
|
+
Contributions welcome! Please read our contributing guidelines and submit pull requests to our [GitHub repository](https://github.com/Yan-Acadenice/BYAN).
|
|
333
333
|
|
|
334
334
|
---
|
|
335
335
|
|
|
@@ -361,8 +361,8 @@ MIT © [Yan-Acadenice](https://github.com/Yan-Acadenice)
|
|
|
361
361
|
|
|
362
362
|
## 🆘 Support
|
|
363
363
|
|
|
364
|
-
- **Issues**: [GitHub Issues](https://github.com/
|
|
365
|
-
- **Repository**: [github.com/
|
|
364
|
+
- **Issues**: [GitHub Issues](https://github.com/Yan-Acadenice/BYAN/issues)
|
|
365
|
+
- **Repository**: [github.com/Yan-Acadenice/BYAN](https://github.com/Yan-Acadenice/BYAN)
|
|
366
366
|
|
|
367
367
|
---
|
|
368
368
|
|
|
@@ -710,6 +710,23 @@ async function install() {
|
|
|
710
710
|
|
|
711
711
|
console.log('');
|
|
712
712
|
|
|
713
|
+
// Phase 1.5: User configuration (needed for Phase 2)
|
|
714
|
+
const config = await inquirer.prompt([
|
|
715
|
+
{
|
|
716
|
+
type: 'input',
|
|
717
|
+
name: 'userName',
|
|
718
|
+
message: 'Your name:',
|
|
719
|
+
default: 'Developer'
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
type: 'list',
|
|
723
|
+
name: 'language',
|
|
724
|
+
message: 'Communication language:',
|
|
725
|
+
choices: ['Francais', 'English'],
|
|
726
|
+
default: installMode === 'custom' && interviewResults ? 'Francais' : 'English'
|
|
727
|
+
}
|
|
728
|
+
]);
|
|
729
|
+
|
|
713
730
|
// Phase 2: Interactive Chat with Yanstaller Agent
|
|
714
731
|
// Ask user if they want to enter Phase 2 conversation
|
|
715
732
|
const { enterPhase2 } = await inquirer.prompt([{
|
|
@@ -813,23 +830,6 @@ async function install() {
|
|
|
813
830
|
}
|
|
814
831
|
]);
|
|
815
832
|
|
|
816
|
-
// Step 4: User configuration
|
|
817
|
-
const config = await inquirer.prompt([
|
|
818
|
-
{
|
|
819
|
-
type: 'input',
|
|
820
|
-
name: 'userName',
|
|
821
|
-
message: 'Your name:',
|
|
822
|
-
default: 'Developer'
|
|
823
|
-
},
|
|
824
|
-
{
|
|
825
|
-
type: 'list',
|
|
826
|
-
name: 'language',
|
|
827
|
-
message: 'Communication language:',
|
|
828
|
-
choices: ['Francais', 'English'],
|
|
829
|
-
default: installMode === 'custom' && interviewResults ? 'Francais' : 'English'
|
|
830
|
-
}
|
|
831
|
-
]);
|
|
832
|
-
|
|
833
833
|
// Step 5: Install v2.0 structure (if available)
|
|
834
834
|
let v2Installed = false;
|
|
835
835
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-byan-agent",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.4",
|
|
4
4
|
"description": "BYAN v2.3.2 - Intelligent AI agent ecosystem with Hermes universal dispatcher + Multi-platform support (Copilot CLI, Claude, Codex) + Automatic LLM cost optimization (87.5% savings) + Node 12+ compatible",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"license": "MIT",
|
|
33
33
|
"repository": {
|
|
34
34
|
"type": "git",
|
|
35
|
-
"url": "https://github.com/
|
|
35
|
+
"url": "https://github.com/Yan-Acadenice/BYAN.git"
|
|
36
36
|
},
|
|
37
37
|
"bugs": {
|
|
38
|
-
"url": "https://github.com/
|
|
38
|
+
"url": "https://github.com/Yan-Acadenice/BYAN/issues"
|
|
39
39
|
},
|
|
40
|
-
"homepage": "https://github.com/
|
|
40
|
+
"homepage": "https://github.com/Yan-Acadenice/BYAN#readme",
|
|
41
41
|
"engines": {
|
|
42
42
|
"node": ">=12.0.0"
|
|
43
43
|
},
|