pikakit 3.9.35 → 3.9.36

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.
@@ -15,6 +15,11 @@ import { step, activeStep, stepLine, S, c, fatal, spinner, multiselect, select,
15
15
  import { WORKSPACE, GLOBAL_DIR, OFFLINE, GLOBAL, FORCE } from "../config.js";
16
16
  import { installSkill } from "../installer.js";
17
17
 
18
+ // Import version from package.json
19
+ import { createRequire } from 'module';
20
+ const require = createRequire(import.meta.url);
21
+ const pkg = require('../../../package.json');
22
+
18
23
  /**
19
24
  * Install skills from repository
20
25
  * @param {string} spec - Skill spec (org/repo or org/repo#skill)
@@ -617,7 +622,7 @@ export async function run(spec) {
617
622
  padding: 1,
618
623
  borderColor: "cyan",
619
624
  borderStyle: "round",
620
- title: c.cyan("⚡ PikaKit"),
625
+ title: c.cyan(`⚡ PikaKit v${pkg.version}`),
621
626
  titleAlignment: "center"
622
627
  }
623
628
  ));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pikakit",
3
- "version": "3.9.35",
3
+ "version": "3.9.36",
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>",