pikakit 3.9.49 → 3.9.51

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.
@@ -247,12 +247,9 @@ export async function run(spec) {
247
247
  return a.localeCompare(b);
248
248
  });
249
249
 
250
- stepLine();
251
- activeStep(`Found ${skillsInRepo.length} skills — ${c.gray("[")}${c.cyan("Space")}${c.gray("]")}select ${c.gray("[")}${c.cyan("Enter")}${c.gray("]")}continue`);
252
-
253
- // Show only categories, not individual skills
250
+ // Show categories in multiselect
254
251
  const selectedCategories = await multiselect({
255
- message: " ",
252
+ message: `Found ${skillsInRepo.length} skills — ${c.gray("[")}${c.cyan("Space")}${c.gray("]")}select ${c.gray("[")}${c.cyan("Enter")}${c.gray("]")}continue`,
256
253
  options: sortedCategories.map(cat => ({
257
254
  label: `${cat} (${grouped[cat].length} skills)`,
258
255
  value: cat
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pikakit",
3
- "version": "3.9.49",
3
+ "version": "3.9.51",
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>",
@@ -19,10 +19,7 @@
19
19
  },
20
20
  "files": [
21
21
  "bin/",
22
- "lib/",
23
- "specs/",
24
- "README.md",
25
- "LICENSE"
22
+ "README.md"
26
23
  ],
27
24
  "engines": {
28
25
  "node": ">=18.0.0"
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env node
2
- // CJS wrapper for ESM module - enables npx compatibility on Windows
3
- import('./kit.js');