genesis-ai-cli 7.5.0 → 7.15.1

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 (68) hide show
  1. package/dist/src/active-inference/actions.d.ts +5 -3
  2. package/dist/src/active-inference/actions.js +1273 -40
  3. package/dist/src/active-inference/active-inference.test.d.ts +5 -0
  4. package/dist/src/active-inference/active-inference.test.js +21 -0
  5. package/dist/src/active-inference/core.d.ts +28 -0
  6. package/dist/src/active-inference/core.js +100 -0
  7. package/dist/src/active-inference/types.d.ts +1 -1
  8. package/dist/src/active-inference/types.js +20 -0
  9. package/dist/src/active-inference/value-integration.js +20 -0
  10. package/dist/src/agents/agents.test.d.ts +5 -0
  11. package/dist/src/agents/agents.test.js +21 -0
  12. package/dist/src/agents/coordinator.d.ts +210 -0
  13. package/dist/src/agents/coordinator.js +961 -0
  14. package/dist/src/agents/index.d.ts +1 -0
  15. package/dist/src/agents/index.js +12 -1
  16. package/dist/src/brain/brain.test.d.ts +5 -0
  17. package/dist/src/brain/brain.test.js +21 -0
  18. package/dist/src/brain/index.d.ts +47 -1
  19. package/dist/src/brain/index.js +583 -6
  20. package/dist/src/brain/types.d.ts +21 -1
  21. package/dist/src/brain/types.js +1 -1
  22. package/dist/src/cli/chat.d.ts +3 -1
  23. package/dist/src/cli/chat.js +52 -17
  24. package/dist/src/cli/dispatcher.d.ts +5 -0
  25. package/dist/src/cli/dispatcher.js +187 -6
  26. package/dist/src/cli/ui.d.ts +133 -0
  27. package/dist/src/cli/ui.js +389 -1
  28. package/dist/src/diagnostics.d.ts +59 -0
  29. package/dist/src/diagnostics.js +178 -0
  30. package/dist/src/execution/index.d.ts +9 -0
  31. package/dist/src/execution/index.js +24 -0
  32. package/dist/src/execution/integration.d.ts +63 -0
  33. package/dist/src/execution/integration.js +376 -0
  34. package/dist/src/execution/runtime.d.ts +117 -0
  35. package/dist/src/execution/runtime.js +487 -0
  36. package/dist/src/execution/shell.d.ts +120 -0
  37. package/dist/src/execution/shell.js +471 -0
  38. package/dist/src/index.d.ts +4 -4
  39. package/dist/src/index.js +6 -6
  40. package/dist/src/kernel/index.d.ts +28 -1
  41. package/dist/src/kernel/index.js +59 -0
  42. package/dist/src/llm/index.d.ts +2 -2
  43. package/dist/src/llm/index.js +24 -5
  44. package/dist/src/llm/router.d.ts +4 -0
  45. package/dist/src/llm/router.js +36 -10
  46. package/dist/src/mcp/cache.js +5 -0
  47. package/dist/src/mcp/client-manager.d.ts +250 -0
  48. package/dist/src/mcp/client-manager.js +732 -0
  49. package/dist/src/mcp/index.d.ts +1 -0
  50. package/dist/src/mcp/index.js +48 -0
  51. package/dist/src/mcp/tool-chain.js +16 -9
  52. package/dist/src/memory/embeddings.d.ts +86 -0
  53. package/dist/src/memory/embeddings.js +512 -0
  54. package/dist/src/memory/index.d.ts +3 -0
  55. package/dist/src/memory/index.js +4 -0
  56. package/dist/src/memory/rag.d.ts +209 -0
  57. package/dist/src/memory/rag.js +653 -0
  58. package/dist/src/memory/vector-store.d.ts +164 -0
  59. package/dist/src/memory/vector-store.js +453 -0
  60. package/dist/src/orchestrator.js +25 -0
  61. package/dist/src/self-modification/darwin-godel.d.ts +135 -0
  62. package/dist/src/self-modification/darwin-godel.js +566 -0
  63. package/dist/src/self-modification/index.d.ts +13 -0
  64. package/dist/src/self-modification/index.js +22 -0
  65. package/dist/src/thinking/index.d.ts +1407 -0
  66. package/dist/src/thinking/index.js +4214 -0
  67. package/dist/src/types.d.ts +1 -1
  68. package/package.json +1 -1
@@ -2,14 +2,15 @@
2
2
  * Genesis 6.1 - Action Executors
3
3
  *
4
4
  * Maps discrete actions from Active Inference to actual system operations.
5
+ * v7.6.0: Connected to real PhiMonitor + CognitiveWorkspace
5
6
  *
6
7
  * Actions:
7
8
  * - sense.mcp: Gather data via MCP servers
8
- * - recall.memory: Retrieve from memory
9
+ * - recall.memory: Retrieve from memory via CognitiveWorkspace
9
10
  * - plan.goals: Decompose goals
10
11
  * - verify.ethics: Ethical check
11
12
  * - execute.task: Execute planned task
12
- * - dream.cycle: Memory consolidation
13
+ * - dream.cycle: Memory consolidation via PhiMonitor
13
14
  * - rest.idle: Do nothing
14
15
  * - recharge: Restore energy
15
16
  */
@@ -24,7 +25,8 @@ export interface ActionResult {
24
25
  export interface ActionContext {
25
26
  goal?: string;
26
27
  taskId?: string;
27
- parameters?: Record<string, any>;
28
+ parameters?: Record<string, unknown>;
29
+ beliefs?: Record<string, unknown>;
28
30
  valueEngine?: unknown;
29
31
  useValueAugmentation?: boolean;
30
32
  }