@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.
@@ -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
- console.log(chalk.yellow('Available skills (type / in Claude Code to use):'));
207
- console.log(chalk.dim(' /setup — Analyze the project and customize AGENTS.md for this codebase'));
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.yellow('Available commands (use Cmd+Shift+P in Cursor):'));
216
- console.log(chalk.dim(' melt-setup — Analyze the project and customize AGENTS.md for this codebase'));
217
- console.log(chalk.dim(' melt-plan — Design an implementation approach before writing code'));
218
- console.log(chalk.dim(' melt-review — Review changes against project standards'));
219
- console.log(chalk.dim(' melt-pr — Create a well-structured pull request'));
220
- console.log(chalk.dim(' melt-debug — Systematically investigate and fix bugs'));
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meltstudio/meltctl",
3
- "version": "4.5.0",
3
+ "version": "4.5.1",
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",