@meltstudio/meltctl 4.3.0 → 4.4.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 -0
- package/package.json +1 -1
package/dist/commands/init.js
CHANGED
|
@@ -202,6 +202,22 @@ export async function initCommand(options) {
|
|
|
202
202
|
console.log(chalk.dim(' 3. Commit the generated files'));
|
|
203
203
|
console.log();
|
|
204
204
|
}
|
|
205
|
+
if (tools.claude) {
|
|
206
|
+
console.log(chalk.yellow('Available skills (type / in Claude Code to use):'));
|
|
207
|
+
console.log(chalk.dim(' /plan — Design an implementation approach before writing code'));
|
|
208
|
+
console.log(chalk.dim(' /review — Review changes against project standards'));
|
|
209
|
+
console.log(chalk.dim(' /pr — Create a well-structured pull request'));
|
|
210
|
+
console.log(chalk.dim(' /debug — Systematically investigate and fix bugs'));
|
|
211
|
+
console.log();
|
|
212
|
+
}
|
|
213
|
+
if (tools.cursor) {
|
|
214
|
+
console.log(chalk.yellow('Available commands (use Cmd+Shift+P in Cursor):'));
|
|
215
|
+
console.log(chalk.dim(' melt-plan — Design an implementation approach before writing code'));
|
|
216
|
+
console.log(chalk.dim(' melt-review — Review changes against project standards'));
|
|
217
|
+
console.log(chalk.dim(' melt-pr — Create a well-structured pull request'));
|
|
218
|
+
console.log(chalk.dim(' melt-debug — Systematically investigate and fix bugs'));
|
|
219
|
+
console.log();
|
|
220
|
+
}
|
|
205
221
|
console.log(chalk.green('Done!'));
|
|
206
222
|
}
|
|
207
223
|
async function updateGitignore(cwd) {
|
package/package.json
CHANGED