@meltstudio/meltctl 4.11.0 → 4.12.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 -5
- package/package.json +1 -1
package/dist/commands/init.js
CHANGED
|
@@ -65,6 +65,17 @@ description: >-
|
|
|
65
65
|
report with scores and actionable fixes.
|
|
66
66
|
---
|
|
67
67
|
|
|
68
|
+
`,
|
|
69
|
+
validate: `---
|
|
70
|
+
user-invocable: true
|
|
71
|
+
description: >-
|
|
72
|
+
Run the validation plan from the plan document after implementation.
|
|
73
|
+
Use when the developer says "validate this", "test the feature", or
|
|
74
|
+
after finishing implementation. Validates end-to-end using browser,
|
|
75
|
+
API, or CLI testing, suggests test coverage improvements, then prompts
|
|
76
|
+
the developer for mandatory manual sign-off.
|
|
77
|
+
---
|
|
78
|
+
|
|
68
79
|
`,
|
|
69
80
|
update: `---
|
|
70
81
|
user-invocable: true
|
|
@@ -175,7 +186,7 @@ export async function initCommand(options) {
|
|
|
175
186
|
console.log(chalk.bold('Initializing Melt development tools...'));
|
|
176
187
|
console.log();
|
|
177
188
|
const createdFiles = [];
|
|
178
|
-
const workflows = ['setup', 'plan', 'review', 'pr', 'debug', 'audit', 'update'];
|
|
189
|
+
const workflows = ['setup', 'plan', 'validate', 'review', 'pr', 'debug', 'audit', 'update'];
|
|
179
190
|
// Shared files (skip on re-init)
|
|
180
191
|
if (!isReInit) {
|
|
181
192
|
const agentsMd = templates['agents-md.md'];
|
|
@@ -207,7 +218,7 @@ export async function initCommand(options) {
|
|
|
207
218
|
await fs.writeFile(path.join(skillDir, 'SKILL.md'), skillContent, 'utf-8');
|
|
208
219
|
}
|
|
209
220
|
}
|
|
210
|
-
createdFiles.push('.claude/skills/melt-{setup,plan,review,pr,debug,audit,update}/SKILL.md');
|
|
221
|
+
createdFiles.push('.claude/skills/melt-{setup,plan,validate,review,pr,debug,audit,update}/SKILL.md');
|
|
211
222
|
}
|
|
212
223
|
// Cursor files
|
|
213
224
|
if (tools.cursor) {
|
|
@@ -218,7 +229,7 @@ export async function initCommand(options) {
|
|
|
218
229
|
await fs.writeFile(path.join(cwd, `.cursor/commands/melt-${name}.md`), workflowContent, 'utf-8');
|
|
219
230
|
}
|
|
220
231
|
}
|
|
221
|
-
createdFiles.push('.cursor/commands/melt-{setup,plan,review,pr,debug,audit,update}.md');
|
|
232
|
+
createdFiles.push('.cursor/commands/melt-{setup,plan,validate,review,pr,debug,audit,update}.md');
|
|
222
233
|
}
|
|
223
234
|
// Print summary
|
|
224
235
|
console.log(chalk.green('Created files:'));
|
|
@@ -231,11 +242,11 @@ export async function initCommand(options) {
|
|
|
231
242
|
console.log();
|
|
232
243
|
}
|
|
233
244
|
if (tools.claude) {
|
|
234
|
-
const skills = '/melt-setup, /melt-plan, /melt-review, /melt-pr, /melt-debug, /melt-audit, /melt-update';
|
|
245
|
+
const skills = '/melt-setup, /melt-plan, /melt-validate, /melt-review, /melt-pr, /melt-debug, /melt-audit, /melt-update';
|
|
235
246
|
console.log(chalk.dim(`Available skills: ${skills}`));
|
|
236
247
|
}
|
|
237
248
|
if (tools.cursor) {
|
|
238
|
-
console.log(chalk.dim('Available commands: melt-setup, melt-plan, melt-review, melt-pr, melt-debug, melt-audit, melt-update'));
|
|
249
|
+
console.log(chalk.dim('Available commands: melt-setup, melt-plan, melt-validate, melt-review, melt-pr, melt-debug, melt-audit, melt-update'));
|
|
239
250
|
}
|
|
240
251
|
if (tools.claude || tools.cursor) {
|
|
241
252
|
console.log();
|
package/package.json
CHANGED