@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-implement')} - Execute implementation with Melt standards`);
79
- console.log(` • ${chalk.cyan('/melt-plan')} - Create implementation plans`);
80
- console.log(` • ${chalk.cyan('/melt-review')} - Review code with domain architecture`);
81
- console.log(` • ${chalk.cyan('/melt-debug')} - Debug issues systematically`);
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meltstudio/meltctl",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
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",