@meltstudio/meltctl 4.9.0 → 4.10.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.
@@ -212,9 +212,16 @@ export async function initCommand(options) {
212
212
  console.log();
213
213
  }
214
214
  if (!isReInit) {
215
- const setupCmd = tools.claude ? '/melt-setup' : 'melt-setup';
216
- const where = tools.claude ? 'in Claude Code' : 'in Cursor';
217
- const msg = `Next: open ${where} and run ${setupCmd} to customize AGENTS.md`;
215
+ let msg;
216
+ if (tools.claude && tools.cursor) {
217
+ msg = 'Next: run /melt-setup (Claude Code) or melt-setup (Cursor) to customize AGENTS.md';
218
+ }
219
+ else if (tools.claude) {
220
+ msg = 'Next: open Claude Code and run /melt-setup to customize AGENTS.md';
221
+ }
222
+ else {
223
+ msg = 'Next: open Cursor and run melt-setup to customize AGENTS.md';
224
+ }
218
225
  const pad = 3;
219
226
  const inner = msg.length + pad * 2;
220
227
  const line = '─'.repeat(inner);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meltstudio/meltctl",
3
- "version": "4.9.0",
3
+ "version": "4.10.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",
@@ -66,6 +66,6 @@
66
66
  "typescript": "^5.7.3"
67
67
  },
68
68
  "engines": {
69
- "node": ">=22.0.0"
69
+ "node": ">=20.0.0"
70
70
  }
71
71
  }