pikakit 3.9.16 → 3.9.18
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.
|
@@ -281,7 +281,11 @@ export async function run(spec) {
|
|
|
281
281
|
|
|
282
282
|
stepLine();
|
|
283
283
|
step("Select skills to install");
|
|
284
|
-
|
|
284
|
+
|
|
285
|
+
// Show skills count by category instead of long comma-separated list
|
|
286
|
+
const userSkills = selectedSkills.filter(s => !CORE_REQUIRED.includes(s));
|
|
287
|
+
console.log(`${c.gray(S.branch)} ${c.dim(`${userSkills.length} skills selected`)}`);
|
|
288
|
+
|
|
285
289
|
if (installedRequired.length > 0) {
|
|
286
290
|
console.log(`${c.gray(S.branch)} ${c.cyan("+ System required:")} ${c.green(installedRequired.join(", "))}`);
|
|
287
291
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pikakit",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.18",
|
|
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>",
|