pikakit 3.9.40 → 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.
@@ -261,8 +261,8 @@ export async function run(spec) {
261
261
  required: true
262
262
  });
263
263
 
264
- // Clear the verbose summary line that multiselect outputs
265
- process.stdout.write("\x1b[1A\x1b[2K");
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,17 +270,17 @@ export async function run(spec) {
270
270
  return;
271
271
  }
272
272
 
273
- // Display selected categories in a nice box
273
+ // Display selected categories in a nice box (dimmed text)
274
274
  const categoryLines = selectedCategories.map(cat =>
275
- `${c.cyan("✓")} ${cat} (${grouped[cat].length} skills)`
275
+ `${c.dim("✓")} ${c.dim(cat)} ${c.dim(`(${grouped[cat].length} skills)`)}`
276
276
  ).join("\n");
277
277
 
278
278
  console.log(boxen(categoryLines, {
279
279
  padding: { left: 1, right: 1, top: 0, bottom: 0 },
280
- borderColor: "cyan",
280
+ borderColor: "gray",
281
281
  borderStyle: "round",
282
282
  dimBorder: true,
283
- title: "Selected Categories",
283
+ title: c.dim("Selected Categories"),
284
284
  titleAlignment: "left"
285
285
  }).split("\n").map(l => `${c.gray(S.branch)} ${l}`).join("\n"));
286
286
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pikakit",
3
- "version": "3.9.40",
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>",