agentxchain 0.7.1 → 0.7.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentxchain",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
4
4
  "description": "CLI for AgentXchain — multi-agent coordination in your IDE",
5
5
  "type": "module",
6
6
  "bin": {
@@ -264,8 +264,13 @@ export async function initCommand(opts) {
264
264
  console.log('');
265
265
  console.log(` ${chalk.cyan('Next:')}`);
266
266
  console.log(` ${chalk.bold(`cd ${folderName}`)}`);
267
- console.log(` ${chalk.bold('code .')} ${chalk.dim('# open in VS Code / Cursor')}`);
268
- console.log(` ${chalk.dim('Select an agent from the Chat dropdown (auto-discovered from .github/agents/)')}`);
267
+ console.log(` ${chalk.bold('cursor .')} ${chalk.dim('# open in Cursor')}`);
268
+ console.log(` ${chalk.bold('code .')} ${chalk.dim('# open in VS Code')}`);
269
+ console.log(` ${chalk.dim('(If "command not found": open IDE → Cmd+Shift+P → "Shell Command: Install")')}`);
270
+ console.log('');
271
+ console.log(` ${chalk.dim('In your IDE:')}`);
272
+ console.log(` ${chalk.dim(' 1. Open Chat (Cmd+L)')}`);
273
+ console.log(` ${chalk.dim(' 2. Select an agent from the dropdown (auto-discovered from .github/agents/)')}`);
269
274
  console.log(` ${chalk.bold('agentxchain release')} ${chalk.dim('# release human lock to begin turns')}`);
270
275
  console.log('');
271
276
  }
@@ -52,7 +52,8 @@ export async function startCommand(opts) {
52
52
  }
53
53
  console.log('');
54
54
  console.log(` ${chalk.bold('How to use:')}`);
55
- console.log(` 1. Open this project in VS Code / Cursor`);
55
+ console.log(` 1. Open project: ${chalk.bold('cursor .')} or ${chalk.bold('code .')}`);
56
+ console.log(chalk.dim(` (If "command not found": open IDE → Cmd+Shift+P → "Shell Command: Install")`));
56
57
  console.log(` 2. Open Chat (${chalk.bold('Cmd+L')})`);
57
58
  console.log(` 3. Select an agent from the Chat dropdown`);
58
59
  console.log(` 4. Run ${chalk.bold('agentxchain release')} to release the human lock`);