@meltstudio/meltctl 4.5.4 → 4.6.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/README.md +2 -2
- package/dist/commands/init.js +11 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -34,8 +34,8 @@ meltctl version --check
|
|
|
34
34
|
|
|
35
35
|
- `AGENTS.md` — AI agent instructions and project standards
|
|
36
36
|
- `.claude/settings.json` — Claude Code permissions
|
|
37
|
-
- `.claude/skills/melt-{setup,plan,review,pr,debug}/SKILL.md` — Claude Code workflow skills
|
|
38
|
-
- `.cursor/commands/melt-{setup,plan,review,pr,debug}.md` — Cursor workflow commands
|
|
37
|
+
- `.claude/skills/melt-{setup,plan,review,pr,debug,audit}/SKILL.md` — Claude Code workflow skills
|
|
38
|
+
- `.cursor/commands/melt-{setup,plan,review,pr,debug,audit}.md` — Cursor workflow commands
|
|
39
39
|
- `.mcp.json` — MCP server configuration (Chrome DevTools)
|
|
40
40
|
|
|
41
41
|
## Requirements
|
package/dist/commands/init.js
CHANGED
|
@@ -33,6 +33,12 @@ user-invocable: true
|
|
|
33
33
|
description: Systematically investigate and fix bugs
|
|
34
34
|
---
|
|
35
35
|
|
|
36
|
+
`,
|
|
37
|
+
audit: `---
|
|
38
|
+
user-invocable: true
|
|
39
|
+
description: Run a project compliance audit against team standards
|
|
40
|
+
---
|
|
41
|
+
|
|
36
42
|
`,
|
|
37
43
|
};
|
|
38
44
|
const GITIGNORE_ENTRIES = ['.env.local', '.claude/settings.local.json'];
|
|
@@ -141,7 +147,7 @@ export async function initCommand(options) {
|
|
|
141
147
|
console.log(chalk.bold('Initializing Melt development tools...'));
|
|
142
148
|
console.log();
|
|
143
149
|
const createdFiles = [];
|
|
144
|
-
const workflows = ['setup', 'plan', 'review', 'pr', 'debug'];
|
|
150
|
+
const workflows = ['setup', 'plan', 'review', 'pr', 'debug', 'audit'];
|
|
145
151
|
// Shared files (skip on re-init)
|
|
146
152
|
if (!isReInit) {
|
|
147
153
|
const agentsMd = templates['agents-md.md'];
|
|
@@ -173,7 +179,7 @@ export async function initCommand(options) {
|
|
|
173
179
|
await fs.writeFile(path.join(skillDir, 'SKILL.md'), skillContent, 'utf-8');
|
|
174
180
|
}
|
|
175
181
|
}
|
|
176
|
-
createdFiles.push('.claude/skills/melt-{setup,plan,review,pr,debug}/SKILL.md');
|
|
182
|
+
createdFiles.push('.claude/skills/melt-{setup,plan,review,pr,debug,audit}/SKILL.md');
|
|
177
183
|
}
|
|
178
184
|
// Cursor files
|
|
179
185
|
if (tools.cursor) {
|
|
@@ -184,7 +190,7 @@ export async function initCommand(options) {
|
|
|
184
190
|
await fs.writeFile(path.join(cwd, `.cursor/commands/melt-${name}.md`), workflowContent, 'utf-8');
|
|
185
191
|
}
|
|
186
192
|
}
|
|
187
|
-
createdFiles.push('.cursor/commands/melt-{setup,plan,review,pr,debug}.md');
|
|
193
|
+
createdFiles.push('.cursor/commands/melt-{setup,plan,review,pr,debug,audit}.md');
|
|
188
194
|
}
|
|
189
195
|
// Print summary
|
|
190
196
|
console.log(chalk.green('Created files:'));
|
|
@@ -197,11 +203,11 @@ export async function initCommand(options) {
|
|
|
197
203
|
console.log();
|
|
198
204
|
}
|
|
199
205
|
if (tools.claude) {
|
|
200
|
-
const skills = '/melt-setup, /melt-plan, /melt-review, /melt-pr, /melt-debug';
|
|
206
|
+
const skills = '/melt-setup, /melt-plan, /melt-review, /melt-pr, /melt-debug, /melt-audit';
|
|
201
207
|
console.log(chalk.dim(`Available skills: ${skills}`));
|
|
202
208
|
}
|
|
203
209
|
if (tools.cursor) {
|
|
204
|
-
console.log(chalk.dim('Available commands: melt-setup, melt-plan, melt-review, melt-pr, melt-debug'));
|
|
210
|
+
console.log(chalk.dim('Available commands: melt-setup, melt-plan, melt-review, melt-pr, melt-debug, melt-audit'));
|
|
205
211
|
}
|
|
206
212
|
if (tools.claude || tools.cursor) {
|
|
207
213
|
console.log();
|
package/package.json
CHANGED