pikakit 3.7.7 → 3.7.8

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.
@@ -657,9 +657,13 @@ export async function run(spec) {
657
657
  if (fs.existsSync(path.join(os.homedir(), ".antigravity"))) {
658
658
  try {
659
659
  fs.mkdirSync(antigravityExt, { recursive: true });
660
- const extDest = path.join(antigravityExt, "pikakit.pikakit-skill-generator-1.0.0");
660
+ const extDest = path.join(antigravityExt, "pikakit.pikakit-skill-generator-1.0.0-universal");
661
661
 
662
- // Remove old extension if exists
662
+ // Remove old extension if exists (both old and new naming)
663
+ const oldExtDest = path.join(antigravityExt, "pikakit.pikakit-skill-generator-1.0.0");
664
+ if (fs.existsSync(oldExtDest)) {
665
+ fs.rmSync(oldExtDest, { recursive: true, force: true });
666
+ }
663
667
  if (fs.existsSync(extDest)) {
664
668
  fs.rmSync(extDest, { recursive: true, force: true });
665
669
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pikakit",
3
- "version": "3.7.7",
3
+ "version": "3.7.8",
4
4
  "description": "Enterprise-grade Agent Skill Manager with Antigravity Skills support, Progressive Disclosure detection, and semantic routing validation",
5
5
  "license": "MIT",
6
6
  "author": "pikakit <pikakit@gmail.com>",