pikakit 3.9.31 → 3.9.33

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.
@@ -247,16 +247,18 @@ export async function run(spec) {
247
247
 
248
248
  // Show only categories, not individual skills
249
249
  const selectedCategories = await multiselect({
250
- message: "",
250
+ message: "Space to select/deselect, Enter to continue",
251
251
  options: sortedCategories.map(cat => ({
252
252
  label: `${cat} (${grouped[cat].length} skills)`,
253
253
  value: cat
254
254
  })),
255
255
  initialValues: sortedCategories, // Pre-select all
256
- required: true,
257
- hint: "space to select · enter to continue"
256
+ required: true
258
257
  });
259
258
 
259
+ // Clear the verbose summary line that multiselect outputs
260
+ process.stdout.write("\x1b[1A\x1b[2K");
261
+
260
262
  if (isCancel(selectedCategories)) {
261
263
  cancel("Cancelled.");
262
264
  fs.rmSync(tmp, { recursive: true, force: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pikakit",
3
- "version": "3.9.31",
3
+ "version": "3.9.33",
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>",