pikakit 3.9.38 → 3.9.40
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 +14 -1
- package/package.json +1 -1
|
@@ -270,6 +270,20 @@ export async function run(spec) {
|
|
|
270
270
|
return;
|
|
271
271
|
}
|
|
272
272
|
|
|
273
|
+
// Display selected categories in a nice box
|
|
274
|
+
const categoryLines = selectedCategories.map(cat =>
|
|
275
|
+
`${c.cyan("✓")} ${cat} (${grouped[cat].length} skills)`
|
|
276
|
+
).join("\n");
|
|
277
|
+
|
|
278
|
+
console.log(boxen(categoryLines, {
|
|
279
|
+
padding: { left: 1, right: 1, top: 0, bottom: 0 },
|
|
280
|
+
borderColor: "cyan",
|
|
281
|
+
borderStyle: "round",
|
|
282
|
+
dimBorder: true,
|
|
283
|
+
title: "Selected Categories",
|
|
284
|
+
titleAlignment: "left"
|
|
285
|
+
}).split("\n").map(l => `${c.gray(S.branch)} ${l}`).join("\n"));
|
|
286
|
+
|
|
273
287
|
// Get all skills from selected categories
|
|
274
288
|
selectedSkills = selectedCategories.flatMap(cat => grouped[cat].map(s => s.value));
|
|
275
289
|
|
|
@@ -329,7 +343,6 @@ export async function run(spec) {
|
|
|
329
343
|
// Confirmation (skip if --force)
|
|
330
344
|
let shouldProceed = FORCE;
|
|
331
345
|
if (!FORCE) {
|
|
332
|
-
stepLine();
|
|
333
346
|
shouldProceed = await confirm({ message: "Proceed with installation?", initialValue: true });
|
|
334
347
|
|
|
335
348
|
if (isCancel(shouldProceed) || !shouldProceed) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pikakit",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.40",
|
|
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>",
|