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 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 skill.md
239
- const skillPath = join(skillDir, 'skill.md');
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}/skill.md`);
242
+ console.log(` ✅ Saved to ${skillDir}/SKILL.md`);
243
243
  successCount++;
244
244
  }
245
245
 
package/mcp-server.js CHANGED
@@ -143,7 +143,7 @@ export async function startMCPServer() {
143
143
  const server = new Server(
144
144
  {
145
145
  name: 'builderos-cli-mcp',
146
- version: '2.0.8',
146
+ version: '2.0.9',
147
147
  },
148
148
  {
149
149
  capabilities: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "builderos-cli",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
4
4
  "description": "BuilderOS CLI - Initialize BuilderOS in any project without requiring local code",
5
5
  "type": "module",
6
6
  "main": "index.js",