@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 CHANGED
@@ -5,7 +5,7 @@ CLI tool for Melt's AI-assisted development workflow. Initialize projects with C
5
5
  ## 🚀 Quick Start
6
6
 
7
7
  ```bash
8
- # Install globally
8
+ # Install globally via npm
9
9
  npm install -g @meltstudio/meltctl
10
10
 
11
11
  # Initialize your project
@@ -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. Start using Cursor commands (8 commands available):');
84
- console.log(` ${chalk.cyan('/melt-plan')} - Create detailed implementation plans`);
85
- console.log(` • ${chalk.cyan('/melt-test-plan')} - Generate test strategy and test files`);
86
- console.log(` • ${chalk.cyan('/melt-docs')} - Update project documentation`);
87
- console.log(` ${chalk.cyan('/melt-implement')} - Execute implementation with best practices`);
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": "1.7.0",
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",