@meltstudio/meltctl 4.14.2 → 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.
@@ -272,26 +272,28 @@ export async function initCommand(options) {
272
272
  console.log();
273
273
  }
274
274
  if (!isReInit) {
275
- let msg;
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
- msg = 'Next: run /melt-setup (Claude Code) or melt-setup (Cursor) to customize AGENTS.md';
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
- msg = 'Next: open Claude Code and run /melt-setup to customize AGENTS.md';
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
- msg = 'Next: open Cursor and run melt-setup to customize AGENTS.md';
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
- const pad = 3;
286
- const inner = msg.length + pad * 2;
287
- const line = '─'.repeat(inner);
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meltstudio/meltctl",
3
- "version": "4.14.2",
3
+ "version": "4.15.0",
4
4
  "description": "AI-first development tools for teams - set up AGENTS.md, Claude Code, Cursor, and Copilot standards",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",