multi-agents-cli 1.0.43 → 1.0.44

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 (2) hide show
  1. package/init.js +0 -28
  2. package/package.json +1 -1
package/init.js CHANGED
@@ -1487,34 +1487,6 @@ fi
1487
1487
  fs.writeFileSync(path.join(RUNTIME_DIR, '.config.json'), JSON.stringify(cfg, null, 2), 'utf8');
1488
1488
  } catch { /* best-effort */ }
1489
1489
 
1490
- // ── Cloud deployment intent ──────────────────────────────────────────────────
1491
-
1492
- separator();
1493
- console.log(`\n ${bold('Do you plan to deploy this project to a cloud platform?')}\n`);
1494
-
1495
- const cloudIdx = await arrowSelect('Cloud deployment?', [
1496
- { label: 'Yes - I plan to deploy to a cloud platform' },
1497
- { label: 'No - I will run it locally or decide later' },
1498
- ], rl);
1499
-
1500
- try {
1501
- const cfg = JSON.parse(fs.readFileSync(path.join(RUNTIME_DIR, '.config.json'), 'utf8'));
1502
- cfg.cloudDeployment = cloudIdx === 0 ? 'yes' : 'no';
1503
- fs.writeFileSync(path.join(RUNTIME_DIR, '.config.json'), JSON.stringify(cfg, null, 2), 'utf8');
1504
- } catch { /* best-effort */ }
1505
-
1506
- if (cloudIdx === 0) {
1507
- console.log(`\n ${green('✓')} Cloud deployment noted.\n`);
1508
- console.log(dim(' When ready, open a terminal inside your project folder and run:'));
1509
- console.log(` ${cyan('npm run agent')} ${dim('- then select the CLOUD agent from the list.')}`);
1510
- console.log(dim(' It will read your stack and suggest the best platform options.\n'));
1511
- } else {
1512
- console.log(`\n ${green('✓')} Noted - no cloud deployment for now.\n`);
1513
- console.log(dim(' You can always add it later - open a terminal inside your project folder and run:'));
1514
- console.log(` ${cyan('npm run agent')} ${dim('- then select the CLOUD agent from the list.')}`);
1515
- console.log(dim(' No changes to your project are needed before that point.\n'));
1516
- }
1517
-
1518
1490
  if (selected.next === 'launch') {
1519
1491
  const launchConfirm = await arrowConfirm('Ready to launch your first task?', rl);
1520
1492
  if (launchConfirm) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "multi-agents-cli",
3
- "version": "1.0.43",
3
+ "version": "1.0.44",
4
4
  "description": "Multi-agent workflow orchestration for Claude Code — isolated git worktrees, structured state tracking, autonomous task chaining",
5
5
  "keywords": [
6
6
  "claude-code",