pikakit 3.9.88 → 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
- [![npm version](https://img.shields.io/badge/npm-v3.9.88-7c3aed?style=for-the-badge&logo=npm&logoColor=white&labelColor=18181b)](https://www.npmjs.com/package/pikakit)
7
+ [![npm version](https://img.shields.io/badge/npm-v3.9.89-7c3aed?style=for-the-badge&logo=npm&logoColor=white&labelColor=18181b)](https://www.npmjs.com/package/pikakit)
8
8
  [![Skills](https://img.shields.io/badge/skills-67-06b6d4?style=for-the-badge&labelColor=18181b)](https://github.com/pikakit/agent-skills)
9
9
  [![Agents](https://img.shields.io/badge/agents-26-f59e0b?style=for-the-badge&labelColor=18181b)](https://github.com/pikakit/agent-skills)
10
10
  [![Workflows](https://img.shields.io/badge/workflows-25-10b981?style=for-the-badge&labelColor=18181b)](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.88**
421
+ **⚡ PikaKit v3.9.89**
422
422
 
423
423
  *Composable Skills · Coordinated Agents · Intelligent Execution*
424
424
 
@@ -658,52 +658,13 @@ export async function run(spec) {
658
658
 
659
659
  fs.rmSync(tmp, { recursive: true, force: true });
660
660
 
661
- // Install CLI package (silent)
662
- const cliPackage = "pikakit";
663
-
664
- if (isGlobal) {
665
- try {
666
- await execAsync(`npm install -g ${cliPackage}`, { timeout: 120000 });
667
- } catch (e) { /* ignore */ }
668
- } else {
669
- try {
670
- await execAsync(`npm install -D ${cliPackage}`, { timeout: 120000 });
671
-
672
- // Add npm scripts to package.json
673
- try {
674
- const pkgPath = path.join(process.cwd(), "package.json");
675
- if (fs.existsSync(pkgPath)) {
676
- const pkg = JSON.parse(fs.readFileSync(pkgPath, "utf-8"));
677
- pkg.scripts = pkg.scripts || {};
678
- if (!pkg.scripts.kit) pkg.scripts.kit = "kit";
679
- fs.writeFileSync(pkgPath, JSON.stringify(pkg, null, 2) + "\n");
680
- }
681
- } catch { /* ignore */ }
682
-
683
- // Create wrapper scripts
684
- try {
685
- const projectRoot = process.cwd();
686
- const kitCmd = `@echo off\nnode "%~dp0node_modules\\pikakit\\bin\\kit.js" %* `;
687
- const kitSh = `#!/bin/sh\nnode "$(dirname "$0")/node_modules/pikakit/bin/kit.js" "$@"`;
688
- fs.writeFileSync(path.join(projectRoot, "kit.cmd"), kitCmd);
689
- fs.writeFileSync(path.join(projectRoot, "kit"), kitSh, { mode: 0o755 });
690
- } catch { /* ignore */ }
691
- } catch (e) { /* ignore */ }
692
- }
693
-
694
- // Run npm install silently
695
- try {
696
- await execAsync("npm install", { timeout: 120000 });
697
- } catch (e) { /* ignore */ }
698
-
699
661
  // Final success message (single clean box)
700
662
  stepLine();
701
663
  console.log(boxen(
702
664
  `${c.cyan("Next Steps:")}\n` +
703
665
  ` ${c.dim("1.")} Use ${c.cyan("/build")} to create apps with multi-agent coordination\n` +
704
666
  ` ${c.dim("2.")} Use ${c.cyan("/autopilot")} for autonomous end-to-end execution\n` +
705
- ` ${c.dim("3.")} Use ${c.cyan("/think")} to brainstorm before coding\n` +
706
- ` ${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`,
707
668
  {
708
669
  padding: 1,
709
670
  borderColor: "cyan",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pikakit",
3
- "version": "3.9.88",
3
+ "version": "3.9.89",
4
4
  "description": "PikaKit — Install 67 skills, 25 workflows, 26 agents into your AI project. One command.",
5
5
  "license": "MIT",
6
6
  "author": "pikakit <pikakit@gmail.com>",