@meltstudio/meltctl 4.29.1 → 4.30.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/index.js +38 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -29,6 +29,20 @@ program
|
|
|
29
29
|
printBanner();
|
|
30
30
|
return '';
|
|
31
31
|
})
|
|
32
|
+
.addHelpText('after', `
|
|
33
|
+
${chalk.bold('AI Skills')} ${chalk.dim('(run these in your AI coding tool, not the CLI):')}
|
|
34
|
+
${chalk.dim(' /melt-setup Analyze the project and customize AGENTS.md')}
|
|
35
|
+
${chalk.dim(' /melt-plan Design an implementation approach before writing code')}
|
|
36
|
+
${chalk.dim(' /melt-validate Run the validation plan and verify end-to-end')}
|
|
37
|
+
${chalk.dim(' /melt-review Review changes against project standards')}
|
|
38
|
+
${chalk.dim(' /melt-pr Create a well-structured pull request')}
|
|
39
|
+
${chalk.dim(' /melt-debug Systematically investigate and fix bugs')}
|
|
40
|
+
${chalk.dim(' /melt-audit Run a project compliance audit')}
|
|
41
|
+
${chalk.dim(' /melt-ux-audit Review UI against usability heuristics')}
|
|
42
|
+
${chalk.dim(' /melt-security-audit Run a security posture audit across the platform')}
|
|
43
|
+
${chalk.dim(' /melt-update Update Melt skills to the latest version')}
|
|
44
|
+
${chalk.dim(' /melt-help Answer questions about the development playbook')}
|
|
45
|
+
`)
|
|
32
46
|
.hook('preAction', async () => {
|
|
33
47
|
await checkAndEnforceUpdate();
|
|
34
48
|
});
|
|
@@ -44,7 +58,14 @@ program
|
|
|
44
58
|
.action(async () => {
|
|
45
59
|
await logoutCommand();
|
|
46
60
|
});
|
|
47
|
-
const project = program
|
|
61
|
+
const project = program
|
|
62
|
+
.command('project')
|
|
63
|
+
.description('manage project configuration')
|
|
64
|
+
.addHelpText('after', `
|
|
65
|
+
${chalk.dim('Related skills (run in your AI coding tool after init):')}
|
|
66
|
+
${chalk.dim(' /melt-setup Analyze the project and customize AGENTS.md')}
|
|
67
|
+
${chalk.dim(' /melt-update Update Melt skills to the latest version')}
|
|
68
|
+
`);
|
|
48
69
|
project
|
|
49
70
|
.command('init')
|
|
50
71
|
.description('scaffold Melt development tools into the current directory (AGENTS.md, .claude/, .cursor/, .opencode/, .mcp.json)')
|
|
@@ -91,7 +112,15 @@ program
|
|
|
91
112
|
.action(async (options) => {
|
|
92
113
|
await coinsCommand(options);
|
|
93
114
|
});
|
|
94
|
-
const audit = program
|
|
115
|
+
const audit = program
|
|
116
|
+
.command('audit')
|
|
117
|
+
.description('submit and list audits')
|
|
118
|
+
.addHelpText('after', `
|
|
119
|
+
${chalk.dim('Related skills (run in your AI coding tool):')}
|
|
120
|
+
${chalk.dim(' /melt-audit Run a project compliance audit')}
|
|
121
|
+
${chalk.dim(' /melt-ux-audit Review UI against usability heuristics')}
|
|
122
|
+
${chalk.dim(' /melt-security-audit Run a security posture audit across the platform')}
|
|
123
|
+
`);
|
|
95
124
|
audit
|
|
96
125
|
.command('submit')
|
|
97
126
|
.description('submit an audit report from a markdown file')
|
|
@@ -117,7 +146,13 @@ audit
|
|
|
117
146
|
.action(async (id, options) => {
|
|
118
147
|
await auditViewCommand(id, options);
|
|
119
148
|
});
|
|
120
|
-
const plan = program
|
|
149
|
+
const plan = program
|
|
150
|
+
.command('plan')
|
|
151
|
+
.description('submit and list plans')
|
|
152
|
+
.addHelpText('after', `
|
|
153
|
+
${chalk.dim('Related skill (run in your AI coding tool):')}
|
|
154
|
+
${chalk.dim(' /melt-plan Design an implementation approach before writing code')}
|
|
155
|
+
`);
|
|
121
156
|
plan
|
|
122
157
|
.command('submit')
|
|
123
158
|
.description('submit or update a plan from a markdown file')
|
package/package.json
CHANGED