@vpxa/aikit 0.1.273 → 0.1.275

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.
Files changed (33) hide show
  1. package/package.json +7 -1
  2. package/packages/cli/dist/index.js +14 -14
  3. package/packages/cli/dist/{init-DCs4TWh6.js → init-B3a2fygD.js} +1 -1
  4. package/packages/cli/dist/scaffold-BNPHP-QC.js +2 -0
  5. package/packages/cli/dist/{templates-C92mODRl.js → templates-CDa0UuoE.js} +19 -19
  6. package/packages/core/dist/index.d.ts +45 -17
  7. package/packages/core/dist/index.js +1 -1
  8. package/packages/flows/dist/index.d.ts +23 -2
  9. package/packages/flows/dist/index.js +1 -1
  10. package/packages/server/dist/bin.js +6 -6
  11. package/packages/server/dist/config-DZ-6Zy94.js +2 -0
  12. package/packages/server/dist/config-DxWyWSb9.js +1 -0
  13. package/packages/server/dist/curated-manager-C5uOPept.js +7 -0
  14. package/packages/server/dist/index.js +1 -1
  15. package/packages/server/dist/{promotion-BNEScZVD.js → promotion-D9anNXv8.js} +1 -1
  16. package/packages/server/dist/{routes-CR3fI-HJ.js → routes-1wkXLxXe.js} +1 -1
  17. package/packages/server/dist/{routes-Afg7J7xK.js → routes-KC-D2U8n.js} +1 -1
  18. package/packages/server/dist/{server-4h0Cclv3.js → server-CkCRBlz4.js} +93 -93
  19. package/packages/server/dist/{server-DIz2FGOX.js → server-DlE6A6sd.js} +93 -93
  20. package/packages/server/dist/{version-check-gazMo-D4.js → version-check-CgfflkJX.js} +1 -1
  21. package/packages/server/dist/{version-check-BgHzxxCW.js → version-check-ruLtfyDd.js} +1 -1
  22. package/packages/server/viewers/canvas.html +2 -1
  23. package/packages/server/viewers/task-plan-static.html +2 -1
  24. package/packages/tools/dist/index.d.ts +5 -5
  25. package/packages/tools/dist/index.js +72 -72
  26. package/scaffold/dist/adapters/copilot.mjs +19 -19
  27. package/scaffold/dist/definitions/hooks.mjs +1 -1
  28. package/scaffold/dist/definitions/skills/c4-architecture.mjs +1 -1
  29. package/scaffold/dist/definitions/skills/session-handoff.mjs +2 -732
  30. package/packages/cli/dist/scaffold-BnhmnBfn.js +0 -2
  31. package/packages/server/dist/config-CZuVxRpX.js +0 -1
  32. package/packages/server/dist/config-WpN5CWM7.js +0 -2
  33. package/packages/server/dist/curated-manager-CfwN96rp.js +0 -7
@@ -481,7 +481,7 @@ declare function compact(embedder: IEmbedder, options: CompactOptions): Promise<
481
481
  * Replay — append-only audit trail of tool/CLI invocations.
482
482
  *
483
483
  * Captures tool name, arguments (redacted), duration, and result summary
484
- * to `.aikit-state/replay.jsonl`. Used by `aikit replay` CLI, `aikit_replay` MCP tool,
484
+ * to the AI Kit state directory replay log. Used by `aikit replay` CLI, `aikit_replay` MCP tool,
485
485
  * and the TUI log panel.
486
486
  */
487
487
  interface ReplayEntry {
@@ -888,7 +888,7 @@ declare function digest(embedder: IEmbedder, options: DigestOptions): Promise<Di
888
888
  /**
889
889
  * aikit_dogfood — Review persistent warn/error logs for dogfooding.
890
890
  *
891
- * Reads daily JSONL log files from .aikit-state/logs/ and returns a
891
+ * Reads daily JSONL log files from ~/.aikit/logs/ and returns a
892
892
  * summarized or detailed view of recent issues. Useful for periodic
893
893
  * review cycles to identify and fix recurring problems.
894
894
  */
@@ -995,7 +995,7 @@ declare function evaluate(options: EvalOptions): Promise<EvalResult>;
995
995
  * aikit_evidence_map — FORGE Evidence Map CRUD + Gate evaluator.
996
996
  *
997
997
  * Structured storage, validation, and gate evaluation for FORGE Evidence Map entries.
998
- * Persisted in .aikit-state/evidence-maps.json.
998
+ * Persisted in the AI Kit state directory.
999
999
  */
1000
1000
  type EvidenceStatus = 'V' | 'A' | 'U';
1001
1001
  type TimeoutAction = 'iterate' | 'retry' | 'manual' | 'terminate';
@@ -1604,7 +1604,7 @@ interface LaneMergeResult {
1604
1604
  files: string[];
1605
1605
  }
1606
1606
  /**
1607
- * Create an isolated lane by copying specified files into `.aikit-state/lanes/<name>/`.
1607
+ * Create an isolated lane by copying specified files into the AI Kit state directory.
1608
1608
  * Files are stored with their relative paths preserved.
1609
1609
  */
1610
1610
  declare function laneCreate(name: string, files: string[], cwd?: string): LaneMeta;
@@ -2465,7 +2465,7 @@ declare function parseSearchResults(html: string, query: string, limit: number):
2465
2465
  /**
2466
2466
  * aikit_workset — Named file set management.
2467
2467
  *
2468
- * Persistent worksets stored in .aikit-state/worksets.json.
2468
+ * Persistent worksets stored in the AI Kit state directory.
2469
2469
  * Use cases: "remember this set of files I'm working on",
2470
2470
  * "load my previous context", "share file sets between sessions".
2471
2471
  */