pikakit 3.7.3 → 3.7.4
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/cli.mjs +26 -3
- package/package.json +1 -1
package/bin/cli.mjs
CHANGED
|
@@ -1,6 +1,29 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
1
|
+
#!/usr/bin/env node
|
|
2
2
|
/**
|
|
3
|
-
* PikaKit CLI - Main Entry Point
|
|
3
|
+
* PikaKit CLI - Main Entry Point
|
|
4
|
+
* Routes to install wizard or kit commands
|
|
4
5
|
* Using .mjs extension for Windows npx compatibility
|
|
5
6
|
*/
|
|
6
|
-
|
|
7
|
+
|
|
8
|
+
const args = process.argv.slice(2);
|
|
9
|
+
const firstArg = args[0] || '';
|
|
10
|
+
|
|
11
|
+
// List of commands that should go to kit.mjs (not installer)
|
|
12
|
+
const kitCommands = [
|
|
13
|
+
'uninstall', 'remove', 'rm',
|
|
14
|
+
'update',
|
|
15
|
+
'init', 'list', 'ls',
|
|
16
|
+
'lock', 'cache',
|
|
17
|
+
'verify', 'doctor', 'validate', 'check', 'analyze',
|
|
18
|
+
'info', 'show',
|
|
19
|
+
'help', '--help', '-h',
|
|
20
|
+
'--version', '-V'
|
|
21
|
+
];
|
|
22
|
+
|
|
23
|
+
if (kitCommands.includes(firstArg)) {
|
|
24
|
+
// Route to kit commands
|
|
25
|
+
import('./kit.mjs');
|
|
26
|
+
} else {
|
|
27
|
+
// Default: installation wizard (no args or org/repo syntax)
|
|
28
|
+
import('./install.mjs');
|
|
29
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pikakit",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.4",
|
|
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>",
|