pikakit 3.9.32 → 3.9.34
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,14 +247,13 @@ 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
|
|
|
260
259
|
// Clear the verbose summary line that multiselect outputs
|
|
@@ -304,7 +303,6 @@ export async function run(spec) {
|
|
|
304
303
|
let isGlobal = GLOBAL;
|
|
305
304
|
|
|
306
305
|
if (!GLOBAL) {
|
|
307
|
-
stepLine();
|
|
308
306
|
const scope = await selectScopePrompt();
|
|
309
307
|
|
|
310
308
|
if (!scope) {
|
|
@@ -316,7 +314,6 @@ export async function run(spec) {
|
|
|
316
314
|
}
|
|
317
315
|
|
|
318
316
|
// --- Select installation method ---
|
|
319
|
-
stepLine();
|
|
320
317
|
const installMethod = await selectMethodPrompt();
|
|
321
318
|
|
|
322
319
|
if (!installMethod) {
|
|
@@ -325,7 +322,6 @@ export async function run(spec) {
|
|
|
325
322
|
}
|
|
326
323
|
|
|
327
324
|
// Installation Summary (compact)
|
|
328
|
-
stepLine();
|
|
329
325
|
const agentsString = selectedAgents.map(a => a.displayName).join(", ");
|
|
330
326
|
const methodVerb = installMethod === "symlink" ? "Symlink" : "Copy";
|
|
331
327
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pikakit",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.34",
|
|
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>",
|