pikakit 3.9.21 → 3.9.23

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.
@@ -275,16 +275,10 @@ export async function run(spec) {
275
275
  const CORE_REQUIRED = ["skill-generator"];
276
276
  const installedRequired = selectedSkills.filter(s => CORE_REQUIRED.includes(s));
277
277
 
278
- stepLine();
279
- step("Select skills to install");
280
-
281
- // Show skills count by category instead of long comma-separated list
278
+ // Show selection summary (single line)
282
279
  const userSkills = selectedSkills.filter(s => !CORE_REQUIRED.includes(s));
283
- console.log(`${c.gray(S.branch)} ${c.dim(`${userSkills.length} skills selected`)}`);
284
-
285
- if (installedRequired.length > 0) {
286
- console.log(`${c.gray(S.branch)} ${c.cyan("+ System required:")} ${c.green(installedRequired.join(", "))}`);
287
- }
280
+ stepLine();
281
+ step(`${userSkills.length} skills selected${installedRequired.length > 0 ? ` + ${installedRequired.length} system` : ""}`);
288
282
 
289
283
  // --- Detect installed agents ---
290
284
  stepLine();
@@ -298,13 +292,11 @@ export async function run(spec) {
298
292
  return;
299
293
  }
300
294
 
301
- step(`Detected ${detectedAgents.length} agents`);
302
-
303
295
  // --- Select agents (Vercel-style) ---
304
296
  const { selectAgentsPrompt, selectScopePrompt, selectMethodPrompt } = await import("../ui.js");
305
297
 
306
298
  stepLine();
307
- activeStep("Install to");
299
+ activeStep(`${detectedAgents.length} agents found — Select target`);
308
300
  const selectedAgents = await selectAgentsPrompt(detectedAgents);
309
301
 
310
302
  if (!selectedAgents || selectedAgents.length === 0) {
@@ -312,9 +304,6 @@ export async function run(spec) {
312
304
  return;
313
305
  }
314
306
 
315
- stepLine();
316
- step(`Install to: ${c.dim(selectedAgents.map(a => a.displayName).join(", "))}`)
317
-
318
307
  // --- Select installation scope ---
319
308
  let isGlobal = GLOBAL;
320
309
 
package/bin/lib/ui.js CHANGED
@@ -198,7 +198,7 @@ export async function selectAgentsPrompt(detectedAgents) {
198
198
 
199
199
  // First ask: Select specific or all detected?
200
200
  const installChoice = await select({
201
- message: "Install to",
201
+ message: "",
202
202
  options: [
203
203
  {
204
204
  value: "select",
@@ -207,8 +207,8 @@ export async function selectAgentsPrompt(detectedAgents) {
207
207
  },
208
208
  {
209
209
  value: "all",
210
- label: `All detected agents`,
211
- hint: `Install to all ${detectedAgents.length} detected agents`
210
+ label: `All ${detectedAgents.length} agents`,
211
+ hint: detectedAgents.map(a => a.displayName).join(", ")
212
212
  }
213
213
  ]
214
214
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pikakit",
3
- "version": "3.9.21",
3
+ "version": "3.9.23",
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>",