ropilot 0.1.15 → 0.1.16

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.
Files changed (2) hide show
  1. package/lib/setup.js +7 -1
  2. package/package.json +1 -1
package/lib/setup.js CHANGED
@@ -428,7 +428,13 @@ export async function update() {
428
428
  process.exit(1);
429
429
  }
430
430
 
431
- await downloadPrompts(apiKey);
431
+ const pkg = await downloadPrompts(apiKey);
432
432
  console.log('');
433
+
434
+ // Update project files too
435
+ console.log('Updating project files...');
436
+ setupProjectPrompts(pkg);
437
+ console.log('');
438
+
433
439
  console.log('Update complete!');
434
440
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ropilot",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "description": "AI-powered Roblox development assistant - MCP CLI",
5
5
  "author": "whut",
6
6
  "license": "MIT",