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.
- package/bin/lib/commands/install.js +4 -15
- package/bin/lib/ui.js +3 -3
- 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/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: "
|
|
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
|
|
211
|
-
hint:
|
|
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.
|
|
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>",
|