maka-agent 0.2.0-dev.34.20260915 → 0.2.0-dev.36.20260915
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/native/runtime-host-windows-task-launcher/prebuilds/win32-x64/maka-runtime-host-task-launcher.exe +0 -0
- package/node_modules/@maka/core/dist/model-metadata.generated.js +175 -116
- package/node_modules/@maka/core/dist/models-dev-projection.js +1 -0
- package/node_modules/@maka/core/dist/provider-registry.js +17 -0
- package/node_modules/@maka/eval/dist/harbor-maka-subject.js +13 -3
- package/node_modules/@maka/eval/dist/maka-artifacts.js +28 -14
- package/node_modules/@maka/eval/dist/maka-subject.js +28 -3
- package/node_modules/@maka/eval/harbor/relay_agent.py +42 -2
- package/node_modules/@maka/runtime/dist/ai-sdk-backend.js +0 -1
- package/node_modules/@maka/runtime/dist/ai-sdk-compaction.js +40 -53
- package/node_modules/@maka/runtime/dist/ai-sdk-turn.js +28 -47
- package/node_modules/@maka/runtime/dist/builtin-tools.js +20 -12
- package/node_modules/@maka/runtime/dist/openai-codex-history-compactor.js +1 -2
- package/node_modules/@maka/runtime/dist/provider-error-classification.js +29 -38
- package/node_modules/@maka/runtime/dist/runtime-kernel.js +1 -0
- package/node_modules/@maka/runtime/dist/telemetry/model-pricing.generated.js +144 -77
- package/node_modules/@maka/runtime/node_modules/@ai-sdk/code-mode/dist/run-code-mode.js +6 -19
- package/node_modules/@maka/runtime-host/dist/client/connect-or-spawn.js +28 -4
- package/node_modules/@maka/runtime-host/dist/client/connection.js +20 -2
- package/node_modules/@maka/runtime-host/dist/client/hosted-execution-target.js +27 -6
- package/node_modules/@maka/runtime-host/dist/client/hosted-execution.js +10 -28
- package/node_modules/@maka/runtime-host/dist/client/startup-error.js +1 -1
- package/node_modules/@maka/runtime-host/dist/client/wait-for-ready.js +1 -1
- package/node_modules/@maka/runtime-host/dist/control/endpoint.js +7 -6
- package/node_modules/@maka/runtime-host/dist/execution-candidate-main.js +8 -1
- package/node_modules/@maka/runtime-host/dist/protocol/agent-graph.js +1 -11
- package/node_modules/@maka/runtime-host/dist/protocol/client-capability.js +2 -2
- package/node_modules/@maka/runtime-host/dist/protocol/codec.js +11 -0
- package/node_modules/@maka/runtime-host/dist/protocol/index.js +1 -1
- package/node_modules/@maka/runtime-host/dist/protocol/workhub-coordination.js +10 -2
- package/node_modules/@maka/runtime-host/dist/server/bootstrap-runtime-policy.js +65 -0
- package/node_modules/@maka/runtime-host/dist/server/execution-candidate.js +4 -1
- package/node_modules/@maka/runtime-host/dist/server/execution-composition-factory.js +9 -3
- package/node_modules/@maka/runtime-host/dist/server/execution-composition.js +13 -2
- package/node_modules/@maka/runtime-host/dist/server/hosted-execution-tool-profile.js +3 -15
- package/node_modules/@maka/runtime-host/dist/server/interactive-run-composer.js +9 -4
- package/node_modules/@maka/runtime-host/dist/server/message-coordinator.js +1 -2
- package/node_modules/@maka/runtime-host/dist/server/session-catalog-coordinator.js +4 -1
- package/node_modules/@maka/runtime-host/dist/server/workhub-message-attachments.js +1 -0
- package/node_modules/@maka/storage/dist/agent-run-store-contract.js +945 -0
- package/node_modules/@maka/storage/dist/agent-run-store.js +3 -923
- package/node_modules/@maka/storage/dist/artifact-store.js +63 -7
- package/node_modules/@maka/storage/dist/execution-persistence-provider.js +54 -0
- package/node_modules/@maka/storage/dist/execution-stores.js +182 -59
- package/node_modules/@maka/storage/dist/goal-authority.js +39 -8
- package/node_modules/@maka/storage/dist/graph-control-values.js +126 -0
- package/node_modules/@maka/storage/dist/interaction-store-contract.js +231 -0
- package/node_modules/@maka/storage/dist/interaction-store.js +62 -217
- package/node_modules/@maka/storage/dist/local-execution-persistence.js +80 -0
- package/node_modules/@maka/storage/dist/message-admission-store.js +5 -3
- package/node_modules/@maka/storage/dist/root-authority.js +4 -0
- package/node_modules/@maka/{eval/dist/maka-runtime-policy.js → storage/dist/runtime-event-store-contract.js} +1 -24
- package/node_modules/@maka/storage/dist/runtime-partial-values.js +114 -0
- package/node_modules/@maka/storage/dist/session-store-contract.js +61 -0
- package/node_modules/@maka/storage/dist/session-store-values.js +342 -0
- package/node_modules/@maka/storage/dist/session-store.js +7 -351
- package/node_modules/@maka/storage/dist/sqlite-runtime-store.js +4 -185
- package/node_modules/@maka/storage/dist/sqlite-session-metadata-store.js +23 -135
- package/node_modules/@maka/storage/dist/storage-writer-composition.js +2 -3
- package/node_modules/@maka/storage/dist/tool-commit-validation.js +111 -0
- package/node_modules/@maka/storage/package.json +1 -0
- package/package.json +1 -1