@codebakers/cli 1.1.7 → 1.1.8
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/setup.js +4 -2
- package/package.json +1 -1
- package/src/commands/setup.ts +4 -2
package/dist/commands/setup.js
CHANGED
|
@@ -73,7 +73,9 @@ async function setup() {
|
|
|
73
73
|
}
|
|
74
74
|
function showFinalInstructions() {
|
|
75
75
|
console.log(chalk_1.default.white(' Step 2: Enable in Claude Code\n'));
|
|
76
|
-
console.log(chalk_1.default.
|
|
76
|
+
console.log(chalk_1.default.yellow(' ⚠️ This is a Claude Code command, NOT a terminal command!\n'));
|
|
77
|
+
console.log(chalk_1.default.gray(' 1. Open Claude Code (the AI chat in VS Code or terminal)'));
|
|
78
|
+
console.log(chalk_1.default.gray(' 2. Type or paste this command in the chat:\n'));
|
|
77
79
|
// Box around the command for easy copying
|
|
78
80
|
const command = '/mcp add codebakers npx -y @codebakers/cli serve';
|
|
79
81
|
console.log(chalk_1.default.cyan(' ┌─────────────────────────────────────────────────────┐'));
|
|
@@ -82,7 +84,7 @@ function showFinalInstructions() {
|
|
|
82
84
|
console.log(chalk_1.default.gray(' This only needs to be done once. No restart needed!\n'));
|
|
83
85
|
console.log(chalk_1.default.blue(' ══════════════════════════════════════\n'));
|
|
84
86
|
console.log(chalk_1.default.green(' Almost done! 🎉\n'));
|
|
85
|
-
console.log(chalk_1.default.white(' After running that command in Claude Code:\n'));
|
|
87
|
+
console.log(chalk_1.default.white(' After running that command in Claude Code chat:\n'));
|
|
86
88
|
console.log(chalk_1.default.gray(' • Claude will have access to 34 production patterns'));
|
|
87
89
|
console.log(chalk_1.default.gray(' • Patterns are fetched on-demand (never stored locally)'));
|
|
88
90
|
console.log(chalk_1.default.gray(' • Works across all your projects\n'));
|
package/package.json
CHANGED
package/src/commands/setup.ts
CHANGED
|
@@ -80,7 +80,9 @@ export async function setup(): Promise<void> {
|
|
|
80
80
|
|
|
81
81
|
function showFinalInstructions(): void {
|
|
82
82
|
console.log(chalk.white(' Step 2: Enable in Claude Code\n'));
|
|
83
|
-
console.log(chalk.
|
|
83
|
+
console.log(chalk.yellow(' ⚠️ This is a Claude Code command, NOT a terminal command!\n'));
|
|
84
|
+
console.log(chalk.gray(' 1. Open Claude Code (the AI chat in VS Code or terminal)'));
|
|
85
|
+
console.log(chalk.gray(' 2. Type or paste this command in the chat:\n'));
|
|
84
86
|
|
|
85
87
|
// Box around the command for easy copying
|
|
86
88
|
const command = '/mcp add codebakers npx -y @codebakers/cli serve';
|
|
@@ -92,7 +94,7 @@ function showFinalInstructions(): void {
|
|
|
92
94
|
|
|
93
95
|
console.log(chalk.blue(' ══════════════════════════════════════\n'));
|
|
94
96
|
console.log(chalk.green(' Almost done! 🎉\n'));
|
|
95
|
-
console.log(chalk.white(' After running that command in Claude Code:\n'));
|
|
97
|
+
console.log(chalk.white(' After running that command in Claude Code chat:\n'));
|
|
96
98
|
console.log(chalk.gray(' • Claude will have access to 34 production patterns'));
|
|
97
99
|
console.log(chalk.gray(' • Patterns are fetched on-demand (never stored locally)'));
|
|
98
100
|
console.log(chalk.gray(' • Works across all your projects\n'));
|