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.
- package/dist/src/active-inference/actions.d.ts +5 -3
- package/dist/src/active-inference/actions.js +1273 -40
- package/dist/src/active-inference/active-inference.test.d.ts +5 -0
- package/dist/src/active-inference/active-inference.test.js +21 -0
- package/dist/src/active-inference/core.d.ts +28 -0
- package/dist/src/active-inference/core.js +100 -0
- package/dist/src/active-inference/types.d.ts +1 -1
- package/dist/src/active-inference/types.js +20 -0
- package/dist/src/active-inference/value-integration.js +20 -0
- package/dist/src/agents/agents.test.d.ts +5 -0
- package/dist/src/agents/agents.test.js +21 -0
- package/dist/src/agents/coordinator.d.ts +210 -0
- package/dist/src/agents/coordinator.js +961 -0
- package/dist/src/agents/index.d.ts +1 -0
- package/dist/src/agents/index.js +12 -1
- package/dist/src/brain/brain.test.d.ts +5 -0
- package/dist/src/brain/brain.test.js +21 -0
- package/dist/src/brain/index.d.ts +47 -1
- package/dist/src/brain/index.js +583 -6
- package/dist/src/brain/types.d.ts +21 -1
- package/dist/src/brain/types.js +1 -1
- package/dist/src/cli/chat.d.ts +3 -1
- package/dist/src/cli/chat.js +52 -17
- package/dist/src/cli/dispatcher.d.ts +5 -0
- package/dist/src/cli/dispatcher.js +187 -6
- package/dist/src/cli/ui.d.ts +133 -0
- package/dist/src/cli/ui.js +389 -1
- package/dist/src/diagnostics.d.ts +59 -0
- package/dist/src/diagnostics.js +178 -0
- package/dist/src/execution/index.d.ts +9 -0
- package/dist/src/execution/index.js +24 -0
- package/dist/src/execution/integration.d.ts +63 -0
- package/dist/src/execution/integration.js +376 -0
- package/dist/src/execution/runtime.d.ts +117 -0
- package/dist/src/execution/runtime.js +487 -0
- package/dist/src/execution/shell.d.ts +120 -0
- package/dist/src/execution/shell.js +471 -0
- package/dist/src/index.d.ts +4 -4
- package/dist/src/index.js +6 -6
- package/dist/src/kernel/index.d.ts +28 -1
- package/dist/src/kernel/index.js +59 -0
- package/dist/src/llm/index.d.ts +2 -2
- package/dist/src/llm/index.js +24 -5
- package/dist/src/llm/router.d.ts +4 -0
- package/dist/src/llm/router.js +36 -10
- package/dist/src/mcp/cache.js +5 -0
- package/dist/src/mcp/client-manager.d.ts +250 -0
- package/dist/src/mcp/client-manager.js +732 -0
- package/dist/src/mcp/index.d.ts +1 -0
- package/dist/src/mcp/index.js +48 -0
- package/dist/src/mcp/tool-chain.js +16 -9
- package/dist/src/memory/embeddings.d.ts +86 -0
- package/dist/src/memory/embeddings.js +512 -0
- package/dist/src/memory/index.d.ts +3 -0
- package/dist/src/memory/index.js +4 -0
- package/dist/src/memory/rag.d.ts +209 -0
- package/dist/src/memory/rag.js +653 -0
- package/dist/src/memory/vector-store.d.ts +164 -0
- package/dist/src/memory/vector-store.js +453 -0
- package/dist/src/orchestrator.js +25 -0
- package/dist/src/self-modification/darwin-godel.d.ts +135 -0
- package/dist/src/self-modification/darwin-godel.js +566 -0
- package/dist/src/self-modification/index.d.ts +13 -0
- package/dist/src/self-modification/index.js +22 -0
- package/dist/src/thinking/index.d.ts +1407 -0
- package/dist/src/thinking/index.js +4214 -0
- package/dist/src/types.d.ts +1 -1
- 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,
|
|
28
|
+
parameters?: Record<string, unknown>;
|
|
29
|
+
beliefs?: Record<string, unknown>;
|
|
28
30
|
valueEngine?: unknown;
|
|
29
31
|
useValueAugmentation?: boolean;
|
|
30
32
|
}
|