@meltstudio/meltctl 4.14.1 → 4.15.0
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 +16 -14
- package/package.json +1 -1
package/dist/commands/init.js
CHANGED
|
@@ -272,26 +272,28 @@ export async function initCommand(options) {
|
|
|
272
272
|
console.log();
|
|
273
273
|
}
|
|
274
274
|
if (!isReInit) {
|
|
275
|
-
|
|
275
|
+
console.log(chalk.bold.cyan(' Next step: run /melt-setup to customize AGENTS.md for your project'));
|
|
276
|
+
console.log();
|
|
276
277
|
if (tools.claude && tools.cursor) {
|
|
277
|
-
|
|
278
|
+
console.log(chalk.dim(' Claude Code:'));
|
|
279
|
+
console.log(chalk.dim(' - Type /melt-setup in the chat prompt, or'));
|
|
280
|
+
console.log(chalk.dim(' - Open the skills menu and select melt-setup'));
|
|
281
|
+
console.log();
|
|
282
|
+
console.log(chalk.dim(' Cursor:'));
|
|
283
|
+
console.log(chalk.dim(' - Open the command menu (Cmd+K) and search for melt-setup'));
|
|
278
284
|
}
|
|
279
285
|
else if (tools.claude) {
|
|
280
|
-
|
|
286
|
+
console.log(chalk.dim(' In Claude Code:'));
|
|
287
|
+
console.log(chalk.dim(' - Type /melt-setup in the chat prompt, or'));
|
|
288
|
+
console.log(chalk.dim(' - Open the skills menu and select melt-setup'));
|
|
281
289
|
}
|
|
282
290
|
else {
|
|
283
|
-
|
|
291
|
+
console.log(chalk.dim(' In Cursor:'));
|
|
292
|
+
console.log(chalk.dim(' - Open the command menu (Cmd+K) and search for melt-setup'));
|
|
284
293
|
}
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
const space = ' '.repeat(pad);
|
|
289
|
-
const empty = ' '.repeat(inner);
|
|
290
|
-
console.log(chalk.bold.cyan(` ┌${line}┐`));
|
|
291
|
-
console.log(chalk.bold.cyan(` │${empty}│`));
|
|
292
|
-
console.log(chalk.bold.cyan(` │${space}${msg}${space}│`));
|
|
293
|
-
console.log(chalk.bold.cyan(` │${empty}│`));
|
|
294
|
-
console.log(chalk.bold.cyan(` └${line}┘`));
|
|
294
|
+
console.log();
|
|
295
|
+
console.log(chalk.dim(' The setup skill will analyze your project and fill in AGENTS.md.'));
|
|
296
|
+
console.log(chalk.dim(' Once it finishes, commit the changes to share with your team.'));
|
|
295
297
|
console.log();
|
|
296
298
|
}
|
|
297
299
|
console.log(chalk.green('Done!'));
|
package/package.json
CHANGED