@meltstudio/meltctl 4.1.0 → 4.2.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 +1 -8
- package/package.json +1 -1
package/dist/commands/init.js
CHANGED
|
@@ -89,12 +89,6 @@ export async function initCommand(options) {
|
|
|
89
89
|
await fs.writeFile(path.join(skillDir, 'SKILL.md'), skillContent, 'utf-8');
|
|
90
90
|
}
|
|
91
91
|
}
|
|
92
|
-
// Copy .cursor/rules/standards.mdc
|
|
93
|
-
const cursorRules = templates['cursor-rules.mdc'];
|
|
94
|
-
if (cursorRules) {
|
|
95
|
-
await fs.ensureDir(path.join(cwd, '.cursor/rules'));
|
|
96
|
-
await fs.writeFile(path.join(cwd, '.cursor/rules/standards.mdc'), cursorRules, 'utf-8');
|
|
97
|
-
}
|
|
98
92
|
// Copy Cursor commands from workflow templates
|
|
99
93
|
await fs.ensureDir(path.join(cwd, '.cursor/commands'));
|
|
100
94
|
for (const name of workflows) {
|
|
@@ -120,13 +114,12 @@ export async function initCommand(options) {
|
|
|
120
114
|
console.log(chalk.dim(' AGENTS.md'));
|
|
121
115
|
console.log(chalk.dim(' .claude/settings.json'));
|
|
122
116
|
console.log(chalk.dim(' .claude/skills/melt-{plan,review,pr,debug}/SKILL.md'));
|
|
123
|
-
console.log(chalk.dim(' .cursor/rules/standards.mdc'));
|
|
124
117
|
console.log(chalk.dim(' .cursor/commands/melt-{plan,review,pr,debug}.md'));
|
|
125
118
|
console.log(chalk.dim(' .mcp.json'));
|
|
126
119
|
console.log(chalk.dim(' .env.melt.example'));
|
|
127
120
|
console.log();
|
|
128
121
|
console.log(chalk.yellow('Next steps:'));
|
|
129
|
-
console.log(chalk.dim(' 1.
|
|
122
|
+
console.log(chalk.dim(' 1. Run your AI agent — it will automatically fill in project details in AGENTS.md'));
|
|
130
123
|
console.log(chalk.dim(' 2. Copy .env.melt.example to .env.local and fill in credentials'));
|
|
131
124
|
console.log(chalk.dim(' 3. Commit the generated files'));
|
|
132
125
|
console.log();
|
package/package.json
CHANGED