pikakit 3.9.87 → 3.9.89
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.89**
|
|
422
422
|
|
|
423
423
|
*Composable Skills · Coordinated Agents · Intelligent Execution*
|
|
424
424
|
|
|
@@ -409,7 +409,6 @@ export async function run(spec) {
|
|
|
409
409
|
}
|
|
410
410
|
|
|
411
411
|
// Install skills to multiple agents
|
|
412
|
-
stepLine();
|
|
413
412
|
const { installSkillForAgents } = await import("../installer.js");
|
|
414
413
|
|
|
415
414
|
// Create a map for skill paths
|
|
@@ -659,53 +658,13 @@ export async function run(spec) {
|
|
|
659
658
|
|
|
660
659
|
fs.rmSync(tmp, { recursive: true, force: true });
|
|
661
660
|
|
|
662
|
-
// Install CLI package (silent)
|
|
663
|
-
const cliPackage = "pikakit";
|
|
664
|
-
|
|
665
|
-
if (isGlobal) {
|
|
666
|
-
try {
|
|
667
|
-
await execAsync(`npm install -g ${cliPackage}`, { timeout: 120000 });
|
|
668
|
-
} catch (e) { /* ignore */ }
|
|
669
|
-
} else {
|
|
670
|
-
try {
|
|
671
|
-
await execAsync(`npm install -D ${cliPackage}`, { timeout: 120000 });
|
|
672
|
-
|
|
673
|
-
// Add npm scripts to package.json
|
|
674
|
-
try {
|
|
675
|
-
const pkgPath = path.join(process.cwd(), "package.json");
|
|
676
|
-
if (fs.existsSync(pkgPath)) {
|
|
677
|
-
const pkg = JSON.parse(fs.readFileSync(pkgPath, "utf-8"));
|
|
678
|
-
pkg.scripts = pkg.scripts || {};
|
|
679
|
-
if (!pkg.scripts.kit) pkg.scripts.kit = "kit";
|
|
680
|
-
fs.writeFileSync(pkgPath, JSON.stringify(pkg, null, 2) + "\n");
|
|
681
|
-
}
|
|
682
|
-
} catch { /* ignore */ }
|
|
683
|
-
|
|
684
|
-
// Create wrapper scripts
|
|
685
|
-
try {
|
|
686
|
-
const projectRoot = process.cwd();
|
|
687
|
-
const kitCmd = `@echo off\nnode "%~dp0node_modules\\pikakit\\bin\\kit.js" %* `;
|
|
688
|
-
const kitSh = `#!/bin/sh\nnode "$(dirname "$0")/node_modules/pikakit/bin/kit.js" "$@"`;
|
|
689
|
-
fs.writeFileSync(path.join(projectRoot, "kit.cmd"), kitCmd);
|
|
690
|
-
fs.writeFileSync(path.join(projectRoot, "kit"), kitSh, { mode: 0o755 });
|
|
691
|
-
} catch { /* ignore */ }
|
|
692
|
-
} catch (e) { /* ignore */ }
|
|
693
|
-
}
|
|
694
|
-
|
|
695
|
-
// Run npm install silently
|
|
696
|
-
try {
|
|
697
|
-
await execAsync("npm install", { timeout: 120000 });
|
|
698
|
-
} catch (e) { /* ignore */ }
|
|
699
|
-
|
|
700
661
|
// Final success message (single clean box)
|
|
701
662
|
stepLine();
|
|
702
|
-
stepLine();
|
|
703
663
|
console.log(boxen(
|
|
704
664
|
`${c.cyan("Next Steps:")}\n` +
|
|
705
665
|
` ${c.dim("1.")} Use ${c.cyan("/build")} to create apps with multi-agent coordination\n` +
|
|
706
666
|
` ${c.dim("2.")} Use ${c.cyan("/autopilot")} for autonomous end-to-end execution\n` +
|
|
707
|
-
` ${c.dim("3.")} Use ${c.cyan("/think")} to brainstorm before coding
|
|
708
|
-
` ${c.dim("4.")} Run ${c.cyan("npx kit list")} to explore all ${selectedSkills.length} installed skills`,
|
|
667
|
+
` ${c.dim("3.")} Use ${c.cyan("/think")} to brainstorm before coding`,
|
|
709
668
|
{
|
|
710
669
|
padding: 1,
|
|
711
670
|
borderColor: "cyan",
|
|
@@ -714,6 +673,5 @@ export async function run(spec) {
|
|
|
714
673
|
titleAlignment: "center"
|
|
715
674
|
}
|
|
716
675
|
).split("\n").map(l => `${c.gray(S.branch)} ${l}`).join("\n"));
|
|
717
|
-
stepLine();
|
|
718
676
|
step(`${c.green("✓")} ${c.bold("Installation Complete!")}`);
|
|
719
677
|
}
|
package/package.json
CHANGED
|
Binary file
|