pikakit 3.9.21 → 3.9.22
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 +4 -15
- package/package.json +1 -1
|
@@ -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
|
-
|
|
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
|
-
|
|
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(
|
|
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pikakit",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.22",
|
|
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>",
|