builderos-cli 2.0.8 → 2.0.9
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/index.js +3 -3
- package/mcp-server.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -235,11 +235,11 @@ async function installSkills() {
|
|
|
235
235
|
const skillDir = join(skillsDir, skill.slug);
|
|
236
236
|
await mkdir(skillDir, { recursive: true });
|
|
237
237
|
|
|
238
|
-
// Write
|
|
239
|
-
const skillPath = join(skillDir, '
|
|
238
|
+
// Write SKILL.md
|
|
239
|
+
const skillPath = join(skillDir, 'SKILL.md');
|
|
240
240
|
await writeFile(skillPath, skillData.data.content);
|
|
241
241
|
|
|
242
|
-
console.log(` ✅ Saved to ${skillDir}/
|
|
242
|
+
console.log(` ✅ Saved to ${skillDir}/SKILL.md`);
|
|
243
243
|
successCount++;
|
|
244
244
|
}
|
|
245
245
|
|
package/mcp-server.js
CHANGED