pikakit 3.9.45 → 3.9.47
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 +3 -3
- package/bin/lib/ui.js +1 -1
- package/package.json +1 -1
|
@@ -248,11 +248,11 @@ export async function run(spec) {
|
|
|
248
248
|
});
|
|
249
249
|
|
|
250
250
|
stepLine();
|
|
251
|
-
activeStep(`Found ${skillsInRepo.length} skills — ${c.gray("[")}${c.cyan("Space")}${c.gray("]
|
|
251
|
+
activeStep(`Found ${skillsInRepo.length} skills — ${c.gray("[")}${c.cyan("Space")}${c.gray("]")}select ${c.gray("[")}${c.cyan("Enter")}${c.gray("]")}continue`);
|
|
252
252
|
|
|
253
253
|
// Show only categories, not individual skills
|
|
254
254
|
const selectedCategories = await multiselect({
|
|
255
|
-
message: "
|
|
255
|
+
message: " ",
|
|
256
256
|
options: sortedCategories.map(cat => ({
|
|
257
257
|
label: `${cat} (${grouped[cat].length} skills)`,
|
|
258
258
|
value: cat
|
|
@@ -285,7 +285,7 @@ export async function run(spec) {
|
|
|
285
285
|
}).split("\n").map(l => `${c.gray(S.branch)} ${l}`).join("\n"));
|
|
286
286
|
|
|
287
287
|
// Hint below the box
|
|
288
|
-
step(c.dim(`${c.
|
|
288
|
+
step(c.dim(`${c.gray("[")}${c.cyan("Space")}${c.gray("]")}select ${c.gray("[")}${c.cyan("Enter")}${c.gray("]")}continue`));
|
|
289
289
|
|
|
290
290
|
// Get all skills from selected categories
|
|
291
291
|
selectedSkills = selectedCategories.flatMap(cat => grouped[cat].map(s => s.value));
|
package/bin/lib/ui.js
CHANGED
|
@@ -221,7 +221,7 @@ export async function selectAgentsPrompt(detectedAgents) {
|
|
|
221
221
|
}
|
|
222
222
|
|
|
223
223
|
// Show hint below agent selection
|
|
224
|
-
step(c.dim(`${c.
|
|
224
|
+
step(c.dim(`${c.gray("[")}${c.cyan("Space")}${c.gray("]")}select ${c.gray("[")}${c.cyan("Enter")}${c.gray("]")}continue`));
|
|
225
225
|
|
|
226
226
|
return detectedAgents.filter(a => selectedAgents.includes(a.name));
|
|
227
227
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pikakit",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.47",
|
|
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>",
|