create-byan-agent 2.8.0 → 2.8.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.
@@ -1856,4 +1856,20 @@ program
1856
1856
  }
1857
1857
  });
1858
1858
 
1859
+ program
1860
+ .command('web')
1861
+ .description('Launch BYAN WebUI installer in the browser')
1862
+ .option('-p, --port <port>', 'Port number', '3000')
1863
+ .action(async (options) => {
1864
+ const ByanWebUI = require('../src/webui/server');
1865
+ const port = parseInt(options.port, 10);
1866
+ const projectRoot = process.cwd();
1867
+
1868
+ console.log(chalk.cyan.bold('\n BYAN WebUI\n'));
1869
+ const server = new ByanWebUI({ port, projectRoot });
1870
+ server.start();
1871
+ console.log(chalk.green(` Server running at http://localhost:${port}`));
1872
+ console.log(chalk.gray(' Press Ctrl+C to stop\n'));
1873
+ });
1874
+
1859
1875
  program.parse(process.argv);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-byan-agent",
3
- "version": "2.8.0",
3
+ "version": "2.8.1",
4
4
  "description": "BYAN v2.2.2 - Intelligent AI agent installer with multi-platform native support (GitHub Copilot CLI, Claude Code, Codex/OpenCode)",
5
5
  "bin": {
6
6
  "create-byan-agent": "bin/create-byan-agent-v2.js"