add-skill-kit 1.3.2 → 1.3.3
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 +21 -0
- package/package.json +1 -1
|
@@ -460,6 +460,22 @@ export async function run(spec) {
|
|
|
460
460
|
}
|
|
461
461
|
}
|
|
462
462
|
|
|
463
|
+
// Install .shared if it exists (contains shared resources like ui-ux-pro-max data)
|
|
464
|
+
const sharedDir = path.join(tmp, ".agent", ".shared");
|
|
465
|
+
const targetSharedDir = path.join(WORKSPACE, "..", ".shared");
|
|
466
|
+
let sharedInstalled = false;
|
|
467
|
+
|
|
468
|
+
if (fs.existsSync(sharedDir) && !fs.existsSync(targetSharedDir)) {
|
|
469
|
+
stepLine();
|
|
470
|
+
const ss = spinner();
|
|
471
|
+
ss.start("Installing shared resources");
|
|
472
|
+
|
|
473
|
+
fs.cpSync(sharedDir, targetSharedDir, { recursive: true });
|
|
474
|
+
sharedInstalled = true;
|
|
475
|
+
|
|
476
|
+
ss.stop("Installed .shared/ (ui-ux-pro-max data)");
|
|
477
|
+
}
|
|
478
|
+
|
|
463
479
|
// Installation complete step
|
|
464
480
|
stepLine();
|
|
465
481
|
step("Installation complete");
|
|
@@ -506,6 +522,11 @@ export async function run(spec) {
|
|
|
506
522
|
successContent += `${c.cyan("✓")} ${c.dim(`.agent/rules/ (${rulesInstalled} files)`)}\n`;
|
|
507
523
|
}
|
|
508
524
|
|
|
525
|
+
// Shared resources summary
|
|
526
|
+
if (sharedInstalled) {
|
|
527
|
+
successContent += `${c.cyan("✓")} ${c.dim(".agent/.shared/ (ui-ux-pro-max data)")}\n`;
|
|
528
|
+
}
|
|
529
|
+
|
|
509
530
|
// Build title
|
|
510
531
|
const parts = [`${selectedSkills.length} skills`];
|
|
511
532
|
if (workflowsInstalled > 0) parts.push(`${workflowsInstalled} workflows`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "add-skill-kit",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.3",
|
|
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": "agentskillkit <agentskillkit@gmail.com>",
|