pikakit 3.9.39 → 3.9.41
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 +16 -2
- package/package.json +1 -1
|
@@ -261,8 +261,8 @@ export async function run(spec) {
|
|
|
261
261
|
required: true
|
|
262
262
|
});
|
|
263
263
|
|
|
264
|
-
// Clear the verbose summary
|
|
265
|
-
process.stdout.write("\x1b[
|
|
264
|
+
// Clear the verbose summary lines that multiselect outputs (2 lines)
|
|
265
|
+
process.stdout.write("\x1b[2A\x1b[2K\x1b[1B\x1b[2K\x1b[1A");
|
|
266
266
|
|
|
267
267
|
if (isCancel(selectedCategories)) {
|
|
268
268
|
cancel("Cancelled.");
|
|
@@ -270,6 +270,20 @@ export async function run(spec) {
|
|
|
270
270
|
return;
|
|
271
271
|
}
|
|
272
272
|
|
|
273
|
+
// Display selected categories in a nice box (dimmed text)
|
|
274
|
+
const categoryLines = selectedCategories.map(cat =>
|
|
275
|
+
`${c.dim("✓")} ${c.dim(cat)} ${c.dim(`(${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: "gray",
|
|
281
|
+
borderStyle: "round",
|
|
282
|
+
dimBorder: true,
|
|
283
|
+
title: c.dim("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
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pikakit",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.41",
|
|
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>",
|