pikakit 1.0.38 → 1.0.39

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.
@@ -568,7 +568,8 @@ export async function run(spec) {
568
568
 
569
569
  // Install knowledge if it exists (required for Agent CLI)
570
570
  const knowledgeDir = path.join(baseAgentDir, "knowledge");
571
- const targetKnowledgeDir = path.join(WORKSPACE, "..", "knowledge");
571
+ // FIXED: targetKnowledgeDir must be inside .agent folder to match dashboard-server.js
572
+ const targetKnowledgeDir = path.join(WORKSPACE, "knowledge");
572
573
  let knowledgeInstalled = false;
573
574
 
574
575
  // DEBUG: Log paths for troubleshooting
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pikakit",
3
- "version": "1.0.38",
3
+ "version": "1.0.39",
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": "pikakit <pikakit@gmail.com>",