@meltstudio/meltctl 4.5.0 → 4.5.1
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/init.js +20 -19
- package/package.json +1 -1
package/dist/commands/init.js
CHANGED
|
@@ -196,28 +196,29 @@ export async function initCommand(options) {
|
|
|
196
196
|
console.log(chalk.cyan('Want support for your tool? Let us know in #dev on Slack'));
|
|
197
197
|
console.log();
|
|
198
198
|
}
|
|
199
|
-
if (!isReInit) {
|
|
200
|
-
console.log(chalk.yellow('Next steps:'));
|
|
201
|
-
console.log(chalk.dim(' 1. Run /setup to customize AGENTS.md for your project'));
|
|
202
|
-
console.log(chalk.dim(' 2. Commit the generated files'));
|
|
203
|
-
console.log();
|
|
204
|
-
}
|
|
205
199
|
if (tools.claude) {
|
|
206
|
-
|
|
207
|
-
console.log(chalk.dim(
|
|
208
|
-
console.log(chalk.dim(' /plan — Design an implementation approach before writing code'));
|
|
209
|
-
console.log(chalk.dim(' /review — Review changes against project standards'));
|
|
210
|
-
console.log(chalk.dim(' /pr — Create a well-structured pull request'));
|
|
211
|
-
console.log(chalk.dim(' /debug — Systematically investigate and fix bugs'));
|
|
212
|
-
console.log();
|
|
200
|
+
const skills = '/melt-setup, /melt-plan, /melt-review, /melt-pr, /melt-debug';
|
|
201
|
+
console.log(chalk.dim(`Available skills: ${skills}`));
|
|
213
202
|
}
|
|
214
203
|
if (tools.cursor) {
|
|
215
|
-
console.log(chalk.
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
console.log(
|
|
219
|
-
|
|
220
|
-
|
|
204
|
+
console.log(chalk.dim('Available commands: melt-setup, melt-plan, melt-review, melt-pr, melt-debug'));
|
|
205
|
+
}
|
|
206
|
+
if (tools.claude || tools.cursor) {
|
|
207
|
+
console.log();
|
|
208
|
+
}
|
|
209
|
+
if (!isReInit) {
|
|
210
|
+
const setupCmd = tools.claude ? '/melt-setup' : 'melt-setup';
|
|
211
|
+
const msg = `Next: run ${setupCmd} to customize AGENTS.md for your project`;
|
|
212
|
+
const pad = 3;
|
|
213
|
+
const inner = msg.length + pad * 2;
|
|
214
|
+
const line = '─'.repeat(inner);
|
|
215
|
+
const space = ' '.repeat(pad);
|
|
216
|
+
const empty = ' '.repeat(inner);
|
|
217
|
+
console.log(chalk.bold.cyan(` ┌${line}┐`));
|
|
218
|
+
console.log(chalk.bold.cyan(` │${empty}│`));
|
|
219
|
+
console.log(chalk.bold.cyan(` │${space}${msg}${space}│`));
|
|
220
|
+
console.log(chalk.bold.cyan(` │${empty}│`));
|
|
221
|
+
console.log(chalk.bold.cyan(` └${line}┘`));
|
|
221
222
|
console.log();
|
|
222
223
|
}
|
|
223
224
|
console.log(chalk.green('Done!'));
|
package/package.json
CHANGED