relayax-cli 0.4.33 β 0.4.34
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/dist/commands/install.js +5 -1
- package/package.json +1 -1
package/dist/commands/install.js
CHANGED
|
@@ -398,7 +398,11 @@ function registerInstall(program) {
|
|
|
398
398
|
(0, installer_js_1.printRequiresCheck)(requiresResults);
|
|
399
399
|
const setupCmd = resolvedAgent.commands.find((c) => c.name.startsWith('setup-'));
|
|
400
400
|
if (setupCmd && requiresResults.some((r) => r.status === 'missing' || r.status === 'warn')) {
|
|
401
|
-
|
|
401
|
+
const toolNames = selectedTools
|
|
402
|
+
? selectedTools.map((t) => t.name).slice(0, 2).join(' λλ ')
|
|
403
|
+
: 'Claude Code';
|
|
404
|
+
console.log(`\n \x1b[36mπ μ€μ μ΄ νμν©λλ€.\x1b[0m`);
|
|
405
|
+
console.log(` \x1b[36m ${toolNames}λ₯Ό μ΄κ³ \x1b[1m/${setupCmd.name}\x1b[0m\x1b[36m μ μ
λ ₯νμΈμ\x1b[0m`);
|
|
402
406
|
}
|
|
403
407
|
}
|
|
404
408
|
}
|