@meltstudio/meltctl 4.11.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 +36 -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
|
|
@@ -75,6 +86,16 @@ description: >-
|
|
|
75
86
|
preserves project customizations in AGENTS.md, and merges changes.
|
|
76
87
|
---
|
|
77
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
|
+
|
|
78
99
|
`,
|
|
79
100
|
};
|
|
80
101
|
const GITIGNORE_ENTRIES = ['.env.local', '.claude/settings.local.json'];
|
|
@@ -175,7 +196,17 @@ export async function initCommand(options) {
|
|
|
175
196
|
console.log(chalk.bold('Initializing Melt development tools...'));
|
|
176
197
|
console.log();
|
|
177
198
|
const createdFiles = [];
|
|
178
|
-
const workflows = [
|
|
199
|
+
const workflows = [
|
|
200
|
+
'setup',
|
|
201
|
+
'plan',
|
|
202
|
+
'validate',
|
|
203
|
+
'review',
|
|
204
|
+
'pr',
|
|
205
|
+
'debug',
|
|
206
|
+
'audit',
|
|
207
|
+
'update',
|
|
208
|
+
'help',
|
|
209
|
+
];
|
|
179
210
|
// Shared files (skip on re-init)
|
|
180
211
|
if (!isReInit) {
|
|
181
212
|
const agentsMd = templates['agents-md.md'];
|
|
@@ -207,7 +238,7 @@ export async function initCommand(options) {
|
|
|
207
238
|
await fs.writeFile(path.join(skillDir, 'SKILL.md'), skillContent, 'utf-8');
|
|
208
239
|
}
|
|
209
240
|
}
|
|
210
|
-
createdFiles.push('.claude/skills/melt-{setup,plan,review,pr,debug,audit,update}/SKILL.md');
|
|
241
|
+
createdFiles.push('.claude/skills/melt-{setup,plan,validate,review,pr,debug,audit,update,help}/SKILL.md');
|
|
211
242
|
}
|
|
212
243
|
// Cursor files
|
|
213
244
|
if (tools.cursor) {
|
|
@@ -218,7 +249,7 @@ export async function initCommand(options) {
|
|
|
218
249
|
await fs.writeFile(path.join(cwd, `.cursor/commands/melt-${name}.md`), workflowContent, 'utf-8');
|
|
219
250
|
}
|
|
220
251
|
}
|
|
221
|
-
createdFiles.push('.cursor/commands/melt-{setup,plan,review,pr,debug,audit,update}.md');
|
|
252
|
+
createdFiles.push('.cursor/commands/melt-{setup,plan,validate,review,pr,debug,audit,update,help}.md');
|
|
222
253
|
}
|
|
223
254
|
// Print summary
|
|
224
255
|
console.log(chalk.green('Created files:'));
|
|
@@ -231,11 +262,11 @@ export async function initCommand(options) {
|
|
|
231
262
|
console.log();
|
|
232
263
|
}
|
|
233
264
|
if (tools.claude) {
|
|
234
|
-
const skills = '/melt-setup, /melt-plan, /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';
|
|
235
266
|
console.log(chalk.dim(`Available skills: ${skills}`));
|
|
236
267
|
}
|
|
237
268
|
if (tools.cursor) {
|
|
238
|
-
console.log(chalk.dim('Available commands: melt-setup, melt-plan, 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'));
|
|
239
270
|
}
|
|
240
271
|
if (tools.claude || tools.cursor) {
|
|
241
272
|
console.log();
|
package/package.json
CHANGED