pikakit 3.9.51 → 3.9.53
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 +0 -20
- package/package.json +1 -1
|
@@ -258,32 +258,12 @@ export async function run(spec) {
|
|
|
258
258
|
required: true
|
|
259
259
|
});
|
|
260
260
|
|
|
261
|
-
// Clear the verbose summary lines that multiselect outputs (2 lines)
|
|
262
|
-
process.stdout.write("\x1b[2A\x1b[2K\x1b[1B\x1b[2K\x1b[1A");
|
|
263
|
-
|
|
264
261
|
if (isCancel(selectedCategories)) {
|
|
265
262
|
cancel("Cancelled.");
|
|
266
263
|
fs.rmSync(tmp, { recursive: true, force: true });
|
|
267
264
|
return;
|
|
268
265
|
}
|
|
269
266
|
|
|
270
|
-
// Display selected categories in a nice box (dimmed text)
|
|
271
|
-
const categoryLines = selectedCategories.map(cat =>
|
|
272
|
-
`${c.dim("✓")} ${c.dim(cat)} ${c.dim(`(${grouped[cat].length} skills)`)}`
|
|
273
|
-
).join("\n");
|
|
274
|
-
|
|
275
|
-
console.log(boxen(categoryLines, {
|
|
276
|
-
padding: { left: 1, right: 1, top: 0, bottom: 0 },
|
|
277
|
-
borderColor: "gray",
|
|
278
|
-
borderStyle: "round",
|
|
279
|
-
dimBorder: true,
|
|
280
|
-
title: c.dim("Selected Categories"),
|
|
281
|
-
titleAlignment: "left"
|
|
282
|
-
}).split("\n").map(l => `${c.gray(S.branch)} ${l}`).join("\n"));
|
|
283
|
-
|
|
284
|
-
// Hint below the box
|
|
285
|
-
step(c.dim(`${c.gray("[")}${c.cyan("Space")}${c.gray("]")}select ${c.gray("[")}${c.cyan("Enter")}${c.gray("]")}continue`));
|
|
286
|
-
|
|
287
267
|
// Get all skills from selected categories
|
|
288
268
|
selectedSkills = selectedCategories.flatMap(cat => grouped[cat].map(s => s.value));
|
|
289
269
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pikakit",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.53",
|
|
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>",
|