pikakit 3.9.23 → 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 -17
- package/package.json +1 -1
|
@@ -274,11 +274,7 @@ export async function run(spec) {
|
|
|
274
274
|
// Check for required skills and show info
|
|
275
275
|
const CORE_REQUIRED = ["skill-generator"];
|
|
276
276
|
const installedRequired = selectedSkills.filter(s => CORE_REQUIRED.includes(s));
|
|
277
|
-
|
|
278
|
-
// Show selection summary (single line)
|
|
279
277
|
const userSkills = selectedSkills.filter(s => !CORE_REQUIRED.includes(s));
|
|
280
|
-
stepLine();
|
|
281
|
-
step(`${userSkills.length} skills selected${installedRequired.length > 0 ? ` + ${installedRequired.length} system` : ""}`);
|
|
282
278
|
|
|
283
279
|
// --- Detect installed agents ---
|
|
284
280
|
stepLine();
|
|
@@ -320,9 +316,6 @@ export async function run(spec) {
|
|
|
320
316
|
isGlobal = scope === "global";
|
|
321
317
|
}
|
|
322
318
|
|
|
323
|
-
stepLine();
|
|
324
|
-
step(`Installation scope: ${c.dim(isGlobal ? "Global" : "Project")}`);
|
|
325
|
-
|
|
326
319
|
// --- Select installation method ---
|
|
327
320
|
stepLine();
|
|
328
321
|
activeStep("Installation method");
|
|
@@ -335,9 +328,6 @@ export async function run(spec) {
|
|
|
335
328
|
|
|
336
329
|
|
|
337
330
|
// Installation Summary Box
|
|
338
|
-
stepLine();
|
|
339
|
-
step(`Installation method: ${c.dim(installMethod === "symlink" ? "Symlink" : "Copy")}`);
|
|
340
|
-
|
|
341
331
|
stepLine();
|
|
342
332
|
step("Installation Summary");
|
|
343
333
|
stepLine();
|
|
@@ -805,18 +795,32 @@ export async function run(spec) {
|
|
|
805
795
|
// Run npm install to ensure all skill dependencies are available
|
|
806
796
|
stepLine();
|
|
807
797
|
const depsSpinner = spinner();
|
|
808
|
-
depsSpinner.start("Installing skill dependencies
|
|
798
|
+
depsSpinner.start("Installing skill dependencies");
|
|
809
799
|
try {
|
|
810
800
|
await execAsync("npm install", { timeout: 120000 });
|
|
811
|
-
depsSpinner.stop("
|
|
801
|
+
depsSpinner.stop("Dependencies ready");
|
|
812
802
|
} catch (e) {
|
|
813
|
-
depsSpinner.stop(c.yellow("Dependencies
|
|
814
|
-
step(c.dim("Run
|
|
803
|
+
depsSpinner.stop(c.yellow("Dependencies skipped"));
|
|
804
|
+
step(c.dim("Run: npm install"));
|
|
815
805
|
}
|
|
816
806
|
|
|
817
|
-
//
|
|
818
|
-
|
|
807
|
+
// Final success message
|
|
819
808
|
stepLine();
|
|
820
|
-
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
|
+
));
|
|
821
825
|
console.log();
|
|
822
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>",
|