pikakit 3.9.126 → 3.9.128

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.
@@ -514,6 +514,7 @@ export async function run(spec) {
514
514
  let policyDocsInstalled = 0;
515
515
  let rulesInstalled = 0;
516
516
  let sharedInstalled = false;
517
+ let knowledgeInstalled = false;
517
518
 
518
519
  const targetWorkflowsDir = path.join(WORKSPACE, "..", "workflows");
519
520
  const geminiDest = path.join(WORKSPACE, "..", "GEMINI.md");
@@ -615,6 +616,14 @@ export async function run(spec) {
615
616
  fs.cpSync(sharedDir, targetSharedDir, { recursive: true });
616
617
  sharedInstalled = true;
617
618
  }
619
+
620
+ // Install knowledge scaffold (silent)
621
+ const knowledgeDir = path.join(baseAgentDir, "knowledge");
622
+ const targetKnowledgeDir = path.join(WORKSPACE, "..", "knowledge");
623
+ if (fs.existsSync(knowledgeDir) && !fs.existsSync(targetKnowledgeDir)) {
624
+ fs.cpSync(knowledgeDir, targetKnowledgeDir, { recursive: true });
625
+ knowledgeInstalled = true;
626
+ }
618
627
  } catch (copyErr) {
619
628
  step(c.yellow(`Warning: Some files failed to copy: ${copyErr.message}`), S.diamond, "yellow");
620
629
  if (process.env.DEBUG) console.error(copyErr.stack);
@@ -686,6 +695,7 @@ export async function run(spec) {
686
695
 
687
696
  if (fs.existsSync(geminiDest)) items.push(`${c.cyan("✓")} GEMINI.md`);
688
697
  if (fs.existsSync(archDest)) items.push(`${c.cyan("✓")} ARCHITECTURE.md`);
698
+ if (knowledgeInstalled) items.push(`${c.cyan("✓")} Knowledge Wiki`);
689
699
  if (extensionInstalled) items.push(`${c.cyan("✓")} VS Code Extension`);
690
700
 
691
701
  console.log(boxen(items.join("\n"), {
@@ -704,6 +714,7 @@ export async function run(spec) {
704
714
  ["/think", "Brainstorm ideas, analyze tradeoffs"],
705
715
  ["/plan", "Create implementation plan, task breakdown"],
706
716
  ["/build", "Build full-stack app with multi-agent coordination"],
717
+ ["/cook", "Rapid-fire implementation of targeted coding tasks"],
707
718
  ["/fix", "Apply targeted fixes for specific bugs"],
708
719
  ["/diagnose", "Debug complex issues, find root cause"],
709
720
  ["/inspect", "Multi-layer code review & validation"],
package/bin/lib/ui.js CHANGED
@@ -163,7 +163,7 @@ export function brandedIntro(version, status = "") {
163
163
  }
164
164
 
165
165
  // Version + stats tagline (aligned with other steps)
166
- clackLog.message(c.dim(`v${version} · 51 Skills · 18 Workflows`), { symbol: c.cyan(S.diamond) });
166
+ clackLog.message(c.dim(`v${version} · 52 Skills · 19 Workflows`), { symbol: c.cyan(S.diamond) });
167
167
 
168
168
  if (status) {
169
169
  console.log(`${c.dim(status)}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pikakit",
3
- "version": "3.9.126",
3
+ "version": "3.9.128",
4
4
  "description": "PikaKit FAANG-Grade AI Operating System — Install 51 skills, 18 workflows.",
5
5
  "license": "Proprietary",
6
6
  "author": "pikakit <pikakit@gmail.com>",
@@ -36,7 +36,7 @@ The extension is installed automatically during skill installation.
36
36
  cd packages/pikakit-extension
37
37
  npm install && npm run compile
38
38
  npx @vscode/vsce package --allow-missing-repository
39
- code --install-extension pikakit-engine-3.9.126.vsix
39
+ code --install-extension pikakit-engine-3.9.128.vsix
40
40
  ```
41
41
 
42
42
  ### Local Development
@@ -121,4 +121,4 @@ Autopilot includes dangerous command blocking for:
121
121
 
122
122
  ---
123
123
 
124
- ⚡ PikaKit Engine v3.9.126
124
+ ⚡ PikaKit Engine v3.9.128