pikakit 3.9.24 → 3.9.25
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/lib/commands/install.js +21 -13
- package/package.json +1 -1
|
@@ -316,9 +316,6 @@ export async function run(spec) {
|
|
|
316
316
|
isGlobal = scope === "global";
|
|
317
317
|
}
|
|
318
318
|
|
|
319
|
-
stepLine();
|
|
320
|
-
step(`Installation scope: ${c.dim(isGlobal ? "Global" : "Project")}`);
|
|
321
|
-
|
|
322
319
|
// --- Select installation method ---
|
|
323
320
|
stepLine();
|
|
324
321
|
activeStep("Installation method");
|
|
@@ -331,9 +328,6 @@ export async function run(spec) {
|
|
|
331
328
|
|
|
332
329
|
|
|
333
330
|
// Installation Summary Box
|
|
334
|
-
stepLine();
|
|
335
|
-
step(`Installation method: ${c.dim(installMethod === "symlink" ? "Symlink" : "Copy")}`);
|
|
336
|
-
|
|
337
331
|
stepLine();
|
|
338
332
|
step("Installation Summary");
|
|
339
333
|
stepLine();
|
|
@@ -801,18 +795,32 @@ export async function run(spec) {
|
|
|
801
795
|
// Run npm install to ensure all skill dependencies are available
|
|
802
796
|
stepLine();
|
|
803
797
|
const depsSpinner = spinner();
|
|
804
|
-
depsSpinner.start("Installing skill dependencies
|
|
798
|
+
depsSpinner.start("Installing skill dependencies");
|
|
805
799
|
try {
|
|
806
800
|
await execAsync("npm install", { timeout: 120000 });
|
|
807
|
-
depsSpinner.stop("
|
|
801
|
+
depsSpinner.stop("Dependencies ready");
|
|
808
802
|
} catch (e) {
|
|
809
|
-
depsSpinner.stop(c.yellow("Dependencies
|
|
810
|
-
step(c.dim("Run
|
|
803
|
+
depsSpinner.stop(c.yellow("Dependencies skipped"));
|
|
804
|
+
step(c.dim("Run: npm install"));
|
|
811
805
|
}
|
|
812
806
|
|
|
813
|
-
//
|
|
814
|
-
|
|
807
|
+
// Final success message
|
|
815
808
|
stepLine();
|
|
816
|
-
console.log(
|
|
809
|
+
console.log();
|
|
810
|
+
console.log(boxen(
|
|
811
|
+
`${c.green("✓")} ${c.bold("Installation Complete!")}\n\n` +
|
|
812
|
+
`${c.cyan("Next Steps:")}\n` +
|
|
813
|
+
` ${c.dim("1.")} Run ${c.cyan("kit")} to access CLI tools\n` +
|
|
814
|
+
` ${c.dim("2.")} Use ${c.cyan("/autopilot")} in your AI agent\n` +
|
|
815
|
+
` ${c.dim("3.")} Explore skills with ${c.cyan("kit list")}\n\n` +
|
|
816
|
+
`${c.dim("Documentation:")} ${c.cyan("https://pikakit.com/docs")}`,
|
|
817
|
+
{
|
|
818
|
+
padding: 1,
|
|
819
|
+
borderColor: "cyan",
|
|
820
|
+
borderStyle: "round",
|
|
821
|
+
title: c.cyan("⚡ PikaKit"),
|
|
822
|
+
titleAlignment: "center"
|
|
823
|
+
}
|
|
824
|
+
));
|
|
817
825
|
console.log();
|
|
818
826
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pikakit",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.25",
|
|
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>",
|