@meltstudio/meltctl 1.7.0 → 2.0.3
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 +1 -1
- package/dist/commands/project/init.js +5 -11
- package/package.json +6 -1
package/README.md
CHANGED
|
@@ -80,17 +80,11 @@ export async function initCommand(options = {}) {
|
|
|
80
80
|
console.log(` • ${chalk.cyan('.melt/templates/')}`);
|
|
81
81
|
console.log();
|
|
82
82
|
console.log('Next steps:');
|
|
83
|
-
console.log(' 1.
|
|
84
|
-
console.log(`
|
|
85
|
-
console.log(
|
|
86
|
-
console.log(
|
|
87
|
-
console.log(`
|
|
88
|
-
console.log(` • ${chalk.cyan('/melt-pr')} - Create pull request with proper description`);
|
|
89
|
-
console.log(` • ${chalk.cyan('/melt-review')} - Review code for quality and compliance`);
|
|
90
|
-
console.log(` • ${chalk.cyan('/melt-complete')} - Complete story and handle deployment`);
|
|
91
|
-
console.log(` • ${chalk.cyan('/melt-debug')} - Systematic debugging with AI assistance`);
|
|
92
|
-
console.log(' 2. Customize templates in .melt/templates/');
|
|
93
|
-
console.log(` 3. Use utility scripts in .melt/scripts/${selectedShell}/`);
|
|
83
|
+
console.log(' 1. Open Cursor IDE');
|
|
84
|
+
console.log(` 2. Run ${chalk.cyan('/melt-plan')} to start planning a feature`);
|
|
85
|
+
console.log(' 3. Follow the workflow: Plan → Test → Implement → Review');
|
|
86
|
+
console.log();
|
|
87
|
+
console.log(`See docs: ${chalk.cyan('https://melt-development-prompts.vercel.app')}`);
|
|
94
88
|
outro(chalk.green('Happy coding with Melt! 🚀'));
|
|
95
89
|
}
|
|
96
90
|
catch (error) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meltstudio/meltctl",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.3",
|
|
4
4
|
"description": "CLI tool for Melt development process automation - initialize and update project configurations",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -17,6 +17,11 @@
|
|
|
17
17
|
"registry": "https://registry.npmjs.org/",
|
|
18
18
|
"access": "public"
|
|
19
19
|
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/MeltStudio/melt-development-prompts.git",
|
|
23
|
+
"directory": "packages/cli"
|
|
24
|
+
},
|
|
20
25
|
"scripts": {
|
|
21
26
|
"build": "tsc",
|
|
22
27
|
"dev": "tsx src/index.ts",
|