pikakit 1.0.11 → 1.0.13

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/bin/kit.js CHANGED
@@ -1,3 +1,3 @@
1
1
  #!/usr/bin/env node
2
- // Backward compatibility wrapper - delegates to cli.mjs
3
- import('./cli.mjs');
2
+ // Kit CLI - delegates to kit.mjs (NOT cli.mjs which is installation wizard)
3
+ import('./kit.mjs');
package/bin/kit.mjs CHANGED
@@ -68,9 +68,9 @@ async function main() {
68
68
  const cmdModule = await import(found.config.module);
69
69
  await cmdModule.run(found.config.hasParam ? params[0] : undefined);
70
70
  } else if (command === "" || command === undefined) {
71
- // NEW: No command = default install from pikakit/agent-skills
72
- const cmdModule = await import("./lib/commands/install.js");
73
- await cmdModule.run(DEFAULT_REPO);
71
+ // No command = show help (use 'npx pikakit' for installation)
72
+ const cmdModule = await import("./lib/commands/help.js");
73
+ await cmdModule.run();
74
74
  } else if (command.includes("/")) {
75
75
  // Direct install via org/repo syntax
76
76
  const cmdModule = await import("./lib/commands/install.js");
@@ -257,8 +257,8 @@
257
257
  <body>
258
258
  <div class="container">
259
259
  <header>
260
- <h1>🧠 <span>AutoLearn v6.0</span> Dashboard</h1>
261
- <span class="status-badge">⚡ Precision Learning Engine</span>
260
+ <h1>🧠 <span>PikaKit v6.0</span> Dashboard</h1>
261
+ <span class="status-badge">⚡ PikaKit v6.0</span>
262
262
  </header>
263
263
 
264
264
  <!-- Core KPIs -->
@@ -374,7 +374,7 @@
374
374
  </div>
375
375
 
376
376
  <footer class="footer">
377
- AutoLearn v6.0 Dashboard • ⚡ PikaKit Precision Learning Engine • Built with ❤️
377
+ PikaKit v6.0 - Precision Learning Engine!
378
378
  </footer>
379
379
  </div>
380
380
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pikakit",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
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>",
@@ -15,7 +15,7 @@
15
15
  "type": "module",
16
16
  "bin": {
17
17
  "pikakit": "./bin/cli.mjs",
18
- "kit": "./bin/cli.mjs",
18
+ "kit": "./bin/kit.js",
19
19
  "agent": "./lib/agent-cli/bin/agent.js"
20
20
  },
21
21
  "files": [