pikakit 3.9.86 → 3.9.87
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/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
### Transform your AI Agent into a FAANG-level engineering team
|
|
6
6
|
|
|
7
|
-
[](https://www.npmjs.com/package/pikakit)
|
|
8
8
|
[](https://github.com/pikakit/agent-skills)
|
|
9
9
|
[](https://github.com/pikakit/agent-skills)
|
|
10
10
|
[](https://github.com/pikakit/agent-skills)
|
|
@@ -418,7 +418,7 @@ UNLICENSED — See [LICENSE](LICENSE) for details.
|
|
|
418
418
|
|
|
419
419
|
<div align="center">
|
|
420
420
|
|
|
421
|
-
**⚡ PikaKit v3.9.
|
|
421
|
+
**⚡ PikaKit v3.9.87**
|
|
422
422
|
|
|
423
423
|
*Composable Skills · Coordinated Agents · Intelligent Execution*
|
|
424
424
|
|
|
@@ -50,10 +50,10 @@ export async function run(spec) {
|
|
|
50
50
|
const url = `https://github.com/${org}/${repo}.git`;
|
|
51
51
|
|
|
52
52
|
stepLine();
|
|
53
|
-
step(
|
|
53
|
+
step("Source: " + c.cyan(url));
|
|
54
54
|
|
|
55
55
|
const s = spinner();
|
|
56
|
-
s.start(
|
|
56
|
+
s.start("Deploying next-generation skills...");
|
|
57
57
|
|
|
58
58
|
const tmp = fs.mkdtempSync(path.join(os.tmpdir(), "add-skill-"));
|
|
59
59
|
|
|
@@ -72,7 +72,7 @@ export async function run(spec) {
|
|
|
72
72
|
|
|
73
73
|
if (attempt < MAX_RETRIES) {
|
|
74
74
|
const delay = Math.pow(2, attempt) * 1000; // 2s, 4s
|
|
75
|
-
s.message(
|
|
75
|
+
s.message(`Retry ${attempt}/${MAX_RETRIES} in ${delay / 1000}s...`);
|
|
76
76
|
await new Promise(r => setTimeout(r, delay));
|
|
77
77
|
|
|
78
78
|
// Clean up failed attempt
|
|
@@ -105,7 +105,7 @@ export async function run(spec) {
|
|
|
105
105
|
return;
|
|
106
106
|
}
|
|
107
107
|
|
|
108
|
-
s.stop(
|
|
108
|
+
s.stop("Skills deployed successfully.");
|
|
109
109
|
|
|
110
110
|
// Find skills in repo - check multiple possible locations
|
|
111
111
|
const skillsInRepo = [];
|
|
@@ -419,7 +419,7 @@ export async function run(spec) {
|
|
|
419
419
|
|
|
420
420
|
// Single spinner for all skills
|
|
421
421
|
const skillSpinner = spinner();
|
|
422
|
-
skillSpinner.start(
|
|
422
|
+
skillSpinner.start(`Installing ${selectedSkills.length} skills...`);
|
|
423
423
|
|
|
424
424
|
for (const sn of selectedSkills) {
|
|
425
425
|
const src = skillPathMap[sn] || path.join(skillsDir || tmp, sn);
|
|
@@ -439,7 +439,7 @@ export async function run(spec) {
|
|
|
439
439
|
|
|
440
440
|
// Show final result
|
|
441
441
|
if (installResults.failed.length === 0) {
|
|
442
|
-
skillSpinner.stop(
|
|
442
|
+
skillSpinner.stop(`Installed ${selectedSkills.length} skills`);
|
|
443
443
|
} else {
|
|
444
444
|
skillSpinner.stop(`${installResults.success.length} success, ${installResults.failed.length} failed`);
|
|
445
445
|
}
|
|
@@ -587,7 +587,7 @@ export async function run(spec) {
|
|
|
587
587
|
|
|
588
588
|
if (wantExtension && detectedIDEs.length > 0) {
|
|
589
589
|
const extSpinner = spinner();
|
|
590
|
-
extSpinner.start(
|
|
590
|
+
extSpinner.start("Installing PikaKit Engine extension...");
|
|
591
591
|
|
|
592
592
|
try {
|
|
593
593
|
let vsixPath = null;
|
|
@@ -613,7 +613,7 @@ export async function run(spec) {
|
|
|
613
613
|
}
|
|
614
614
|
|
|
615
615
|
if (installed.length > 0) {
|
|
616
|
-
extSpinner.stop(
|
|
616
|
+
extSpinner.stop(`PikaKit Engine installed → ${installed.join(", ")}`);
|
|
617
617
|
extensionInstalled = true;
|
|
618
618
|
} else {
|
|
619
619
|
extSpinner.stop(c.yellow("Extension build succeeded but installation failed"));
|
package/package.json
CHANGED
|
Binary file
|