@meltstudio/meltctl 1.2.0 → 1.3.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.
|
@@ -74,11 +74,15 @@ export async function initCommand(options = {}) {
|
|
|
74
74
|
console.log(` • ${chalk.cyan('.melt/templates/')}`);
|
|
75
75
|
console.log();
|
|
76
76
|
console.log('Next steps:');
|
|
77
|
-
console.log(' 1. Start using Cursor commands:');
|
|
78
|
-
console.log(` • ${chalk.cyan('/melt-
|
|
79
|
-
console.log(` • ${chalk.cyan('/melt-plan')} -
|
|
80
|
-
console.log(` • ${chalk.cyan('/melt-
|
|
81
|
-
console.log(` • ${chalk.cyan('/melt-
|
|
77
|
+
console.log(' 1. Start using Cursor commands (8 commands available):');
|
|
78
|
+
console.log(` • ${chalk.cyan('/melt-plan')} - Create detailed implementation plans`);
|
|
79
|
+
console.log(` • ${chalk.cyan('/melt-test-plan')} - Generate test strategy and test files`);
|
|
80
|
+
console.log(` • ${chalk.cyan('/melt-docs')} - Update project documentation`);
|
|
81
|
+
console.log(` • ${chalk.cyan('/melt-implement')} - Execute implementation with best practices`);
|
|
82
|
+
console.log(` • ${chalk.cyan('/melt-pr')} - Create pull request with proper description`);
|
|
83
|
+
console.log(` • ${chalk.cyan('/melt-review')} - Review code for quality and compliance`);
|
|
84
|
+
console.log(` • ${chalk.cyan('/melt-complete')} - Complete story and handle deployment`);
|
|
85
|
+
console.log(` • ${chalk.cyan('/melt-debug')} - Systematic debugging with AI assistance`);
|
|
82
86
|
console.log(' 2. Customize templates in .melt/templates/');
|
|
83
87
|
console.log(` 3. Use utility scripts in .melt/scripts/${selectedShell}/`);
|
|
84
88
|
outro(chalk.green('Happy coding with Melt! 🚀'));
|
package/package.json
CHANGED