@meltstudio/meltctl 4.12.0 → 4.13.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 +25 -5
- package/package.json +1 -1
package/dist/commands/init.js
CHANGED
|
@@ -86,6 +86,16 @@ description: >-
|
|
|
86
86
|
preserves project customizations in AGENTS.md, and merges changes.
|
|
87
87
|
---
|
|
88
88
|
|
|
89
|
+
`,
|
|
90
|
+
help: `---
|
|
91
|
+
user-invocable: true
|
|
92
|
+
description: >-
|
|
93
|
+
Answer questions about the AI-First Development Playbook and team
|
|
94
|
+
workflow. Use when the developer asks about the development process,
|
|
95
|
+
what step they're on, how validation works, or any workflow question.
|
|
96
|
+
This is a reference skill — it explains the process, not executes it.
|
|
97
|
+
---
|
|
98
|
+
|
|
89
99
|
`,
|
|
90
100
|
};
|
|
91
101
|
const GITIGNORE_ENTRIES = ['.env.local', '.claude/settings.local.json'];
|
|
@@ -186,7 +196,17 @@ export async function initCommand(options) {
|
|
|
186
196
|
console.log(chalk.bold('Initializing Melt development tools...'));
|
|
187
197
|
console.log();
|
|
188
198
|
const createdFiles = [];
|
|
189
|
-
const workflows = [
|
|
199
|
+
const workflows = [
|
|
200
|
+
'setup',
|
|
201
|
+
'plan',
|
|
202
|
+
'validate',
|
|
203
|
+
'review',
|
|
204
|
+
'pr',
|
|
205
|
+
'debug',
|
|
206
|
+
'audit',
|
|
207
|
+
'update',
|
|
208
|
+
'help',
|
|
209
|
+
];
|
|
190
210
|
// Shared files (skip on re-init)
|
|
191
211
|
if (!isReInit) {
|
|
192
212
|
const agentsMd = templates['agents-md.md'];
|
|
@@ -218,7 +238,7 @@ export async function initCommand(options) {
|
|
|
218
238
|
await fs.writeFile(path.join(skillDir, 'SKILL.md'), skillContent, 'utf-8');
|
|
219
239
|
}
|
|
220
240
|
}
|
|
221
|
-
createdFiles.push('.claude/skills/melt-{setup,plan,validate,review,pr,debug,audit,update}/SKILL.md');
|
|
241
|
+
createdFiles.push('.claude/skills/melt-{setup,plan,validate,review,pr,debug,audit,update,help}/SKILL.md');
|
|
222
242
|
}
|
|
223
243
|
// Cursor files
|
|
224
244
|
if (tools.cursor) {
|
|
@@ -229,7 +249,7 @@ export async function initCommand(options) {
|
|
|
229
249
|
await fs.writeFile(path.join(cwd, `.cursor/commands/melt-${name}.md`), workflowContent, 'utf-8');
|
|
230
250
|
}
|
|
231
251
|
}
|
|
232
|
-
createdFiles.push('.cursor/commands/melt-{setup,plan,validate,review,pr,debug,audit,update}.md');
|
|
252
|
+
createdFiles.push('.cursor/commands/melt-{setup,plan,validate,review,pr,debug,audit,update,help}.md');
|
|
233
253
|
}
|
|
234
254
|
// Print summary
|
|
235
255
|
console.log(chalk.green('Created files:'));
|
|
@@ -242,11 +262,11 @@ export async function initCommand(options) {
|
|
|
242
262
|
console.log();
|
|
243
263
|
}
|
|
244
264
|
if (tools.claude) {
|
|
245
|
-
const skills = '/melt-setup, /melt-plan, /melt-validate, /melt-review, /melt-pr, /melt-debug, /melt-audit, /melt-update';
|
|
265
|
+
const skills = '/melt-setup, /melt-plan, /melt-validate, /melt-review, /melt-pr, /melt-debug, /melt-audit, /melt-update, /melt-help';
|
|
246
266
|
console.log(chalk.dim(`Available skills: ${skills}`));
|
|
247
267
|
}
|
|
248
268
|
if (tools.cursor) {
|
|
249
|
-
console.log(chalk.dim('Available commands: melt-setup, melt-plan, melt-validate, melt-review, melt-pr, melt-debug, melt-audit, melt-update'));
|
|
269
|
+
console.log(chalk.dim('Available commands: melt-setup, melt-plan, melt-validate, melt-review, melt-pr, melt-debug, melt-audit, melt-update, melt-help'));
|
|
250
270
|
}
|
|
251
271
|
if (tools.claude || tools.cursor) {
|
|
252
272
|
console.log();
|
package/package.json
CHANGED