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 +1 -1
- package/src/commands/init.js +7 -2
- package/src/commands/start.js +2 -1
package/package.json
CHANGED
package/src/commands/init.js
CHANGED
|
@@ -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('
|
|
268
|
-
console.log(` ${chalk.dim('
|
|
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
|
}
|
package/src/commands/start.js
CHANGED
|
@@ -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
|
|
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`);
|