pulseed 0.6.5 → 0.6.6
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/README.md +105 -86
- package/dist/adapters/datasources/artifact-metric-datasource.d.ts +1 -1
- package/dist/adapters/datasources/artifact-metric-datasource.d.ts.map +1 -1
- package/dist/adapters/datasources/artifact-metric-datasource.js +2 -248
- package/dist/adapters/datasources/artifact-metric-datasource.js.map +1 -1
- package/dist/adapters/datasources/artifact-metric-discovery.d.ts +44 -0
- package/dist/adapters/datasources/artifact-metric-discovery.d.ts.map +1 -0
- package/dist/adapters/datasources/artifact-metric-discovery.js +256 -0
- package/dist/adapters/datasources/artifact-metric-discovery.js.map +1 -0
- package/dist/adapters/datasources/mcp-datasource.d.ts.map +1 -1
- package/dist/adapters/datasources/mcp-datasource.js +2 -4
- package/dist/adapters/datasources/mcp-datasource.js.map +1 -1
- package/dist/adapters/datasources/shell-datasource.d.ts.map +1 -1
- package/dist/adapters/datasources/shell-datasource.js +9 -2
- package/dist/adapters/datasources/shell-datasource.js.map +1 -1
- package/dist/adapters/mcp-client-manager.d.ts +1 -0
- package/dist/adapters/mcp-client-manager.d.ts.map +1 -1
- package/dist/adapters/mcp-client-manager.js +8 -3
- package/dist/adapters/mcp-client-manager.js.map +1 -1
- package/dist/adapters/types/a2a.d.ts +6 -6
- package/dist/adapters/types/mcp.d.ts +6 -6
- package/dist/base/config/global-config.d.ts +65 -6
- package/dist/base/config/global-config.d.ts.map +1 -1
- package/dist/base/config/global-config.js +73 -24
- package/dist/base/config/global-config.js.map +1 -1
- package/dist/base/config/identity-loader.d.ts +1 -1
- package/dist/base/config/identity-loader.d.ts.map +1 -1
- package/dist/base/config/identity-loader.js +3 -6
- package/dist/base/config/identity-loader.js.map +1 -1
- package/dist/base/config/tool-metadata.js +39 -39
- package/dist/base/config/tool-metadata.js.map +1 -1
- package/dist/base/llm/anthropic-runtime.d.ts +3 -0
- package/dist/base/llm/anthropic-runtime.d.ts.map +1 -0
- package/dist/base/llm/anthropic-runtime.js +4 -0
- package/dist/base/llm/anthropic-runtime.js.map +1 -0
- package/dist/base/llm/base-llm-client.d.ts.map +1 -1
- package/dist/base/llm/base-llm-client.js +15 -3
- package/dist/base/llm/base-llm-client.js.map +1 -1
- package/dist/base/llm/codex-llm-client.d.ts +13 -2
- package/dist/base/llm/codex-llm-client.d.ts.map +1 -1
- package/dist/base/llm/codex-llm-client.js +435 -38
- package/dist/base/llm/codex-llm-client.js.map +1 -1
- package/dist/base/llm/llm-client.d.ts +27 -4
- package/dist/base/llm/llm-client.d.ts.map +1 -1
- package/dist/base/llm/llm-client.js +43 -10
- package/dist/base/llm/llm-client.js.map +1 -1
- package/dist/base/llm/ollama-client.d.ts.map +1 -1
- package/dist/base/llm/ollama-client.js +6 -1
- package/dist/base/llm/ollama-client.js.map +1 -1
- package/dist/base/llm/openai-client.d.ts +1 -0
- package/dist/base/llm/openai-client.d.ts.map +1 -1
- package/dist/base/llm/openai-client.js +239 -20
- package/dist/base/llm/openai-client.js.map +1 -1
- package/dist/base/llm/provider-config-models.d.ts +13 -0
- package/dist/base/llm/provider-config-models.d.ts.map +1 -0
- package/dist/base/llm/provider-config-models.js +37 -0
- package/dist/base/llm/provider-config-models.js.map +1 -0
- package/dist/base/llm/provider-config-resolution.d.ts +18 -0
- package/dist/base/llm/provider-config-resolution.d.ts.map +1 -0
- package/dist/base/llm/provider-config-resolution.js +116 -0
- package/dist/base/llm/provider-config-resolution.js.map +1 -0
- package/dist/base/llm/provider-config-types.d.ts +103 -0
- package/dist/base/llm/provider-config-types.d.ts.map +1 -0
- package/dist/base/llm/provider-config-types.js +2 -0
- package/dist/base/llm/provider-config-types.js.map +1 -0
- package/dist/base/llm/provider-config.d.ts +3 -111
- package/dist/base/llm/provider-config.d.ts.map +1 -1
- package/dist/base/llm/provider-config.js +22 -160
- package/dist/base/llm/provider-config.js.map +1 -1
- package/dist/base/llm/provider-factory.d.ts +10 -0
- package/dist/base/llm/provider-factory.d.ts.map +1 -1
- package/dist/base/llm/provider-factory.js +26 -1
- package/dist/base/llm/provider-factory.js.map +1 -1
- package/dist/base/state/legacy-archived-goal-recovery.d.ts +8 -0
- package/dist/base/state/legacy-archived-goal-recovery.d.ts.map +1 -0
- package/dist/base/state/legacy-archived-goal-recovery.js +29 -0
- package/dist/base/state/legacy-archived-goal-recovery.js.map +1 -0
- package/dist/base/state/legacy-state-manager-wal-recovery.d.ts +13 -0
- package/dist/base/state/legacy-state-manager-wal-recovery.d.ts.map +1 -0
- package/dist/base/state/legacy-state-manager-wal-recovery.js +102 -0
- package/dist/base/state/legacy-state-manager-wal-recovery.js.map +1 -0
- package/dist/base/state/{state-wal.d.ts → legacy-state-wal.d.ts} +7 -1
- package/dist/base/state/legacy-state-wal.d.ts.map +1 -0
- package/dist/base/state/{state-wal.js → legacy-state-wal.js} +50 -2
- package/dist/base/state/legacy-state-wal.js.map +1 -0
- package/dist/base/state/state-manager.d.ts +73 -44
- package/dist/base/state/state-manager.d.ts.map +1 -1
- package/dist/base/state/state-manager.js +492 -265
- package/dist/base/state/state-manager.js.map +1 -1
- package/dist/base/state/state-snapshot.d.ts.map +1 -1
- package/dist/base/state/state-snapshot.js +16 -3
- package/dist/base/state/state-snapshot.js.map +1 -1
- package/dist/base/types/time-horizon.d.ts +1 -0
- package/dist/base/types/time-horizon.d.ts.map +1 -1
- package/dist/base/types/time-horizon.js +20 -19
- package/dist/base/types/time-horizon.js.map +1 -1
- package/dist/base/utils/abort-reason.d.ts +11 -0
- package/dist/base/utils/abort-reason.d.ts.map +1 -0
- package/dist/base/utils/abort-reason.js +17 -0
- package/dist/base/utils/abort-reason.js.map +1 -0
- package/dist/base/utils/event-spool.d.ts +26 -0
- package/dist/base/utils/event-spool.d.ts.map +1 -0
- package/dist/base/utils/event-spool.js +149 -0
- package/dist/base/utils/event-spool.js.map +1 -0
- package/dist/base/utils/execFileNoThrow.d.ts.map +1 -1
- package/dist/base/utils/execFileNoThrow.js +21 -3
- package/dist/base/utils/execFileNoThrow.js.map +1 -1
- package/dist/base/utils/json-io.d.ts +25 -1
- package/dist/base/utils/json-io.d.ts.map +1 -1
- package/dist/base/utils/json-io.js +144 -3
- package/dist/base/utils/json-io.js.map +1 -1
- package/dist/base/utils/package-metadata.d.ts +10 -0
- package/dist/base/utils/package-metadata.d.ts.map +1 -0
- package/dist/base/utils/package-metadata.js +40 -0
- package/dist/base/utils/package-metadata.js.map +1 -0
- package/dist/base/utils/paths.d.ts +2 -0
- package/dist/base/utils/paths.d.ts.map +1 -1
- package/dist/base/utils/paths.js +6 -0
- package/dist/base/utils/paths.js.map +1 -1
- package/dist/base/utils/process-pid.d.ts +15 -0
- package/dist/base/utils/process-pid.d.ts.map +1 -0
- package/dist/base/utils/process-pid.js +45 -0
- package/dist/base/utils/process-pid.js.map +1 -0
- package/dist/base/utils/usage-counter.d.ts +14 -0
- package/dist/base/utils/usage-counter.d.ts.map +1 -0
- package/dist/base/utils/usage-counter.js +50 -0
- package/dist/base/utils/usage-counter.js.map +1 -0
- package/dist/grounding/contracts.d.ts +2 -0
- package/dist/grounding/contracts.d.ts.map +1 -1
- package/dist/grounding/profile-surface.d.ts +30 -0
- package/dist/grounding/profile-surface.d.ts.map +1 -0
- package/dist/grounding/profile-surface.js +257 -0
- package/dist/grounding/profile-surface.js.map +1 -0
- package/dist/grounding/providers/helpers.d.ts +6 -1
- package/dist/grounding/providers/helpers.d.ts.map +1 -1
- package/dist/grounding/providers/helpers.js +11 -3
- package/dist/grounding/providers/helpers.js.map +1 -1
- package/dist/grounding/providers/knowledge-provider.d.ts.map +1 -1
- package/dist/grounding/providers/knowledge-provider.js +22 -5
- package/dist/grounding/providers/knowledge-provider.js.map +1 -1
- package/dist/grounding/providers/session-history-provider.d.ts.map +1 -1
- package/dist/grounding/providers/session-history-provider.js +12 -22
- package/dist/grounding/providers/session-history-provider.js.map +1 -1
- package/dist/grounding/providers/soil-provider.d.ts.map +1 -1
- package/dist/grounding/providers/soil-provider.js +65 -10
- package/dist/grounding/providers/soil-provider.js.map +1 -1
- package/dist/grounding/providers/task-state-provider.d.ts.map +1 -1
- package/dist/grounding/providers/task-state-provider.js +7 -27
- package/dist/grounding/providers/task-state-provider.js.map +1 -1
- package/dist/grounding/providers/trust-state-provider.d.ts.map +1 -1
- package/dist/grounding/providers/trust-state-provider.js +5 -4
- package/dist/grounding/providers/trust-state-provider.js.map +1 -1
- package/dist/grounding/surface-contract-source-helpers.d.ts +37 -0
- package/dist/grounding/surface-contract-source-helpers.d.ts.map +1 -0
- package/dist/grounding/surface-contract-source-helpers.js +58 -0
- package/dist/grounding/surface-contract-source-helpers.js.map +1 -0
- package/dist/grounding/surface-contracts.d.ts +19531 -0
- package/dist/grounding/surface-contracts.d.ts.map +1 -0
- package/dist/grounding/surface-contracts.js +1352 -0
- package/dist/grounding/surface-contracts.js.map +1 -0
- package/dist/index.d.ts +17 -7
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9 -4
- package/dist/index.js.map +1 -1
- package/dist/interface/chat/chat-agentloop-state-migration.d.ts +14 -0
- package/dist/interface/chat/chat-agentloop-state-migration.d.ts.map +1 -0
- package/dist/interface/chat/chat-agentloop-state-migration.js +252 -0
- package/dist/interface/chat/chat-agentloop-state-migration.js.map +1 -0
- package/dist/interface/chat/chat-command-args.d.ts +47 -0
- package/dist/interface/chat/chat-command-args.d.ts.map +1 -0
- package/dist/interface/chat/chat-command-args.js +134 -0
- package/dist/interface/chat/chat-command-args.js.map +1 -0
- package/dist/interface/chat/chat-event-state.d.ts.map +1 -1
- package/dist/interface/chat/chat-event-state.js +17 -0
- package/dist/interface/chat/chat-event-state.js.map +1 -1
- package/dist/interface/chat/chat-events.d.ts +23 -11
- package/dist/interface/chat/chat-events.d.ts.map +1 -1
- package/dist/interface/chat/chat-history.d.ts +18 -8969
- package/dist/interface/chat/chat-history.d.ts.map +1 -1
- package/dist/interface/chat/chat-history.js +67 -182
- package/dist/interface/chat/chat-history.js.map +1 -1
- package/dist/interface/chat/chat-runner-command-helpers.d.ts +4 -8
- package/dist/interface/chat/chat-runner-command-helpers.d.ts.map +1 -1
- package/dist/interface/chat/chat-runner-command-helpers.js +25 -50
- package/dist/interface/chat/chat-runner-command-helpers.js.map +1 -1
- package/dist/interface/chat/chat-runner-commands.d.ts +2 -9
- package/dist/interface/chat/chat-runner-commands.d.ts.map +1 -1
- package/dist/interface/chat/chat-runner-commands.js +112 -254
- package/dist/interface/chat/chat-runner-commands.js.map +1 -1
- package/dist/interface/chat/chat-runner-contracts.d.ts +34 -3
- package/dist/interface/chat/chat-runner-contracts.d.ts.map +1 -1
- package/dist/interface/chat/chat-runner-event-bridge.d.ts +35 -21
- package/dist/interface/chat/chat-runner-event-bridge.d.ts.map +1 -1
- package/dist/interface/chat/chat-runner-event-bridge.js +406 -71
- package/dist/interface/chat/chat-runner-event-bridge.js.map +1 -1
- package/dist/interface/chat/chat-runner-guardrail-status.d.ts +12 -0
- package/dist/interface/chat/chat-runner-guardrail-status.d.ts.map +1 -0
- package/dist/interface/chat/chat-runner-guardrail-status.js +173 -0
- package/dist/interface/chat/chat-runner-guardrail-status.js.map +1 -0
- package/dist/interface/chat/chat-runner-routes.d.ts +34 -88
- package/dist/interface/chat/chat-runner-routes.d.ts.map +1 -1
- package/dist/interface/chat/chat-runner-routes.js +815 -426
- package/dist/interface/chat/chat-runner-routes.js.map +1 -1
- package/dist/interface/chat/chat-runner-runtime.d.ts +9 -4
- package/dist/interface/chat/chat-runner-runtime.d.ts.map +1 -1
- package/dist/interface/chat/chat-runner-runtime.js +47 -17
- package/dist/interface/chat/chat-runner-runtime.js.map +1 -1
- package/dist/interface/chat/chat-runner-setup-format.d.ts +11 -0
- package/dist/interface/chat/chat-runner-setup-format.d.ts.map +1 -0
- package/dist/interface/chat/chat-runner-setup-format.js +28 -0
- package/dist/interface/chat/chat-runner-setup-format.js.map +1 -0
- package/dist/interface/chat/chat-runner-state.d.ts +2 -6
- package/dist/interface/chat/chat-runner-state.d.ts.map +1 -1
- package/dist/interface/chat/chat-runner-state.js +22 -128
- package/dist/interface/chat/chat-runner-state.js.map +1 -1
- package/dist/interface/chat/chat-runner-support.d.ts +2 -2
- package/dist/interface/chat/chat-runner.d.ts +36 -1
- package/dist/interface/chat/chat-runner.d.ts.map +1 -1
- package/dist/interface/chat/chat-runner.js +449 -188
- package/dist/interface/chat/chat-runner.js.map +1 -1
- package/dist/interface/chat/chat-session-contracts.d.ts +8872 -0
- package/dist/interface/chat/chat-session-contracts.d.ts.map +1 -0
- package/dist/interface/chat/chat-session-contracts.js +143 -0
- package/dist/interface/chat/chat-session-contracts.js.map +1 -0
- package/dist/interface/chat/chat-session-data-store.d.ts +26 -0
- package/dist/interface/chat/chat-session-data-store.d.ts.map +1 -0
- package/dist/interface/chat/chat-session-data-store.js +227 -0
- package/dist/interface/chat/chat-session-data-store.js.map +1 -0
- package/dist/interface/chat/chat-session-store.d.ts +8 -3
- package/dist/interface/chat/chat-session-store.d.ts.map +1 -1
- package/dist/interface/chat/chat-session-store.js +111 -246
- package/dist/interface/chat/chat-session-store.js.map +1 -1
- package/dist/interface/chat/chat-state-base-dir.d.ts +3 -0
- package/dist/interface/chat/chat-state-base-dir.d.ts.map +1 -0
- package/dist/interface/chat/chat-state-base-dir.js +17 -0
- package/dist/interface/chat/chat-state-base-dir.js.map +1 -0
- package/dist/interface/chat/chat-state-service.d.ts.map +1 -1
- package/dist/interface/chat/chat-state-service.js +2 -3
- package/dist/interface/chat/chat-state-service.js.map +1 -1
- package/dist/interface/chat/chat-usage-contracts.d.ts +102 -0
- package/dist/interface/chat/chat-usage-contracts.d.ts.map +1 -0
- package/dist/interface/chat/chat-usage-contracts.js +17 -0
- package/dist/interface/chat/chat-usage-contracts.js.map +1 -0
- package/dist/interface/chat/chat-usage.d.ts +12 -0
- package/dist/interface/chat/chat-usage.d.ts.map +1 -0
- package/dist/interface/chat/chat-usage.js +38 -0
- package/dist/interface/chat/chat-usage.js.map +1 -0
- package/dist/interface/chat/cross-platform-session-normalization.d.ts +50 -0
- package/dist/interface/chat/cross-platform-session-normalization.d.ts.map +1 -0
- package/dist/interface/chat/cross-platform-session-normalization.js +134 -0
- package/dist/interface/chat/cross-platform-session-normalization.js.map +1 -0
- package/dist/interface/chat/cross-platform-session-types.d.ts +105 -0
- package/dist/interface/chat/cross-platform-session-types.d.ts.map +1 -0
- package/dist/interface/chat/cross-platform-session-types.js +2 -0
- package/dist/interface/chat/cross-platform-session-types.js.map +1 -0
- package/dist/interface/chat/cross-platform-session.d.ts +12 -101
- package/dist/interface/chat/cross-platform-session.d.ts.map +1 -1
- package/dist/interface/chat/cross-platform-session.js +410 -220
- package/dist/interface/chat/cross-platform-session.js.map +1 -1
- package/dist/interface/chat/event-subscriber.d.ts.map +1 -1
- package/dist/interface/chat/event-subscriber.js +3 -2
- package/dist/interface/chat/event-subscriber.js.map +1 -1
- package/dist/interface/chat/failure-recovery.d.ts +5 -5
- package/dist/interface/chat/failure-recovery.d.ts.map +1 -1
- package/dist/interface/chat/failure-recovery.js +23 -18
- package/dist/interface/chat/failure-recovery.js.map +1 -1
- package/dist/interface/chat/feedback-ingestion.d.ts +17 -0
- package/dist/interface/chat/feedback-ingestion.d.ts.map +1 -0
- package/dist/interface/chat/feedback-ingestion.js +140 -0
- package/dist/interface/chat/feedback-ingestion.js.map +1 -0
- package/dist/interface/chat/gateway-progress.d.ts +17 -0
- package/dist/interface/chat/gateway-progress.d.ts.map +1 -0
- package/dist/interface/chat/gateway-progress.js +2 -0
- package/dist/interface/chat/gateway-progress.js.map +1 -0
- package/dist/interface/chat/grounding.d.ts.map +1 -1
- package/dist/interface/chat/grounding.js +2 -0
- package/dist/interface/chat/grounding.js.map +1 -1
- package/dist/interface/chat/ingress-router.d.ts +11 -63
- package/dist/interface/chat/ingress-router.d.ts.map +1 -1
- package/dist/interface/chat/ingress-router.js +90 -142
- package/dist/interface/chat/ingress-router.js.map +1 -1
- package/dist/interface/chat/ingress-types.d.ts +52 -0
- package/dist/interface/chat/ingress-types.d.ts.map +1 -0
- package/dist/interface/chat/ingress-types.js +2 -0
- package/dist/interface/chat/ingress-types.js.map +1 -0
- package/dist/interface/chat/operation-progress.d.ts +2 -0
- package/dist/interface/chat/operation-progress.d.ts.map +1 -1
- package/dist/interface/chat/operation-progress.js +1 -0
- package/dist/interface/chat/operation-progress.js.map +1 -1
- package/dist/interface/chat/recovery-resume.d.ts +33 -0
- package/dist/interface/chat/recovery-resume.d.ts.map +1 -0
- package/dist/interface/chat/recovery-resume.js +92 -0
- package/dist/interface/chat/recovery-resume.js.map +1 -0
- package/dist/interface/chat/resume-choice.d.ts +2 -0
- package/dist/interface/chat/resume-choice.d.ts.map +1 -0
- package/dist/interface/chat/resume-choice.js +10 -0
- package/dist/interface/chat/resume-choice.js.map +1 -0
- package/dist/interface/chat/runtime-evidence-gate.d.ts +17 -0
- package/dist/interface/chat/runtime-evidence-gate.d.ts.map +1 -0
- package/dist/interface/chat/runtime-evidence-gate.js +171 -0
- package/dist/interface/chat/runtime-evidence-gate.js.map +1 -0
- package/dist/interface/chat/seedy-presence-text.d.ts +7 -0
- package/dist/interface/chat/seedy-presence-text.d.ts.map +1 -0
- package/dist/interface/chat/seedy-presence-text.js +78 -0
- package/dist/interface/chat/seedy-presence-text.js.map +1 -0
- package/dist/interface/chat/seedy-presence-view-model.d.ts +15 -0
- package/dist/interface/chat/seedy-presence-view-model.d.ts.map +1 -0
- package/dist/interface/chat/seedy-presence-view-model.js +90 -0
- package/dist/interface/chat/seedy-presence-view-model.js.map +1 -0
- package/dist/interface/chat/seedy-turn-presence.d.ts +103 -0
- package/dist/interface/chat/seedy-turn-presence.d.ts.map +1 -0
- package/dist/interface/chat/seedy-turn-presence.js +195 -0
- package/dist/interface/chat/seedy-turn-presence.js.map +1 -0
- package/dist/interface/chat/setup-config-write.js +1 -1
- package/dist/interface/chat/setup-config-write.js.map +1 -1
- package/dist/interface/chat/telegram-setup-guidance.d.ts +55 -0
- package/dist/interface/chat/telegram-setup-guidance.d.ts.map +1 -0
- package/dist/interface/chat/telegram-setup-guidance.js +105 -0
- package/dist/interface/chat/telegram-setup-guidance.js.map +1 -0
- package/dist/interface/chat/tend-command.d.ts +1 -0
- package/dist/interface/chat/tend-command.d.ts.map +1 -1
- package/dist/interface/chat/tend-command.js +67 -15
- package/dist/interface/chat/tend-command.js.map +1 -1
- package/dist/interface/chat/turn-context.d.ts +2 -0
- package/dist/interface/chat/turn-context.d.ts.map +1 -1
- package/dist/interface/chat/turn-context.js +2 -0
- package/dist/interface/chat/turn-context.js.map +1 -1
- package/dist/interface/chat/turn-language.d.ts +0 -1
- package/dist/interface/chat/turn-language.d.ts.map +1 -1
- package/dist/interface/chat/turn-language.js +0 -3
- package/dist/interface/chat/turn-language.js.map +1 -1
- package/dist/interface/chat/turn-protocol.d.ts +1 -2
- package/dist/interface/chat/turn-protocol.d.ts.map +1 -1
- package/dist/interface/chat/turn-protocol.js.map +1 -1
- package/dist/interface/chat/turn-state.d.ts +22 -0
- package/dist/interface/chat/turn-state.d.ts.map +1 -0
- package/dist/interface/chat/turn-state.js +2 -0
- package/dist/interface/chat/turn-state.js.map +1 -0
- package/dist/interface/cli/cli-command-registry.d.ts +6 -6
- package/dist/interface/cli/cli-command-registry.d.ts.map +1 -1
- package/dist/interface/cli/cli-command-registry.js +55 -50
- package/dist/interface/cli/cli-command-registry.js.map +1 -1
- package/dist/interface/cli/cli-runner.d.ts +2 -2
- package/dist/interface/cli/cli-runner.d.ts.map +1 -1
- package/dist/interface/cli/cli-runner.js +85 -9
- package/dist/interface/cli/cli-runner.js.map +1 -1
- package/dist/interface/cli/commands/approval.d.ts +1 -1
- package/dist/interface/cli/commands/approval.d.ts.map +1 -1
- package/dist/interface/cli/commands/approval.js +2 -33
- package/dist/interface/cli/commands/approval.js.map +1 -1
- package/dist/interface/cli/commands/config.d.ts +2 -2
- package/dist/interface/cli/commands/config.d.ts.map +1 -1
- package/dist/interface/cli/commands/config.js +85 -28
- package/dist/interface/cli/commands/config.js.map +1 -1
- package/dist/interface/cli/commands/daemon-shared.d.ts +4 -7
- package/dist/interface/cli/commands/daemon-shared.d.ts.map +1 -1
- package/dist/interface/cli/commands/daemon-shared.js +46 -52
- package/dist/interface/cli/commands/daemon-shared.js.map +1 -1
- package/dist/interface/cli/commands/daemon-status-health.d.ts +16 -0
- package/dist/interface/cli/commands/daemon-status-health.d.ts.map +1 -0
- package/dist/interface/cli/commands/daemon-status-health.js +134 -0
- package/dist/interface/cli/commands/daemon-status-health.js.map +1 -0
- package/dist/interface/cli/commands/daemon.d.ts +8 -2
- package/dist/interface/cli/commands/daemon.d.ts.map +1 -1
- package/dist/interface/cli/commands/daemon.js +155 -111
- package/dist/interface/cli/commands/daemon.js.map +1 -1
- package/dist/interface/cli/commands/display-format.d.ts +8 -0
- package/dist/interface/cli/commands/display-format.d.ts.map +1 -0
- package/dist/interface/cli/commands/display-format.js +79 -0
- package/dist/interface/cli/commands/display-format.js.map +1 -0
- package/dist/interface/cli/commands/doctor.d.ts +2 -1
- package/dist/interface/cli/commands/doctor.d.ts.map +1 -1
- package/dist/interface/cli/commands/doctor.js +172 -80
- package/dist/interface/cli/commands/doctor.js.map +1 -1
- package/dist/interface/cli/commands/exact-number.d.ts +2 -0
- package/dist/interface/cli/commands/exact-number.d.ts.map +1 -0
- package/dist/interface/cli/commands/exact-number.js +9 -0
- package/dist/interface/cli/commands/exact-number.js.map +1 -0
- package/dist/interface/cli/commands/gateway.d.ts +1 -1
- package/dist/interface/cli/commands/gateway.d.ts.map +1 -1
- package/dist/interface/cli/commands/gateway.js +40 -1
- package/dist/interface/cli/commands/gateway.js.map +1 -1
- package/dist/interface/cli/commands/goal-dispatch.d.ts.map +1 -1
- package/dist/interface/cli/commands/goal-dispatch.js +9 -2
- package/dist/interface/cli/commands/goal-dispatch.js.map +1 -1
- package/dist/interface/cli/commands/goal-read.d.ts +8 -2
- package/dist/interface/cli/commands/goal-read.d.ts.map +1 -1
- package/dist/interface/cli/commands/goal-read.js +143 -70
- package/dist/interface/cli/commands/goal-read.js.map +1 -1
- package/dist/interface/cli/commands/goal-utils.d.ts +5 -12
- package/dist/interface/cli/commands/goal-utils.d.ts.map +1 -1
- package/dist/interface/cli/commands/goal-utils.js +27 -20
- package/dist/interface/cli/commands/goal-utils.js.map +1 -1
- package/dist/interface/cli/commands/goal-write.d.ts +2 -2
- package/dist/interface/cli/commands/goal-write.d.ts.map +1 -1
- package/dist/interface/cli/commands/goal-write.js +17 -7
- package/dist/interface/cli/commands/goal-write.js.map +1 -1
- package/dist/interface/cli/commands/goal.d.ts +1 -1
- package/dist/interface/cli/commands/goal.d.ts.map +1 -1
- package/dist/interface/cli/commands/goal.js +1 -1
- package/dist/interface/cli/commands/goal.js.map +1 -1
- package/dist/interface/cli/commands/install.d.ts +1 -0
- package/dist/interface/cli/commands/install.d.ts.map +1 -1
- package/dist/interface/cli/commands/install.js +20 -4
- package/dist/interface/cli/commands/install.js.map +1 -1
- package/dist/interface/cli/commands/logs.d.ts +1 -0
- package/dist/interface/cli/commands/logs.d.ts.map +1 -1
- package/dist/interface/cli/commands/logs.js +23 -4
- package/dist/interface/cli/commands/logs.js.map +1 -1
- package/dist/interface/cli/commands/notify.d.ts.map +1 -1
- package/dist/interface/cli/commands/notify.js +59 -15
- package/dist/interface/cli/commands/notify.js.map +1 -1
- package/dist/interface/cli/commands/operator-binding-status.d.ts +2 -0
- package/dist/interface/cli/commands/operator-binding-status.d.ts.map +1 -1
- package/dist/interface/cli/commands/operator-binding-status.js +191 -14
- package/dist/interface/cli/commands/operator-binding-status.js.map +1 -1
- package/dist/interface/cli/commands/plugin.d.ts.map +1 -1
- package/dist/interface/cli/commands/plugin.js +54 -40
- package/dist/interface/cli/commands/plugin.js.map +1 -1
- package/dist/interface/cli/commands/profile.d.ts.map +1 -1
- package/dist/interface/cli/commands/profile.js +3 -2
- package/dist/interface/cli/commands/profile.js.map +1 -1
- package/dist/interface/cli/commands/run.d.ts +5 -5
- package/dist/interface/cli/commands/run.d.ts.map +1 -1
- package/dist/interface/cli/commands/run.js +15 -26
- package/dist/interface/cli/commands/run.js.map +1 -1
- package/dist/interface/cli/commands/runtime.d.ts.map +1 -1
- package/dist/interface/cli/commands/runtime.js +73 -11
- package/dist/interface/cli/commands/runtime.js.map +1 -1
- package/dist/interface/cli/commands/schedule/cost.d.ts +1 -1
- package/dist/interface/cli/commands/schedule/cost.d.ts.map +1 -1
- package/dist/interface/cli/commands/schedule/cost.js +9 -22
- package/dist/interface/cli/commands/schedule/cost.js.map +1 -1
- package/dist/interface/cli/commands/schedule/history.d.ts.map +1 -1
- package/dist/interface/cli/commands/schedule/history.js +19 -1
- package/dist/interface/cli/commands/schedule/history.js.map +1 -1
- package/dist/interface/cli/commands/schedule/shared.d.ts.map +1 -1
- package/dist/interface/cli/commands/schedule/shared.js +25 -8
- package/dist/interface/cli/commands/schedule/shared.js.map +1 -1
- package/dist/interface/cli/commands/schedule.d.ts +1 -1
- package/dist/interface/cli/commands/schedule.d.ts.map +1 -1
- package/dist/interface/cli/commands/schedule.js +163 -86
- package/dist/interface/cli/commands/schedule.js.map +1 -1
- package/dist/interface/cli/commands/setup/import/apply.d.ts.map +1 -1
- package/dist/interface/cli/commands/setup/import/apply.js +153 -7
- package/dist/interface/cli/commands/setup/import/apply.js.map +1 -1
- package/dist/interface/cli/commands/setup/import/discovery.js +14 -15
- package/dist/interface/cli/commands/setup/import/discovery.js.map +1 -1
- package/dist/interface/cli/commands/setup/import/fs-utils.d.ts +4 -0
- package/dist/interface/cli/commands/setup/import/fs-utils.d.ts.map +1 -1
- package/dist/interface/cli/commands/setup/import/fs-utils.js +20 -2
- package/dist/interface/cli/commands/setup/import/fs-utils.js.map +1 -1
- package/dist/interface/cli/commands/setup/import/provider.d.ts.map +1 -1
- package/dist/interface/cli/commands/setup/import/provider.js +44 -31
- package/dist/interface/cli/commands/setup/import/provider.js.map +1 -1
- package/dist/interface/cli/commands/setup/import/telegram.d.ts.map +1 -1
- package/dist/interface/cli/commands/setup/import/telegram.js +4 -3
- package/dist/interface/cli/commands/setup/import/telegram.js.map +1 -1
- package/dist/interface/cli/commands/setup/import/types.d.ts +3 -0
- package/dist/interface/cli/commands/setup/import/types.d.ts.map +1 -1
- package/dist/interface/cli/commands/setup/resident-readiness.d.ts +42 -0
- package/dist/interface/cli/commands/setup/resident-readiness.d.ts.map +1 -0
- package/dist/interface/cli/commands/setup/resident-readiness.js +79 -0
- package/dist/interface/cli/commands/setup/resident-readiness.js.map +1 -0
- package/dist/interface/cli/commands/setup/steps-gateway.d.ts +10 -0
- package/dist/interface/cli/commands/setup/steps-gateway.d.ts.map +1 -1
- package/dist/interface/cli/commands/setup/steps-gateway.js +89 -44
- package/dist/interface/cli/commands/setup/steps-gateway.js.map +1 -1
- package/dist/interface/cli/commands/setup/steps-runtime.d.ts +1 -0
- package/dist/interface/cli/commands/setup/steps-runtime.d.ts.map +1 -1
- package/dist/interface/cli/commands/setup/steps-runtime.js +29 -18
- package/dist/interface/cli/commands/setup/steps-runtime.js.map +1 -1
- package/dist/interface/cli/commands/setup-wizard.d.ts +3 -33
- package/dist/interface/cli/commands/setup-wizard.d.ts.map +1 -1
- package/dist/interface/cli/commands/setup-wizard.js +18 -81
- package/dist/interface/cli/commands/setup-wizard.js.map +1 -1
- package/dist/interface/cli/commands/skills.d.ts.map +1 -1
- package/dist/interface/cli/commands/skills.js +10 -2
- package/dist/interface/cli/commands/skills.js.map +1 -1
- package/dist/interface/cli/commands/suggest-normalizer.d.ts +7 -3
- package/dist/interface/cli/commands/suggest-normalizer.d.ts.map +1 -1
- package/dist/interface/cli/commands/suggest-normalizer.js +70 -23
- package/dist/interface/cli/commands/suggest-normalizer.js.map +1 -1
- package/dist/interface/cli/commands/suggest.d.ts +1 -0
- package/dist/interface/cli/commands/suggest.d.ts.map +1 -1
- package/dist/interface/cli/commands/suggest.js +40 -10
- package/dist/interface/cli/commands/suggest.js.map +1 -1
- package/dist/interface/cli/commands/task-read.d.ts +1 -1
- package/dist/interface/cli/commands/task-read.d.ts.map +1 -1
- package/dist/interface/cli/commands/task-read.js +8 -30
- package/dist/interface/cli/commands/task-read.js.map +1 -1
- package/dist/interface/cli/commands/telegram-id-parser.d.ts +10 -0
- package/dist/interface/cli/commands/telegram-id-parser.d.ts.map +1 -0
- package/dist/interface/cli/commands/telegram-id-parser.js +26 -0
- package/dist/interface/cli/commands/telegram-id-parser.js.map +1 -0
- package/dist/interface/cli/commands/telegram.d.ts +2 -1
- package/dist/interface/cli/commands/telegram.d.ts.map +1 -1
- package/dist/interface/cli/commands/telegram.js +66 -20
- package/dist/interface/cli/commands/telegram.js.map +1 -1
- package/dist/interface/cli/commands/usage.d.ts.map +1 -1
- package/dist/interface/cli/commands/usage.js +17 -83
- package/dist/interface/cli/commands/usage.js.map +1 -1
- package/dist/interface/cli/data-source-bootstrap.d.ts +1 -1
- package/dist/interface/cli/data-source-bootstrap.d.ts.map +1 -1
- package/dist/interface/cli/data-source-bootstrap.js +43 -10
- package/dist/interface/cli/data-source-bootstrap.js.map +1 -1
- package/dist/interface/cli/datasource-config-file.d.ts +5 -0
- package/dist/interface/cli/datasource-config-file.d.ts.map +1 -0
- package/dist/interface/cli/datasource-config-file.js +14 -0
- package/dist/interface/cli/datasource-config-file.js.map +1 -0
- package/dist/interface/cli/ensure-api-key.d.ts.map +1 -1
- package/dist/interface/cli/ensure-api-key.js +5 -1
- package/dist/interface/cli/ensure-api-key.js.map +1 -1
- package/dist/interface/cli/setup.d.ts.map +1 -1
- package/dist/interface/cli/setup.js +13 -10
- package/dist/interface/cli/setup.js.map +1 -1
- package/dist/interface/cli/utils/loop-runner.d.ts +2 -2
- package/dist/interface/cli/utils/loop-runner.d.ts.map +1 -1
- package/dist/interface/cli/utils/loop-runner.js +3 -3
- package/dist/interface/cli/utils/loop-runner.js.map +1 -1
- package/dist/interface/cli/utils.d.ts.map +1 -1
- package/dist/interface/cli/utils.js +5 -2
- package/dist/interface/cli/utils.js.map +1 -1
- package/dist/interface/current-goal-summary.d.ts +20 -0
- package/dist/interface/current-goal-summary.d.ts.map +1 -0
- package/dist/interface/current-goal-summary.js +197 -0
- package/dist/interface/current-goal-summary.js.map +1 -0
- package/dist/interface/goal-status-display.d.ts +7 -0
- package/dist/interface/goal-status-display.d.ts.map +1 -0
- package/dist/interface/goal-status-display.js +48 -0
- package/dist/interface/goal-status-display.js.map +1 -0
- package/dist/interface/mcp-server/tools.d.ts.map +1 -1
- package/dist/interface/mcp-server/tools.js +6 -29
- package/dist/interface/mcp-server/tools.js.map +1 -1
- package/dist/interface/runtime-budget-summary.d.ts +19 -0
- package/dist/interface/runtime-budget-summary.d.ts.map +1 -0
- package/dist/interface/runtime-budget-summary.js +157 -0
- package/dist/interface/runtime-budget-summary.js.map +1 -0
- package/dist/interface/tui/actions.d.ts +7 -0
- package/dist/interface/tui/actions.d.ts.map +1 -1
- package/dist/interface/tui/actions.js +91 -46
- package/dist/interface/tui/actions.js.map +1 -1
- package/dist/interface/tui/app-approval.d.ts +4 -0
- package/dist/interface/tui/app-approval.d.ts.map +1 -0
- package/dist/interface/tui/app-approval.js +53 -0
- package/dist/interface/tui/app-approval.js.map +1 -0
- package/dist/interface/tui/app-shell.d.ts +18 -0
- package/dist/interface/tui/app-shell.d.ts.map +1 -0
- package/dist/interface/tui/app-shell.js +47 -0
- package/dist/interface/tui/app-shell.js.map +1 -0
- package/dist/interface/tui/app.d.ts +4 -6
- package/dist/interface/tui/app.d.ts.map +1 -1
- package/dist/interface/tui/app.js +81 -77
- package/dist/interface/tui/app.js.map +1 -1
- package/dist/interface/tui/chat/scroll.d.ts.map +1 -1
- package/dist/interface/tui/chat/scroll.js +18 -8
- package/dist/interface/tui/chat/scroll.js.map +1 -1
- package/dist/interface/tui/chat/suggestions.js +19 -19
- package/dist/interface/tui/chat/suggestions.js.map +1 -1
- package/dist/interface/tui/chat.d.ts +1 -1
- package/dist/interface/tui/chat.d.ts.map +1 -1
- package/dist/interface/tui/chat.js +4 -3
- package/dist/interface/tui/chat.js.map +1 -1
- package/dist/interface/tui/dashboard.d.ts.map +1 -1
- package/dist/interface/tui/dashboard.js +2 -2
- package/dist/interface/tui/dashboard.js.map +1 -1
- package/dist/interface/tui/entry-daemon.d.ts.map +1 -1
- package/dist/interface/tui/entry-daemon.js +9 -4
- package/dist/interface/tui/entry-daemon.js.map +1 -1
- package/dist/interface/tui/entry-deps.d.ts.map +1 -1
- package/dist/interface/tui/entry-deps.js +12 -9
- package/dist/interface/tui/entry-deps.js.map +1 -1
- package/dist/interface/tui/flicker-overlay.d.ts.map +1 -1
- package/dist/interface/tui/flicker-overlay.js +5 -4
- package/dist/interface/tui/flicker-overlay.js.map +1 -1
- package/dist/interface/tui/fullscreen-chat-actions.d.ts +17 -0
- package/dist/interface/tui/fullscreen-chat-actions.d.ts.map +1 -0
- package/dist/interface/tui/fullscreen-chat-actions.js +98 -0
- package/dist/interface/tui/fullscreen-chat-actions.js.map +1 -0
- package/dist/interface/tui/fullscreen-chat-composer.d.ts +28 -0
- package/dist/interface/tui/fullscreen-chat-composer.d.ts.map +1 -0
- package/dist/interface/tui/fullscreen-chat-composer.js +385 -0
- package/dist/interface/tui/fullscreen-chat-composer.js.map +1 -0
- package/dist/interface/tui/fullscreen-chat-render-types.d.ts +68 -0
- package/dist/interface/tui/fullscreen-chat-render-types.d.ts.map +1 -0
- package/dist/interface/tui/fullscreen-chat-render-types.js +2 -0
- package/dist/interface/tui/fullscreen-chat-render-types.js.map +1 -0
- package/dist/interface/tui/fullscreen-chat-render-utils.d.ts +10 -0
- package/dist/interface/tui/fullscreen-chat-render-utils.d.ts.map +1 -0
- package/dist/interface/tui/fullscreen-chat-render-utils.js +45 -0
- package/dist/interface/tui/fullscreen-chat-render-utils.js.map +1 -0
- package/dist/interface/tui/fullscreen-chat-render.d.ts +13 -93
- package/dist/interface/tui/fullscreen-chat-render.d.ts.map +1 -1
- package/dist/interface/tui/fullscreen-chat-render.js +19 -420
- package/dist/interface/tui/fullscreen-chat-render.js.map +1 -1
- package/dist/interface/tui/fullscreen-chat.d.ts.map +1 -1
- package/dist/interface/tui/fullscreen-chat.js +2 -97
- package/dist/interface/tui/fullscreen-chat.js.map +1 -1
- package/dist/interface/tui/help-overlay.d.ts.map +1 -1
- package/dist/interface/tui/help-overlay.js +1 -1
- package/dist/interface/tui/help-overlay.js.map +1 -1
- package/dist/interface/tui/intent-recognizer.d.ts.map +1 -1
- package/dist/interface/tui/intent-recognizer.js +59 -3
- package/dist/interface/tui/intent-recognizer.js.map +1 -1
- package/dist/interface/tui/markdown-code-highlight.d.ts +7 -0
- package/dist/interface/tui/markdown-code-highlight.d.ts.map +1 -0
- package/dist/interface/tui/markdown-code-highlight.js +64 -0
- package/dist/interface/tui/markdown-code-highlight.js.map +1 -0
- package/dist/interface/tui/markdown-inline.d.ts +9 -0
- package/dist/interface/tui/markdown-inline.d.ts.map +1 -0
- package/dist/interface/tui/markdown-inline.js +86 -0
- package/dist/interface/tui/markdown-inline.js.map +1 -0
- package/dist/interface/tui/markdown-renderer-types.d.ts +16 -0
- package/dist/interface/tui/markdown-renderer-types.d.ts.map +1 -0
- package/dist/interface/tui/markdown-renderer-types.js +2 -0
- package/dist/interface/tui/markdown-renderer-types.js.map +1 -0
- package/dist/interface/tui/markdown-renderer.d.ts +4 -25
- package/dist/interface/tui/markdown-renderer.d.ts.map +1 -1
- package/dist/interface/tui/markdown-renderer.js +8 -164
- package/dist/interface/tui/markdown-renderer.js.map +1 -1
- package/dist/interface/tui/report-view.d.ts +2 -1
- package/dist/interface/tui/report-view.d.ts.map +1 -1
- package/dist/interface/tui/report-view.js +18 -7
- package/dist/interface/tui/report-view.js.map +1 -1
- package/dist/interface/tui/settings-overlay.js +4 -4
- package/dist/interface/tui/settings-overlay.js.map +1 -1
- package/dist/interface/tui/use-loop.d.ts +3 -3
- package/dist/interface/tui/use-loop.d.ts.map +1 -1
- package/dist/interface/tui/use-loop.js +18 -8
- package/dist/interface/tui/use-loop.js.map +1 -1
- package/dist/interface/usage-counter.d.ts +3 -0
- package/dist/interface/usage-counter.d.ts.map +1 -0
- package/dist/interface/usage-counter.js +2 -0
- package/dist/interface/usage-counter.js.map +1 -0
- package/dist/interface/usage-period.d.ts +2 -0
- package/dist/interface/usage-period.d.ts.map +1 -0
- package/dist/interface/usage-period.js +23 -0
- package/dist/interface/usage-period.js.map +1 -0
- package/dist/orchestrator/execution/adapter-layer.d.ts +3 -0
- package/dist/orchestrator/execution/adapter-layer.d.ts.map +1 -1
- package/dist/orchestrator/execution/adapter-layer.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-context-assembler.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-context-assembler.js +1 -0
- package/dist/orchestrator/execution/agent-loop/agent-loop-context-assembler.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-default-profile.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-default-profile.js +1 -4
- package/dist/orchestrator/execution/agent-loop/agent-loop-default-profile.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-events.d.ts +3 -0
- package/dist/orchestrator/execution/agent-loop/agent-loop-events.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-events.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-model-client.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-model-client.js +22 -3
- package/dist/orchestrator/execution/agent-loop/agent-loop-model-client.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-model.d.ts +5 -0
- package/dist/orchestrator/execution/agent-loop/agent-loop-model.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-model.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-result.d.ts +6 -0
- package/dist/orchestrator/execution/agent-loop/agent-loop-result.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-session-db-store.d.ts +37 -0
- package/dist/orchestrator/execution/agent-loop/agent-loop-session-db-store.d.ts.map +1 -0
- package/dist/orchestrator/execution/agent-loop/agent-loop-session-db-store.js +206 -0
- package/dist/orchestrator/execution/agent-loop/agent-loop-session-db-store.js.map +1 -0
- package/dist/orchestrator/execution/agent-loop/agent-loop-session-factory.d.ts +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-session-factory.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-session-factory.js +6 -12
- package/dist/orchestrator/execution/agent-loop/agent-loop-session-factory.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-session-state.d.ts +0 -6
- package/dist/orchestrator/execution/agent-loop/agent-loop-session-state.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-session-state.js +0 -21
- package/dist/orchestrator/execution/agent-loop/agent-loop-session-state.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-trace-store.d.ts +0 -7
- package/dist/orchestrator/execution/agent-loop/agent-loop-trace-store.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-trace-store.js +0 -20
- package/dist/orchestrator/execution/agent-loop/agent-loop-trace-store.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-workspace-snapshot.d.ts +17 -0
- package/dist/orchestrator/execution/agent-loop/agent-loop-workspace-snapshot.d.ts.map +1 -0
- package/dist/orchestrator/execution/agent-loop/agent-loop-workspace-snapshot.js +144 -0
- package/dist/orchestrator/execution/agent-loop/agent-loop-workspace-snapshot.js.map +1 -0
- package/dist/orchestrator/execution/agent-loop/anthropic-messages-agent-loop-model-client.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/anthropic-messages-agent-loop-model-client.js +2 -2
- package/dist/orchestrator/execution/agent-loop/anthropic-messages-agent-loop-model-client.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/bounded-agent-loop-runner.d.ts +0 -9
- package/dist/orchestrator/execution/agent-loop/bounded-agent-loop-runner.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/bounded-agent-loop-runner.js +47 -203
- package/dist/orchestrator/execution/agent-loop/bounded-agent-loop-runner.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/bounded-agent-loop-tool-observation.d.ts +11 -0
- package/dist/orchestrator/execution/agent-loop/bounded-agent-loop-tool-observation.d.ts.map +1 -0
- package/dist/orchestrator/execution/agent-loop/bounded-agent-loop-tool-observation.js +63 -0
- package/dist/orchestrator/execution/agent-loop/bounded-agent-loop-tool-observation.js.map +1 -0
- package/dist/orchestrator/execution/agent-loop/chat-agent-loop-runner.d.ts +2 -2
- package/dist/orchestrator/execution/agent-loop/chat-agent-loop-runner.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/chat-agent-loop-runner.js +6 -3
- package/dist/orchestrator/execution/agent-loop/chat-agent-loop-runner.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/core-phase-runner.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/core-phase-runner.js +16 -2
- package/dist/orchestrator/execution/agent-loop/core-phase-runner.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/durable-loop-control-tools.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/durable-loop-control-tools.js +26 -13
- package/dist/orchestrator/execution/agent-loop/durable-loop-control-tools.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/response-item.d.ts +22 -19
- package/dist/orchestrator/execution/agent-loop/response-item.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/response-item.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/self-protection.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/self-protection.js +2 -2
- package/dist/orchestrator/execution/agent-loop/self-protection.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-context.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-context.js +18 -6
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-context.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-factory.js +32 -11
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-factory.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-result.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-result.js +3 -0
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-result.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-runner.d.ts +2 -0
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-runner.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-runner.js +180 -0
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-runner.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-worktree.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-worktree.js +27 -1
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-worktree.js.map +1 -1
- package/dist/orchestrator/execution/checkpoint-manager.d.ts +0 -3
- package/dist/orchestrator/execution/checkpoint-manager.d.ts.map +1 -1
- package/dist/orchestrator/execution/checkpoint-manager.js +12 -52
- package/dist/orchestrator/execution/checkpoint-manager.js.map +1 -1
- package/dist/orchestrator/execution/context/context-budget.d.ts.map +1 -1
- package/dist/orchestrator/execution/context/context-budget.js +36 -14
- package/dist/orchestrator/execution/context/context-budget.js.map +1 -1
- package/dist/orchestrator/execution/context/issue-context-fetcher.d.ts +1 -1
- package/dist/orchestrator/execution/context/issue-context-fetcher.d.ts.map +1 -1
- package/dist/orchestrator/execution/context/issue-context-fetcher.js +11 -3
- package/dist/orchestrator/execution/context/issue-context-fetcher.js.map +1 -1
- package/dist/orchestrator/execution/pipeline-executor.d.ts.map +1 -1
- package/dist/orchestrator/execution/pipeline-executor.js +3 -5
- package/dist/orchestrator/execution/pipeline-executor.js.map +1 -1
- package/dist/orchestrator/execution/session-manager.d.ts +4 -7
- package/dist/orchestrator/execution/session-manager.d.ts.map +1 -1
- package/dist/orchestrator/execution/session-manager.js +8 -38
- package/dist/orchestrator/execution/session-manager.js.map +1 -1
- package/dist/orchestrator/execution/task/task-artifact-contract.d.ts +1 -0
- package/dist/orchestrator/execution/task/task-artifact-contract.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-artifact-contract.js +49 -3
- package/dist/orchestrator/execution/task/task-artifact-contract.js.map +1 -1
- package/dist/orchestrator/execution/task/task-diff-capture.d.ts +1 -0
- package/dist/orchestrator/execution/task/task-diff-capture.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-diff-capture.js +92 -3
- package/dist/orchestrator/execution/task/task-diff-capture.js.map +1 -1
- package/dist/orchestrator/execution/task/task-execution-helpers.d.ts +2 -1
- package/dist/orchestrator/execution/task/task-execution-helpers.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-execution-helpers.js +19 -6
- package/dist/orchestrator/execution/task/task-execution-helpers.js.map +1 -1
- package/dist/orchestrator/execution/task/task-executor.js +6 -6
- package/dist/orchestrator/execution/task/task-executor.js.map +1 -1
- package/dist/orchestrator/execution/task/task-generation-schema.d.ts +210 -0
- package/dist/orchestrator/execution/task/task-generation-schema.d.ts.map +1 -0
- package/dist/orchestrator/execution/task/task-generation-schema.js +42 -0
- package/dist/orchestrator/execution/task/task-generation-schema.js.map +1 -0
- package/dist/orchestrator/execution/task/task-generation-workspace-contract.d.ts +11 -0
- package/dist/orchestrator/execution/task/task-generation-workspace-contract.d.ts.map +1 -0
- package/dist/orchestrator/execution/task/task-generation-workspace-contract.js +149 -0
- package/dist/orchestrator/execution/task/task-generation-workspace-contract.js.map +1 -0
- package/dist/orchestrator/execution/task/task-generation.d.ts +3 -205
- package/dist/orchestrator/execution/task/task-generation.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-generation.js +72 -87
- package/dist/orchestrator/execution/task/task-generation.js.map +1 -1
- package/dist/orchestrator/execution/task/task-history-metrics.d.ts +2 -0
- package/dist/orchestrator/execution/task/task-history-metrics.d.ts.map +1 -0
- package/dist/orchestrator/execution/task/task-history-metrics.js +13 -0
- package/dist/orchestrator/execution/task/task-history-metrics.js.map +1 -0
- package/dist/orchestrator/execution/task/task-lifecycle-policies.d.ts +29 -0
- package/dist/orchestrator/execution/task/task-lifecycle-policies.d.ts.map +1 -0
- package/dist/orchestrator/execution/task/task-lifecycle-policies.js +96 -0
- package/dist/orchestrator/execution/task/task-lifecycle-policies.js.map +1 -0
- package/dist/orchestrator/execution/task/task-lifecycle-runner.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-lifecycle-runner.js +34 -3
- package/dist/orchestrator/execution/task/task-lifecycle-runner.js.map +1 -1
- package/dist/orchestrator/execution/task/task-lifecycle.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-lifecycle.js +34 -84
- package/dist/orchestrator/execution/task/task-lifecycle.js.map +1 -1
- package/dist/orchestrator/execution/task/task-outcome-ledger.d.ts +1 -1
- package/dist/orchestrator/execution/task/task-outcome-ledger.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-outcome-ledger.js +7 -73
- package/dist/orchestrator/execution/task/task-outcome-ledger.js.map +1 -1
- package/dist/orchestrator/execution/task/task-post-execution.d.ts +2 -1
- package/dist/orchestrator/execution/task/task-post-execution.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-post-execution.js +3 -3
- package/dist/orchestrator/execution/task/task-post-execution.js.map +1 -1
- package/dist/orchestrator/execution/task/task-prompt-builder.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-prompt-builder.js +37 -19
- package/dist/orchestrator/execution/task/task-prompt-builder.js.map +1 -1
- package/dist/orchestrator/execution/task/task-verifier-evidence.d.ts +33 -0
- package/dist/orchestrator/execution/task/task-verifier-evidence.d.ts.map +1 -0
- package/dist/orchestrator/execution/task/task-verifier-evidence.js +164 -0
- package/dist/orchestrator/execution/task/task-verifier-evidence.js.map +1 -0
- package/dist/orchestrator/execution/task/task-verifier-rules.d.ts +1 -0
- package/dist/orchestrator/execution/task/task-verifier-rules.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-verifier-rules.js +50 -44
- package/dist/orchestrator/execution/task/task-verifier-rules.js.map +1 -1
- package/dist/orchestrator/execution/task/task-verifier-types.d.ts +1 -1
- package/dist/orchestrator/execution/task/task-verifier-types.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-verifier-workspace-guards.d.ts +10 -0
- package/dist/orchestrator/execution/task/task-verifier-workspace-guards.d.ts.map +1 -0
- package/dist/orchestrator/execution/task/task-verifier-workspace-guards.js +65 -0
- package/dist/orchestrator/execution/task/task-verifier-workspace-guards.js.map +1 -0
- package/dist/orchestrator/execution/task/task-verifier.d.ts +3 -2
- package/dist/orchestrator/execution/task/task-verifier.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-verifier.js +98 -258
- package/dist/orchestrator/execution/task/task-verifier.js.map +1 -1
- package/dist/orchestrator/execution/types/session.d.ts +2 -0
- package/dist/orchestrator/execution/types/session.d.ts.map +1 -1
- package/dist/orchestrator/execution/types/session.js +11 -7
- package/dist/orchestrator/execution/types/session.js.map +1 -1
- package/dist/orchestrator/execution/types/task-group.d.ts +5 -0
- package/dist/orchestrator/execution/types/task-group.d.ts.map +1 -1
- package/dist/orchestrator/execution/types/task.d.ts +11 -0
- package/dist/orchestrator/execution/types/task.d.ts.map +1 -1
- package/dist/orchestrator/execution/types/task.js +2 -0
- package/dist/orchestrator/execution/types/task.js.map +1 -1
- package/dist/orchestrator/goal/goal-dependency-graph.d.ts +7 -5
- package/dist/orchestrator/goal/goal-dependency-graph.d.ts.map +1 -1
- package/dist/orchestrator/goal/goal-dependency-graph.js +53 -18
- package/dist/orchestrator/goal/goal-dependency-graph.js.map +1 -1
- package/dist/orchestrator/goal/goal-negotiator.d.ts +5 -1
- package/dist/orchestrator/goal/goal-negotiator.d.ts.map +1 -1
- package/dist/orchestrator/goal/goal-negotiator.js +7 -6
- package/dist/orchestrator/goal/goal-negotiator.js.map +1 -1
- package/dist/orchestrator/goal/goal-refiner.d.ts.map +1 -1
- package/dist/orchestrator/goal/goal-refiner.js +15 -8
- package/dist/orchestrator/goal/goal-refiner.js.map +1 -1
- package/dist/orchestrator/goal/goal-suggest.d.ts +6 -2
- package/dist/orchestrator/goal/goal-suggest.d.ts.map +1 -1
- package/dist/orchestrator/goal/goal-suggest.js +19 -30
- package/dist/orchestrator/goal/goal-suggest.js.map +1 -1
- package/dist/orchestrator/goal/milestone-evaluator.d.ts.map +1 -1
- package/dist/orchestrator/goal/milestone-evaluator.js +65 -31
- package/dist/orchestrator/goal/milestone-evaluator.js.map +1 -1
- package/dist/orchestrator/goal/negotiator-context.d.ts.map +1 -1
- package/dist/orchestrator/goal/negotiator-context.js +68 -76
- package/dist/orchestrator/goal/negotiator-context.js.map +1 -1
- package/dist/orchestrator/goal/negotiator-feasibility.d.ts.map +1 -1
- package/dist/orchestrator/goal/negotiator-feasibility.js +2 -1
- package/dist/orchestrator/goal/negotiator-feasibility.js.map +1 -1
- package/dist/orchestrator/goal/types/dependency.d.ts +55 -0
- package/dist/orchestrator/goal/types/dependency.d.ts.map +1 -1
- package/dist/orchestrator/goal/types/dependency.js +5 -0
- package/dist/orchestrator/goal/types/dependency.js.map +1 -1
- package/dist/orchestrator/goal/types/goal-refiner.d.ts.map +1 -1
- package/dist/orchestrator/goal/types/goal-refiner.js +0 -1
- package/dist/orchestrator/goal/types/goal-refiner.js.map +1 -1
- package/dist/orchestrator/loop/checkpoint-manager-loop.d.ts.map +1 -1
- package/dist/orchestrator/loop/checkpoint-manager-loop.js +6 -9
- package/dist/orchestrator/loop/checkpoint-manager-loop.js.map +1 -1
- package/dist/orchestrator/loop/durable-loop/dream-review-checkpoint.js +1 -9
- package/dist/orchestrator/loop/durable-loop/dream-review-checkpoint.js.map +1 -1
- package/dist/orchestrator/loop/durable-loop/iteration-kernel-evidence-helpers.d.ts +13 -0
- package/dist/orchestrator/loop/durable-loop/iteration-kernel-evidence-helpers.d.ts.map +1 -0
- package/dist/orchestrator/loop/durable-loop/iteration-kernel-evidence-helpers.js +65 -0
- package/dist/orchestrator/loop/durable-loop/iteration-kernel-evidence-helpers.js.map +1 -0
- package/dist/orchestrator/loop/durable-loop/iteration-kernel-wait.d.ts.map +1 -1
- package/dist/orchestrator/loop/durable-loop/iteration-kernel-wait.js +1 -2
- package/dist/orchestrator/loop/durable-loop/iteration-kernel-wait.js.map +1 -1
- package/dist/orchestrator/loop/durable-loop/iteration-kernel.d.ts.map +1 -1
- package/dist/orchestrator/loop/durable-loop/iteration-kernel.js +9 -65
- package/dist/orchestrator/loop/durable-loop/iteration-kernel.js.map +1 -1
- package/dist/orchestrator/loop/durable-loop/learning.js +3 -3
- package/dist/orchestrator/loop/durable-loop/learning.js.map +1 -1
- package/dist/orchestrator/loop/durable-loop/phase-specs.d.ts +67 -57
- package/dist/orchestrator/loop/durable-loop/phase-specs.d.ts.map +1 -1
- package/dist/orchestrator/loop/durable-loop/phase-specs.js +33 -26
- package/dist/orchestrator/loop/durable-loop/phase-specs.js.map +1 -1
- package/dist/orchestrator/loop/durable-loop/task-cycle-stall.d.ts +3 -1
- package/dist/orchestrator/loop/durable-loop/task-cycle-stall.d.ts.map +1 -1
- package/dist/orchestrator/loop/durable-loop/task-cycle-stall.js +10 -4
- package/dist/orchestrator/loop/durable-loop/task-cycle-stall.js.map +1 -1
- package/dist/orchestrator/loop/durable-loop/task-cycle-wait.js +2 -3
- package/dist/orchestrator/loop/durable-loop/task-cycle-wait.js.map +1 -1
- package/dist/orchestrator/loop/durable-loop/task-cycle.d.ts +1 -4
- package/dist/orchestrator/loop/durable-loop/task-cycle.d.ts.map +1 -1
- package/dist/orchestrator/loop/durable-loop/task-cycle.js +32 -12
- package/dist/orchestrator/loop/durable-loop/task-cycle.js.map +1 -1
- package/dist/orchestrator/loop/iteration-budget.d.ts +11 -1
- package/dist/orchestrator/loop/iteration-budget.d.ts.map +1 -1
- package/dist/orchestrator/loop/iteration-budget.js +29 -11
- package/dist/orchestrator/loop/iteration-budget.js.map +1 -1
- package/dist/orchestrator/loop/tree-loop-runner.d.ts.map +1 -1
- package/dist/orchestrator/loop/tree-loop-runner.js +18 -8
- package/dist/orchestrator/loop/tree-loop-runner.js.map +1 -1
- package/dist/orchestrator/strategy/cross-goal-portfolio.d.ts.map +1 -1
- package/dist/orchestrator/strategy/cross-goal-portfolio.js +7 -5
- package/dist/orchestrator/strategy/cross-goal-portfolio.js.map +1 -1
- package/dist/orchestrator/strategy/portfolio-manager.d.ts +7 -1
- package/dist/orchestrator/strategy/portfolio-manager.d.ts.map +1 -1
- package/dist/orchestrator/strategy/portfolio-manager.js +8 -6
- package/dist/orchestrator/strategy/portfolio-manager.js.map +1 -1
- package/dist/orchestrator/strategy/portfolio-rebalance.d.ts +6 -5
- package/dist/orchestrator/strategy/portfolio-rebalance.d.ts.map +1 -1
- package/dist/orchestrator/strategy/portfolio-rebalance.js +28 -398
- package/dist/orchestrator/strategy/portfolio-rebalance.js.map +1 -1
- package/dist/orchestrator/strategy/portfolio-wait-observation.d.ts +18 -0
- package/dist/orchestrator/strategy/portfolio-wait-observation.d.ts.map +1 -0
- package/dist/orchestrator/strategy/portfolio-wait-observation.js +377 -0
- package/dist/orchestrator/strategy/portfolio-wait-observation.js.map +1 -0
- package/dist/orchestrator/strategy/strategy-helpers.d.ts +3 -2
- package/dist/orchestrator/strategy/strategy-helpers.d.ts.map +1 -1
- package/dist/orchestrator/strategy/strategy-helpers.js +5 -17
- package/dist/orchestrator/strategy/strategy-helpers.js.map +1 -1
- package/dist/orchestrator/strategy/strategy-manager-base.d.ts.map +1 -1
- package/dist/orchestrator/strategy/strategy-manager-base.js +5 -10
- package/dist/orchestrator/strategy/strategy-manager-base.js.map +1 -1
- package/dist/orchestrator/strategy/strategy-manager.d.ts +1 -3
- package/dist/orchestrator/strategy/strategy-manager.d.ts.map +1 -1
- package/dist/orchestrator/strategy/strategy-manager.js +23 -44
- package/dist/orchestrator/strategy/strategy-manager.js.map +1 -1
- package/dist/orchestrator/strategy/strategy-template-registry.d.ts +5 -6
- package/dist/orchestrator/strategy/strategy-template-registry.d.ts.map +1 -1
- package/dist/orchestrator/strategy/strategy-template-registry.js +10 -25
- package/dist/orchestrator/strategy/strategy-template-registry.js.map +1 -1
- package/dist/orchestrator/strategy/strategy-template-state-migration.d.ts +14 -0
- package/dist/orchestrator/strategy/strategy-template-state-migration.d.ts.map +1 -0
- package/dist/orchestrator/strategy/strategy-template-state-migration.js +136 -0
- package/dist/orchestrator/strategy/strategy-template-state-migration.js.map +1 -0
- package/dist/orchestrator/strategy/strategy-template-state-store.d.ts +16 -0
- package/dist/orchestrator/strategy/strategy-template-state-store.d.ts.map +1 -0
- package/dist/orchestrator/strategy/strategy-template-state-store.js +84 -0
- package/dist/orchestrator/strategy/strategy-template-state-store.js.map +1 -0
- package/dist/orchestrator/strategy/strategy-workspace.d.ts.map +1 -1
- package/dist/orchestrator/strategy/strategy-workspace.js +6 -19
- package/dist/orchestrator/strategy/strategy-workspace.js.map +1 -1
- package/dist/orchestrator/strategy/types/cross-portfolio.d.ts +7 -6
- package/dist/orchestrator/strategy/types/cross-portfolio.d.ts.map +1 -1
- package/dist/orchestrator/strategy/types/cross-portfolio.js +2 -1
- package/dist/orchestrator/strategy/types/cross-portfolio.js.map +1 -1
- package/dist/orchestrator/strategy/types/portfolio.d.ts +1 -0
- package/dist/orchestrator/strategy/types/portfolio.d.ts.map +1 -1
- package/dist/orchestrator/strategy/types/portfolio.js +2 -1
- package/dist/orchestrator/strategy/types/portfolio.js.map +1 -1
- package/dist/orchestrator/strategy/types/strategy.d.ts +8 -3
- package/dist/orchestrator/strategy/types/strategy.d.ts.map +1 -1
- package/dist/orchestrator/strategy/types/strategy.js +25 -17
- package/dist/orchestrator/strategy/types/strategy.js.map +1 -1
- package/dist/platform/code-search/candidate-normalizer.d.ts.map +1 -1
- package/dist/platform/code-search/candidate-normalizer.js +4 -2
- package/dist/platform/code-search/candidate-normalizer.js.map +1 -1
- package/dist/platform/code-search/candidate.d.ts.map +1 -1
- package/dist/platform/code-search/candidate.js +5 -0
- package/dist/platform/code-search/candidate.js.map +1 -1
- package/dist/platform/code-search/contracts.d.ts +8 -0
- package/dist/platform/code-search/contracts.d.ts.map +1 -1
- package/dist/platform/code-search/contracts.js.map +1 -1
- package/dist/platform/code-search/indexes/file-index.d.ts.map +1 -1
- package/dist/platform/code-search/indexes/file-index.js +4 -0
- package/dist/platform/code-search/indexes/file-index.js.map +1 -1
- package/dist/platform/code-search/indexes/package-graph.d.ts.map +1 -1
- package/dist/platform/code-search/indexes/package-graph.js +5 -2
- package/dist/platform/code-search/indexes/package-graph.js.map +1 -1
- package/dist/platform/code-search/parse-position.d.ts +2 -0
- package/dist/platform/code-search/parse-position.d.ts.map +1 -0
- package/dist/platform/code-search/parse-position.js +10 -0
- package/dist/platform/code-search/parse-position.js.map +1 -0
- package/dist/platform/code-search/progressive-reader.d.ts.map +1 -1
- package/dist/platform/code-search/progressive-reader.js +58 -13
- package/dist/platform/code-search/progressive-reader.js.map +1 -1
- package/dist/platform/code-search/query-planner.d.ts.map +1 -1
- package/dist/platform/code-search/query-planner.js +4 -3
- package/dist/platform/code-search/query-planner.js.map +1 -1
- package/dist/platform/code-search/verification-retrieval.d.ts.map +1 -1
- package/dist/platform/code-search/verification-retrieval.js +2 -1
- package/dist/platform/code-search/verification-retrieval.js.map +1 -1
- package/dist/platform/corrections/cognition-memory-review.d.ts +233 -0
- package/dist/platform/corrections/cognition-memory-review.d.ts.map +1 -0
- package/dist/platform/corrections/cognition-memory-review.js +93 -0
- package/dist/platform/corrections/cognition-memory-review.js.map +1 -0
- package/dist/platform/corrections/index.d.ts +2 -0
- package/dist/platform/corrections/index.d.ts.map +1 -1
- package/dist/platform/corrections/index.js +2 -0
- package/dist/platform/corrections/index.js.map +1 -1
- package/dist/platform/corrections/memory-correction-ledger.d.ts +60 -60
- package/dist/platform/corrections/memory-governance.d.ts +6 -6
- package/dist/platform/corrections/memory-quarantine.d.ts +1 -1
- package/dist/platform/corrections/user-memory-operations.js +4 -4
- package/dist/platform/corrections/user-memory-operations.js.map +1 -1
- package/dist/platform/dream/dream-activation-artifacts.d.ts.map +1 -1
- package/dist/platform/dream/dream-activation-artifacts.js +4 -16
- package/dist/platform/dream/dream-activation-artifacts.js.map +1 -1
- package/dist/platform/dream/dream-activation.d.ts +2 -185
- package/dist/platform/dream/dream-activation.d.ts.map +1 -1
- package/dist/platform/dream/dream-activation.js +10 -57
- package/dist/platform/dream/dream-activation.js.map +1 -1
- package/dist/platform/dream/dream-analyzer.d.ts +1 -2
- package/dist/platform/dream/dream-analyzer.d.ts.map +1 -1
- package/dist/platform/dream/dream-analyzer.js +21 -59
- package/dist/platform/dream/dream-analyzer.js.map +1 -1
- package/dist/platform/dream/dream-consolidator/evidence-helpers.d.ts +12 -0
- package/dist/platform/dream/dream-consolidator/evidence-helpers.d.ts.map +1 -0
- package/dist/platform/dream/dream-consolidator/evidence-helpers.js +73 -0
- package/dist/platform/dream/dream-consolidator/evidence-helpers.js.map +1 -0
- package/dist/platform/dream/dream-consolidator/fs-metrics.d.ts.map +1 -1
- package/dist/platform/dream/dream-consolidator/fs-metrics.js +27 -38
- package/dist/platform/dream/dream-consolidator/fs-metrics.js.map +1 -1
- package/dist/platform/dream/dream-consolidator.d.ts +3 -0
- package/dist/platform/dream/dream-consolidator.d.ts.map +1 -1
- package/dist/platform/dream/dream-consolidator.js +35 -129
- package/dist/platform/dream/dream-consolidator.js.map +1 -1
- package/dist/platform/dream/dream-decision-heuristics.d.ts +421 -0
- package/dist/platform/dream/dream-decision-heuristics.d.ts.map +1 -0
- package/dist/platform/dream/dream-decision-heuristics.js +27 -0
- package/dist/platform/dream/dream-decision-heuristics.js.map +1 -0
- package/dist/platform/dream/dream-event-workflows.d.ts.map +1 -1
- package/dist/platform/dream/dream-event-workflows.js +23 -37
- package/dist/platform/dream/dream-event-workflows.js.map +1 -1
- package/dist/platform/dream/dream-importance.d.ts +1 -2
- package/dist/platform/dream/dream-importance.d.ts.map +1 -1
- package/dist/platform/dream/dream-importance.js +6 -24
- package/dist/platform/dream/dream-importance.js.map +1 -1
- package/dist/platform/dream/dream-log-collector.d.ts +4 -15
- package/dist/platform/dream/dream-log-collector.d.ts.map +1 -1
- package/dist/platform/dream/dream-log-collector.js +12 -101
- package/dist/platform/dream/dream-log-collector.js.map +1 -1
- package/dist/platform/dream/dream-schedule-suggestions.d.ts +1 -2
- package/dist/platform/dream/dream-schedule-suggestions.d.ts.map +1 -1
- package/dist/platform/dream/dream-schedule-suggestions.js +6 -20
- package/dist/platform/dream/dream-schedule-suggestions.js.map +1 -1
- package/dist/platform/dream/dream-soil-sync.d.ts.map +1 -1
- package/dist/platform/dream/dream-soil-sync.js +2 -6
- package/dist/platform/dream/dream-soil-sync.js.map +1 -1
- package/dist/platform/dream/dream-types.d.ts +269 -269
- package/dist/platform/dream/dream-types.js +2 -2
- package/dist/platform/dream/dream-types.js.map +1 -1
- package/dist/platform/dream/index.d.ts +1 -0
- package/dist/platform/dream/index.d.ts.map +1 -1
- package/dist/platform/dream/index.js +1 -0
- package/dist/platform/dream/index.js.map +1 -1
- package/dist/platform/dream/playbook-memory.d.ts +4 -4
- package/dist/platform/dream/playbook-memory.d.ts.map +1 -1
- package/dist/platform/dream/playbook-memory.js +14 -75
- package/dist/platform/dream/playbook-memory.js.map +1 -1
- package/dist/platform/dream/procedural-memory.d.ts +262 -0
- package/dist/platform/dream/procedural-memory.d.ts.map +1 -0
- package/dist/platform/dream/procedural-memory.js +78 -0
- package/dist/platform/dream/procedural-memory.js.map +1 -0
- package/dist/platform/drive/drive-schedule-state-migration.d.ts +13 -0
- package/dist/platform/drive/drive-schedule-state-migration.d.ts.map +1 -0
- package/dist/platform/drive/drive-schedule-state-migration.js +115 -0
- package/dist/platform/drive/drive-schedule-state-migration.js.map +1 -0
- package/dist/platform/drive/drive-schedule-state-store.d.ts +15 -0
- package/dist/platform/drive/drive-schedule-state-store.d.ts.map +1 -0
- package/dist/platform/drive/drive-schedule-state-store.js +84 -0
- package/dist/platform/drive/drive-schedule-state-store.js.map +1 -0
- package/dist/platform/drive/drive-scorer.d.ts +6 -6
- package/dist/platform/drive/drive-scorer.d.ts.map +1 -1
- package/dist/platform/drive/drive-scorer.js +44 -16
- package/dist/platform/drive/drive-scorer.js.map +1 -1
- package/dist/platform/drive/drive-system.d.ts +10 -8
- package/dist/platform/drive/drive-system.d.ts.map +1 -1
- package/dist/platform/drive/drive-system.js +42 -57
- package/dist/platform/drive/drive-system.js.map +1 -1
- package/dist/platform/drive/gap-calculator.d.ts.map +1 -1
- package/dist/platform/drive/gap-calculator.js +36 -8
- package/dist/platform/drive/gap-calculator.js.map +1 -1
- package/dist/platform/drive/satisficing-helpers.d.ts.map +1 -1
- package/dist/platform/drive/satisficing-helpers.js +14 -10
- package/dist/platform/drive/satisficing-helpers.js.map +1 -1
- package/dist/platform/drive/satisficing-judge.d.ts.map +1 -1
- package/dist/platform/drive/satisficing-judge.js +16 -10
- package/dist/platform/drive/satisficing-judge.js.map +1 -1
- package/dist/platform/drive/satisficing-propagation.d.ts.map +1 -1
- package/dist/platform/drive/satisficing-propagation.js +20 -16
- package/dist/platform/drive/satisficing-propagation.js.map +1 -1
- package/dist/platform/drive/stall-detector/repetitive.d.ts +28 -1
- package/dist/platform/drive/stall-detector/repetitive.d.ts.map +1 -1
- package/dist/platform/drive/stall-detector/repetitive.js.map +1 -1
- package/dist/platform/drive/stall-detector/thresholds.d.ts.map +1 -1
- package/dist/platform/drive/stall-detector/thresholds.js +2 -1
- package/dist/platform/drive/stall-detector/thresholds.js.map +1 -1
- package/dist/platform/drive/stall-detector.d.ts +7 -32
- package/dist/platform/drive/stall-detector.d.ts.map +1 -1
- package/dist/platform/drive/stall-detector.js +16 -13
- package/dist/platform/drive/stall-detector.js.map +1 -1
- package/dist/platform/drive/types/drive.d.ts +4 -0
- package/dist/platform/drive/types/drive.d.ts.map +1 -1
- package/dist/platform/drive/types/drive.js +26 -15
- package/dist/platform/drive/types/drive.js.map +1 -1
- package/dist/platform/drive/types/satisficing.js +1 -1
- package/dist/platform/drive/types/satisficing.js.map +1 -1
- package/dist/platform/knowledge/knowledge-graph-state-migration.d.ts +15 -0
- package/dist/platform/knowledge/knowledge-graph-state-migration.d.ts.map +1 -0
- package/dist/platform/knowledge/knowledge-graph-state-migration.js +137 -0
- package/dist/platform/knowledge/knowledge-graph-state-migration.js.map +1 -0
- package/dist/platform/knowledge/knowledge-graph-state-store.d.ts +38 -0
- package/dist/platform/knowledge/knowledge-graph-state-store.d.ts.map +1 -0
- package/dist/platform/knowledge/knowledge-graph-state-store.js +137 -0
- package/dist/platform/knowledge/knowledge-graph-state-store.js.map +1 -0
- package/dist/platform/knowledge/knowledge-graph.d.ts +17 -12
- package/dist/platform/knowledge/knowledge-graph.d.ts.map +1 -1
- package/dist/platform/knowledge/knowledge-graph.js +35 -44
- package/dist/platform/knowledge/knowledge-graph.js.map +1 -1
- package/dist/platform/knowledge/knowledge-manager-agent-memory.d.ts.map +1 -1
- package/dist/platform/knowledge/knowledge-manager-agent-memory.js +18 -8
- package/dist/platform/knowledge/knowledge-manager-agent-memory.js.map +1 -1
- package/dist/platform/knowledge/knowledge-manager-internals.d.ts +3 -2
- package/dist/platform/knowledge/knowledge-manager-internals.d.ts.map +1 -1
- package/dist/platform/knowledge/knowledge-manager-internals.js +8 -7
- package/dist/platform/knowledge/knowledge-manager-internals.js.map +1 -1
- package/dist/platform/knowledge/knowledge-manager-query.js +2 -2
- package/dist/platform/knowledge/knowledge-manager-query.js.map +1 -1
- package/dist/platform/knowledge/knowledge-manager-store.js +3 -3
- package/dist/platform/knowledge/knowledge-manager-store.js.map +1 -1
- package/dist/platform/knowledge/knowledge-manager.d.ts +5 -6
- package/dist/platform/knowledge/knowledge-manager.d.ts.map +1 -1
- package/dist/platform/knowledge/knowledge-manager.js +53 -27
- package/dist/platform/knowledge/knowledge-manager.js.map +1 -1
- package/dist/platform/knowledge/knowledge-memory-state-store.d.ts +17 -0
- package/dist/platform/knowledge/knowledge-memory-state-store.d.ts.map +1 -0
- package/dist/platform/knowledge/knowledge-memory-state-store.js +565 -0
- package/dist/platform/knowledge/knowledge-memory-state-store.js.map +1 -0
- package/dist/platform/knowledge/knowledge-search.d.ts.map +1 -1
- package/dist/platform/knowledge/knowledge-search.js +4 -17
- package/dist/platform/knowledge/knowledge-search.js.map +1 -1
- package/dist/platform/knowledge/learning/learning-cross-goal.d.ts +2 -2
- package/dist/platform/knowledge/learning/learning-cross-goal.d.ts.map +1 -1
- package/dist/platform/knowledge/learning/learning-feedback.d.ts +3 -3
- package/dist/platform/knowledge/learning/learning-feedback.d.ts.map +1 -1
- package/dist/platform/knowledge/learning/learning-feedback.js +3 -11
- package/dist/platform/knowledge/learning/learning-feedback.js.map +1 -1
- package/dist/platform/knowledge/learning/learning-pipeline.d.ts +4 -5
- package/dist/platform/knowledge/learning/learning-pipeline.d.ts.map +1 -1
- package/dist/platform/knowledge/learning/learning-pipeline.js +16 -33
- package/dist/platform/knowledge/learning/learning-pipeline.js.map +1 -1
- package/dist/platform/knowledge/memory/memory-compression.d.ts.map +1 -1
- package/dist/platform/knowledge/memory/memory-compression.js +19 -43
- package/dist/platform/knowledge/memory/memory-compression.js.map +1 -1
- package/dist/platform/knowledge/memory/memory-exports.d.ts +2 -1
- package/dist/platform/knowledge/memory/memory-exports.d.ts.map +1 -1
- package/dist/platform/knowledge/memory/memory-exports.js +2 -1
- package/dist/platform/knowledge/memory/memory-exports.js.map +1 -1
- package/dist/platform/knowledge/memory/memory-index.d.ts +1 -1
- package/dist/platform/knowledge/memory/memory-index.d.ts.map +1 -1
- package/dist/platform/knowledge/memory/memory-index.js +11 -115
- package/dist/platform/knowledge/memory/memory-index.js.map +1 -1
- package/dist/platform/knowledge/memory/memory-lifecycle-state-store.d.ts +51 -0
- package/dist/platform/knowledge/memory/memory-lifecycle-state-store.d.ts.map +1 -0
- package/dist/platform/knowledge/memory/memory-lifecycle-state-store.js +498 -0
- package/dist/platform/knowledge/memory/memory-lifecycle-state-store.js.map +1 -0
- package/dist/platform/knowledge/memory/memory-lifecycle-storage.d.ts.map +1 -1
- package/dist/platform/knowledge/memory/memory-lifecycle-storage.js +13 -91
- package/dist/platform/knowledge/memory/memory-lifecycle-storage.js.map +1 -1
- package/dist/platform/knowledge/memory/memory-lifecycle.d.ts +7 -9
- package/dist/platform/knowledge/memory/memory-lifecycle.d.ts.map +1 -1
- package/dist/platform/knowledge/memory/memory-lifecycle.js +14 -24
- package/dist/platform/knowledge/memory/memory-lifecycle.js.map +1 -1
- package/dist/platform/knowledge/memory/memory-persistence.d.ts +1 -27
- package/dist/platform/knowledge/memory/memory-persistence.d.ts.map +1 -1
- package/dist/platform/knowledge/memory/memory-persistence.js +0 -122
- package/dist/platform/knowledge/memory/memory-persistence.js.map +1 -1
- package/dist/platform/knowledge/memory/memory-query.d.ts.map +1 -1
- package/dist/platform/knowledge/memory/memory-query.js +3 -59
- package/dist/platform/knowledge/memory/memory-query.js.map +1 -1
- package/dist/platform/knowledge/memory/memory-selection.d.ts.map +1 -1
- package/dist/platform/knowledge/memory/memory-selection.js +7 -19
- package/dist/platform/knowledge/memory/memory-selection.js.map +1 -1
- package/dist/platform/knowledge/memory/memory-stats.d.ts.map +1 -1
- package/dist/platform/knowledge/memory/memory-stats.js +4 -5
- package/dist/platform/knowledge/memory/memory-stats.js.map +1 -1
- package/dist/platform/knowledge/transfer/knowledge-transfer-types.d.ts.map +1 -1
- package/dist/platform/knowledge/transfer/knowledge-transfer-types.js +6 -10
- package/dist/platform/knowledge/transfer/knowledge-transfer-types.js.map +1 -1
- package/dist/platform/knowledge/transfer/knowledge-transfer.d.ts +3 -2
- package/dist/platform/knowledge/transfer/knowledge-transfer.d.ts.map +1 -1
- package/dist/platform/knowledge/transfer/knowledge-transfer.js +19 -34
- package/dist/platform/knowledge/transfer/knowledge-transfer.js.map +1 -1
- package/dist/platform/knowledge/transfer/transfer-trust.d.ts +6 -5
- package/dist/platform/knowledge/transfer/transfer-trust.d.ts.map +1 -1
- package/dist/platform/knowledge/transfer/transfer-trust.js +23 -30
- package/dist/platform/knowledge/transfer/transfer-trust.js.map +1 -1
- package/dist/platform/knowledge/types/agent-memory.d.ts +194 -194
- package/dist/platform/knowledge/types/embedding.js +2 -2
- package/dist/platform/knowledge/types/embedding.js.map +1 -1
- package/dist/platform/knowledge/types/memory-lifecycle.d.ts +4 -4
- package/dist/platform/knowledge/vector-index-state-migration.d.ts +14 -0
- package/dist/platform/knowledge/vector-index-state-migration.d.ts.map +1 -0
- package/dist/platform/knowledge/vector-index-state-migration.js +132 -0
- package/dist/platform/knowledge/vector-index-state-migration.js.map +1 -0
- package/dist/platform/knowledge/vector-index-state-store.d.ts +19 -0
- package/dist/platform/knowledge/vector-index-state-store.d.ts.map +1 -0
- package/dist/platform/knowledge/vector-index-state-store.js +124 -0
- package/dist/platform/knowledge/vector-index-state-store.js.map +1 -0
- package/dist/platform/knowledge/vector-index.d.ts +11 -6
- package/dist/platform/knowledge/vector-index.d.ts.map +1 -1
- package/dist/platform/knowledge/vector-index.js +27 -37
- package/dist/platform/knowledge/vector-index.js.map +1 -1
- package/dist/platform/observation/capability-dependencies.d.ts +4 -3
- package/dist/platform/observation/capability-dependencies.d.ts.map +1 -1
- package/dist/platform/observation/capability-dependencies.js +8 -15
- package/dist/platform/observation/capability-dependencies.js.map +1 -1
- package/dist/platform/observation/capability-detector.d.ts.map +1 -1
- package/dist/platform/observation/capability-detector.js +8 -2
- package/dist/platform/observation/capability-detector.js.map +1 -1
- package/dist/platform/observation/capability-graph.d.ts +16 -0
- package/dist/platform/observation/capability-graph.d.ts.map +1 -0
- package/dist/platform/observation/capability-graph.js +387 -0
- package/dist/platform/observation/capability-graph.js.map +1 -0
- package/dist/platform/observation/capability-readiness.d.ts +13 -0
- package/dist/platform/observation/capability-readiness.d.ts.map +1 -0
- package/dist/platform/observation/capability-readiness.js +192 -0
- package/dist/platform/observation/capability-readiness.js.map +1 -0
- package/dist/platform/observation/capability-registry.d.ts +3 -3
- package/dist/platform/observation/capability-registry.d.ts.map +1 -1
- package/dist/platform/observation/capability-registry.js +5 -14
- package/dist/platform/observation/capability-registry.js.map +1 -1
- package/dist/platform/observation/data-source-adapter.js +1 -1
- package/dist/platform/observation/data-source-adapter.js.map +1 -1
- package/dist/platform/observation/dimension-pre-checker.d.ts.map +1 -1
- package/dist/platform/observation/dimension-pre-checker.js +12 -2
- package/dist/platform/observation/dimension-pre-checker.js.map +1 -1
- package/dist/platform/observation/observation-apply.d.ts.map +1 -1
- package/dist/platform/observation/observation-apply.js +2 -14
- package/dist/platform/observation/observation-apply.js.map +1 -1
- package/dist/platform/observation/observation-datasource.d.ts.map +1 -1
- package/dist/platform/observation/observation-datasource.js +2 -14
- package/dist/platform/observation/observation-datasource.js.map +1 -1
- package/dist/platform/observation/observation-engine.js +0 -2
- package/dist/platform/observation/observation-engine.js.map +1 -1
- package/dist/platform/observation/observation-value.d.ts +2 -0
- package/dist/platform/observation/observation-value.d.ts.map +1 -0
- package/dist/platform/observation/observation-value.js +18 -0
- package/dist/platform/observation/observation-value.js.map +1 -0
- package/dist/platform/observation/types/capability.d.ts +689 -0
- package/dist/platform/observation/types/capability.d.ts.map +1 -1
- package/dist/platform/observation/types/capability.js +170 -2
- package/dist/platform/observation/types/capability.js.map +1 -1
- package/dist/platform/observation/types/data-source.d.ts +122 -25
- package/dist/platform/observation/types/data-source.d.ts.map +1 -1
- package/dist/platform/observation/types/data-source.js +17 -9
- package/dist/platform/observation/types/data-source.js.map +1 -1
- package/dist/platform/profile/governed-memory.d.ts +667 -0
- package/dist/platform/profile/governed-memory.d.ts.map +1 -0
- package/dist/platform/profile/governed-memory.js +535 -0
- package/dist/platform/profile/governed-memory.js.map +1 -0
- package/dist/platform/profile/profile-change-proposal.d.ts +91 -89
- package/dist/platform/profile/profile-change-proposal.d.ts.map +1 -1
- package/dist/platform/profile/profile-change-proposal.js +134 -19
- package/dist/platform/profile/profile-change-proposal.js.map +1 -1
- package/dist/platform/profile/relationship-profile.d.ts +51 -51
- package/dist/platform/profile/relationship-profile.d.ts.map +1 -1
- package/dist/platform/profile/relationship-profile.js +3 -2
- package/dist/platform/profile/relationship-profile.js.map +1 -1
- package/dist/platform/profile/retrieval-context.d.ts +16 -0
- package/dist/platform/profile/retrieval-context.d.ts.map +1 -1
- package/dist/platform/profile/retrieval-context.js +17 -0
- package/dist/platform/profile/retrieval-context.js.map +1 -1
- package/dist/platform/profile/user-md-profile-import.d.ts +6 -6
- package/dist/platform/soil/compiled-memory-projections.js +6 -6
- package/dist/platform/soil/compiled-memory-projections.js.map +1 -1
- package/dist/platform/soil/content-projections.js +12 -12
- package/dist/platform/soil/content-projections.js.map +1 -1
- package/dist/platform/soil/contracts.d.ts +414 -385
- package/dist/platform/soil/contracts.d.ts.map +1 -1
- package/dist/platform/soil/contracts.js +23 -3
- package/dist/platform/soil/contracts.js.map +1 -1
- package/dist/platform/soil/doctor.d.ts +0 -1
- package/dist/platform/soil/doctor.d.ts.map +1 -1
- package/dist/platform/soil/doctor.js +3 -17
- package/dist/platform/soil/doctor.js.map +1 -1
- package/dist/platform/soil/frontmatter.js +1 -1
- package/dist/platform/soil/frontmatter.js.map +1 -1
- package/dist/platform/soil/importer.d.ts +6 -6
- package/dist/platform/soil/index-store.d.ts.map +1 -1
- package/dist/platform/soil/index-store.js +6 -7
- package/dist/platform/soil/index-store.js.map +1 -1
- package/dist/platform/soil/projections.d.ts.map +1 -1
- package/dist/platform/soil/projections.js +8 -4
- package/dist/platform/soil/projections.js.map +1 -1
- package/dist/platform/soil/runtime-rebuild.d.ts.map +1 -1
- package/dist/platform/soil/runtime-rebuild.js +17 -23
- package/dist/platform/soil/runtime-rebuild.js.map +1 -1
- package/dist/platform/soil/source-paths.d.ts +2 -0
- package/dist/platform/soil/source-paths.d.ts.map +1 -0
- package/dist/platform/soil/source-paths.js +25 -0
- package/dist/platform/soil/source-paths.js.map +1 -0
- package/dist/platform/soil/sqlite-repository-helpers.d.ts.map +1 -1
- package/dist/platform/soil/sqlite-repository-helpers.js +7 -3
- package/dist/platform/soil/sqlite-repository-helpers.js.map +1 -1
- package/dist/platform/soil/sqlite-repository-search.d.ts.map +1 -1
- package/dist/platform/soil/sqlite-repository-search.js +5 -1
- package/dist/platform/soil/sqlite-repository-search.js.map +1 -1
- package/dist/platform/soil/types.d.ts +19 -18
- package/dist/platform/soil/types.d.ts.map +1 -1
- package/dist/platform/soil/types.js +58 -16
- package/dist/platform/soil/types.js.map +1 -1
- package/dist/platform/time/time-horizon-engine.d.ts.map +1 -1
- package/dist/platform/time/time-horizon-engine.js +8 -3
- package/dist/platform/time/time-horizon-engine.js.map +1 -1
- package/dist/platform/traits/character-policy.d.ts +4 -0
- package/dist/platform/traits/character-policy.d.ts.map +1 -0
- package/dist/platform/traits/character-policy.js +10 -0
- package/dist/platform/traits/character-policy.js.map +1 -0
- package/dist/platform/traits/curiosity-engine.d.ts +5 -26
- package/dist/platform/traits/curiosity-engine.d.ts.map +1 -1
- package/dist/platform/traits/curiosity-engine.js +29 -203
- package/dist/platform/traits/curiosity-engine.js.map +1 -1
- package/dist/platform/traits/curiosity-triggers.d.ts +16 -0
- package/dist/platform/traits/curiosity-triggers.d.ts.map +1 -0
- package/dist/platform/traits/curiosity-triggers.js +187 -0
- package/dist/platform/traits/curiosity-triggers.js.map +1 -0
- package/dist/platform/traits/ethics-gate.d.ts +5 -4
- package/dist/platform/traits/ethics-gate.d.ts.map +1 -1
- package/dist/platform/traits/ethics-gate.js +11 -17
- package/dist/platform/traits/ethics-gate.js.map +1 -1
- package/dist/platform/traits/trust-manager.d.ts +5 -2
- package/dist/platform/traits/trust-manager.d.ts.map +1 -1
- package/dist/platform/traits/trust-manager.js +11 -20
- package/dist/platform/traits/trust-manager.js.map +1 -1
- package/dist/platform/traits/types/curiosity.d.ts +12 -12
- package/dist/platform/traits/types/curiosity.d.ts.map +1 -1
- package/dist/platform/traits/types/curiosity.js +24 -11
- package/dist/platform/traits/types/curiosity.js.map +1 -1
- package/dist/platform/traits/types/guardrail.d.ts +6 -6
- package/dist/prompt/gateway.d.ts +2 -2
- package/dist/prompt/gateway.d.ts.map +1 -1
- package/dist/prompt/gateway.js +4 -3
- package/dist/prompt/gateway.js.map +1 -1
- package/dist/prompt/purposes/dream.d.ts.map +1 -1
- package/dist/prompt/purposes/dream.js +3 -2
- package/dist/prompt/purposes/dream.js.map +1 -1
- package/dist/reflection/cognition-writeback-evaluator.d.ts +10 -0
- package/dist/reflection/cognition-writeback-evaluator.d.ts.map +1 -0
- package/dist/reflection/cognition-writeback-evaluator.js +49 -0
- package/dist/reflection/cognition-writeback-evaluator.js.map +1 -0
- package/dist/reflection/cognition-writeback-queue.d.ts +835 -0
- package/dist/reflection/cognition-writeback-queue.d.ts.map +1 -0
- package/dist/reflection/cognition-writeback-queue.js +198 -0
- package/dist/reflection/cognition-writeback-queue.js.map +1 -0
- package/dist/reflection/dream-consolidation.d.ts +4 -0
- package/dist/reflection/dream-consolidation.d.ts.map +1 -1
- package/dist/reflection/dream-consolidation.js +28 -8
- package/dist/reflection/dream-consolidation.js.map +1 -1
- package/dist/reflection/evening-catchup.d.ts.map +1 -1
- package/dist/reflection/evening-catchup.js +21 -13
- package/dist/reflection/evening-catchup.js.map +1 -1
- package/dist/reflection/index.d.ts +4 -0
- package/dist/reflection/index.d.ts.map +1 -1
- package/dist/reflection/index.js +2 -0
- package/dist/reflection/index.js.map +1 -1
- package/dist/reflection/morning-planning.d.ts.map +1 -1
- package/dist/reflection/morning-planning.js +17 -6
- package/dist/reflection/morning-planning.js.map +1 -1
- package/dist/reflection/reflection-profile-surface.d.ts +8 -0
- package/dist/reflection/reflection-profile-surface.d.ts.map +1 -0
- package/dist/reflection/reflection-profile-surface.js +20 -0
- package/dist/reflection/reflection-profile-surface.js.map +1 -0
- package/dist/reflection/reflection-report-state-migration.d.ts +14 -0
- package/dist/reflection/reflection-report-state-migration.d.ts.map +1 -0
- package/dist/reflection/reflection-report-state-migration.js +169 -0
- package/dist/reflection/reflection-report-state-migration.js.map +1 -0
- package/dist/reflection/reflection-report-state-store.d.ts +23 -0
- package/dist/reflection/reflection-report-state-store.d.ts.map +1 -0
- package/dist/reflection/reflection-report-state-store.js +90 -0
- package/dist/reflection/reflection-report-state-store.js.map +1 -0
- package/dist/reflection/reflection-utils.d.ts +7 -1
- package/dist/reflection/reflection-utils.d.ts.map +1 -1
- package/dist/reflection/reflection-utils.js +24 -7
- package/dist/reflection/reflection-utils.js.map +1 -1
- package/dist/reflection/types.d.ts +16 -4
- package/dist/reflection/types.d.ts.map +1 -1
- package/dist/reflection/types.js +14 -9
- package/dist/reflection/types.js.map +1 -1
- package/dist/reflection/weekly-review.d.ts.map +1 -1
- package/dist/reflection/weekly-review.js +29 -8
- package/dist/reflection/weekly-review.js.map +1 -1
- package/dist/reporting/report-formatters.d.ts +1 -1
- package/dist/reporting/report-formatters.d.ts.map +1 -1
- package/dist/reporting/report-formatters.js +20 -16
- package/dist/reporting/report-formatters.js.map +1 -1
- package/dist/reporting/report-summary-builders.d.ts +16 -0
- package/dist/reporting/report-summary-builders.d.ts.map +1 -0
- package/dist/reporting/report-summary-builders.js +125 -0
- package/dist/reporting/report-summary-builders.js.map +1 -0
- package/dist/reporting/reporting-engine.d.ts +1 -1
- package/dist/reporting/reporting-engine.d.ts.map +1 -1
- package/dist/reporting/reporting-engine.js +10 -132
- package/dist/reporting/reporting-engine.js.map +1 -1
- package/dist/runtime/approval-broker.d.ts +8 -2
- package/dist/runtime/approval-broker.d.ts.map +1 -1
- package/dist/runtime/approval-broker.js +87 -7
- package/dist/runtime/approval-broker.js.map +1 -1
- package/dist/runtime/assets/checksum.d.ts +2 -0
- package/dist/runtime/assets/checksum.d.ts.map +1 -0
- package/dist/runtime/assets/checksum.js +44 -0
- package/dist/runtime/assets/checksum.js.map +1 -0
- package/dist/runtime/assets/index.d.ts +4 -0
- package/dist/runtime/assets/index.d.ts.map +1 -0
- package/dist/runtime/assets/index.js +4 -0
- package/dist/runtime/assets/index.js.map +1 -0
- package/dist/runtime/assets/registry.d.ts +16 -0
- package/dist/runtime/assets/registry.d.ts.map +1 -0
- package/dist/runtime/assets/registry.js +105 -0
- package/dist/runtime/assets/registry.js.map +1 -0
- package/dist/runtime/assets/types.d.ts +233 -0
- package/dist/runtime/assets/types.d.ts.map +1 -0
- package/dist/runtime/assets/types.js +92 -0
- package/dist/runtime/assets/types.js.map +1 -0
- package/dist/runtime/attention/attention-admission.d.ts +29 -0
- package/dist/runtime/attention/attention-admission.d.ts.map +1 -0
- package/dist/runtime/attention/attention-admission.js +92 -0
- package/dist/runtime/attention/attention-admission.js.map +1 -0
- package/dist/runtime/attention/attention-agenda.d.ts +21 -0
- package/dist/runtime/attention/attention-agenda.d.ts.map +1 -0
- package/dist/runtime/attention/attention-agenda.js +539 -0
- package/dist/runtime/attention/attention-agenda.js.map +1 -0
- package/dist/runtime/attention/attention-clustering.d.ts +54 -0
- package/dist/runtime/attention/attention-clustering.d.ts.map +1 -0
- package/dist/runtime/attention/attention-clustering.js +243 -0
- package/dist/runtime/attention/attention-clustering.js.map +1 -0
- package/dist/runtime/attention/attention-continuity.d.ts +609 -0
- package/dist/runtime/attention/attention-continuity.d.ts.map +1 -0
- package/dist/runtime/attention/attention-continuity.js +414 -0
- package/dist/runtime/attention/attention-continuity.js.map +1 -0
- package/dist/runtime/attention/attention-cycle.d.ts +56 -0
- package/dist/runtime/attention/attention-cycle.d.ts.map +1 -0
- package/dist/runtime/attention/attention-cycle.js +266 -0
- package/dist/runtime/attention/attention-cycle.js.map +1 -0
- package/dist/runtime/attention/attention-decomposition.d.ts +15 -0
- package/dist/runtime/attention/attention-decomposition.d.ts.map +1 -0
- package/dist/runtime/attention/attention-decomposition.js +157 -0
- package/dist/runtime/attention/attention-decomposition.js.map +1 -0
- package/dist/runtime/attention/attention-diagnostics.d.ts +122 -0
- package/dist/runtime/attention/attention-diagnostics.d.ts.map +1 -0
- package/dist/runtime/attention/attention-diagnostics.js +101 -0
- package/dist/runtime/attention/attention-diagnostics.js.map +1 -0
- package/dist/runtime/attention/attention-feedback.d.ts +58 -0
- package/dist/runtime/attention/attention-feedback.d.ts.map +1 -0
- package/dist/runtime/attention/attention-feedback.js +212 -0
- package/dist/runtime/attention/attention-feedback.js.map +1 -0
- package/dist/runtime/attention/attention-input.d.ts +673 -0
- package/dist/runtime/attention/attention-input.d.ts.map +1 -0
- package/dist/runtime/attention/attention-input.js +439 -0
- package/dist/runtime/attention/attention-input.js.map +1 -0
- package/dist/runtime/attention/attention-metabolism-types.d.ts +222 -0
- package/dist/runtime/attention/attention-metabolism-types.d.ts.map +1 -0
- package/dist/runtime/attention/attention-metabolism-types.js +2 -0
- package/dist/runtime/attention/attention-metabolism-types.js.map +1 -0
- package/dist/runtime/attention/attention-metabolism.d.ts +21 -0
- package/dist/runtime/attention/attention-metabolism.d.ts.map +1 -0
- package/dist/runtime/attention/attention-metabolism.js +1351 -0
- package/dist/runtime/attention/attention-metabolism.js.map +1 -0
- package/dist/runtime/attention/attention-promotion.d.ts +15 -0
- package/dist/runtime/attention/attention-promotion.d.ts.map +1 -0
- package/dist/runtime/attention/attention-promotion.js +110 -0
- package/dist/runtime/attention/attention-promotion.js.map +1 -0
- package/dist/runtime/attention/attention-refs.d.ts +12 -0
- package/dist/runtime/attention/attention-refs.d.ts.map +1 -0
- package/dist/runtime/attention/attention-refs.js +46 -0
- package/dist/runtime/attention/attention-refs.js.map +1 -0
- package/dist/runtime/attention/attention-scope.d.ts +33 -0
- package/dist/runtime/attention/attention-scope.d.ts.map +1 -0
- package/dist/runtime/attention/attention-scope.js +215 -0
- package/dist/runtime/attention/attention-scope.js.map +1 -0
- package/dist/runtime/attention/attention-semantic.d.ts +65 -0
- package/dist/runtime/attention/attention-semantic.d.ts.map +1 -0
- package/dist/runtime/attention/attention-semantic.js +102 -0
- package/dist/runtime/attention/attention-semantic.js.map +1 -0
- package/dist/runtime/attention/direct-path-inventory.d.ts +25 -0
- package/dist/runtime/attention/direct-path-inventory.d.ts.map +1 -0
- package/dist/runtime/attention/direct-path-inventory.js +377 -0
- package/dist/runtime/attention/direct-path-inventory.js.map +1 -0
- package/dist/runtime/attention/feedback-ingestion.d.ts +2236 -0
- package/dist/runtime/attention/feedback-ingestion.d.ts.map +1 -0
- package/dist/runtime/attention/feedback-ingestion.js +568 -0
- package/dist/runtime/attention/feedback-ingestion.js.map +1 -0
- package/dist/runtime/attention/index.d.ts +31 -0
- package/dist/runtime/attention/index.d.ts.map +1 -0
- package/dist/runtime/attention/index.js +16 -0
- package/dist/runtime/attention/index.js.map +1 -0
- package/dist/runtime/attention/proactive-policy.d.ts +200 -0
- package/dist/runtime/attention/proactive-policy.d.ts.map +1 -0
- package/dist/runtime/attention/proactive-policy.js +133 -0
- package/dist/runtime/attention/proactive-policy.js.map +1 -0
- package/dist/runtime/attention/surface-delivery.d.ts +215 -0
- package/dist/runtime/attention/surface-delivery.d.ts.map +1 -0
- package/dist/runtime/attention/surface-delivery.js +232 -0
- package/dist/runtime/attention/surface-delivery.js.map +1 -0
- package/dist/runtime/builtin-integrations.d.ts +4 -0
- package/dist/runtime/builtin-integrations.d.ts.map +1 -1
- package/dist/runtime/builtin-integrations.js +29 -0
- package/dist/runtime/builtin-integrations.js.map +1 -1
- package/dist/runtime/capability-execution-resolver.d.ts +9 -0
- package/dist/runtime/capability-execution-resolver.d.ts.map +1 -0
- package/dist/runtime/capability-execution-resolver.js +92 -0
- package/dist/runtime/capability-execution-resolver.js.map +1 -0
- package/dist/runtime/capability-operation-planner.d.ts +81 -0
- package/dist/runtime/capability-operation-planner.d.ts.map +1 -0
- package/dist/runtime/capability-operation-planner.js +481 -0
- package/dist/runtime/capability-operation-planner.js.map +1 -0
- package/dist/runtime/change-detector.d.ts.map +1 -1
- package/dist/runtime/change-detector.js +17 -2
- package/dist/runtime/change-detector.js.map +1 -1
- package/dist/runtime/channels/http-post.d.ts +5 -1
- package/dist/runtime/channels/http-post.d.ts.map +1 -1
- package/dist/runtime/channels/http-post.js +65 -9
- package/dist/runtime/channels/http-post.js.map +1 -1
- package/dist/runtime/cognition/audit-sink.d.ts +37 -0
- package/dist/runtime/cognition/audit-sink.d.ts.map +1 -0
- package/dist/runtime/cognition/audit-sink.js +108 -0
- package/dist/runtime/cognition/audit-sink.js.map +1 -0
- package/dist/runtime/cognition/cloud-boundary.d.ts +308 -0
- package/dist/runtime/cognition/cloud-boundary.d.ts.map +1 -0
- package/dist/runtime/cognition/cloud-boundary.js +114 -0
- package/dist/runtime/cognition/cloud-boundary.js.map +1 -0
- package/dist/runtime/cognition/companion-cognition-service.d.ts +18 -0
- package/dist/runtime/cognition/companion-cognition-service.d.ts.map +1 -0
- package/dist/runtime/cognition/companion-cognition-service.js +224 -0
- package/dist/runtime/cognition/companion-cognition-service.js.map +1 -0
- package/dist/runtime/cognition/contracts.d.ts +19901 -0
- package/dist/runtime/cognition/contracts.d.ts.map +1 -0
- package/dist/runtime/cognition/contracts.js +559 -0
- package/dist/runtime/cognition/contracts.js.map +1 -0
- package/dist/runtime/cognition/index.d.ts +13 -0
- package/dist/runtime/cognition/index.d.ts.map +1 -0
- package/dist/runtime/cognition/index.js +9 -0
- package/dist/runtime/cognition/index.js.map +1 -0
- package/dist/runtime/cognition/memory-context.d.ts +19 -0
- package/dist/runtime/cognition/memory-context.d.ts.map +1 -0
- package/dist/runtime/cognition/memory-context.js +187 -0
- package/dist/runtime/cognition/memory-context.js.map +1 -0
- package/dist/runtime/cognition/ports.d.ts +11 -0
- package/dist/runtime/cognition/ports.d.ts.map +1 -0
- package/dist/runtime/cognition/ports.js +2 -0
- package/dist/runtime/cognition/ports.js.map +1 -0
- package/dist/runtime/cognition/situation.d.ts +6 -0
- package/dist/runtime/cognition/situation.d.ts.map +1 -0
- package/dist/runtime/cognition/situation.js +66 -0
- package/dist/runtime/cognition/situation.js.map +1 -0
- package/dist/runtime/cognition/tool-authority.d.ts +21 -0
- package/dist/runtime/cognition/tool-authority.d.ts.map +1 -0
- package/dist/runtime/cognition/tool-authority.js +56 -0
- package/dist/runtime/cognition/tool-authority.js.map +1 -0
- package/dist/runtime/cognition/writeback.d.ts +17 -0
- package/dist/runtime/cognition/writeback.d.ts.map +1 -0
- package/dist/runtime/cognition/writeback.js +40 -0
- package/dist/runtime/cognition/writeback.js.map +1 -0
- package/dist/runtime/companion-state-reducer.d.ts +10 -0
- package/dist/runtime/companion-state-reducer.d.ts.map +1 -0
- package/dist/runtime/companion-state-reducer.js +601 -0
- package/dist/runtime/companion-state-reducer.js.map +1 -0
- package/dist/runtime/companion-state-runtime-selectors.d.ts +44 -0
- package/dist/runtime/companion-state-runtime-selectors.d.ts.map +1 -0
- package/dist/runtime/companion-state-runtime-selectors.js +308 -0
- package/dist/runtime/companion-state-runtime-selectors.js.map +1 -0
- package/dist/runtime/confirmation-decision.d.ts +2 -2
- package/dist/runtime/confirmation-decision.d.ts.map +1 -1
- package/dist/runtime/confirmation-decision.js +3 -2
- package/dist/runtime/confirmation-decision.js.map +1 -1
- package/dist/runtime/control/admission-policy.d.ts +1228 -0
- package/dist/runtime/control/admission-policy.d.ts.map +1 -0
- package/dist/runtime/control/admission-policy.js +455 -0
- package/dist/runtime/control/admission-policy.js.map +1 -0
- package/dist/runtime/control/autonomy-governor.d.ts +1345 -0
- package/dist/runtime/control/autonomy-governor.d.ts.map +1 -0
- package/dist/runtime/control/autonomy-governor.js +1030 -0
- package/dist/runtime/control/autonomy-governor.js.map +1 -0
- package/dist/runtime/control/autonomy-ttl.d.ts +4 -0
- package/dist/runtime/control/autonomy-ttl.d.ts.map +1 -0
- package/dist/runtime/control/autonomy-ttl.js +8 -0
- package/dist/runtime/control/autonomy-ttl.js.map +1 -0
- package/dist/runtime/control/capability-status-projection.d.ts +987 -0
- package/dist/runtime/control/capability-status-projection.d.ts.map +1 -0
- package/dist/runtime/control/capability-status-projection.js +384 -0
- package/dist/runtime/control/capability-status-projection.js.map +1 -0
- package/dist/runtime/control/companion-action-projection.d.ts +640 -0
- package/dist/runtime/control/companion-action-projection.d.ts.map +1 -0
- package/dist/runtime/control/companion-action-projection.js +304 -0
- package/dist/runtime/control/companion-action-projection.js.map +1 -0
- package/dist/runtime/control/daemon-runtime-control-executor.d.ts.map +1 -1
- package/dist/runtime/control/daemon-runtime-control-executor.js +2 -3
- package/dist/runtime/control/daemon-runtime-control-executor.js.map +1 -1
- package/dist/runtime/control/index.d.ts +14 -1
- package/dist/runtime/control/index.d.ts.map +1 -1
- package/dist/runtime/control/index.js +7 -0
- package/dist/runtime/control/index.js.map +1 -1
- package/dist/runtime/control/internal-autonomy-default.d.ts +163 -0
- package/dist/runtime/control/internal-autonomy-default.d.ts.map +1 -0
- package/dist/runtime/control/internal-autonomy-default.js +379 -0
- package/dist/runtime/control/internal-autonomy-default.js.map +1 -0
- package/dist/runtime/control/runtime-control-intent.d.ts +4 -0
- package/dist/runtime/control/runtime-control-intent.d.ts.map +1 -1
- package/dist/runtime/control/runtime-control-intent.js +29 -6
- package/dist/runtime/control/runtime-control-intent.js.map +1 -1
- package/dist/runtime/control/runtime-control-messages.d.ts +5 -0
- package/dist/runtime/control/runtime-control-messages.d.ts.map +1 -0
- package/dist/runtime/control/runtime-control-messages.js +11 -0
- package/dist/runtime/control/runtime-control-messages.js.map +1 -0
- package/dist/runtime/control/runtime-control-permission-grants.d.ts +16 -0
- package/dist/runtime/control/runtime-control-permission-grants.d.ts.map +1 -0
- package/dist/runtime/control/runtime-control-permission-grants.js +125 -0
- package/dist/runtime/control/runtime-control-permission-grants.js.map +1 -0
- package/dist/runtime/control/runtime-control-result-routing.d.ts +1 -0
- package/dist/runtime/control/runtime-control-result-routing.d.ts.map +1 -1
- package/dist/runtime/control/runtime-control-result-routing.js +1 -1
- package/dist/runtime/control/runtime-control-result-routing.js.map +1 -1
- package/dist/runtime/control/runtime-control-service.d.ts +49 -1
- package/dist/runtime/control/runtime-control-service.d.ts.map +1 -1
- package/dist/runtime/control/runtime-control-service.js +916 -19
- package/dist/runtime/control/runtime-control-service.js.map +1 -1
- package/dist/runtime/control/runtime-target-resolver.d.ts.map +1 -1
- package/dist/runtime/control/runtime-target-resolver.js +54 -8
- package/dist/runtime/control/runtime-target-resolver.js.map +1 -1
- package/dist/runtime/conversational-approval-decision.d.ts +2 -2
- package/dist/runtime/daemon/browser-backpressure-policy.d.ts +1 -0
- package/dist/runtime/daemon/browser-backpressure-policy.d.ts.map +1 -1
- package/dist/runtime/daemon/browser-backpressure-policy.js +7 -8
- package/dist/runtime/daemon/browser-backpressure-policy.js.map +1 -1
- package/dist/runtime/daemon/client.d.ts +1 -0
- package/dist/runtime/daemon/client.d.ts.map +1 -1
- package/dist/runtime/daemon/client.js +64 -24
- package/dist/runtime/daemon/client.js.map +1 -1
- package/dist/runtime/daemon/config-json.d.ts +5 -0
- package/dist/runtime/daemon/config-json.d.ts.map +1 -0
- package/dist/runtime/daemon/config-json.js +19 -0
- package/dist/runtime/daemon/config-json.js.map +1 -0
- package/dist/runtime/daemon/maintenance.d.ts +12 -2
- package/dist/runtime/daemon/maintenance.d.ts.map +1 -1
- package/dist/runtime/daemon/maintenance.js +59 -22
- package/dist/runtime/daemon/maintenance.js.map +1 -1
- package/dist/runtime/daemon/persistence.d.ts +1 -1
- package/dist/runtime/daemon/persistence.d.ts.map +1 -1
- package/dist/runtime/daemon/persistence.js +10 -20
- package/dist/runtime/daemon/persistence.js.map +1 -1
- package/dist/runtime/daemon/resident-attention-orchestrator.d.ts +35 -0
- package/dist/runtime/daemon/resident-attention-orchestrator.d.ts.map +1 -0
- package/dist/runtime/daemon/resident-attention-orchestrator.js +495 -0
- package/dist/runtime/daemon/resident-attention-orchestrator.js.map +1 -0
- package/dist/runtime/daemon/runner-bootstrap.d.ts.map +1 -1
- package/dist/runtime/daemon/runner-bootstrap.js +8 -6
- package/dist/runtime/daemon/runner-bootstrap.js.map +1 -1
- package/dist/runtime/daemon/runner-commands.d.ts +6 -6
- package/dist/runtime/daemon/runner-commands.d.ts.map +1 -1
- package/dist/runtime/daemon/runner-commands.js +10 -6
- package/dist/runtime/daemon/runner-commands.js.map +1 -1
- package/dist/runtime/daemon/runner-goal-cycle.d.ts.map +1 -1
- package/dist/runtime/daemon/runner-goal-cycle.js +4 -1
- package/dist/runtime/daemon/runner-goal-cycle.js.map +1 -1
- package/dist/runtime/daemon/runner-recovery.d.ts +2 -2
- package/dist/runtime/daemon/runner-recovery.d.ts.map +1 -1
- package/dist/runtime/daemon/runner-recovery.js +82 -88
- package/dist/runtime/daemon/runner-recovery.js.map +1 -1
- package/dist/runtime/daemon/runner-resident-curiosity.d.ts +6 -4
- package/dist/runtime/daemon/runner-resident-curiosity.d.ts.map +1 -1
- package/dist/runtime/daemon/runner-resident-curiosity.js +125 -20
- package/dist/runtime/daemon/runner-resident-curiosity.js.map +1 -1
- package/dist/runtime/daemon/runner-resident-dream.d.ts +2 -3
- package/dist/runtime/daemon/runner-resident-dream.d.ts.map +1 -1
- package/dist/runtime/daemon/runner-resident-dream.js +4 -14
- package/dist/runtime/daemon/runner-resident-dream.js.map +1 -1
- package/dist/runtime/daemon/runner-resident-proactive.d.ts +14 -3
- package/dist/runtime/daemon/runner-resident-proactive.d.ts.map +1 -1
- package/dist/runtime/daemon/runner-resident-proactive.js +312 -23
- package/dist/runtime/daemon/runner-resident-proactive.js.map +1 -1
- package/dist/runtime/daemon/runner-resident-shared.d.ts +25 -0
- package/dist/runtime/daemon/runner-resident-shared.d.ts.map +1 -1
- package/dist/runtime/daemon/runner-resident-shared.js +57 -12
- package/dist/runtime/daemon/runner-resident-shared.js.map +1 -1
- package/dist/runtime/daemon/runner-resident.d.ts +1 -1
- package/dist/runtime/daemon/runner-resident.d.ts.map +1 -1
- package/dist/runtime/daemon/runner-resident.js +1 -1
- package/dist/runtime/daemon/runner-resident.js.map +1 -1
- package/dist/runtime/daemon/runner-startup.d.ts +2 -1
- package/dist/runtime/daemon/runner-startup.d.ts.map +1 -1
- package/dist/runtime/daemon/runner-startup.js +19 -14
- package/dist/runtime/daemon/runner-startup.js.map +1 -1
- package/dist/runtime/daemon/runner.d.ts +28 -14
- package/dist/runtime/daemon/runner.d.ts.map +1 -1
- package/dist/runtime/daemon/runner.js +20 -19
- package/dist/runtime/daemon/runner.js.map +1 -1
- package/dist/runtime/daemon/runtime-ownership.d.ts +1 -0
- package/dist/runtime/daemon/runtime-ownership.d.ts.map +1 -1
- package/dist/runtime/daemon/runtime-ownership.js +41 -48
- package/dist/runtime/daemon/runtime-ownership.js.map +1 -1
- package/dist/runtime/daemon/runtime-root.d.ts.map +1 -1
- package/dist/runtime/daemon/runtime-root.js +13 -17
- package/dist/runtime/daemon/runtime-root.js.map +1 -1
- package/dist/runtime/daemon/types.d.ts +18 -4
- package/dist/runtime/daemon/types.d.ts.map +1 -1
- package/dist/runtime/daemon/types.js +8 -1
- package/dist/runtime/daemon/types.js.map +1 -1
- package/dist/runtime/daemon/wait-deadline-resolver.d.ts +9 -2
- package/dist/runtime/daemon/wait-deadline-resolver.d.ts.map +1 -1
- package/dist/runtime/daemon/wait-deadline-resolver.js +13 -12
- package/dist/runtime/daemon/wait-deadline-resolver.js.map +1 -1
- package/dist/runtime/decision/companion-behavior-eval-contract.d.ts +645 -0
- package/dist/runtime/decision/companion-behavior-eval-contract.d.ts.map +1 -0
- package/dist/runtime/decision/companion-behavior-eval-contract.js +263 -0
- package/dist/runtime/decision/companion-behavior-eval-contract.js.map +1 -0
- package/dist/runtime/decision/companion-character-policy-projection.d.ts +325 -0
- package/dist/runtime/decision/companion-character-policy-projection.d.ts.map +1 -0
- package/dist/runtime/decision/companion-character-policy-projection.js +231 -0
- package/dist/runtime/decision/companion-character-policy-projection.js.map +1 -0
- package/dist/runtime/decision/companion-decision-contract.d.ts +503 -0
- package/dist/runtime/decision/companion-decision-contract.d.ts.map +1 -0
- package/dist/runtime/decision/companion-decision-contract.js +128 -0
- package/dist/runtime/decision/companion-decision-contract.js.map +1 -0
- package/dist/runtime/decision/companion-gadget-planning.d.ts +2252 -0
- package/dist/runtime/decision/companion-gadget-planning.d.ts.map +1 -0
- package/dist/runtime/decision/companion-gadget-planning.js +534 -0
- package/dist/runtime/decision/companion-gadget-planning.js.map +1 -0
- package/dist/runtime/decision/core-companion-memory-projection.d.ts +3059 -0
- package/dist/runtime/decision/core-companion-memory-projection.d.ts.map +1 -0
- package/dist/runtime/decision/core-companion-memory-projection.js +449 -0
- package/dist/runtime/decision/core-companion-memory-projection.js.map +1 -0
- package/dist/runtime/decision/index.d.ts +11 -0
- package/dist/runtime/decision/index.d.ts.map +1 -0
- package/dist/runtime/decision/index.js +6 -0
- package/dist/runtime/decision/index.js.map +1 -0
- package/dist/runtime/dream-sidecar-review.d.ts.map +1 -1
- package/dist/runtime/dream-sidecar-review.js +2 -2
- package/dist/runtime/dream-sidecar-review.js.map +1 -1
- package/dist/runtime/event/outbox-seq.d.ts +2 -0
- package/dist/runtime/event/outbox-seq.d.ts.map +1 -0
- package/dist/runtime/event/outbox-seq.js +11 -0
- package/dist/runtime/event/outbox-seq.js.map +1 -0
- package/dist/runtime/event/server-auth.d.ts +1 -1
- package/dist/runtime/event/server-auth.d.ts.map +1 -1
- package/dist/runtime/event/server-auth.js +3 -1
- package/dist/runtime/event/server-auth.js.map +1 -1
- package/dist/runtime/event/server-command-handler.d.ts.map +1 -1
- package/dist/runtime/event/server-command-handler.js +45 -44
- package/dist/runtime/event/server-command-handler.js.map +1 -1
- package/dist/runtime/event/server-file-ingestion.d.ts +1 -0
- package/dist/runtime/event/server-file-ingestion.d.ts.map +1 -1
- package/dist/runtime/event/server-file-ingestion.js +18 -29
- package/dist/runtime/event/server-file-ingestion.js.map +1 -1
- package/dist/runtime/event/server-http.d.ts +2 -1
- package/dist/runtime/event/server-http.d.ts.map +1 -1
- package/dist/runtime/event/server-http.js +2 -18
- package/dist/runtime/event/server-http.js.map +1 -1
- package/dist/runtime/event/server-router.d.ts +2 -0
- package/dist/runtime/event/server-router.d.ts.map +1 -1
- package/dist/runtime/event/server-router.js +21 -12
- package/dist/runtime/event/server-router.js.map +1 -1
- package/dist/runtime/event/server-snapshot-reader.d.ts +10 -2
- package/dist/runtime/event/server-snapshot-reader.d.ts.map +1 -1
- package/dist/runtime/event/server-snapshot-reader.js +95 -64
- package/dist/runtime/event/server-snapshot-reader.js.map +1 -1
- package/dist/runtime/event/server-sse.d.ts.map +1 -1
- package/dist/runtime/event/server-sse.js +3 -4
- package/dist/runtime/event/server-sse.js.map +1 -1
- package/dist/runtime/event/server-trigger-handler.d.ts.map +1 -1
- package/dist/runtime/event/server-trigger-handler.js +7 -10
- package/dist/runtime/event/server-trigger-handler.js.map +1 -1
- package/dist/runtime/event/server-types.d.ts +4 -0
- package/dist/runtime/event/server-types.d.ts.map +1 -1
- package/dist/runtime/event/server.d.ts +1 -0
- package/dist/runtime/event/server.d.ts.map +1 -1
- package/dist/runtime/event/server.js +15 -4
- package/dist/runtime/event/server.js.map +1 -1
- package/dist/runtime/evidence-answer.d.ts +26 -0
- package/dist/runtime/evidence-answer.d.ts.map +1 -1
- package/dist/runtime/evidence-answer.js +134 -14
- package/dist/runtime/evidence-answer.js.map +1 -1
- package/dist/runtime/executor/goal-worker.d.ts +3 -3
- package/dist/runtime/executor/goal-worker.d.ts.map +1 -1
- package/dist/runtime/executor/goal-worker.js +4 -4
- package/dist/runtime/executor/goal-worker.js.map +1 -1
- package/dist/runtime/executor/loop-supervisor.d.ts +13 -6
- package/dist/runtime/executor/loop-supervisor.d.ts.map +1 -1
- package/dist/runtime/executor/loop-supervisor.js +91 -23
- package/dist/runtime/executor/loop-supervisor.js.map +1 -1
- package/dist/runtime/foreign-plugins/compatibility.d.ts +18 -1
- package/dist/runtime/foreign-plugins/compatibility.d.ts.map +1 -1
- package/dist/runtime/foreign-plugins/compatibility.js +183 -55
- package/dist/runtime/foreign-plugins/compatibility.js.map +1 -1
- package/dist/runtime/foreign-plugins/index.d.ts +2 -2
- package/dist/runtime/foreign-plugins/index.d.ts.map +1 -1
- package/dist/runtime/foreign-plugins/index.js +1 -1
- package/dist/runtime/foreign-plugins/index.js.map +1 -1
- package/dist/runtime/foreign-plugins/types.d.ts +347 -14
- package/dist/runtime/foreign-plugins/types.d.ts.map +1 -1
- package/dist/runtime/foreign-plugins/types.js +88 -1
- package/dist/runtime/foreign-plugins/types.js.map +1 -1
- package/dist/runtime/gateway/channel-adapter.d.ts +3 -0
- package/dist/runtime/gateway/channel-adapter.d.ts.map +1 -1
- package/dist/runtime/gateway/channel-display-policy.js +1 -1
- package/dist/runtime/gateway/channel-display-policy.js.map +1 -1
- package/dist/runtime/gateway/channel-policy.d.ts +55 -0
- package/dist/runtime/gateway/channel-policy.d.ts.map +1 -1
- package/dist/runtime/gateway/channel-policy.js +108 -0
- package/dist/runtime/gateway/channel-policy.js.map +1 -1
- package/dist/runtime/gateway/channel-presence-policy.d.ts +34 -0
- package/dist/runtime/gateway/channel-presence-policy.d.ts.map +1 -0
- package/dist/runtime/gateway/channel-presence-policy.js +118 -0
- package/dist/runtime/gateway/channel-presence-policy.js.map +1 -0
- package/dist/runtime/gateway/chat-event-rendering.d.ts +18 -27
- package/dist/runtime/gateway/chat-event-rendering.d.ts.map +1 -1
- package/dist/runtime/gateway/chat-event-rendering.js +49 -34
- package/dist/runtime/gateway/chat-event-rendering.js.map +1 -1
- package/dist/runtime/gateway/chat-session-dispatch.d.ts +13 -0
- package/dist/runtime/gateway/chat-session-dispatch.d.ts.map +1 -1
- package/dist/runtime/gateway/chat-session-dispatch.js +43 -6
- package/dist/runtime/gateway/chat-session-dispatch.js.map +1 -1
- package/dist/runtime/gateway/chat-session-port.d.ts +2 -0
- package/dist/runtime/gateway/chat-session-port.d.ts.map +1 -1
- package/dist/runtime/gateway/chat-session-port.js.map +1 -1
- package/dist/runtime/gateway/config-json.d.ts +3 -0
- package/dist/runtime/gateway/config-json.d.ts.map +1 -0
- package/dist/runtime/gateway/config-json.js +27 -0
- package/dist/runtime/gateway/config-json.js.map +1 -0
- package/dist/runtime/gateway/direct-chat-latency-smoke.d.ts +2 -0
- package/dist/runtime/gateway/direct-chat-latency-smoke.d.ts.map +1 -0
- package/dist/runtime/gateway/direct-chat-latency-smoke.js +214 -0
- package/dist/runtime/gateway/direct-chat-latency-smoke.js.map +1 -0
- package/dist/runtime/gateway/discord-gateway-adapter.d.ts +1 -1
- package/dist/runtime/gateway/discord-gateway-adapter.d.ts.map +1 -1
- package/dist/runtime/gateway/discord-gateway-adapter.js +87 -43
- package/dist/runtime/gateway/discord-gateway-adapter.js.map +1 -1
- package/dist/runtime/gateway/gateway-progress-narration.d.ts +12 -0
- package/dist/runtime/gateway/gateway-progress-narration.d.ts.map +1 -0
- package/dist/runtime/gateway/gateway-progress-narration.js +294 -0
- package/dist/runtime/gateway/gateway-progress-narration.js.map +1 -0
- package/dist/runtime/gateway/http-channel-adapter.d.ts +1 -0
- package/dist/runtime/gateway/http-channel-adapter.d.ts.map +1 -1
- package/dist/runtime/gateway/http-channel-adapter.js +2 -0
- package/dist/runtime/gateway/http-channel-adapter.js.map +1 -1
- package/dist/runtime/gateway/index.d.ts +7 -0
- package/dist/runtime/gateway/index.d.ts.map +1 -1
- package/dist/runtime/gateway/index.js +5 -0
- package/dist/runtime/gateway/index.js.map +1 -1
- package/dist/runtime/gateway/ingress-gateway.d.ts.map +1 -1
- package/dist/runtime/gateway/ingress-gateway.js +2 -6
- package/dist/runtime/gateway/ingress-gateway.js.map +1 -1
- package/dist/runtime/gateway/non-tui-display-projector.d.ts +5 -0
- package/dist/runtime/gateway/non-tui-display-projector.d.ts.map +1 -1
- package/dist/runtime/gateway/non-tui-display-projector.js +202 -27
- package/dist/runtime/gateway/non-tui-display-projector.js.map +1 -1
- package/dist/runtime/gateway/seedy-presence-projector.d.ts +74 -0
- package/dist/runtime/gateway/seedy-presence-projector.d.ts.map +1 -0
- package/dist/runtime/gateway/seedy-presence-projector.js +395 -0
- package/dist/runtime/gateway/seedy-presence-projector.js.map +1 -0
- package/dist/runtime/gateway/seedy-presence-rendering.d.ts +9 -0
- package/dist/runtime/gateway/seedy-presence-rendering.d.ts.map +1 -0
- package/dist/runtime/gateway/seedy-presence-rendering.js +103 -0
- package/dist/runtime/gateway/seedy-presence-rendering.js.map +1 -0
- package/dist/runtime/gateway/signal-gateway-adapter.d.ts +1 -0
- package/dist/runtime/gateway/signal-gateway-adapter.d.ts.map +1 -1
- package/dist/runtime/gateway/signal-gateway-adapter.js +67 -38
- package/dist/runtime/gateway/signal-gateway-adapter.js.map +1 -1
- package/dist/runtime/gateway/slack-channel-adapter.d.ts +1 -0
- package/dist/runtime/gateway/slack-channel-adapter.d.ts.map +1 -1
- package/dist/runtime/gateway/slack-channel-adapter.js +85 -34
- package/dist/runtime/gateway/slack-channel-adapter.js.map +1 -1
- package/dist/runtime/gateway/telegram-gateway-adapter.d.ts +19 -4
- package/dist/runtime/gateway/telegram-gateway-adapter.d.ts.map +1 -1
- package/dist/runtime/gateway/telegram-gateway-adapter.js +428 -117
- package/dist/runtime/gateway/telegram-gateway-adapter.js.map +1 -1
- package/dist/runtime/gateway/whatsapp-gateway-adapter.d.ts +1 -1
- package/dist/runtime/gateway/whatsapp-gateway-adapter.d.ts.map +1 -1
- package/dist/runtime/gateway/whatsapp-gateway-adapter.js +86 -54
- package/dist/runtime/gateway/whatsapp-gateway-adapter.js.map +1 -1
- package/dist/runtime/gateway/ws-channel-adapter.d.ts.map +1 -1
- package/dist/runtime/gateway/ws-channel-adapter.js +3 -4
- package/dist/runtime/gateway/ws-channel-adapter.js.map +1 -1
- package/dist/runtime/goal-lease-manager.d.ts +9 -14
- package/dist/runtime/goal-lease-manager.d.ts.map +1 -1
- package/dist/runtime/goal-lease-manager.js +85 -141
- package/dist/runtime/goal-lease-manager.js.map +1 -1
- package/dist/runtime/guardrails/backpressure-controller.d.ts +1 -1
- package/dist/runtime/guardrails/backpressure-controller.d.ts.map +1 -1
- package/dist/runtime/guardrails/backpressure-controller.js +5 -4
- package/dist/runtime/guardrails/backpressure-controller.js.map +1 -1
- package/dist/runtime/guardrails/backpressure-limits.d.ts +5 -0
- package/dist/runtime/guardrails/backpressure-limits.d.ts.map +1 -0
- package/dist/runtime/guardrails/backpressure-limits.js +13 -0
- package/dist/runtime/guardrails/backpressure-limits.js.map +1 -0
- package/dist/runtime/guardrails/guardrail-store.d.ts +8 -10
- package/dist/runtime/guardrails/guardrail-store.d.ts.map +1 -1
- package/dist/runtime/guardrails/guardrail-store.js +78 -55
- package/dist/runtime/guardrails/guardrail-store.js.map +1 -1
- package/dist/runtime/hook-manager.d.ts +2 -0
- package/dist/runtime/hook-manager.d.ts.map +1 -1
- package/dist/runtime/hook-manager.js +10 -4
- package/dist/runtime/hook-manager.js.map +1 -1
- package/dist/runtime/http-body.d.ts +8 -0
- package/dist/runtime/http-body.d.ts.map +1 -0
- package/dist/runtime/http-body.js +43 -0
- package/dist/runtime/http-body.js.map +1 -0
- package/dist/runtime/intention/companion-intention-state.d.ts +680 -0
- package/dist/runtime/intention/companion-intention-state.d.ts.map +1 -0
- package/dist/runtime/intention/companion-intention-state.js +146 -0
- package/dist/runtime/intention/companion-intention-state.js.map +1 -0
- package/dist/runtime/intention/index.d.ts +3 -0
- package/dist/runtime/intention/index.d.ts.map +1 -0
- package/dist/runtime/intention/index.js +2 -0
- package/dist/runtime/intention/index.js.map +1 -0
- package/dist/runtime/interactive-automation/browser-session-store.d.ts +8 -4
- package/dist/runtime/interactive-automation/browser-session-store.d.ts.map +1 -1
- package/dist/runtime/interactive-automation/browser-session-store.js +78 -9
- package/dist/runtime/interactive-automation/browser-session-store.js.map +1 -1
- package/dist/runtime/interactive-automation/runtime-auth-handoff-store.d.ts +9 -4
- package/dist/runtime/interactive-automation/runtime-auth-handoff-store.d.ts.map +1 -1
- package/dist/runtime/interactive-automation/runtime-auth-handoff-store.js +82 -9
- package/dist/runtime/interactive-automation/runtime-auth-handoff-store.js.map +1 -1
- package/dist/runtime/leader-lock-manager.d.ts +27 -4
- package/dist/runtime/leader-lock-manager.d.ts.map +1 -1
- package/dist/runtime/leader-lock-manager.js +102 -105
- package/dist/runtime/leader-lock-manager.js.map +1 -1
- package/dist/runtime/mcp/compatibility.d.ts +53 -0
- package/dist/runtime/mcp/compatibility.d.ts.map +1 -0
- package/dist/runtime/mcp/compatibility.js +94 -0
- package/dist/runtime/mcp/compatibility.js.map +1 -0
- package/dist/runtime/mcp/index.d.ts +3 -0
- package/dist/runtime/mcp/index.d.ts.map +1 -0
- package/dist/runtime/mcp/index.js +2 -0
- package/dist/runtime/mcp/index.js.map +1 -0
- package/dist/runtime/notification-routing.d.ts.map +1 -1
- package/dist/runtime/notification-routing.js +2 -1
- package/dist/runtime/notification-routing.js.map +1 -1
- package/dist/runtime/observation/index.d.ts +3 -0
- package/dist/runtime/observation/index.d.ts.map +1 -0
- package/dist/runtime/observation/index.js +2 -0
- package/dist/runtime/observation/index.js.map +1 -0
- package/dist/runtime/observation/observation-contracts.d.ts +1518 -0
- package/dist/runtime/observation/observation-contracts.d.ts.map +1 -0
- package/dist/runtime/observation/observation-contracts.js +311 -0
- package/dist/runtime/observation/observation-contracts.js.map +1 -0
- package/dist/runtime/permission-dialogue.d.ts +87 -10
- package/dist/runtime/permission-dialogue.d.ts.map +1 -1
- package/dist/runtime/permission-dialogue.js +39 -4
- package/dist/runtime/permission-dialogue.js.map +1 -1
- package/dist/runtime/permission-grant-decision.d.ts +50 -0
- package/dist/runtime/permission-grant-decision.d.ts.map +1 -0
- package/dist/runtime/permission-grant-decision.js +139 -0
- package/dist/runtime/permission-grant-decision.js.map +1 -0
- package/dist/runtime/pid-manager.d.ts +1 -0
- package/dist/runtime/pid-manager.d.ts.map +1 -1
- package/dist/runtime/pid-manager.js +44 -21
- package/dist/runtime/pid-manager.js.map +1 -1
- package/dist/runtime/plugin-loader.d.ts +10 -1
- package/dist/runtime/plugin-loader.d.ts.map +1 -1
- package/dist/runtime/plugin-loader.js +104 -78
- package/dist/runtime/plugin-loader.js.map +1 -1
- package/dist/runtime/plugin-manifest-reader.d.ts +38 -0
- package/dist/runtime/plugin-manifest-reader.d.ts.map +1 -0
- package/dist/runtime/plugin-manifest-reader.js +163 -0
- package/dist/runtime/plugin-manifest-reader.js.map +1 -0
- package/dist/runtime/port-utils.d.ts.map +1 -1
- package/dist/runtime/port-utils.js +20 -6
- package/dist/runtime/port-utils.js.map +1 -1
- package/dist/runtime/queue/journal-backed-queue.d.ts +8 -7
- package/dist/runtime/queue/journal-backed-queue.d.ts.map +1 -1
- package/dist/runtime/queue/journal-backed-queue.js +172 -122
- package/dist/runtime/queue/journal-backed-queue.js.map +1 -1
- package/dist/runtime/resident-runtime-interface.d.ts +1034 -0
- package/dist/runtime/resident-runtime-interface.d.ts.map +1 -0
- package/dist/runtime/resident-runtime-interface.js +429 -0
- package/dist/runtime/resident-runtime-interface.js.map +1 -0
- package/dist/runtime/run-spec/confirmation.d.ts +4 -1
- package/dist/runtime/run-spec/confirmation.d.ts.map +1 -1
- package/dist/runtime/run-spec/confirmation.js +101 -6
- package/dist/runtime/run-spec/confirmation.js.map +1 -1
- package/dist/runtime/run-spec/derive.d.ts +29 -29
- package/dist/runtime/run-spec/derive.d.ts.map +1 -1
- package/dist/runtime/run-spec/derive.js +8 -7
- package/dist/runtime/run-spec/derive.js.map +1 -1
- package/dist/runtime/run-spec/handoff.d.ts.map +1 -1
- package/dist/runtime/run-spec/handoff.js +43 -39
- package/dist/runtime/run-spec/handoff.js.map +1 -1
- package/dist/runtime/run-spec/index.d.ts +2 -0
- package/dist/runtime/run-spec/index.d.ts.map +1 -1
- package/dist/runtime/run-spec/index.js +1 -0
- package/dist/runtime/run-spec/index.js.map +1 -1
- package/dist/runtime/run-spec/pending-dialogue-arbiter.d.ts +4 -4
- package/dist/runtime/run-spec/pending-dialogue-arbiter.js +1 -1
- package/dist/runtime/run-spec/pending-dialogue-arbiter.js.map +1 -1
- package/dist/runtime/run-spec/run-spec-state-migration.d.ts +13 -0
- package/dist/runtime/run-spec/run-spec-state-migration.d.ts.map +1 -0
- package/dist/runtime/run-spec/run-spec-state-migration.js +117 -0
- package/dist/runtime/run-spec/run-spec-state-migration.js.map +1 -0
- package/dist/runtime/run-spec/store.d.ts +9 -3
- package/dist/runtime/run-spec/store.d.ts.map +1 -1
- package/dist/runtime/run-spec/store.js +68 -19
- package/dist/runtime/run-spec/store.js.map +1 -1
- package/dist/runtime/run-spec/types.d.ts +49 -44
- package/dist/runtime/run-spec/types.d.ts.map +1 -1
- package/dist/runtime/run-spec/types.js +11 -6
- package/dist/runtime/run-spec/types.js.map +1 -1
- package/dist/runtime/schedule/engine-execution.d.ts +7 -3
- package/dist/runtime/schedule/engine-execution.d.ts.map +1 -1
- package/dist/runtime/schedule/engine-execution.js +61 -26
- package/dist/runtime/schedule/engine-execution.js.map +1 -1
- package/dist/runtime/schedule/engine-heartbeat.d.ts.map +1 -1
- package/dist/runtime/schedule/engine-heartbeat.js +15 -7
- package/dist/runtime/schedule/engine-heartbeat.js.map +1 -1
- package/dist/runtime/schedule/engine-layers.d.ts +4 -1
- package/dist/runtime/schedule/engine-layers.d.ts.map +1 -1
- package/dist/runtime/schedule/engine-layers.js +155 -12
- package/dist/runtime/schedule/engine-layers.js.map +1 -1
- package/dist/runtime/schedule/engine-mutations.js.map +1 -1
- package/dist/runtime/schedule/engine.d.ts +7 -3
- package/dist/runtime/schedule/engine.d.ts.map +1 -1
- package/dist/runtime/schedule/engine.js +62 -13
- package/dist/runtime/schedule/engine.js.map +1 -1
- package/dist/runtime/schedule/entry-normalization.d.ts +9 -0
- package/dist/runtime/schedule/entry-normalization.d.ts.map +1 -0
- package/dist/runtime/schedule/entry-normalization.js +105 -0
- package/dist/runtime/schedule/entry-normalization.js.map +1 -0
- package/dist/runtime/schedule/entry-store.d.ts +7 -6
- package/dist/runtime/schedule/entry-store.d.ts.map +1 -1
- package/dist/runtime/schedule/entry-store.js +94 -67
- package/dist/runtime/schedule/entry-store.js.map +1 -1
- package/dist/runtime/schedule/history.d.ts +649 -9
- package/dist/runtime/schedule/history.d.ts.map +1 -1
- package/dist/runtime/schedule/history.js +66 -23
- package/dist/runtime/schedule/history.js.map +1 -1
- package/dist/runtime/schedule/legacy-cron-migration.d.ts.map +1 -1
- package/dist/runtime/schedule/legacy-cron-migration.js +34 -8
- package/dist/runtime/schedule/legacy-cron-migration.js.map +1 -1
- package/dist/runtime/schedule/presets.d.ts +20 -20
- package/dist/runtime/schedule/presets.d.ts.map +1 -1
- package/dist/runtime/schedule/presets.js +4 -2
- package/dist/runtime/schedule/presets.js.map +1 -1
- package/dist/runtime/schedule/source.d.ts +30 -28
- package/dist/runtime/schedule/source.d.ts.map +1 -1
- package/dist/runtime/schedule/source.js +16 -5
- package/dist/runtime/schedule/source.js.map +1 -1
- package/dist/runtime/schedule/wait-projection.d.ts.map +1 -1
- package/dist/runtime/schedule/wait-projection.js +6 -9
- package/dist/runtime/schedule/wait-projection.js.map +1 -1
- package/dist/runtime/session-registry/registry-helpers.d.ts +2 -0
- package/dist/runtime/session-registry/registry-helpers.d.ts.map +1 -1
- package/dist/runtime/session-registry/registry-helpers.js +34 -10
- package/dist/runtime/session-registry/registry-helpers.js.map +1 -1
- package/dist/runtime/session-registry/registry.d.ts +3 -2
- package/dist/runtime/session-registry/registry.d.ts.map +1 -1
- package/dist/runtime/session-registry/registry.js +118 -211
- package/dist/runtime/session-registry/registry.js.map +1 -1
- package/dist/runtime/session-registry/types.d.ts +160 -160
- package/dist/runtime/session-registry/types.d.ts.map +1 -1
- package/dist/runtime/session-registry/types.js +1 -0
- package/dist/runtime/session-registry/types.js.map +1 -1
- package/dist/runtime/skills/skill-bundle.d.ts +45 -0
- package/dist/runtime/skills/skill-bundle.d.ts.map +1 -0
- package/dist/runtime/skills/skill-bundle.js +203 -0
- package/dist/runtime/skills/skill-bundle.js.map +1 -0
- package/dist/runtime/skills/skill-parser.d.ts +1 -0
- package/dist/runtime/skills/skill-parser.d.ts.map +1 -1
- package/dist/runtime/skills/skill-parser.js +30 -11
- package/dist/runtime/skills/skill-parser.js.map +1 -1
- package/dist/runtime/skills/skill-registry.d.ts +5 -0
- package/dist/runtime/skills/skill-registry.d.ts.map +1 -1
- package/dist/runtime/skills/skill-registry.js +53 -9
- package/dist/runtime/skills/skill-registry.js.map +1 -1
- package/dist/runtime/store/approval-store.d.ts +5 -5
- package/dist/runtime/store/approval-store.d.ts.map +1 -1
- package/dist/runtime/store/approval-store.js +86 -81
- package/dist/runtime/store/approval-store.js.map +1 -1
- package/dist/runtime/store/artifact-retention.d.ts.map +1 -1
- package/dist/runtime/store/artifact-retention.js +13 -2
- package/dist/runtime/store/artifact-retention.js.map +1 -1
- package/dist/runtime/store/attention-state-store.d.ts +195 -0
- package/dist/runtime/store/attention-state-store.d.ts.map +1 -0
- package/dist/runtime/store/attention-state-store.js +1186 -0
- package/dist/runtime/store/attention-state-store.js.map +1 -0
- package/dist/runtime/store/background-run-store.d.ts +233 -2
- package/dist/runtime/store/background-run-store.d.ts.map +1 -1
- package/dist/runtime/store/background-run-store.js +65 -9
- package/dist/runtime/store/background-run-store.js.map +1 -1
- package/dist/runtime/store/budget-store.d.ts +101 -48
- package/dist/runtime/store/budget-store.d.ts.map +1 -1
- package/dist/runtime/store/budget-store.js +226 -47
- package/dist/runtime/store/budget-store.js.map +1 -1
- package/dist/runtime/store/capability-registry-state-migration.d.ts +24 -0
- package/dist/runtime/store/capability-registry-state-migration.d.ts.map +1 -0
- package/dist/runtime/store/capability-registry-state-migration.js +208 -0
- package/dist/runtime/store/capability-registry-state-migration.js.map +1 -0
- package/dist/runtime/store/capability-registry-state-store.d.ts +36 -0
- package/dist/runtime/store/capability-registry-state-store.d.ts.map +1 -0
- package/dist/runtime/store/capability-registry-state-store.js +181 -0
- package/dist/runtime/store/capability-registry-state-store.js.map +1 -0
- package/dist/runtime/store/capability-verification-schemas.d.ts +184 -0
- package/dist/runtime/store/capability-verification-schemas.d.ts.map +1 -0
- package/dist/runtime/store/capability-verification-schemas.js +150 -0
- package/dist/runtime/store/capability-verification-schemas.js.map +1 -0
- package/dist/runtime/store/capability-verification-store.d.ts +31 -0
- package/dist/runtime/store/capability-verification-store.d.ts.map +1 -0
- package/dist/runtime/store/capability-verification-store.js +198 -0
- package/dist/runtime/store/capability-verification-store.js.map +1 -0
- package/dist/runtime/store/control-db/control-db.d.ts +80 -0
- package/dist/runtime/store/control-db/control-db.d.ts.map +1 -0
- package/dist/runtime/store/control-db/control-db.js +313 -0
- package/dist/runtime/store/control-db/control-db.js.map +1 -0
- package/dist/runtime/store/control-db/index.d.ts +7 -0
- package/dist/runtime/store/control-db/index.d.ts.map +1 -0
- package/dist/runtime/store/control-db/index.js +4 -0
- package/dist/runtime/store/control-db/index.js.map +1 -0
- package/dist/runtime/store/control-db/runtime-control-db.d.ts +11 -0
- package/dist/runtime/store/control-db/runtime-control-db.d.ts.map +1 -0
- package/dist/runtime/store/control-db/runtime-control-db.js +27 -0
- package/dist/runtime/store/control-db/runtime-control-db.js.map +1 -0
- package/dist/runtime/store/control-db/schema.d.ts +41 -0
- package/dist/runtime/store/control-db/schema.d.ts.map +1 -0
- package/dist/runtime/store/control-db/schema.js +2032 -0
- package/dist/runtime/store/control-db/schema.js.map +1 -0
- package/dist/runtime/store/curiosity-state-migration.d.ts +14 -0
- package/dist/runtime/store/curiosity-state-migration.d.ts.map +1 -0
- package/dist/runtime/store/curiosity-state-migration.js +98 -0
- package/dist/runtime/store/curiosity-state-migration.js.map +1 -0
- package/dist/runtime/store/curiosity-state-store.d.ts +19 -0
- package/dist/runtime/store/curiosity-state-store.d.ts.map +1 -0
- package/dist/runtime/store/curiosity-state-store.js +161 -0
- package/dist/runtime/store/curiosity-state-store.js.map +1 -0
- package/dist/runtime/store/daemon-state-store.d.ts +25 -0
- package/dist/runtime/store/daemon-state-store.d.ts.map +1 -0
- package/dist/runtime/store/daemon-state-store.js +145 -0
- package/dist/runtime/store/daemon-state-store.js.map +1 -0
- package/dist/runtime/store/dream-decision-heuristic-migration.d.ts +8 -0
- package/dist/runtime/store/dream-decision-heuristic-migration.d.ts.map +1 -0
- package/dist/runtime/store/dream-decision-heuristic-migration.js +89 -0
- package/dist/runtime/store/dream-decision-heuristic-migration.js.map +1 -0
- package/dist/runtime/store/dream-decision-heuristic-store.d.ts +13 -0
- package/dist/runtime/store/dream-decision-heuristic-store.d.ts.map +1 -0
- package/dist/runtime/store/dream-decision-heuristic-store.js +62 -0
- package/dist/runtime/store/dream-decision-heuristic-store.js.map +1 -0
- package/dist/runtime/store/ethics-log-migration.d.ts +12 -0
- package/dist/runtime/store/ethics-log-migration.d.ts.map +1 -0
- package/dist/runtime/store/ethics-log-migration.js +94 -0
- package/dist/runtime/store/ethics-log-migration.js.map +1 -0
- package/dist/runtime/store/ethics-log-store.d.ts +20 -0
- package/dist/runtime/store/ethics-log-store.d.ts.map +1 -0
- package/dist/runtime/store/ethics-log-store.js +90 -0
- package/dist/runtime/store/ethics-log-store.js.map +1 -0
- package/dist/runtime/store/evidence-ledger.d.ts +8 -203
- package/dist/runtime/store/evidence-ledger.d.ts.map +1 -1
- package/dist/runtime/store/evidence-ledger.js +172 -507
- package/dist/runtime/store/evidence-ledger.js.map +1 -1
- package/dist/runtime/store/evidence-types.d.ts +768 -749
- package/dist/runtime/store/evidence-types.d.ts.map +1 -1
- package/dist/runtime/store/evidence-types.js +7 -4
- package/dist/runtime/store/evidence-types.js.map +1 -1
- package/dist/runtime/store/execution-session-state-migration.d.ts +14 -0
- package/dist/runtime/store/execution-session-state-migration.d.ts.map +1 -0
- package/dist/runtime/store/execution-session-state-migration.js +184 -0
- package/dist/runtime/store/execution-session-state-migration.js.map +1 -0
- package/dist/runtime/store/execution-session-state-store.d.ts +21 -0
- package/dist/runtime/store/execution-session-state-store.d.ts.map +1 -0
- package/dist/runtime/store/execution-session-state-store.js +117 -0
- package/dist/runtime/store/execution-session-state-store.js.map +1 -0
- package/dist/runtime/store/experiment-queue-store.d.ts +76 -72
- package/dist/runtime/store/experiment-queue-store.d.ts.map +1 -1
- package/dist/runtime/store/experiment-queue-store.js +72 -9
- package/dist/runtime/store/experiment-queue-store.js.map +1 -1
- package/dist/runtime/store/feedback-ingestion-store.d.ts +19 -0
- package/dist/runtime/store/feedback-ingestion-store.d.ts.map +1 -0
- package/dist/runtime/store/feedback-ingestion-store.js +147 -0
- package/dist/runtime/store/feedback-ingestion-store.js.map +1 -0
- package/dist/runtime/store/goal-orchestration-state-migration.d.ts +14 -0
- package/dist/runtime/store/goal-orchestration-state-migration.d.ts.map +1 -0
- package/dist/runtime/store/goal-orchestration-state-migration.js +206 -0
- package/dist/runtime/store/goal-orchestration-state-migration.js.map +1 -0
- package/dist/runtime/store/goal-orchestration-state-store.d.ts +25 -0
- package/dist/runtime/store/goal-orchestration-state-store.d.ts.map +1 -0
- package/dist/runtime/store/goal-orchestration-state-store.js +101 -0
- package/dist/runtime/store/goal-orchestration-state-store.js.map +1 -0
- package/dist/runtime/store/goal-task-state-migration.d.ts +24 -0
- package/dist/runtime/store/goal-task-state-migration.d.ts.map +1 -0
- package/dist/runtime/store/goal-task-state-migration.js +554 -0
- package/dist/runtime/store/goal-task-state-migration.js.map +1 -0
- package/dist/runtime/store/goal-task-state-store.d.ts +85 -0
- package/dist/runtime/store/goal-task-state-store.d.ts.map +1 -0
- package/dist/runtime/store/goal-task-state-store.js +992 -0
- package/dist/runtime/store/goal-task-state-store.js.map +1 -0
- package/dist/runtime/store/health-store.d.ts +5 -2
- package/dist/runtime/store/health-store.d.ts.map +1 -1
- package/dist/runtime/store/health-store.js +70 -23
- package/dist/runtime/store/health-store.js.map +1 -1
- package/dist/runtime/store/index.d.ts +91 -4
- package/dist/runtime/store/index.d.ts.map +1 -1
- package/dist/runtime/store/index.js +49 -3
- package/dist/runtime/store/index.js.map +1 -1
- package/dist/runtime/store/knowledge-memory-state-migration.d.ts +14 -0
- package/dist/runtime/store/knowledge-memory-state-migration.d.ts.map +1 -0
- package/dist/runtime/store/knowledge-memory-state-migration.js +160 -0
- package/dist/runtime/store/knowledge-memory-state-migration.js.map +1 -0
- package/dist/runtime/store/knowledge-transfer-state-migration.d.ts +14 -0
- package/dist/runtime/store/knowledge-transfer-state-migration.d.ts.map +1 -0
- package/dist/runtime/store/knowledge-transfer-state-migration.js +210 -0
- package/dist/runtime/store/knowledge-transfer-state-migration.js.map +1 -0
- package/dist/runtime/store/knowledge-transfer-state-store.d.ts +658 -0
- package/dist/runtime/store/knowledge-transfer-state-store.d.ts.map +1 -0
- package/dist/runtime/store/knowledge-transfer-state-store.js +214 -0
- package/dist/runtime/store/knowledge-transfer-state-store.js.map +1 -0
- package/dist/runtime/store/learning-runtime-state-migration.d.ts +16 -0
- package/dist/runtime/store/learning-runtime-state-migration.d.ts.map +1 -0
- package/dist/runtime/store/learning-runtime-state-migration.js +202 -0
- package/dist/runtime/store/learning-runtime-state-migration.js.map +1 -0
- package/dist/runtime/store/learning-runtime-state-store.d.ts +53 -0
- package/dist/runtime/store/learning-runtime-state-store.d.ts.map +1 -0
- package/dist/runtime/store/learning-runtime-state-store.js +232 -0
- package/dist/runtime/store/learning-runtime-state-store.js.map +1 -0
- package/dist/runtime/store/memory-lifecycle-state-migration.d.ts +18 -0
- package/dist/runtime/store/memory-lifecycle-state-migration.d.ts.map +1 -0
- package/dist/runtime/store/memory-lifecycle-state-migration.js +344 -0
- package/dist/runtime/store/memory-lifecycle-state-migration.js.map +1 -0
- package/dist/runtime/store/metric-history.d.ts +4 -1
- package/dist/runtime/store/metric-history.d.ts.map +1 -1
- package/dist/runtime/store/metric-history.js +18 -3
- package/dist/runtime/store/metric-history.js.map +1 -1
- package/dist/runtime/store/operator-handoff-store.d.ts +19 -14
- package/dist/runtime/store/operator-handoff-store.d.ts.map +1 -1
- package/dist/runtime/store/operator-handoff-store.js +74 -7
- package/dist/runtime/store/operator-handoff-store.js.map +1 -1
- package/dist/runtime/store/outbox-store.d.ts +5 -3
- package/dist/runtime/store/outbox-store.d.ts.map +1 -1
- package/dist/runtime/store/outbox-store.js +76 -66
- package/dist/runtime/store/outbox-store.js.map +1 -1
- package/dist/runtime/store/permission-grant-store.d.ts +961 -0
- package/dist/runtime/store/permission-grant-store.d.ts.map +1 -0
- package/dist/runtime/store/permission-grant-store.js +525 -0
- package/dist/runtime/store/permission-grant-store.js.map +1 -0
- package/dist/runtime/store/permission-wait-plan-store.d.ts +633 -0
- package/dist/runtime/store/permission-wait-plan-store.d.ts.map +1 -0
- package/dist/runtime/store/permission-wait-plan-store.js +366 -0
- package/dist/runtime/store/permission-wait-plan-store.js.map +1 -0
- package/dist/runtime/store/plugin-channel-runtime-state-migration.d.ts +14 -0
- package/dist/runtime/store/plugin-channel-runtime-state-migration.d.ts.map +1 -0
- package/dist/runtime/store/plugin-channel-runtime-state-migration.js +204 -0
- package/dist/runtime/store/plugin-channel-runtime-state-migration.js.map +1 -0
- package/dist/runtime/store/plugin-channel-runtime-state-store.d.ts +78 -0
- package/dist/runtime/store/plugin-channel-runtime-state-store.d.ts.map +1 -0
- package/dist/runtime/store/plugin-channel-runtime-state-store.js +278 -0
- package/dist/runtime/store/plugin-channel-runtime-state-store.js.map +1 -0
- package/dist/runtime/store/postmortem-report.d.ts +10 -8
- package/dist/runtime/store/postmortem-report.d.ts.map +1 -1
- package/dist/runtime/store/postmortem-report.js +40 -18
- package/dist/runtime/store/postmortem-report.js.map +1 -1
- package/dist/runtime/store/proactive-intervention-store.d.ts +2376 -33
- package/dist/runtime/store/proactive-intervention-store.d.ts.map +1 -1
- package/dist/runtime/store/proactive-intervention-store.js +83 -37
- package/dist/runtime/store/proactive-intervention-store.js.map +1 -1
- package/dist/runtime/store/process-session-state-store.d.ts +83 -0
- package/dist/runtime/store/process-session-state-store.d.ts.map +1 -0
- package/dist/runtime/store/process-session-state-store.js +199 -0
- package/dist/runtime/store/process-session-state-store.js.map +1 -0
- package/dist/runtime/store/queue-daemon-schedule-state-migration.d.ts +17 -0
- package/dist/runtime/store/queue-daemon-schedule-state-migration.d.ts.map +1 -0
- package/dist/runtime/store/queue-daemon-schedule-state-migration.js +261 -0
- package/dist/runtime/store/queue-daemon-schedule-state-migration.js.map +1 -0
- package/dist/runtime/store/relationship-profile-proposal-state-migration.d.ts +13 -0
- package/dist/runtime/store/relationship-profile-proposal-state-migration.d.ts.map +1 -0
- package/dist/runtime/store/relationship-profile-proposal-state-migration.js +94 -0
- package/dist/runtime/store/relationship-profile-proposal-state-migration.js.map +1 -0
- package/dist/runtime/store/reproducibility-manifest.d.ts +33 -33
- package/dist/runtime/store/reproducibility-manifest.d.ts.map +1 -1
- package/dist/runtime/store/reproducibility-manifest.js +22 -11
- package/dist/runtime/store/reproducibility-manifest.js.map +1 -1
- package/dist/runtime/store/runtime-control-state-migration.d.ts +23 -0
- package/dist/runtime/store/runtime-control-state-migration.d.ts.map +1 -0
- package/dist/runtime/store/runtime-control-state-migration.js +151 -0
- package/dist/runtime/store/runtime-control-state-migration.js.map +1 -0
- package/dist/runtime/store/runtime-control-store-migration.d.ts +18 -0
- package/dist/runtime/store/runtime-control-store-migration.d.ts.map +1 -0
- package/dist/runtime/store/runtime-control-store-migration.js +119 -0
- package/dist/runtime/store/runtime-control-store-migration.js.map +1 -0
- package/dist/runtime/store/runtime-evidence-state-store.d.ts +34 -0
- package/dist/runtime/store/runtime-evidence-state-store.d.ts.map +1 -0
- package/dist/runtime/store/runtime-evidence-state-store.js +181 -0
- package/dist/runtime/store/runtime-evidence-state-store.js.map +1 -0
- package/dist/runtime/store/runtime-evidence-strategy-dream-state-migration.d.ts +24 -0
- package/dist/runtime/store/runtime-evidence-strategy-dream-state-migration.d.ts.map +1 -0
- package/dist/runtime/store/runtime-evidence-strategy-dream-state-migration.js +369 -0
- package/dist/runtime/store/runtime-evidence-strategy-dream-state-migration.js.map +1 -0
- package/dist/runtime/store/runtime-evidence-summary-types.d.ts +213 -0
- package/dist/runtime/store/runtime-evidence-summary-types.d.ts.map +1 -0
- package/dist/runtime/store/runtime-evidence-summary-types.js +2 -0
- package/dist/runtime/store/runtime-evidence-summary-types.js.map +1 -0
- package/dist/runtime/store/runtime-journal-state-migration.d.ts +20 -0
- package/dist/runtime/store/runtime-journal-state-migration.d.ts.map +1 -0
- package/dist/runtime/store/runtime-journal-state-migration.js +280 -0
- package/dist/runtime/store/runtime-journal-state-migration.js.map +1 -0
- package/dist/runtime/store/runtime-journal.d.ts +0 -11
- package/dist/runtime/store/runtime-journal.d.ts.map +1 -1
- package/dist/runtime/store/runtime-journal.js +0 -25
- package/dist/runtime/store/runtime-journal.js.map +1 -1
- package/dist/runtime/store/runtime-operation-companion.d.ts +13 -0
- package/dist/runtime/store/runtime-operation-companion.d.ts.map +1 -0
- package/dist/runtime/store/runtime-operation-companion.js +597 -0
- package/dist/runtime/store/runtime-operation-companion.js.map +1 -0
- package/dist/runtime/store/runtime-operation-schemas.d.ts +623 -34
- package/dist/runtime/store/runtime-operation-schemas.d.ts.map +1 -1
- package/dist/runtime/store/runtime-operation-schemas.js +62 -1
- package/dist/runtime/store/runtime-operation-schemas.js.map +1 -1
- package/dist/runtime/store/runtime-operation-store.d.ts +19 -8
- package/dist/runtime/store/runtime-operation-store.d.ts.map +1 -1
- package/dist/runtime/store/runtime-operation-store.js +173 -36
- package/dist/runtime/store/runtime-operation-store.js.map +1 -1
- package/dist/runtime/store/runtime-paths.d.ts +4 -17
- package/dist/runtime/store/runtime-paths.d.ts.map +1 -1
- package/dist/runtime/store/runtime-paths.js +10 -61
- package/dist/runtime/store/runtime-paths.js.map +1 -1
- package/dist/runtime/store/runtime-schemas.d.ts +647 -194
- package/dist/runtime/store/runtime-schemas.d.ts.map +1 -1
- package/dist/runtime/store/runtime-schemas.js +72 -38
- package/dist/runtime/store/runtime-schemas.js.map +1 -1
- package/dist/runtime/store/safe-pause-store.d.ts +5 -2
- package/dist/runtime/store/safe-pause-store.d.ts.map +1 -1
- package/dist/runtime/store/safe-pause-store.js +46 -8
- package/dist/runtime/store/safe-pause-store.js.map +1 -1
- package/dist/runtime/store/stall-state-migration.d.ts +13 -0
- package/dist/runtime/store/stall-state-migration.d.ts.map +1 -0
- package/dist/runtime/store/stall-state-migration.js +143 -0
- package/dist/runtime/store/stall-state-migration.js.map +1 -0
- package/dist/runtime/store/stall-state-store.d.ts +22 -0
- package/dist/runtime/store/stall-state-store.d.ts.map +1 -0
- package/dist/runtime/store/stall-state-store.js +76 -0
- package/dist/runtime/store/stall-state-store.js.map +1 -0
- package/dist/runtime/store/strategy-dream-state-store.d.ts +65 -0
- package/dist/runtime/store/strategy-dream-state-store.d.ts.map +1 -0
- package/dist/runtime/store/strategy-dream-state-store.js +524 -0
- package/dist/runtime/store/strategy-dream-state-store.js.map +1 -0
- package/dist/runtime/store/supervisor-state-store.d.ts +71 -0
- package/dist/runtime/store/supervisor-state-store.d.ts.map +1 -0
- package/dist/runtime/store/supervisor-state-store.js +134 -0
- package/dist/runtime/store/supervisor-state-store.js.map +1 -0
- package/dist/runtime/store/transfer-trust-state-migration.d.ts +15 -0
- package/dist/runtime/store/transfer-trust-state-migration.d.ts.map +1 -0
- package/dist/runtime/store/transfer-trust-state-migration.js +281 -0
- package/dist/runtime/store/transfer-trust-state-migration.js.map +1 -0
- package/dist/runtime/store/transfer-trust-state-store.d.ts +62 -0
- package/dist/runtime/store/transfer-trust-state-store.d.ts.map +1 -0
- package/dist/runtime/store/transfer-trust-state-store.js +322 -0
- package/dist/runtime/store/transfer-trust-state-store.js.map +1 -0
- package/dist/runtime/store/trust-state-migration.d.ts +14 -0
- package/dist/runtime/store/trust-state-migration.d.ts.map +1 -0
- package/dist/runtime/store/trust-state-migration.js +99 -0
- package/dist/runtime/store/trust-state-migration.js.map +1 -0
- package/dist/runtime/store/trust-state-store.d.ts +18 -0
- package/dist/runtime/store/trust-state-store.d.ts.map +1 -0
- package/dist/runtime/store/trust-state-store.js +132 -0
- package/dist/runtime/store/trust-state-store.js.map +1 -0
- package/dist/runtime/trigger-mapper.d.ts +1 -0
- package/dist/runtime/trigger-mapper.d.ts.map +1 -1
- package/dist/runtime/trigger-mapper.js +83 -18
- package/dist/runtime/trigger-mapper.js.map +1 -1
- package/dist/runtime/trigger-mappings-json.d.ts +4 -0
- package/dist/runtime/trigger-mappings-json.d.ts.map +1 -0
- package/dist/runtime/trigger-mappings-json.js +10 -0
- package/dist/runtime/trigger-mappings-json.js.map +1 -0
- package/dist/runtime/types/capability-operation-plan.d.ts +580 -0
- package/dist/runtime/types/capability-operation-plan.d.ts.map +1 -0
- package/dist/runtime/types/capability-operation-plan.js +38 -0
- package/dist/runtime/types/capability-operation-plan.js.map +1 -0
- package/dist/runtime/types/companion-autonomy.d.ts +10283 -0
- package/dist/runtime/types/companion-autonomy.d.ts.map +1 -0
- package/dist/runtime/types/companion-autonomy.js +1091 -0
- package/dist/runtime/types/companion-autonomy.js.map +1 -0
- package/dist/runtime/types/companion-state.d.ts +8234 -0
- package/dist/runtime/types/companion-state.d.ts.map +1 -0
- package/dist/runtime/types/companion-state.js +403 -0
- package/dist/runtime/types/companion-state.js.map +1 -0
- package/dist/runtime/types/companion.d.ts +30 -28
- package/dist/runtime/types/companion.d.ts.map +1 -1
- package/dist/runtime/types/companion.js +3 -1
- package/dist/runtime/types/companion.js.map +1 -1
- package/dist/runtime/types/daemon.d.ts +2090 -2
- package/dist/runtime/types/daemon.d.ts.map +1 -1
- package/dist/runtime/types/daemon.js +69 -26
- package/dist/runtime/types/daemon.js.map +1 -1
- package/dist/runtime/types/envelope.d.ts +8 -8
- package/dist/runtime/types/envelope.js +2 -2
- package/dist/runtime/types/envelope.js.map +1 -1
- package/dist/runtime/types/hook.d.ts.map +1 -1
- package/dist/runtime/types/hook.js +2 -1
- package/dist/runtime/types/hook.js.map +1 -1
- package/dist/runtime/types/notification.d.ts +57 -56
- package/dist/runtime/types/notification.d.ts.map +1 -1
- package/dist/runtime/types/notification.js +24 -10
- package/dist/runtime/types/notification.js.map +1 -1
- package/dist/runtime/types/plugin.d.ts +8 -8
- package/dist/runtime/types/plugin.d.ts.map +1 -1
- package/dist/runtime/types/plugin.js +30 -15
- package/dist/runtime/types/plugin.js.map +1 -1
- package/dist/runtime/types/schedule.d.ts +1385 -97
- package/dist/runtime/types/schedule.d.ts.map +1 -1
- package/dist/runtime/types/schedule.js +120 -27
- package/dist/runtime/types/schedule.js.map +1 -1
- package/dist/runtime/types/trigger.d.ts +6 -6
- package/dist/runtime/visibility/cognitive-replay-index.d.ts +1072 -0
- package/dist/runtime/visibility/cognitive-replay-index.d.ts.map +1 -0
- package/dist/runtime/visibility/cognitive-replay-index.js +226 -0
- package/dist/runtime/visibility/cognitive-replay-index.js.map +1 -0
- package/dist/runtime/visibility/companion-audit-visibility.d.ts +161 -0
- package/dist/runtime/visibility/companion-audit-visibility.d.ts.map +1 -0
- package/dist/runtime/visibility/companion-audit-visibility.js +565 -0
- package/dist/runtime/visibility/companion-audit-visibility.js.map +1 -0
- package/dist/runtime/visibility/index.d.ts +5 -0
- package/dist/runtime/visibility/index.d.ts.map +1 -0
- package/dist/runtime/visibility/index.js +3 -0
- package/dist/runtime/visibility/index.js.map +1 -0
- package/dist/runtime/watchdog.d.ts +9 -1
- package/dist/runtime/watchdog.d.ts.map +1 -1
- package/dist/runtime/watchdog.js +53 -11
- package/dist/runtime/watchdog.js.map +1 -1
- package/dist/tools/automation/InteractiveAutomationTools.d.ts +59 -219
- package/dist/tools/automation/InteractiveAutomationTools.d.ts.map +1 -1
- package/dist/tools/automation/InteractiveAutomationTools.js +5 -117
- package/dist/tools/automation/InteractiveAutomationTools.js.map +1 -1
- package/dist/tools/automation/automation-tool-base.d.ts +37 -0
- package/dist/tools/automation/automation-tool-base.d.ts.map +1 -0
- package/dist/tools/automation/automation-tool-base.js +77 -0
- package/dist/tools/automation/automation-tool-base.js.map +1 -0
- package/dist/tools/automation/interactive-automation-schemas.d.ts +136 -0
- package/dist/tools/automation/interactive-automation-schemas.d.ts.map +1 -0
- package/dist/tools/automation/interactive-automation-schemas.js +54 -0
- package/dist/tools/automation/interactive-automation-schemas.js.map +1 -0
- package/dist/tools/builtin/factory.d.ts +4 -2
- package/dist/tools/builtin/factory.d.ts.map +1 -1
- package/dist/tools/builtin/factory.js +4 -2
- package/dist/tools/builtin/factory.js.map +1 -1
- package/dist/tools/capability-execution-records.d.ts +8 -0
- package/dist/tools/capability-execution-records.d.ts.map +1 -0
- package/dist/tools/capability-execution-records.js +165 -0
- package/dist/tools/capability-execution-records.js.map +1 -0
- package/dist/tools/execution/MemoryCorrectionTool/MemoryCorrectionTool.d.ts +4 -4
- package/dist/tools/execution/MemorySaveTool/MemorySaveTool.d.ts +28 -28
- package/dist/tools/execution/QueryDataSourceTool/QueryDataSourceTool.d.ts +2 -2
- package/dist/tools/execution/QueryDataSourceTool/QueryDataSourceTool.d.ts.map +1 -1
- package/dist/tools/execution/QueryDataSourceTool/QueryDataSourceTool.js +1 -1
- package/dist/tools/execution/QueryDataSourceTool/QueryDataSourceTool.js.map +1 -1
- package/dist/tools/execution/RunAdapterTool/RunAdapterTool.d.ts +2 -2
- package/dist/tools/execution/RunAdapterTool/RunAdapterTool.d.ts.map +1 -1
- package/dist/tools/execution/RunAdapterTool/RunAdapterTool.js +1 -1
- package/dist/tools/execution/RunAdapterTool/RunAdapterTool.js.map +1 -1
- package/dist/tools/execution/SoilDoctorTool/SoilDoctorTool.d.ts +2 -2
- package/dist/tools/execution/SoilDoctorTool/SoilDoctorTool.d.ts.map +1 -1
- package/dist/tools/execution/SoilDoctorTool/SoilDoctorTool.js +1 -1
- package/dist/tools/execution/SoilDoctorTool/SoilDoctorTool.js.map +1 -1
- package/dist/tools/execution/SoilImportTool/SoilImportTool.d.ts +8 -8
- package/dist/tools/execution/SoilImportTool/SoilImportTool.js +4 -4
- package/dist/tools/execution/SoilImportTool/SoilImportTool.js.map +1 -1
- package/dist/tools/execution/SoilOpenTool/SoilOpenTool.d.ts +2 -2
- package/dist/tools/execution/SoilOpenTool/SoilOpenTool.d.ts.map +1 -1
- package/dist/tools/execution/SoilOpenTool/SoilOpenTool.js +1 -1
- package/dist/tools/execution/SoilOpenTool/SoilOpenTool.js.map +1 -1
- package/dist/tools/execution/SoilPublishTool/SoilPublishTool.d.ts +2 -2
- package/dist/tools/execution/SoilPublishTool/SoilPublishTool.d.ts.map +1 -1
- package/dist/tools/execution/SoilPublishTool/SoilPublishTool.js +1 -1
- package/dist/tools/execution/SoilPublishTool/SoilPublishTool.js.map +1 -1
- package/dist/tools/execution/SoilRebuildTool/SoilRebuildTool.d.ts +2 -2
- package/dist/tools/execution/SoilRebuildTool/SoilRebuildTool.d.ts.map +1 -1
- package/dist/tools/execution/SoilRebuildTool/SoilRebuildTool.js +1 -1
- package/dist/tools/execution/SoilRebuildTool/SoilRebuildTool.js.map +1 -1
- package/dist/tools/execution/SpawnSessionTool/SpawnSessionTool.d.ts +3 -2
- package/dist/tools/execution/SpawnSessionTool/SpawnSessionTool.d.ts.map +1 -1
- package/dist/tools/execution/SpawnSessionTool/SpawnSessionTool.js +3 -2
- package/dist/tools/execution/SpawnSessionTool/SpawnSessionTool.js.map +1 -1
- package/dist/tools/execution-orchestrator.d.ts +2 -9
- package/dist/tools/execution-orchestrator.d.ts.map +1 -1
- package/dist/tools/execution-orchestrator.js.map +1 -1
- package/dist/tools/executor.d.ts +2 -0
- package/dist/tools/executor.d.ts.map +1 -1
- package/dist/tools/executor.js +163 -22
- package/dist/tools/executor.js.map +1 -1
- package/dist/tools/fs/ApplyPatchTool/ApplyPatchTool.d.ts +2 -2
- package/dist/tools/fs/ApplyPatchTool/ApplyPatchTool.d.ts.map +1 -1
- package/dist/tools/fs/ApplyPatchTool/ApplyPatchTool.js +1 -1
- package/dist/tools/fs/ApplyPatchTool/ApplyPatchTool.js.map +1 -1
- package/dist/tools/fs/FileEditTool/FileEditTool.d.ts +2 -2
- package/dist/tools/fs/FileEditTool/FileEditTool.d.ts.map +1 -1
- package/dist/tools/fs/FileEditTool/FileEditTool.js +1 -1
- package/dist/tools/fs/FileEditTool/FileEditTool.js.map +1 -1
- package/dist/tools/fs/FileWriteTool/FileWriteTool.d.ts +2 -2
- package/dist/tools/fs/FileWriteTool/FileWriteTool.d.ts.map +1 -1
- package/dist/tools/fs/FileWriteTool/FileWriteTool.js +1 -1
- package/dist/tools/fs/FileWriteTool/FileWriteTool.js.map +1 -1
- package/dist/tools/fs/GlobTool/GlobTool.d.ts +2 -2
- package/dist/tools/fs/GlobTool/GlobTool.d.ts.map +1 -1
- package/dist/tools/fs/GlobTool/GlobTool.js +23 -9
- package/dist/tools/fs/GlobTool/GlobTool.js.map +1 -1
- package/dist/tools/fs/GrepTool/GrepTool.d.ts +8 -2
- package/dist/tools/fs/GrepTool/GrepTool.d.ts.map +1 -1
- package/dist/tools/fs/GrepTool/GrepTool.js +53 -7
- package/dist/tools/fs/GrepTool/GrepTool.js.map +1 -1
- package/dist/tools/fs/GrepTool/prompt.d.ts +1 -1
- package/dist/tools/fs/GrepTool/prompt.d.ts.map +1 -1
- package/dist/tools/fs/GrepTool/prompt.js +1 -1
- package/dist/tools/fs/GrepTool/prompt.js.map +1 -1
- package/dist/tools/fs/JsonQueryTool/JsonQueryTool.d.ts +2 -2
- package/dist/tools/fs/JsonQueryTool/JsonQueryTool.d.ts.map +1 -1
- package/dist/tools/fs/JsonQueryTool/JsonQueryTool.js +20 -5
- package/dist/tools/fs/JsonQueryTool/JsonQueryTool.js.map +1 -1
- package/dist/tools/fs/JsonQueryTool/constants.d.ts +1 -0
- package/dist/tools/fs/JsonQueryTool/constants.d.ts.map +1 -1
- package/dist/tools/fs/JsonQueryTool/constants.js +1 -0
- package/dist/tools/fs/JsonQueryTool/constants.js.map +1 -1
- package/dist/tools/fs/ListDirTool/ListDirTool.d.ts +2 -2
- package/dist/tools/fs/ListDirTool/ListDirTool.d.ts.map +1 -1
- package/dist/tools/fs/ListDirTool/ListDirTool.js +7 -4
- package/dist/tools/fs/ListDirTool/ListDirTool.js.map +1 -1
- package/dist/tools/fs/ReadPulseedFileTool/ReadPulseedFileTool.d.ts +2 -2
- package/dist/tools/fs/ReadPulseedFileTool/ReadPulseedFileTool.d.ts.map +1 -1
- package/dist/tools/fs/ReadPulseedFileTool/ReadPulseedFileTool.js +1 -1
- package/dist/tools/fs/ReadPulseedFileTool/ReadPulseedFileTool.js.map +1 -1
- package/dist/tools/fs/ReadTool/ReadTool.d.ts +2 -2
- package/dist/tools/fs/ReadTool/ReadTool.d.ts.map +1 -1
- package/dist/tools/fs/ReadTool/ReadTool.js +51 -12
- package/dist/tools/fs/ReadTool/ReadTool.js.map +1 -1
- package/dist/tools/fs/WritePulseedFileTool/WritePulseedFileTool.d.ts +2 -2
- package/dist/tools/fs/WritePulseedFileTool/WritePulseedFileTool.d.ts.map +1 -1
- package/dist/tools/fs/WritePulseedFileTool/WritePulseedFileTool.js +1 -2
- package/dist/tools/fs/WritePulseedFileTool/WritePulseedFileTool.js.map +1 -1
- package/dist/tools/interaction/AskHumanTool/AskHumanTool.d.ts +75 -2
- package/dist/tools/interaction/AskHumanTool/AskHumanTool.d.ts.map +1 -1
- package/dist/tools/interaction/AskHumanTool/AskHumanTool.js +55 -6
- package/dist/tools/interaction/AskHumanTool/AskHumanTool.js.map +1 -1
- package/dist/tools/interaction/AskHumanTool/prompt.d.ts +1 -1
- package/dist/tools/interaction/AskHumanTool/prompt.d.ts.map +1 -1
- package/dist/tools/interaction/AskHumanTool/prompt.js +1 -1
- package/dist/tools/interaction/AskHumanTool/prompt.js.map +1 -1
- package/dist/tools/interaction/CreatePlanTool/CreatePlanTool.d.ts +2 -2
- package/dist/tools/interaction/CreatePlanTool/CreatePlanTool.d.ts.map +1 -1
- package/dist/tools/interaction/CreatePlanTool/CreatePlanTool.js +4 -4
- package/dist/tools/interaction/CreatePlanTool/CreatePlanTool.js.map +1 -1
- package/dist/tools/interaction/ReadPlanTool/ReadPlanTool.d.ts +2 -2
- package/dist/tools/interaction/ReadPlanTool/ReadPlanTool.d.ts.map +1 -1
- package/dist/tools/interaction/ReadPlanTool/ReadPlanTool.js +14 -5
- package/dist/tools/interaction/ReadPlanTool/ReadPlanTool.js.map +1 -1
- package/dist/tools/interaction/plan-utils.d.ts +3 -0
- package/dist/tools/interaction/plan-utils.d.ts.map +1 -1
- package/dist/tools/interaction/plan-utils.js +3 -0
- package/dist/tools/interaction/plan-utils.js.map +1 -1
- package/dist/tools/kaggle/KaggleExperimentTools.d.ts +2 -2
- package/dist/tools/kaggle/KaggleExperimentTools.d.ts.map +1 -1
- package/dist/tools/kaggle/KaggleExperimentTools.js +14 -320
- package/dist/tools/kaggle/KaggleExperimentTools.js.map +1 -1
- package/dist/tools/kaggle/KaggleSubmissionTools.d.ts +6 -6
- package/dist/tools/kaggle/KaggleSubmissionTools.d.ts.map +1 -1
- package/dist/tools/kaggle/KaggleSubmissionTools.js +7 -1
- package/dist/tools/kaggle/KaggleSubmissionTools.js.map +1 -1
- package/dist/tools/kaggle/experiment-artifacts.d.ts +16 -0
- package/dist/tools/kaggle/experiment-artifacts.d.ts.map +1 -0
- package/dist/tools/kaggle/experiment-artifacts.js +103 -0
- package/dist/tools/kaggle/experiment-artifacts.js.map +1 -0
- package/dist/tools/kaggle/metrics.d.ts +2 -2
- package/dist/tools/kaggle/metrics.js +3 -1
- package/dist/tools/kaggle/metrics.js.map +1 -1
- package/dist/tools/kaggle/tee-wrapper.d.ts +2 -0
- package/dist/tools/kaggle/tee-wrapper.d.ts.map +1 -0
- package/dist/tools/kaggle/tee-wrapper.js +244 -0
- package/dist/tools/kaggle/tee-wrapper.js.map +1 -0
- package/dist/tools/media/ViewImageTool/ViewImageTool.d.ts +2 -2
- package/dist/tools/media/ViewImageTool/ViewImageTool.d.ts.map +1 -1
- package/dist/tools/media/ViewImageTool/ViewImageTool.js +1 -1
- package/dist/tools/media/ViewImageTool/ViewImageTool.js.map +1 -1
- package/dist/tools/mutation/ArchiveGoalTool/ArchiveGoalTool.d.ts +2 -2
- package/dist/tools/mutation/ArchiveGoalTool/ArchiveGoalTool.d.ts.map +1 -1
- package/dist/tools/mutation/ArchiveGoalTool/ArchiveGoalTool.js +1 -1
- package/dist/tools/mutation/ArchiveGoalTool/ArchiveGoalTool.js.map +1 -1
- package/dist/tools/mutation/ConfigureNotificationRoutingTool/ConfigureNotificationRoutingTool.d.ts +2 -2
- package/dist/tools/mutation/ConfigureNotificationRoutingTool/ConfigureNotificationRoutingTool.d.ts.map +1 -1
- package/dist/tools/mutation/ConfigureNotificationRoutingTool/ConfigureNotificationRoutingTool.js +1 -1
- package/dist/tools/mutation/ConfigureNotificationRoutingTool/ConfigureNotificationRoutingTool.js.map +1 -1
- package/dist/tools/mutation/ConfigureNotificationRoutingTool/prompt.d.ts +1 -1
- package/dist/tools/mutation/ConfigureNotificationRoutingTool/prompt.d.ts.map +1 -1
- package/dist/tools/mutation/ConfigureNotificationRoutingTool/prompt.js +1 -1
- package/dist/tools/mutation/ConfigureNotificationRoutingTool/prompt.js.map +1 -1
- package/dist/tools/mutation/DeleteGoalTool/DeleteGoalTool.d.ts +2 -2
- package/dist/tools/mutation/DeleteGoalTool/DeleteGoalTool.d.ts.map +1 -1
- package/dist/tools/mutation/DeleteGoalTool/DeleteGoalTool.js +1 -1
- package/dist/tools/mutation/DeleteGoalTool/DeleteGoalTool.js.map +1 -1
- package/dist/tools/mutation/ResetTrustTool/ResetTrustTool.d.ts +2 -2
- package/dist/tools/mutation/ResetTrustTool/ResetTrustTool.d.ts.map +1 -1
- package/dist/tools/mutation/ResetTrustTool/ResetTrustTool.js +1 -1
- package/dist/tools/mutation/ResetTrustTool/ResetTrustTool.js.map +1 -1
- package/dist/tools/mutation/SetGoalTool/SetGoalTool.d.ts +2 -2
- package/dist/tools/mutation/SetGoalTool/SetGoalTool.d.ts.map +1 -1
- package/dist/tools/mutation/SetGoalTool/SetGoalTool.js +1 -1
- package/dist/tools/mutation/SetGoalTool/SetGoalTool.js.map +1 -1
- package/dist/tools/mutation/TaskCreateTool/TaskCreateTool.d.ts +8 -8
- package/dist/tools/mutation/TaskCreateTool/TaskCreateTool.d.ts.map +1 -1
- package/dist/tools/mutation/TaskCreateTool/TaskCreateTool.js +8 -5
- package/dist/tools/mutation/TaskCreateTool/TaskCreateTool.js.map +1 -1
- package/dist/tools/mutation/TaskOutputTool/TaskOutputTool.d.ts +2 -2
- package/dist/tools/mutation/TaskOutputTool/TaskOutputTool.d.ts.map +1 -1
- package/dist/tools/mutation/TaskOutputTool/TaskOutputTool.js +3 -3
- package/dist/tools/mutation/TaskOutputTool/TaskOutputTool.js.map +1 -1
- package/dist/tools/mutation/TaskStopTool/TaskStopTool.d.ts +2 -2
- package/dist/tools/mutation/TaskStopTool/TaskStopTool.d.ts.map +1 -1
- package/dist/tools/mutation/TaskStopTool/TaskStopTool.js +3 -3
- package/dist/tools/mutation/TaskStopTool/TaskStopTool.js.map +1 -1
- package/dist/tools/mutation/TaskUpdateTool/TaskUpdateTool.d.ts +8 -8
- package/dist/tools/mutation/TaskUpdateTool/TaskUpdateTool.d.ts.map +1 -1
- package/dist/tools/mutation/TaskUpdateTool/TaskUpdateTool.js +10 -7
- package/dist/tools/mutation/TaskUpdateTool/TaskUpdateTool.js.map +1 -1
- package/dist/tools/mutation/TogglePluginTool/TogglePluginTool.d.ts +2 -2
- package/dist/tools/mutation/TogglePluginTool/TogglePluginTool.d.ts.map +1 -1
- package/dist/tools/mutation/TogglePluginTool/TogglePluginTool.js +1 -1
- package/dist/tools/mutation/TogglePluginTool/TogglePluginTool.js.map +1 -1
- package/dist/tools/mutation/UpdateConfigTool/UpdateConfigTool.d.ts +2 -2
- package/dist/tools/mutation/UpdateConfigTool/UpdateConfigTool.d.ts.map +1 -1
- package/dist/tools/mutation/UpdateConfigTool/UpdateConfigTool.js +1 -1
- package/dist/tools/mutation/UpdateConfigTool/UpdateConfigTool.js.map +1 -1
- package/dist/tools/mutation/UpdateGoalTool/UpdateGoalTool.d.ts +2 -2
- package/dist/tools/mutation/UpdateGoalTool/UpdateGoalTool.d.ts.map +1 -1
- package/dist/tools/mutation/UpdateGoalTool/UpdateGoalTool.js +1 -1
- package/dist/tools/mutation/UpdateGoalTool/UpdateGoalTool.js.map +1 -1
- package/dist/tools/mutation/task-history-utils.d.ts.map +1 -1
- package/dist/tools/mutation/task-history-utils.js +4 -7
- package/dist/tools/mutation/task-history-utils.js.map +1 -1
- package/dist/tools/network/GitHubCliTool/GitHubCliTool.d.ts +10 -10
- package/dist/tools/network/GitHubCliTool/GitHubCliTool.d.ts.map +1 -1
- package/dist/tools/network/GitHubCliTool/GitHubCliTool.js +6 -5
- package/dist/tools/network/GitHubCliTool/GitHubCliTool.js.map +1 -1
- package/dist/tools/network/HttpFetchTool/HttpFetchTool.d.ts +2 -2
- package/dist/tools/network/HttpFetchTool/HttpFetchTool.d.ts.map +1 -1
- package/dist/tools/network/HttpFetchTool/HttpFetchTool.js +19 -7
- package/dist/tools/network/HttpFetchTool/HttpFetchTool.js.map +1 -1
- package/dist/tools/network/McpStdioTool/McpStdioTool.d.ts +14 -14
- package/dist/tools/network/McpStdioTool/McpStdioTool.js +1 -1
- package/dist/tools/network/McpStdioTool/McpStdioTool.js.map +1 -1
- package/dist/tools/network/WebSearchTool/WebSearchTool.d.ts +3 -3
- package/dist/tools/network/WebSearchTool/WebSearchTool.d.ts.map +1 -1
- package/dist/tools/network/WebSearchTool/WebSearchTool.js +2 -2
- package/dist/tools/network/WebSearchTool/WebSearchTool.js.map +1 -1
- package/dist/tools/permission-grant-evaluator.d.ts +22 -0
- package/dist/tools/permission-grant-evaluator.d.ts.map +1 -0
- package/dist/tools/permission-grant-evaluator.js +289 -0
- package/dist/tools/permission-grant-evaluator.js.map +1 -0
- package/dist/tools/permission.d.ts.map +1 -1
- package/dist/tools/permission.js +21 -1
- package/dist/tools/permission.js.map +1 -1
- package/dist/tools/query/ArchitectureTool/ArchitectureTool.d.ts +2 -2
- package/dist/tools/query/ArchitectureTool/ArchitectureTool.d.ts.map +1 -1
- package/dist/tools/query/ArchitectureTool/ArchitectureTool.js +1 -1
- package/dist/tools/query/ArchitectureTool/ArchitectureTool.js.map +1 -1
- package/dist/tools/query/CodeReadContextTool/CodeReadContextTool.d.ts +262 -12
- package/dist/tools/query/CodeReadContextTool/CodeReadContextTool.d.ts.map +1 -1
- package/dist/tools/query/CodeReadContextTool/CodeReadContextTool.js +31 -13
- package/dist/tools/query/CodeReadContextTool/CodeReadContextTool.js.map +1 -1
- package/dist/tools/query/CodeSearchRepairTool/CodeSearchRepairTool.d.ts +4 -4
- package/dist/tools/query/CodeSearchRepairTool/CodeSearchRepairTool.d.ts.map +1 -1
- package/dist/tools/query/CodeSearchRepairTool/CodeSearchRepairTool.js +3 -3
- package/dist/tools/query/CodeSearchRepairTool/CodeSearchRepairTool.js.map +1 -1
- package/dist/tools/query/CodeSearchTool/CodeSearchTool.d.ts +4 -4
- package/dist/tools/query/CodeSearchTool/CodeSearchTool.d.ts.map +1 -1
- package/dist/tools/query/CodeSearchTool/CodeSearchTool.js +12 -7
- package/dist/tools/query/CodeSearchTool/CodeSearchTool.js.map +1 -1
- package/dist/tools/query/ConfigTool/ConfigTool.d.ts +3 -3
- package/dist/tools/query/ConfigTool/ConfigTool.d.ts.map +1 -1
- package/dist/tools/query/ConfigTool/ConfigTool.js +17 -29
- package/dist/tools/query/ConfigTool/ConfigTool.js.map +1 -1
- package/dist/tools/query/ConfigTool/prompt.d.ts +1 -1
- package/dist/tools/query/ConfigTool/prompt.d.ts.map +1 -1
- package/dist/tools/query/ConfigTool/prompt.js +1 -1
- package/dist/tools/query/ConfigTool/prompt.js.map +1 -1
- package/dist/tools/query/GoalStateTool/GoalStateTool.d.ts +2 -2
- package/dist/tools/query/GoalStateTool/GoalStateTool.d.ts.map +1 -1
- package/dist/tools/query/GoalStateTool/GoalStateTool.js +1 -1
- package/dist/tools/query/GoalStateTool/GoalStateTool.js.map +1 -1
- package/dist/tools/query/KnowledgeQueryTool/KnowledgeQueryTool.d.ts +2 -2
- package/dist/tools/query/KnowledgeQueryTool/KnowledgeQueryTool.d.ts.map +1 -1
- package/dist/tools/query/KnowledgeQueryTool/KnowledgeQueryTool.js +1 -1
- package/dist/tools/query/KnowledgeQueryTool/KnowledgeQueryTool.js.map +1 -1
- package/dist/tools/query/MemoryRecallTool/MemoryRecallTool.d.ts +10 -10
- package/dist/tools/query/MemoryRecallTool/MemoryRecallTool.d.ts.map +1 -1
- package/dist/tools/query/MemoryRecallTool/MemoryRecallTool.js +1 -1
- package/dist/tools/query/MemoryRecallTool/MemoryRecallTool.js.map +1 -1
- package/dist/tools/query/PluginStateTool/PluginStateTool.d.ts +2 -2
- package/dist/tools/query/PluginStateTool/PluginStateTool.d.ts.map +1 -1
- package/dist/tools/query/PluginStateTool/PluginStateTool.js +11 -7
- package/dist/tools/query/PluginStateTool/PluginStateTool.js.map +1 -1
- package/dist/tools/query/ProgressHistoryTool/ProgressHistoryTool.d.ts +2 -2
- package/dist/tools/query/ProgressHistoryTool/ProgressHistoryTool.d.ts.map +1 -1
- package/dist/tools/query/ProgressHistoryTool/ProgressHistoryTool.js +1 -1
- package/dist/tools/query/ProgressHistoryTool/ProgressHistoryTool.js.map +1 -1
- package/dist/tools/query/SessionHistoryTool/SessionHistoryTool.d.ts +8 -3
- package/dist/tools/query/SessionHistoryTool/SessionHistoryTool.d.ts.map +1 -1
- package/dist/tools/query/SessionHistoryTool/SessionHistoryTool.js +29 -53
- package/dist/tools/query/SessionHistoryTool/SessionHistoryTool.js.map +1 -1
- package/dist/tools/query/SkillSearchTool/SkillSearchTool.d.ts +2 -2
- package/dist/tools/query/SkillSearchTool/SkillSearchTool.d.ts.map +1 -1
- package/dist/tools/query/SkillSearchTool/SkillSearchTool.js +1 -1
- package/dist/tools/query/SkillSearchTool/SkillSearchTool.js.map +1 -1
- package/dist/tools/query/SoilQueryTool/SoilQueryTool.d.ts +8 -8
- package/dist/tools/query/TaskGetTool/TaskGetTool.d.ts +2 -2
- package/dist/tools/query/TaskGetTool/TaskGetTool.d.ts.map +1 -1
- package/dist/tools/query/TaskGetTool/TaskGetTool.js +2 -9
- package/dist/tools/query/TaskGetTool/TaskGetTool.js.map +1 -1
- package/dist/tools/query/TaskListTool/TaskListTool.d.ts +2 -2
- package/dist/tools/query/TaskListTool/TaskListTool.d.ts.map +1 -1
- package/dist/tools/query/TaskListTool/TaskListTool.js +2 -22
- package/dist/tools/query/TaskListTool/TaskListTool.js.map +1 -1
- package/dist/tools/query/ToolSearchTool/ToolSearchTool.d.ts +2 -2
- package/dist/tools/query/ToolSearchTool/ToolSearchTool.d.ts.map +1 -1
- package/dist/tools/query/ToolSearchTool/ToolSearchTool.js +2 -1
- package/dist/tools/query/ToolSearchTool/ToolSearchTool.js.map +1 -1
- package/dist/tools/query/TrustStateTool/TrustStateTool.d.ts +6 -3
- package/dist/tools/query/TrustStateTool/TrustStateTool.d.ts.map +1 -1
- package/dist/tools/query/TrustStateTool/TrustStateTool.js +10 -5
- package/dist/tools/query/TrustStateTool/TrustStateTool.js.map +1 -1
- package/dist/tools/query/runtime-dream-review-tool.d.ts +2 -2
- package/dist/tools/query/runtime-dream-review-tool.d.ts.map +1 -1
- package/dist/tools/query/runtime-dream-review-tool.js +1 -1
- package/dist/tools/query/runtime-dream-review-tool.js.map +1 -1
- package/dist/tools/query/runtime-session-tool-schemas.d.ts +211 -0
- package/dist/tools/query/runtime-session-tool-schemas.d.ts.map +1 -0
- package/dist/tools/query/runtime-session-tool-schemas.js +83 -0
- package/dist/tools/query/runtime-session-tool-schemas.js.map +1 -0
- package/dist/tools/query/runtime-session-tools.d.ts +72 -280
- package/dist/tools/query/runtime-session-tools.d.ts.map +1 -1
- package/dist/tools/query/runtime-session-tools.js +87 -294
- package/dist/tools/query/runtime-session-tools.js.map +1 -1
- package/dist/tools/registry.d.ts +1 -1
- package/dist/tools/registry.d.ts.map +1 -1
- package/dist/tools/registry.js +4 -2
- package/dist/tools/registry.js.map +1 -1
- package/dist/tools/runtime/LongRunningRuntimeTools.d.ts +38 -548
- package/dist/tools/runtime/LongRunningRuntimeTools.d.ts.map +1 -1
- package/dist/tools/runtime/LongRunningRuntimeTools.js +29 -226
- package/dist/tools/runtime/LongRunningRuntimeTools.js.map +1 -1
- package/dist/tools/runtime/RunSpecHandoffTools.d.ts.map +1 -1
- package/dist/tools/runtime/RunSpecHandoffTools.js +13 -12
- package/dist/tools/runtime/RunSpecHandoffTools.js.map +1 -1
- package/dist/tools/runtime/SetupRuntimeControlTools.js +28 -16
- package/dist/tools/runtime/SetupRuntimeControlTools.js.map +1 -1
- package/dist/tools/runtime/long-running-report-render.d.ts +5 -0
- package/dist/tools/runtime/long-running-report-render.d.ts.map +1 -0
- package/dist/tools/runtime/long-running-report-render.js +53 -0
- package/dist/tools/runtime/long-running-report-render.js.map +1 -0
- package/dist/tools/runtime/long-running-runtime-paths.d.ts +8 -0
- package/dist/tools/runtime/long-running-runtime-paths.d.ts.map +1 -0
- package/dist/tools/runtime/long-running-runtime-paths.js +77 -0
- package/dist/tools/runtime/long-running-runtime-paths.js.map +1 -0
- package/dist/tools/runtime/long-running-runtime-schemas.d.ts +515 -0
- package/dist/tools/runtime/long-running-runtime-schemas.d.ts.map +1 -0
- package/dist/tools/runtime/long-running-runtime-schemas.js +92 -0
- package/dist/tools/runtime/long-running-runtime-schemas.js.map +1 -0
- package/dist/tools/schedule/CreateScheduleTool/CreateScheduleTool.d.ts +509 -145
- package/dist/tools/schedule/CreateScheduleTool/CreateScheduleTool.d.ts.map +1 -1
- package/dist/tools/schedule/CreateScheduleTool/CreateScheduleTool.js +14 -14
- package/dist/tools/schedule/CreateScheduleTool/CreateScheduleTool.js.map +1 -1
- package/dist/tools/schedule/GetScheduleTool/GetScheduleTool.d.ts +2 -2
- package/dist/tools/schedule/GetScheduleTool/GetScheduleTool.d.ts.map +1 -1
- package/dist/tools/schedule/GetScheduleTool/GetScheduleTool.js +1 -1
- package/dist/tools/schedule/GetScheduleTool/GetScheduleTool.js.map +1 -1
- package/dist/tools/schedule/ListSchedulesTool/ListSchedulesTool.d.ts +6 -6
- package/dist/tools/schedule/ListSchedulesTool/ListSchedulesTool.d.ts.map +1 -1
- package/dist/tools/schedule/ListSchedulesTool/ListSchedulesTool.js +1 -1
- package/dist/tools/schedule/ListSchedulesTool/ListSchedulesTool.js.map +1 -1
- package/dist/tools/schedule/PauseScheduleTool/PauseScheduleTool.d.ts +2 -2
- package/dist/tools/schedule/PauseScheduleTool/PauseScheduleTool.d.ts.map +1 -1
- package/dist/tools/schedule/PauseScheduleTool/PauseScheduleTool.js +1 -1
- package/dist/tools/schedule/PauseScheduleTool/PauseScheduleTool.js.map +1 -1
- package/dist/tools/schedule/RemoveScheduleTool/RemoveScheduleTool.d.ts +2 -2
- package/dist/tools/schedule/RemoveScheduleTool/RemoveScheduleTool.d.ts.map +1 -1
- package/dist/tools/schedule/RemoveScheduleTool/RemoveScheduleTool.js +1 -1
- package/dist/tools/schedule/RemoveScheduleTool/RemoveScheduleTool.js.map +1 -1
- package/dist/tools/schedule/ResumeScheduleTool/ResumeScheduleTool.d.ts +2 -2
- package/dist/tools/schedule/ResumeScheduleTool/ResumeScheduleTool.d.ts.map +1 -1
- package/dist/tools/schedule/ResumeScheduleTool/ResumeScheduleTool.js +1 -1
- package/dist/tools/schedule/ResumeScheduleTool/ResumeScheduleTool.js.map +1 -1
- package/dist/tools/schedule/RunScheduleTool/RunScheduleTool.d.ts +2 -2
- package/dist/tools/schedule/RunScheduleTool/RunScheduleTool.d.ts.map +1 -1
- package/dist/tools/schedule/RunScheduleTool/RunScheduleTool.js +1 -1
- package/dist/tools/schedule/RunScheduleTool/RunScheduleTool.js.map +1 -1
- package/dist/tools/schedule/UpdateScheduleTool/UpdateScheduleTool.d.ts +594 -106
- package/dist/tools/schedule/UpdateScheduleTool/UpdateScheduleTool.d.ts.map +1 -1
- package/dist/tools/schedule/UpdateScheduleTool/UpdateScheduleTool.js +8 -8
- package/dist/tools/schedule/UpdateScheduleTool/UpdateScheduleTool.js.map +1 -1
- package/dist/tools/schedule/schedule-tool-input-schemas.d.ts +611 -0
- package/dist/tools/schedule/schedule-tool-input-schemas.d.ts.map +1 -0
- package/dist/tools/schedule/schedule-tool-input-schemas.js +152 -0
- package/dist/tools/schedule/schedule-tool-input-schemas.js.map +1 -0
- package/dist/tools/shared/parse-tool-output.d.ts.map +1 -1
- package/dist/tools/shared/parse-tool-output.js +6 -3
- package/dist/tools/shared/parse-tool-output.js.map +1 -1
- package/dist/tools/system/EnvTool/EnvTool.d.ts +2 -2
- package/dist/tools/system/EnvTool/EnvTool.d.ts.map +1 -1
- package/dist/tools/system/EnvTool/EnvTool.js +1 -1
- package/dist/tools/system/EnvTool/EnvTool.js.map +1 -1
- package/dist/tools/system/GitDiffTool/GitDiffTool.d.ts +6 -6
- package/dist/tools/system/GitDiffTool/GitDiffTool.d.ts.map +1 -1
- package/dist/tools/system/GitDiffTool/GitDiffTool.js +1 -1
- package/dist/tools/system/GitDiffTool/GitDiffTool.js.map +1 -1
- package/dist/tools/system/GitLogTool/GitLogTool.d.ts +2 -2
- package/dist/tools/system/GitLogTool/GitLogTool.d.ts.map +1 -1
- package/dist/tools/system/GitLogTool/GitLogTool.js +4 -2
- package/dist/tools/system/GitLogTool/GitLogTool.js.map +1 -1
- package/dist/tools/system/ProcessSessionTool/ProcessSessionTool.d.ts +17 -14
- package/dist/tools/system/ProcessSessionTool/ProcessSessionTool.d.ts.map +1 -1
- package/dist/tools/system/ProcessSessionTool/ProcessSessionTool.js +43 -54
- package/dist/tools/system/ProcessSessionTool/ProcessSessionTool.js.map +1 -1
- package/dist/tools/system/ProcessStatusTool/ProcessStatusTool.d.ts +3 -3
- package/dist/tools/system/ProcessStatusTool/ProcessStatusTool.d.ts.map +1 -1
- package/dist/tools/system/ProcessStatusTool/ProcessStatusTool.js +43 -10
- package/dist/tools/system/ProcessStatusTool/ProcessStatusTool.js.map +1 -1
- package/dist/tools/system/ShellCommandTool/ShellCommandTool.d.ts +2 -2
- package/dist/tools/system/ShellCommandTool/ShellCommandTool.d.ts.map +1 -1
- package/dist/tools/system/ShellCommandTool/ShellCommandTool.js +3 -3
- package/dist/tools/system/ShellCommandTool/ShellCommandTool.js.map +1 -1
- package/dist/tools/system/ShellTool/ShellTool.d.ts +5 -2
- package/dist/tools/system/ShellTool/ShellTool.d.ts.map +1 -1
- package/dist/tools/system/ShellTool/ShellTool.js +5 -2
- package/dist/tools/system/ShellTool/ShellTool.js.map +1 -1
- package/dist/tools/system/SleepTool/SleepTool.d.ts +2 -2
- package/dist/tools/system/SleepTool/SleepTool.d.ts.map +1 -1
- package/dist/tools/system/SleepTool/SleepTool.js +1 -1
- package/dist/tools/system/SleepTool/SleepTool.js.map +1 -1
- package/dist/tools/system/TestRunnerTool/TestRunnerTool.d.ts +8 -6
- package/dist/tools/system/TestRunnerTool/TestRunnerTool.d.ts.map +1 -1
- package/dist/tools/system/TestRunnerTool/TestRunnerTool.js +59 -44
- package/dist/tools/system/TestRunnerTool/TestRunnerTool.js.map +1 -1
- package/dist/tools/system/UpdatePlanTool/UpdatePlanTool.d.ts +4 -4
- package/dist/tools/system/UpdatePlanTool/UpdatePlanTool.d.ts.map +1 -1
- package/dist/tools/system/UpdatePlanTool/UpdatePlanTool.js +6 -5
- package/dist/tools/system/UpdatePlanTool/UpdatePlanTool.js.map +1 -1
- package/dist/tools/tool-definition-adapter.d.ts.map +1 -1
- package/dist/tools/tool-definition-adapter.js +189 -20
- package/dist/tools/tool-definition-adapter.js.map +1 -1
- package/dist/tools/types.d.ts +98 -7
- package/dist/tools/types.d.ts.map +1 -1
- package/dist/tools/types.js +26 -8
- package/dist/tools/types.js.map +1 -1
- package/package.json +9 -2
- package/dist/base/state/state-lock.d.ts +0 -17
- package/dist/base/state/state-lock.d.ts.map +0 -1
- package/dist/base/state/state-lock.js +0 -134
- package/dist/base/state/state-lock.js.map +0 -1
- package/dist/base/state/state-manager-goal-state.d.ts +0 -40
- package/dist/base/state/state-manager-goal-state.d.ts.map +0 -1
- package/dist/base/state/state-manager-goal-state.js +0 -235
- package/dist/base/state/state-manager-goal-state.js.map +0 -1
- package/dist/base/state/state-manager-goal-write.d.ts +0 -26
- package/dist/base/state/state-manager-goal-write.d.ts.map +0 -1
- package/dist/base/state/state-manager-goal-write.js +0 -116
- package/dist/base/state/state-manager-goal-write.js.map +0 -1
- package/dist/base/state/state-manager-wal.d.ts +0 -11
- package/dist/base/state/state-manager-wal.d.ts.map +0 -1
- package/dist/base/state/state-manager-wal.js +0 -101
- package/dist/base/state/state-manager-wal.js.map +0 -1
- package/dist/base/state/state-wal.d.ts.map +0 -1
- package/dist/base/state/state-wal.js.map +0 -1
- package/dist/interface/chat/freeform-route-classifier.d.ts +0 -21
- package/dist/interface/chat/freeform-route-classifier.d.ts.map +0 -1
- package/dist/interface/chat/freeform-route-classifier.js +0 -43
- package/dist/interface/chat/freeform-route-classifier.js.map +0 -1
- package/dist/orchestrator/ethics-gate.d.ts +0 -3
- package/dist/orchestrator/ethics-gate.d.ts.map +0 -1
- package/dist/orchestrator/ethics-gate.js +0 -2
- package/dist/orchestrator/ethics-gate.js.map +0 -1
- package/dist/orchestrator/loop/core-loop/capability.d.ts +0 -2
- package/dist/orchestrator/loop/core-loop/capability.d.ts.map +0 -1
- package/dist/orchestrator/loop/core-loop/capability.js +0 -2
- package/dist/orchestrator/loop/core-loop/capability.js.map +0 -1
- package/dist/orchestrator/loop/core-loop/contracts.d.ts +0 -2
- package/dist/orchestrator/loop/core-loop/contracts.d.ts.map +0 -1
- package/dist/orchestrator/loop/core-loop/contracts.js +0 -2
- package/dist/orchestrator/loop/core-loop/contracts.js.map +0 -1
- package/dist/orchestrator/loop/core-loop/control.d.ts +0 -2
- package/dist/orchestrator/loop/core-loop/control.d.ts.map +0 -1
- package/dist/orchestrator/loop/core-loop/control.js +0 -2
- package/dist/orchestrator/loop/core-loop/control.js.map +0 -1
- package/dist/orchestrator/loop/core-loop/decision-engine.d.ts +0 -2
- package/dist/orchestrator/loop/core-loop/decision-engine.d.ts.map +0 -1
- package/dist/orchestrator/loop/core-loop/decision-engine.js +0 -2
- package/dist/orchestrator/loop/core-loop/decision-engine.js.map +0 -1
- package/dist/orchestrator/loop/core-loop/dream-review-checkpoint.d.ts +0 -2
- package/dist/orchestrator/loop/core-loop/dream-review-checkpoint.d.ts.map +0 -1
- package/dist/orchestrator/loop/core-loop/dream-review-checkpoint.js +0 -2
- package/dist/orchestrator/loop/core-loop/dream-review-checkpoint.js.map +0 -1
- package/dist/orchestrator/loop/core-loop/evidence-ledger.d.ts +0 -2
- package/dist/orchestrator/loop/core-loop/evidence-ledger.d.ts.map +0 -1
- package/dist/orchestrator/loop/core-loop/evidence-ledger.js +0 -2
- package/dist/orchestrator/loop/core-loop/evidence-ledger.js.map +0 -1
- package/dist/orchestrator/loop/core-loop/iteration-kernel-knowledge.d.ts +0 -2
- package/dist/orchestrator/loop/core-loop/iteration-kernel-knowledge.d.ts.map +0 -1
- package/dist/orchestrator/loop/core-loop/iteration-kernel-knowledge.js +0 -2
- package/dist/orchestrator/loop/core-loop/iteration-kernel-knowledge.js.map +0 -1
- package/dist/orchestrator/loop/core-loop/iteration-kernel-wait.d.ts +0 -2
- package/dist/orchestrator/loop/core-loop/iteration-kernel-wait.d.ts.map +0 -1
- package/dist/orchestrator/loop/core-loop/iteration-kernel-wait.js +0 -2
- package/dist/orchestrator/loop/core-loop/iteration-kernel-wait.js.map +0 -1
- package/dist/orchestrator/loop/core-loop/iteration-kernel.d.ts +0 -2
- package/dist/orchestrator/loop/core-loop/iteration-kernel.d.ts.map +0 -1
- package/dist/orchestrator/loop/core-loop/iteration-kernel.js +0 -2
- package/dist/orchestrator/loop/core-loop/iteration-kernel.js.map +0 -1
- package/dist/orchestrator/loop/core-loop/learning.d.ts +0 -2
- package/dist/orchestrator/loop/core-loop/learning.d.ts.map +0 -1
- package/dist/orchestrator/loop/core-loop/learning.js +0 -2
- package/dist/orchestrator/loop/core-loop/learning.js.map +0 -1
- package/dist/orchestrator/loop/core-loop/phase-policy.d.ts +0 -2
- package/dist/orchestrator/loop/core-loop/phase-policy.d.ts.map +0 -1
- package/dist/orchestrator/loop/core-loop/phase-policy.js +0 -2
- package/dist/orchestrator/loop/core-loop/phase-policy.js.map +0 -1
- package/dist/orchestrator/loop/core-loop/phase-runtime.d.ts +0 -2
- package/dist/orchestrator/loop/core-loop/phase-runtime.d.ts.map +0 -1
- package/dist/orchestrator/loop/core-loop/phase-runtime.js +0 -2
- package/dist/orchestrator/loop/core-loop/phase-runtime.js.map +0 -1
- package/dist/orchestrator/loop/core-loop/phase-specs.d.ts +0 -2
- package/dist/orchestrator/loop/core-loop/phase-specs.d.ts.map +0 -1
- package/dist/orchestrator/loop/core-loop/phase-specs.js +0 -2
- package/dist/orchestrator/loop/core-loop/phase-specs.js.map +0 -1
- package/dist/orchestrator/loop/core-loop/preparation.d.ts +0 -2
- package/dist/orchestrator/loop/core-loop/preparation.d.ts.map +0 -1
- package/dist/orchestrator/loop/core-loop/preparation.js +0 -2
- package/dist/orchestrator/loop/core-loop/preparation.js.map +0 -1
- package/dist/orchestrator/loop/core-loop/public-research.d.ts +0 -2
- package/dist/orchestrator/loop/core-loop/public-research.d.ts.map +0 -1
- package/dist/orchestrator/loop/core-loop/public-research.js +0 -2
- package/dist/orchestrator/loop/core-loop/public-research.js.map +0 -1
- package/dist/orchestrator/loop/core-loop/task-cycle-stall.d.ts +0 -2
- package/dist/orchestrator/loop/core-loop/task-cycle-stall.d.ts.map +0 -1
- package/dist/orchestrator/loop/core-loop/task-cycle-stall.js +0 -2
- package/dist/orchestrator/loop/core-loop/task-cycle-stall.js.map +0 -1
- package/dist/orchestrator/loop/core-loop/task-cycle-wait.d.ts +0 -2
- package/dist/orchestrator/loop/core-loop/task-cycle-wait.d.ts.map +0 -1
- package/dist/orchestrator/loop/core-loop/task-cycle-wait.js +0 -2
- package/dist/orchestrator/loop/core-loop/task-cycle-wait.js.map +0 -1
- package/dist/orchestrator/loop/core-loop/task-cycle.d.ts +0 -2
- package/dist/orchestrator/loop/core-loop/task-cycle.d.ts.map +0 -1
- package/dist/orchestrator/loop/core-loop/task-cycle.js +0 -2
- package/dist/orchestrator/loop/core-loop/task-cycle.js.map +0 -1
- package/dist/platform/dream/dream-log-store.d.ts +0 -22
- package/dist/platform/dream/dream-log-store.d.ts.map +0 -1
- package/dist/platform/dream/dream-log-store.js +0 -150
- package/dist/platform/dream/dream-log-store.js.map +0 -1
- package/dist/platform/ethics-gate.d.ts +0 -2
- package/dist/platform/ethics-gate.d.ts.map +0 -1
- package/dist/platform/ethics-gate.js +0 -2
- package/dist/platform/ethics-gate.js.map +0 -1
|
@@ -124,24 +124,17 @@ export declare const IterationLogSchema: z.ZodObject<{
|
|
|
124
124
|
}, "strip", z.ZodTypeAny, {
|
|
125
125
|
timestamp: string;
|
|
126
126
|
iteration: number;
|
|
127
|
-
goalId: string;
|
|
128
127
|
sessionId: string;
|
|
129
|
-
|
|
128
|
+
goalId: string;
|
|
130
129
|
gapAggregate: number;
|
|
131
130
|
stallDetected: boolean;
|
|
131
|
+
elapsedMs: number;
|
|
132
132
|
completionJudgment: Record<string, unknown>;
|
|
133
133
|
strategyId?: string | null | undefined;
|
|
134
134
|
skipReason?: string | null | undefined;
|
|
135
135
|
skipped?: boolean | undefined;
|
|
136
136
|
tokensUsed?: number | null | undefined;
|
|
137
137
|
taskId?: string | null | undefined;
|
|
138
|
-
driveScores?: {
|
|
139
|
-
score: number;
|
|
140
|
-
dimensionName: string;
|
|
141
|
-
confidence?: number | undefined;
|
|
142
|
-
urgency?: number | undefined;
|
|
143
|
-
}[] | undefined;
|
|
144
|
-
waitSuppressed?: boolean | undefined;
|
|
145
138
|
entryId?: string | undefined;
|
|
146
139
|
gapDimensions?: {
|
|
147
140
|
confidence: number;
|
|
@@ -150,6 +143,12 @@ export declare const IterationLogSchema: z.ZodObject<{
|
|
|
150
143
|
raw_gap: number;
|
|
151
144
|
normalized_gap: number;
|
|
152
145
|
}[] | undefined;
|
|
146
|
+
driveScores?: {
|
|
147
|
+
score: number;
|
|
148
|
+
dimensionName: string;
|
|
149
|
+
confidence?: number | undefined;
|
|
150
|
+
urgency?: number | undefined;
|
|
151
|
+
}[] | undefined;
|
|
153
152
|
taskAction?: string | null | undefined;
|
|
154
153
|
verificationResult?: {
|
|
155
154
|
timestamp: string;
|
|
@@ -157,27 +156,21 @@ export declare const IterationLogSchema: z.ZodObject<{
|
|
|
157
156
|
verdict: string;
|
|
158
157
|
} | null | undefined;
|
|
159
158
|
stallSeverity?: number | null | undefined;
|
|
159
|
+
waitSuppressed?: boolean | undefined;
|
|
160
160
|
}, {
|
|
161
161
|
timestamp: string;
|
|
162
162
|
iteration: number;
|
|
163
|
-
goalId: string;
|
|
164
163
|
sessionId: string;
|
|
165
|
-
|
|
164
|
+
goalId: string;
|
|
166
165
|
gapAggregate: number;
|
|
167
166
|
stallDetected: boolean;
|
|
167
|
+
elapsedMs: number;
|
|
168
168
|
completionJudgment: Record<string, unknown>;
|
|
169
169
|
strategyId?: string | null | undefined;
|
|
170
170
|
skipReason?: string | null | undefined;
|
|
171
171
|
skipped?: boolean | undefined;
|
|
172
172
|
tokensUsed?: number | null | undefined;
|
|
173
173
|
taskId?: string | null | undefined;
|
|
174
|
-
driveScores?: {
|
|
175
|
-
score: number;
|
|
176
|
-
dimensionName: string;
|
|
177
|
-
confidence?: number | undefined;
|
|
178
|
-
urgency?: number | undefined;
|
|
179
|
-
}[] | undefined;
|
|
180
|
-
waitSuppressed?: boolean | undefined;
|
|
181
174
|
entryId?: string | undefined;
|
|
182
175
|
gapDimensions?: {
|
|
183
176
|
confidence: number;
|
|
@@ -186,6 +179,12 @@ export declare const IterationLogSchema: z.ZodObject<{
|
|
|
186
179
|
raw_gap: number;
|
|
187
180
|
normalized_gap: number;
|
|
188
181
|
}[] | undefined;
|
|
182
|
+
driveScores?: {
|
|
183
|
+
score: number;
|
|
184
|
+
dimensionName: string;
|
|
185
|
+
confidence?: number | undefined;
|
|
186
|
+
urgency?: number | undefined;
|
|
187
|
+
}[] | undefined;
|
|
189
188
|
taskAction?: string | null | undefined;
|
|
190
189
|
verificationResult?: {
|
|
191
190
|
timestamp: string;
|
|
@@ -193,6 +192,7 @@ export declare const IterationLogSchema: z.ZodObject<{
|
|
|
193
192
|
verdict: string;
|
|
194
193
|
} | null | undefined;
|
|
195
194
|
stallSeverity?: number | null | undefined;
|
|
195
|
+
waitSuppressed?: boolean | undefined;
|
|
196
196
|
}>;
|
|
197
197
|
export type IterationLog = z.infer<typeof IterationLogSchema>;
|
|
198
198
|
export declare const SessionLogSchema: z.ZodObject<{
|
|
@@ -210,8 +210,8 @@ export declare const SessionLogSchema: z.ZodObject<{
|
|
|
210
210
|
}, "strip", z.ZodTypeAny, {
|
|
211
211
|
timestamp: string;
|
|
212
212
|
outcome: string;
|
|
213
|
-
goalId: string;
|
|
214
213
|
sessionId: string;
|
|
214
|
+
goalId: string;
|
|
215
215
|
iterationCount: number;
|
|
216
216
|
finalGapAggregate: number;
|
|
217
217
|
initialGapAggregate: number;
|
|
@@ -222,8 +222,8 @@ export declare const SessionLogSchema: z.ZodObject<{
|
|
|
222
222
|
}, {
|
|
223
223
|
timestamp: string;
|
|
224
224
|
outcome: string;
|
|
225
|
-
goalId: string;
|
|
226
225
|
sessionId: string;
|
|
226
|
+
goalId: string;
|
|
227
227
|
iterationCount: number;
|
|
228
228
|
finalGapAggregate: number;
|
|
229
229
|
initialGapAggregate: number;
|
|
@@ -1013,24 +1013,17 @@ export declare const IterationWindowSchema: z.ZodObject<{
|
|
|
1013
1013
|
}, "strip", z.ZodTypeAny, {
|
|
1014
1014
|
timestamp: string;
|
|
1015
1015
|
iteration: number;
|
|
1016
|
-
goalId: string;
|
|
1017
1016
|
sessionId: string;
|
|
1018
|
-
|
|
1017
|
+
goalId: string;
|
|
1019
1018
|
gapAggregate: number;
|
|
1020
1019
|
stallDetected: boolean;
|
|
1020
|
+
elapsedMs: number;
|
|
1021
1021
|
completionJudgment: Record<string, unknown>;
|
|
1022
1022
|
strategyId?: string | null | undefined;
|
|
1023
1023
|
skipReason?: string | null | undefined;
|
|
1024
1024
|
skipped?: boolean | undefined;
|
|
1025
1025
|
tokensUsed?: number | null | undefined;
|
|
1026
1026
|
taskId?: string | null | undefined;
|
|
1027
|
-
driveScores?: {
|
|
1028
|
-
score: number;
|
|
1029
|
-
dimensionName: string;
|
|
1030
|
-
confidence?: number | undefined;
|
|
1031
|
-
urgency?: number | undefined;
|
|
1032
|
-
}[] | undefined;
|
|
1033
|
-
waitSuppressed?: boolean | undefined;
|
|
1034
1027
|
entryId?: string | undefined;
|
|
1035
1028
|
gapDimensions?: {
|
|
1036
1029
|
confidence: number;
|
|
@@ -1039,6 +1032,12 @@ export declare const IterationWindowSchema: z.ZodObject<{
|
|
|
1039
1032
|
raw_gap: number;
|
|
1040
1033
|
normalized_gap: number;
|
|
1041
1034
|
}[] | undefined;
|
|
1035
|
+
driveScores?: {
|
|
1036
|
+
score: number;
|
|
1037
|
+
dimensionName: string;
|
|
1038
|
+
confidence?: number | undefined;
|
|
1039
|
+
urgency?: number | undefined;
|
|
1040
|
+
}[] | undefined;
|
|
1042
1041
|
taskAction?: string | null | undefined;
|
|
1043
1042
|
verificationResult?: {
|
|
1044
1043
|
timestamp: string;
|
|
@@ -1046,27 +1045,21 @@ export declare const IterationWindowSchema: z.ZodObject<{
|
|
|
1046
1045
|
verdict: string;
|
|
1047
1046
|
} | null | undefined;
|
|
1048
1047
|
stallSeverity?: number | null | undefined;
|
|
1048
|
+
waitSuppressed?: boolean | undefined;
|
|
1049
1049
|
}, {
|
|
1050
1050
|
timestamp: string;
|
|
1051
1051
|
iteration: number;
|
|
1052
|
-
goalId: string;
|
|
1053
1052
|
sessionId: string;
|
|
1054
|
-
|
|
1053
|
+
goalId: string;
|
|
1055
1054
|
gapAggregate: number;
|
|
1056
1055
|
stallDetected: boolean;
|
|
1056
|
+
elapsedMs: number;
|
|
1057
1057
|
completionJudgment: Record<string, unknown>;
|
|
1058
1058
|
strategyId?: string | null | undefined;
|
|
1059
1059
|
skipReason?: string | null | undefined;
|
|
1060
1060
|
skipped?: boolean | undefined;
|
|
1061
1061
|
tokensUsed?: number | null | undefined;
|
|
1062
1062
|
taskId?: string | null | undefined;
|
|
1063
|
-
driveScores?: {
|
|
1064
|
-
score: number;
|
|
1065
|
-
dimensionName: string;
|
|
1066
|
-
confidence?: number | undefined;
|
|
1067
|
-
urgency?: number | undefined;
|
|
1068
|
-
}[] | undefined;
|
|
1069
|
-
waitSuppressed?: boolean | undefined;
|
|
1070
1063
|
entryId?: string | undefined;
|
|
1071
1064
|
gapDimensions?: {
|
|
1072
1065
|
confidence: number;
|
|
@@ -1075,6 +1068,12 @@ export declare const IterationWindowSchema: z.ZodObject<{
|
|
|
1075
1068
|
raw_gap: number;
|
|
1076
1069
|
normalized_gap: number;
|
|
1077
1070
|
}[] | undefined;
|
|
1071
|
+
driveScores?: {
|
|
1072
|
+
score: number;
|
|
1073
|
+
dimensionName: string;
|
|
1074
|
+
confidence?: number | undefined;
|
|
1075
|
+
urgency?: number | undefined;
|
|
1076
|
+
}[] | undefined;
|
|
1078
1077
|
taskAction?: string | null | undefined;
|
|
1079
1078
|
verificationResult?: {
|
|
1080
1079
|
timestamp: string;
|
|
@@ -1082,6 +1081,7 @@ export declare const IterationWindowSchema: z.ZodObject<{
|
|
|
1082
1081
|
verdict: string;
|
|
1083
1082
|
} | null | undefined;
|
|
1084
1083
|
stallSeverity?: number | null | undefined;
|
|
1084
|
+
waitSuppressed?: boolean | undefined;
|
|
1085
1085
|
}>, "many">;
|
|
1086
1086
|
evidenceRefs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1087
1087
|
importance: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1094,24 +1094,17 @@ export declare const IterationWindowSchema: z.ZodObject<{
|
|
|
1094
1094
|
iterations: {
|
|
1095
1095
|
timestamp: string;
|
|
1096
1096
|
iteration: number;
|
|
1097
|
-
goalId: string;
|
|
1098
1097
|
sessionId: string;
|
|
1099
|
-
|
|
1098
|
+
goalId: string;
|
|
1100
1099
|
gapAggregate: number;
|
|
1101
1100
|
stallDetected: boolean;
|
|
1101
|
+
elapsedMs: number;
|
|
1102
1102
|
completionJudgment: Record<string, unknown>;
|
|
1103
1103
|
strategyId?: string | null | undefined;
|
|
1104
1104
|
skipReason?: string | null | undefined;
|
|
1105
1105
|
skipped?: boolean | undefined;
|
|
1106
1106
|
tokensUsed?: number | null | undefined;
|
|
1107
1107
|
taskId?: string | null | undefined;
|
|
1108
|
-
driveScores?: {
|
|
1109
|
-
score: number;
|
|
1110
|
-
dimensionName: string;
|
|
1111
|
-
confidence?: number | undefined;
|
|
1112
|
-
urgency?: number | undefined;
|
|
1113
|
-
}[] | undefined;
|
|
1114
|
-
waitSuppressed?: boolean | undefined;
|
|
1115
1108
|
entryId?: string | undefined;
|
|
1116
1109
|
gapDimensions?: {
|
|
1117
1110
|
confidence: number;
|
|
@@ -1120,6 +1113,12 @@ export declare const IterationWindowSchema: z.ZodObject<{
|
|
|
1120
1113
|
raw_gap: number;
|
|
1121
1114
|
normalized_gap: number;
|
|
1122
1115
|
}[] | undefined;
|
|
1116
|
+
driveScores?: {
|
|
1117
|
+
score: number;
|
|
1118
|
+
dimensionName: string;
|
|
1119
|
+
confidence?: number | undefined;
|
|
1120
|
+
urgency?: number | undefined;
|
|
1121
|
+
}[] | undefined;
|
|
1123
1122
|
taskAction?: string | null | undefined;
|
|
1124
1123
|
verificationResult?: {
|
|
1125
1124
|
timestamp: string;
|
|
@@ -1127,6 +1126,7 @@ export declare const IterationWindowSchema: z.ZodObject<{
|
|
|
1127
1126
|
verdict: string;
|
|
1128
1127
|
} | null | undefined;
|
|
1129
1128
|
stallSeverity?: number | null | undefined;
|
|
1129
|
+
waitSuppressed?: boolean | undefined;
|
|
1130
1130
|
}[];
|
|
1131
1131
|
evidenceRefs: string[];
|
|
1132
1132
|
importance?: number | undefined;
|
|
@@ -1137,24 +1137,17 @@ export declare const IterationWindowSchema: z.ZodObject<{
|
|
|
1137
1137
|
iterations: {
|
|
1138
1138
|
timestamp: string;
|
|
1139
1139
|
iteration: number;
|
|
1140
|
-
goalId: string;
|
|
1141
1140
|
sessionId: string;
|
|
1142
|
-
|
|
1141
|
+
goalId: string;
|
|
1143
1142
|
gapAggregate: number;
|
|
1144
1143
|
stallDetected: boolean;
|
|
1144
|
+
elapsedMs: number;
|
|
1145
1145
|
completionJudgment: Record<string, unknown>;
|
|
1146
1146
|
strategyId?: string | null | undefined;
|
|
1147
1147
|
skipReason?: string | null | undefined;
|
|
1148
1148
|
skipped?: boolean | undefined;
|
|
1149
1149
|
tokensUsed?: number | null | undefined;
|
|
1150
1150
|
taskId?: string | null | undefined;
|
|
1151
|
-
driveScores?: {
|
|
1152
|
-
score: number;
|
|
1153
|
-
dimensionName: string;
|
|
1154
|
-
confidence?: number | undefined;
|
|
1155
|
-
urgency?: number | undefined;
|
|
1156
|
-
}[] | undefined;
|
|
1157
|
-
waitSuppressed?: boolean | undefined;
|
|
1158
1151
|
entryId?: string | undefined;
|
|
1159
1152
|
gapDimensions?: {
|
|
1160
1153
|
confidence: number;
|
|
@@ -1163,6 +1156,12 @@ export declare const IterationWindowSchema: z.ZodObject<{
|
|
|
1163
1156
|
raw_gap: number;
|
|
1164
1157
|
normalized_gap: number;
|
|
1165
1158
|
}[] | undefined;
|
|
1159
|
+
driveScores?: {
|
|
1160
|
+
score: number;
|
|
1161
|
+
dimensionName: string;
|
|
1162
|
+
confidence?: number | undefined;
|
|
1163
|
+
urgency?: number | undefined;
|
|
1164
|
+
}[] | undefined;
|
|
1166
1165
|
taskAction?: string | null | undefined;
|
|
1167
1166
|
verificationResult?: {
|
|
1168
1167
|
timestamp: string;
|
|
@@ -1170,6 +1169,7 @@ export declare const IterationWindowSchema: z.ZodObject<{
|
|
|
1170
1169
|
verdict: string;
|
|
1171
1170
|
} | null | undefined;
|
|
1172
1171
|
stallSeverity?: number | null | undefined;
|
|
1172
|
+
waitSuppressed?: boolean | undefined;
|
|
1173
1173
|
}[];
|
|
1174
1174
|
source?: "importance" | "recent" | "regular" | undefined;
|
|
1175
1175
|
importance?: number | undefined;
|
|
@@ -1264,24 +1264,17 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1264
1264
|
}, "strip", z.ZodTypeAny, {
|
|
1265
1265
|
timestamp: string;
|
|
1266
1266
|
iteration: number;
|
|
1267
|
-
goalId: string;
|
|
1268
1267
|
sessionId: string;
|
|
1269
|
-
|
|
1268
|
+
goalId: string;
|
|
1270
1269
|
gapAggregate: number;
|
|
1271
1270
|
stallDetected: boolean;
|
|
1271
|
+
elapsedMs: number;
|
|
1272
1272
|
completionJudgment: Record<string, unknown>;
|
|
1273
1273
|
strategyId?: string | null | undefined;
|
|
1274
1274
|
skipReason?: string | null | undefined;
|
|
1275
1275
|
skipped?: boolean | undefined;
|
|
1276
1276
|
tokensUsed?: number | null | undefined;
|
|
1277
1277
|
taskId?: string | null | undefined;
|
|
1278
|
-
driveScores?: {
|
|
1279
|
-
score: number;
|
|
1280
|
-
dimensionName: string;
|
|
1281
|
-
confidence?: number | undefined;
|
|
1282
|
-
urgency?: number | undefined;
|
|
1283
|
-
}[] | undefined;
|
|
1284
|
-
waitSuppressed?: boolean | undefined;
|
|
1285
1278
|
entryId?: string | undefined;
|
|
1286
1279
|
gapDimensions?: {
|
|
1287
1280
|
confidence: number;
|
|
@@ -1290,6 +1283,12 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1290
1283
|
raw_gap: number;
|
|
1291
1284
|
normalized_gap: number;
|
|
1292
1285
|
}[] | undefined;
|
|
1286
|
+
driveScores?: {
|
|
1287
|
+
score: number;
|
|
1288
|
+
dimensionName: string;
|
|
1289
|
+
confidence?: number | undefined;
|
|
1290
|
+
urgency?: number | undefined;
|
|
1291
|
+
}[] | undefined;
|
|
1293
1292
|
taskAction?: string | null | undefined;
|
|
1294
1293
|
verificationResult?: {
|
|
1295
1294
|
timestamp: string;
|
|
@@ -1297,27 +1296,21 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1297
1296
|
verdict: string;
|
|
1298
1297
|
} | null | undefined;
|
|
1299
1298
|
stallSeverity?: number | null | undefined;
|
|
1299
|
+
waitSuppressed?: boolean | undefined;
|
|
1300
1300
|
}, {
|
|
1301
1301
|
timestamp: string;
|
|
1302
1302
|
iteration: number;
|
|
1303
|
-
goalId: string;
|
|
1304
1303
|
sessionId: string;
|
|
1305
|
-
|
|
1304
|
+
goalId: string;
|
|
1306
1305
|
gapAggregate: number;
|
|
1307
1306
|
stallDetected: boolean;
|
|
1307
|
+
elapsedMs: number;
|
|
1308
1308
|
completionJudgment: Record<string, unknown>;
|
|
1309
1309
|
strategyId?: string | null | undefined;
|
|
1310
1310
|
skipReason?: string | null | undefined;
|
|
1311
1311
|
skipped?: boolean | undefined;
|
|
1312
1312
|
tokensUsed?: number | null | undefined;
|
|
1313
1313
|
taskId?: string | null | undefined;
|
|
1314
|
-
driveScores?: {
|
|
1315
|
-
score: number;
|
|
1316
|
-
dimensionName: string;
|
|
1317
|
-
confidence?: number | undefined;
|
|
1318
|
-
urgency?: number | undefined;
|
|
1319
|
-
}[] | undefined;
|
|
1320
|
-
waitSuppressed?: boolean | undefined;
|
|
1321
1314
|
entryId?: string | undefined;
|
|
1322
1315
|
gapDimensions?: {
|
|
1323
1316
|
confidence: number;
|
|
@@ -1326,6 +1319,12 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1326
1319
|
raw_gap: number;
|
|
1327
1320
|
normalized_gap: number;
|
|
1328
1321
|
}[] | undefined;
|
|
1322
|
+
driveScores?: {
|
|
1323
|
+
score: number;
|
|
1324
|
+
dimensionName: string;
|
|
1325
|
+
confidence?: number | undefined;
|
|
1326
|
+
urgency?: number | undefined;
|
|
1327
|
+
}[] | undefined;
|
|
1329
1328
|
taskAction?: string | null | undefined;
|
|
1330
1329
|
verificationResult?: {
|
|
1331
1330
|
timestamp: string;
|
|
@@ -1333,6 +1332,7 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1333
1332
|
verdict: string;
|
|
1334
1333
|
} | null | undefined;
|
|
1335
1334
|
stallSeverity?: number | null | undefined;
|
|
1335
|
+
waitSuppressed?: boolean | undefined;
|
|
1336
1336
|
}>, "many">;
|
|
1337
1337
|
evidenceRefs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1338
1338
|
importance: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1345,24 +1345,17 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1345
1345
|
iterations: {
|
|
1346
1346
|
timestamp: string;
|
|
1347
1347
|
iteration: number;
|
|
1348
|
-
goalId: string;
|
|
1349
1348
|
sessionId: string;
|
|
1350
|
-
|
|
1349
|
+
goalId: string;
|
|
1351
1350
|
gapAggregate: number;
|
|
1352
1351
|
stallDetected: boolean;
|
|
1352
|
+
elapsedMs: number;
|
|
1353
1353
|
completionJudgment: Record<string, unknown>;
|
|
1354
1354
|
strategyId?: string | null | undefined;
|
|
1355
1355
|
skipReason?: string | null | undefined;
|
|
1356
1356
|
skipped?: boolean | undefined;
|
|
1357
1357
|
tokensUsed?: number | null | undefined;
|
|
1358
1358
|
taskId?: string | null | undefined;
|
|
1359
|
-
driveScores?: {
|
|
1360
|
-
score: number;
|
|
1361
|
-
dimensionName: string;
|
|
1362
|
-
confidence?: number | undefined;
|
|
1363
|
-
urgency?: number | undefined;
|
|
1364
|
-
}[] | undefined;
|
|
1365
|
-
waitSuppressed?: boolean | undefined;
|
|
1366
1359
|
entryId?: string | undefined;
|
|
1367
1360
|
gapDimensions?: {
|
|
1368
1361
|
confidence: number;
|
|
@@ -1371,6 +1364,12 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1371
1364
|
raw_gap: number;
|
|
1372
1365
|
normalized_gap: number;
|
|
1373
1366
|
}[] | undefined;
|
|
1367
|
+
driveScores?: {
|
|
1368
|
+
score: number;
|
|
1369
|
+
dimensionName: string;
|
|
1370
|
+
confidence?: number | undefined;
|
|
1371
|
+
urgency?: number | undefined;
|
|
1372
|
+
}[] | undefined;
|
|
1374
1373
|
taskAction?: string | null | undefined;
|
|
1375
1374
|
verificationResult?: {
|
|
1376
1375
|
timestamp: string;
|
|
@@ -1378,6 +1377,7 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1378
1377
|
verdict: string;
|
|
1379
1378
|
} | null | undefined;
|
|
1380
1379
|
stallSeverity?: number | null | undefined;
|
|
1380
|
+
waitSuppressed?: boolean | undefined;
|
|
1381
1381
|
}[];
|
|
1382
1382
|
evidenceRefs: string[];
|
|
1383
1383
|
importance?: number | undefined;
|
|
@@ -1388,24 +1388,17 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1388
1388
|
iterations: {
|
|
1389
1389
|
timestamp: string;
|
|
1390
1390
|
iteration: number;
|
|
1391
|
-
goalId: string;
|
|
1392
1391
|
sessionId: string;
|
|
1393
|
-
|
|
1392
|
+
goalId: string;
|
|
1394
1393
|
gapAggregate: number;
|
|
1395
1394
|
stallDetected: boolean;
|
|
1395
|
+
elapsedMs: number;
|
|
1396
1396
|
completionJudgment: Record<string, unknown>;
|
|
1397
1397
|
strategyId?: string | null | undefined;
|
|
1398
1398
|
skipReason?: string | null | undefined;
|
|
1399
1399
|
skipped?: boolean | undefined;
|
|
1400
1400
|
tokensUsed?: number | null | undefined;
|
|
1401
1401
|
taskId?: string | null | undefined;
|
|
1402
|
-
driveScores?: {
|
|
1403
|
-
score: number;
|
|
1404
|
-
dimensionName: string;
|
|
1405
|
-
confidence?: number | undefined;
|
|
1406
|
-
urgency?: number | undefined;
|
|
1407
|
-
}[] | undefined;
|
|
1408
|
-
waitSuppressed?: boolean | undefined;
|
|
1409
1402
|
entryId?: string | undefined;
|
|
1410
1403
|
gapDimensions?: {
|
|
1411
1404
|
confidence: number;
|
|
@@ -1414,6 +1407,12 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1414
1407
|
raw_gap: number;
|
|
1415
1408
|
normalized_gap: number;
|
|
1416
1409
|
}[] | undefined;
|
|
1410
|
+
driveScores?: {
|
|
1411
|
+
score: number;
|
|
1412
|
+
dimensionName: string;
|
|
1413
|
+
confidence?: number | undefined;
|
|
1414
|
+
urgency?: number | undefined;
|
|
1415
|
+
}[] | undefined;
|
|
1417
1416
|
taskAction?: string | null | undefined;
|
|
1418
1417
|
verificationResult?: {
|
|
1419
1418
|
timestamp: string;
|
|
@@ -1421,6 +1420,7 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1421
1420
|
verdict: string;
|
|
1422
1421
|
} | null | undefined;
|
|
1423
1422
|
stallSeverity?: number | null | undefined;
|
|
1423
|
+
waitSuppressed?: boolean | undefined;
|
|
1424
1424
|
}[];
|
|
1425
1425
|
source?: "importance" | "recent" | "regular" | undefined;
|
|
1426
1426
|
importance?: number | undefined;
|
|
@@ -1499,24 +1499,17 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1499
1499
|
}, "strip", z.ZodTypeAny, {
|
|
1500
1500
|
timestamp: string;
|
|
1501
1501
|
iteration: number;
|
|
1502
|
-
goalId: string;
|
|
1503
1502
|
sessionId: string;
|
|
1504
|
-
|
|
1503
|
+
goalId: string;
|
|
1505
1504
|
gapAggregate: number;
|
|
1506
1505
|
stallDetected: boolean;
|
|
1506
|
+
elapsedMs: number;
|
|
1507
1507
|
completionJudgment: Record<string, unknown>;
|
|
1508
1508
|
strategyId?: string | null | undefined;
|
|
1509
1509
|
skipReason?: string | null | undefined;
|
|
1510
1510
|
skipped?: boolean | undefined;
|
|
1511
1511
|
tokensUsed?: number | null | undefined;
|
|
1512
1512
|
taskId?: string | null | undefined;
|
|
1513
|
-
driveScores?: {
|
|
1514
|
-
score: number;
|
|
1515
|
-
dimensionName: string;
|
|
1516
|
-
confidence?: number | undefined;
|
|
1517
|
-
urgency?: number | undefined;
|
|
1518
|
-
}[] | undefined;
|
|
1519
|
-
waitSuppressed?: boolean | undefined;
|
|
1520
1513
|
entryId?: string | undefined;
|
|
1521
1514
|
gapDimensions?: {
|
|
1522
1515
|
confidence: number;
|
|
@@ -1525,6 +1518,12 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1525
1518
|
raw_gap: number;
|
|
1526
1519
|
normalized_gap: number;
|
|
1527
1520
|
}[] | undefined;
|
|
1521
|
+
driveScores?: {
|
|
1522
|
+
score: number;
|
|
1523
|
+
dimensionName: string;
|
|
1524
|
+
confidence?: number | undefined;
|
|
1525
|
+
urgency?: number | undefined;
|
|
1526
|
+
}[] | undefined;
|
|
1528
1527
|
taskAction?: string | null | undefined;
|
|
1529
1528
|
verificationResult?: {
|
|
1530
1529
|
timestamp: string;
|
|
@@ -1532,27 +1531,21 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1532
1531
|
verdict: string;
|
|
1533
1532
|
} | null | undefined;
|
|
1534
1533
|
stallSeverity?: number | null | undefined;
|
|
1534
|
+
waitSuppressed?: boolean | undefined;
|
|
1535
1535
|
}, {
|
|
1536
1536
|
timestamp: string;
|
|
1537
1537
|
iteration: number;
|
|
1538
|
-
goalId: string;
|
|
1539
1538
|
sessionId: string;
|
|
1540
|
-
|
|
1539
|
+
goalId: string;
|
|
1541
1540
|
gapAggregate: number;
|
|
1542
1541
|
stallDetected: boolean;
|
|
1542
|
+
elapsedMs: number;
|
|
1543
1543
|
completionJudgment: Record<string, unknown>;
|
|
1544
1544
|
strategyId?: string | null | undefined;
|
|
1545
1545
|
skipReason?: string | null | undefined;
|
|
1546
1546
|
skipped?: boolean | undefined;
|
|
1547
1547
|
tokensUsed?: number | null | undefined;
|
|
1548
1548
|
taskId?: string | null | undefined;
|
|
1549
|
-
driveScores?: {
|
|
1550
|
-
score: number;
|
|
1551
|
-
dimensionName: string;
|
|
1552
|
-
confidence?: number | undefined;
|
|
1553
|
-
urgency?: number | undefined;
|
|
1554
|
-
}[] | undefined;
|
|
1555
|
-
waitSuppressed?: boolean | undefined;
|
|
1556
1549
|
entryId?: string | undefined;
|
|
1557
1550
|
gapDimensions?: {
|
|
1558
1551
|
confidence: number;
|
|
@@ -1561,6 +1554,12 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1561
1554
|
raw_gap: number;
|
|
1562
1555
|
normalized_gap: number;
|
|
1563
1556
|
}[] | undefined;
|
|
1557
|
+
driveScores?: {
|
|
1558
|
+
score: number;
|
|
1559
|
+
dimensionName: string;
|
|
1560
|
+
confidence?: number | undefined;
|
|
1561
|
+
urgency?: number | undefined;
|
|
1562
|
+
}[] | undefined;
|
|
1564
1563
|
taskAction?: string | null | undefined;
|
|
1565
1564
|
verificationResult?: {
|
|
1566
1565
|
timestamp: string;
|
|
@@ -1568,6 +1567,7 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1568
1567
|
verdict: string;
|
|
1569
1568
|
} | null | undefined;
|
|
1570
1569
|
stallSeverity?: number | null | undefined;
|
|
1570
|
+
waitSuppressed?: boolean | undefined;
|
|
1571
1571
|
}>, "many">;
|
|
1572
1572
|
evidenceRefs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1573
1573
|
importance: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1580,24 +1580,17 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1580
1580
|
iterations: {
|
|
1581
1581
|
timestamp: string;
|
|
1582
1582
|
iteration: number;
|
|
1583
|
-
goalId: string;
|
|
1584
1583
|
sessionId: string;
|
|
1585
|
-
|
|
1584
|
+
goalId: string;
|
|
1586
1585
|
gapAggregate: number;
|
|
1587
1586
|
stallDetected: boolean;
|
|
1587
|
+
elapsedMs: number;
|
|
1588
1588
|
completionJudgment: Record<string, unknown>;
|
|
1589
1589
|
strategyId?: string | null | undefined;
|
|
1590
1590
|
skipReason?: string | null | undefined;
|
|
1591
1591
|
skipped?: boolean | undefined;
|
|
1592
1592
|
tokensUsed?: number | null | undefined;
|
|
1593
1593
|
taskId?: string | null | undefined;
|
|
1594
|
-
driveScores?: {
|
|
1595
|
-
score: number;
|
|
1596
|
-
dimensionName: string;
|
|
1597
|
-
confidence?: number | undefined;
|
|
1598
|
-
urgency?: number | undefined;
|
|
1599
|
-
}[] | undefined;
|
|
1600
|
-
waitSuppressed?: boolean | undefined;
|
|
1601
1594
|
entryId?: string | undefined;
|
|
1602
1595
|
gapDimensions?: {
|
|
1603
1596
|
confidence: number;
|
|
@@ -1606,6 +1599,12 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1606
1599
|
raw_gap: number;
|
|
1607
1600
|
normalized_gap: number;
|
|
1608
1601
|
}[] | undefined;
|
|
1602
|
+
driveScores?: {
|
|
1603
|
+
score: number;
|
|
1604
|
+
dimensionName: string;
|
|
1605
|
+
confidence?: number | undefined;
|
|
1606
|
+
urgency?: number | undefined;
|
|
1607
|
+
}[] | undefined;
|
|
1609
1608
|
taskAction?: string | null | undefined;
|
|
1610
1609
|
verificationResult?: {
|
|
1611
1610
|
timestamp: string;
|
|
@@ -1613,6 +1612,7 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1613
1612
|
verdict: string;
|
|
1614
1613
|
} | null | undefined;
|
|
1615
1614
|
stallSeverity?: number | null | undefined;
|
|
1615
|
+
waitSuppressed?: boolean | undefined;
|
|
1616
1616
|
}[];
|
|
1617
1617
|
evidenceRefs: string[];
|
|
1618
1618
|
importance?: number | undefined;
|
|
@@ -1623,24 +1623,17 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1623
1623
|
iterations: {
|
|
1624
1624
|
timestamp: string;
|
|
1625
1625
|
iteration: number;
|
|
1626
|
-
goalId: string;
|
|
1627
1626
|
sessionId: string;
|
|
1628
|
-
|
|
1627
|
+
goalId: string;
|
|
1629
1628
|
gapAggregate: number;
|
|
1630
1629
|
stallDetected: boolean;
|
|
1630
|
+
elapsedMs: number;
|
|
1631
1631
|
completionJudgment: Record<string, unknown>;
|
|
1632
1632
|
strategyId?: string | null | undefined;
|
|
1633
1633
|
skipReason?: string | null | undefined;
|
|
1634
1634
|
skipped?: boolean | undefined;
|
|
1635
1635
|
tokensUsed?: number | null | undefined;
|
|
1636
1636
|
taskId?: string | null | undefined;
|
|
1637
|
-
driveScores?: {
|
|
1638
|
-
score: number;
|
|
1639
|
-
dimensionName: string;
|
|
1640
|
-
confidence?: number | undefined;
|
|
1641
|
-
urgency?: number | undefined;
|
|
1642
|
-
}[] | undefined;
|
|
1643
|
-
waitSuppressed?: boolean | undefined;
|
|
1644
1637
|
entryId?: string | undefined;
|
|
1645
1638
|
gapDimensions?: {
|
|
1646
1639
|
confidence: number;
|
|
@@ -1649,6 +1642,12 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1649
1642
|
raw_gap: number;
|
|
1650
1643
|
normalized_gap: number;
|
|
1651
1644
|
}[] | undefined;
|
|
1645
|
+
driveScores?: {
|
|
1646
|
+
score: number;
|
|
1647
|
+
dimensionName: string;
|
|
1648
|
+
confidence?: number | undefined;
|
|
1649
|
+
urgency?: number | undefined;
|
|
1650
|
+
}[] | undefined;
|
|
1652
1651
|
taskAction?: string | null | undefined;
|
|
1653
1652
|
verificationResult?: {
|
|
1654
1653
|
timestamp: string;
|
|
@@ -1656,6 +1655,7 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1656
1655
|
verdict: string;
|
|
1657
1656
|
} | null | undefined;
|
|
1658
1657
|
stallSeverity?: number | null | undefined;
|
|
1658
|
+
waitSuppressed?: boolean | undefined;
|
|
1659
1659
|
}[];
|
|
1660
1660
|
source?: "importance" | "recent" | "regular" | undefined;
|
|
1661
1661
|
importance?: number | undefined;
|
|
@@ -1707,8 +1707,8 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1707
1707
|
}, "strip", z.ZodTypeAny, {
|
|
1708
1708
|
timestamp: string;
|
|
1709
1709
|
outcome: string;
|
|
1710
|
-
goalId: string;
|
|
1711
1710
|
sessionId: string;
|
|
1711
|
+
goalId: string;
|
|
1712
1712
|
iterationCount: number;
|
|
1713
1713
|
finalGapAggregate: number;
|
|
1714
1714
|
initialGapAggregate: number;
|
|
@@ -1719,8 +1719,8 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1719
1719
|
}, {
|
|
1720
1720
|
timestamp: string;
|
|
1721
1721
|
outcome: string;
|
|
1722
|
-
goalId: string;
|
|
1723
1722
|
sessionId: string;
|
|
1723
|
+
goalId: string;
|
|
1724
1724
|
iterationCount: number;
|
|
1725
1725
|
finalGapAggregate: number;
|
|
1726
1726
|
initialGapAggregate: number;
|
|
@@ -1801,24 +1801,17 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1801
1801
|
iterations: {
|
|
1802
1802
|
timestamp: string;
|
|
1803
1803
|
iteration: number;
|
|
1804
|
-
goalId: string;
|
|
1805
1804
|
sessionId: string;
|
|
1806
|
-
|
|
1805
|
+
goalId: string;
|
|
1807
1806
|
gapAggregate: number;
|
|
1808
1807
|
stallDetected: boolean;
|
|
1808
|
+
elapsedMs: number;
|
|
1809
1809
|
completionJudgment: Record<string, unknown>;
|
|
1810
1810
|
strategyId?: string | null | undefined;
|
|
1811
1811
|
skipReason?: string | null | undefined;
|
|
1812
1812
|
skipped?: boolean | undefined;
|
|
1813
1813
|
tokensUsed?: number | null | undefined;
|
|
1814
1814
|
taskId?: string | null | undefined;
|
|
1815
|
-
driveScores?: {
|
|
1816
|
-
score: number;
|
|
1817
|
-
dimensionName: string;
|
|
1818
|
-
confidence?: number | undefined;
|
|
1819
|
-
urgency?: number | undefined;
|
|
1820
|
-
}[] | undefined;
|
|
1821
|
-
waitSuppressed?: boolean | undefined;
|
|
1822
1815
|
entryId?: string | undefined;
|
|
1823
1816
|
gapDimensions?: {
|
|
1824
1817
|
confidence: number;
|
|
@@ -1827,6 +1820,12 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1827
1820
|
raw_gap: number;
|
|
1828
1821
|
normalized_gap: number;
|
|
1829
1822
|
}[] | undefined;
|
|
1823
|
+
driveScores?: {
|
|
1824
|
+
score: number;
|
|
1825
|
+
dimensionName: string;
|
|
1826
|
+
confidence?: number | undefined;
|
|
1827
|
+
urgency?: number | undefined;
|
|
1828
|
+
}[] | undefined;
|
|
1830
1829
|
taskAction?: string | null | undefined;
|
|
1831
1830
|
verificationResult?: {
|
|
1832
1831
|
timestamp: string;
|
|
@@ -1834,6 +1833,7 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1834
1833
|
verdict: string;
|
|
1835
1834
|
} | null | undefined;
|
|
1836
1835
|
stallSeverity?: number | null | undefined;
|
|
1836
|
+
waitSuppressed?: boolean | undefined;
|
|
1837
1837
|
}[];
|
|
1838
1838
|
evidenceRefs: string[];
|
|
1839
1839
|
importance?: number | undefined;
|
|
@@ -1846,24 +1846,17 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1846
1846
|
iterations: {
|
|
1847
1847
|
timestamp: string;
|
|
1848
1848
|
iteration: number;
|
|
1849
|
-
goalId: string;
|
|
1850
1849
|
sessionId: string;
|
|
1851
|
-
|
|
1850
|
+
goalId: string;
|
|
1852
1851
|
gapAggregate: number;
|
|
1853
1852
|
stallDetected: boolean;
|
|
1853
|
+
elapsedMs: number;
|
|
1854
1854
|
completionJudgment: Record<string, unknown>;
|
|
1855
1855
|
strategyId?: string | null | undefined;
|
|
1856
1856
|
skipReason?: string | null | undefined;
|
|
1857
1857
|
skipped?: boolean | undefined;
|
|
1858
1858
|
tokensUsed?: number | null | undefined;
|
|
1859
1859
|
taskId?: string | null | undefined;
|
|
1860
|
-
driveScores?: {
|
|
1861
|
-
score: number;
|
|
1862
|
-
dimensionName: string;
|
|
1863
|
-
confidence?: number | undefined;
|
|
1864
|
-
urgency?: number | undefined;
|
|
1865
|
-
}[] | undefined;
|
|
1866
|
-
waitSuppressed?: boolean | undefined;
|
|
1867
1860
|
entryId?: string | undefined;
|
|
1868
1861
|
gapDimensions?: {
|
|
1869
1862
|
confidence: number;
|
|
@@ -1872,6 +1865,12 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1872
1865
|
raw_gap: number;
|
|
1873
1866
|
normalized_gap: number;
|
|
1874
1867
|
}[] | undefined;
|
|
1868
|
+
driveScores?: {
|
|
1869
|
+
score: number;
|
|
1870
|
+
dimensionName: string;
|
|
1871
|
+
confidence?: number | undefined;
|
|
1872
|
+
urgency?: number | undefined;
|
|
1873
|
+
}[] | undefined;
|
|
1875
1874
|
taskAction?: string | null | undefined;
|
|
1876
1875
|
verificationResult?: {
|
|
1877
1876
|
timestamp: string;
|
|
@@ -1879,6 +1878,7 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1879
1878
|
verdict: string;
|
|
1880
1879
|
} | null | undefined;
|
|
1881
1880
|
stallSeverity?: number | null | undefined;
|
|
1881
|
+
waitSuppressed?: boolean | undefined;
|
|
1882
1882
|
}[];
|
|
1883
1883
|
evidenceRefs: string[];
|
|
1884
1884
|
importance?: number | undefined;
|
|
@@ -1897,8 +1897,8 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1897
1897
|
sessionLogs: {
|
|
1898
1898
|
timestamp: string;
|
|
1899
1899
|
outcome: string;
|
|
1900
|
-
goalId: string;
|
|
1901
1900
|
sessionId: string;
|
|
1901
|
+
goalId: string;
|
|
1902
1902
|
iterationCount: number;
|
|
1903
1903
|
finalGapAggregate: number;
|
|
1904
1904
|
initialGapAggregate: number;
|
|
@@ -1931,24 +1931,17 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1931
1931
|
iterations: {
|
|
1932
1932
|
timestamp: string;
|
|
1933
1933
|
iteration: number;
|
|
1934
|
-
goalId: string;
|
|
1935
1934
|
sessionId: string;
|
|
1936
|
-
|
|
1935
|
+
goalId: string;
|
|
1937
1936
|
gapAggregate: number;
|
|
1938
1937
|
stallDetected: boolean;
|
|
1938
|
+
elapsedMs: number;
|
|
1939
1939
|
completionJudgment: Record<string, unknown>;
|
|
1940
1940
|
strategyId?: string | null | undefined;
|
|
1941
1941
|
skipReason?: string | null | undefined;
|
|
1942
1942
|
skipped?: boolean | undefined;
|
|
1943
1943
|
tokensUsed?: number | null | undefined;
|
|
1944
1944
|
taskId?: string | null | undefined;
|
|
1945
|
-
driveScores?: {
|
|
1946
|
-
score: number;
|
|
1947
|
-
dimensionName: string;
|
|
1948
|
-
confidence?: number | undefined;
|
|
1949
|
-
urgency?: number | undefined;
|
|
1950
|
-
}[] | undefined;
|
|
1951
|
-
waitSuppressed?: boolean | undefined;
|
|
1952
1945
|
entryId?: string | undefined;
|
|
1953
1946
|
gapDimensions?: {
|
|
1954
1947
|
confidence: number;
|
|
@@ -1957,6 +1950,12 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1957
1950
|
raw_gap: number;
|
|
1958
1951
|
normalized_gap: number;
|
|
1959
1952
|
}[] | undefined;
|
|
1953
|
+
driveScores?: {
|
|
1954
|
+
score: number;
|
|
1955
|
+
dimensionName: string;
|
|
1956
|
+
confidence?: number | undefined;
|
|
1957
|
+
urgency?: number | undefined;
|
|
1958
|
+
}[] | undefined;
|
|
1960
1959
|
taskAction?: string | null | undefined;
|
|
1961
1960
|
verificationResult?: {
|
|
1962
1961
|
timestamp: string;
|
|
@@ -1964,6 +1963,7 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1964
1963
|
verdict: string;
|
|
1965
1964
|
} | null | undefined;
|
|
1966
1965
|
stallSeverity?: number | null | undefined;
|
|
1966
|
+
waitSuppressed?: boolean | undefined;
|
|
1967
1967
|
}[];
|
|
1968
1968
|
source?: "importance" | "recent" | "regular" | undefined;
|
|
1969
1969
|
importance?: number | undefined;
|
|
@@ -1976,24 +1976,17 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
1976
1976
|
iterations: {
|
|
1977
1977
|
timestamp: string;
|
|
1978
1978
|
iteration: number;
|
|
1979
|
-
goalId: string;
|
|
1980
1979
|
sessionId: string;
|
|
1981
|
-
|
|
1980
|
+
goalId: string;
|
|
1982
1981
|
gapAggregate: number;
|
|
1983
1982
|
stallDetected: boolean;
|
|
1983
|
+
elapsedMs: number;
|
|
1984
1984
|
completionJudgment: Record<string, unknown>;
|
|
1985
1985
|
strategyId?: string | null | undefined;
|
|
1986
1986
|
skipReason?: string | null | undefined;
|
|
1987
1987
|
skipped?: boolean | undefined;
|
|
1988
1988
|
tokensUsed?: number | null | undefined;
|
|
1989
1989
|
taskId?: string | null | undefined;
|
|
1990
|
-
driveScores?: {
|
|
1991
|
-
score: number;
|
|
1992
|
-
dimensionName: string;
|
|
1993
|
-
confidence?: number | undefined;
|
|
1994
|
-
urgency?: number | undefined;
|
|
1995
|
-
}[] | undefined;
|
|
1996
|
-
waitSuppressed?: boolean | undefined;
|
|
1997
1990
|
entryId?: string | undefined;
|
|
1998
1991
|
gapDimensions?: {
|
|
1999
1992
|
confidence: number;
|
|
@@ -2002,6 +1995,12 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
2002
1995
|
raw_gap: number;
|
|
2003
1996
|
normalized_gap: number;
|
|
2004
1997
|
}[] | undefined;
|
|
1998
|
+
driveScores?: {
|
|
1999
|
+
score: number;
|
|
2000
|
+
dimensionName: string;
|
|
2001
|
+
confidence?: number | undefined;
|
|
2002
|
+
urgency?: number | undefined;
|
|
2003
|
+
}[] | undefined;
|
|
2005
2004
|
taskAction?: string | null | undefined;
|
|
2006
2005
|
verificationResult?: {
|
|
2007
2006
|
timestamp: string;
|
|
@@ -2009,6 +2008,7 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
2009
2008
|
verdict: string;
|
|
2010
2009
|
} | null | undefined;
|
|
2011
2010
|
stallSeverity?: number | null | undefined;
|
|
2011
|
+
waitSuppressed?: boolean | undefined;
|
|
2012
2012
|
}[];
|
|
2013
2013
|
source?: "importance" | "recent" | "regular" | undefined;
|
|
2014
2014
|
importance?: number | undefined;
|
|
@@ -2028,8 +2028,8 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
2028
2028
|
sessionLogs: {
|
|
2029
2029
|
timestamp: string;
|
|
2030
2030
|
outcome: string;
|
|
2031
|
-
goalId: string;
|
|
2032
2031
|
sessionId: string;
|
|
2032
|
+
goalId: string;
|
|
2033
2033
|
iterationCount: number;
|
|
2034
2034
|
finalGapAggregate: number;
|
|
2035
2035
|
initialGapAggregate: number;
|
|
@@ -2052,7 +2052,7 @@ export declare const IngestionOutputSchema: z.ZodObject<{
|
|
|
2052
2052
|
}>;
|
|
2053
2053
|
export type IngestionOutput = z.infer<typeof IngestionOutputSchema>;
|
|
2054
2054
|
export declare const DreamPatternCandidateSchema: z.ZodObject<{
|
|
2055
|
-
pattern_type: z.
|
|
2055
|
+
pattern_type: z.ZodEnum<["observation_accuracy", "strategy_selection", "scope_sizing", "task_generation"]>;
|
|
2056
2056
|
goal_id: z.ZodOptional<z.ZodString>;
|
|
2057
2057
|
confidence: z.ZodNumber;
|
|
2058
2058
|
summary: z.ZodString;
|
|
@@ -2063,12 +2063,12 @@ export declare const DreamPatternCandidateSchema: z.ZodObject<{
|
|
|
2063
2063
|
evidence_refs: string[];
|
|
2064
2064
|
summary: string;
|
|
2065
2065
|
metadata: Record<string, unknown>;
|
|
2066
|
-
pattern_type:
|
|
2066
|
+
pattern_type: "observation_accuracy" | "strategy_selection" | "scope_sizing" | "task_generation";
|
|
2067
2067
|
goal_id?: string | undefined;
|
|
2068
2068
|
}, {
|
|
2069
2069
|
confidence: number;
|
|
2070
2070
|
summary: string;
|
|
2071
|
-
pattern_type:
|
|
2071
|
+
pattern_type: "observation_accuracy" | "strategy_selection" | "scope_sizing" | "task_generation";
|
|
2072
2072
|
goal_id?: string | undefined;
|
|
2073
2073
|
evidence_refs?: string[] | undefined;
|
|
2074
2074
|
metadata?: Record<string, unknown> | undefined;
|
|
@@ -2076,7 +2076,7 @@ export declare const DreamPatternCandidateSchema: z.ZodObject<{
|
|
|
2076
2076
|
export type DreamPatternCandidate = z.infer<typeof DreamPatternCandidateSchema>;
|
|
2077
2077
|
export declare const DreamPatternResponseSchema: z.ZodObject<{
|
|
2078
2078
|
patterns: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2079
|
-
pattern_type: z.
|
|
2079
|
+
pattern_type: z.ZodEnum<["observation_accuracy", "strategy_selection", "scope_sizing", "task_generation"]>;
|
|
2080
2080
|
goal_id: z.ZodOptional<z.ZodString>;
|
|
2081
2081
|
confidence: z.ZodNumber;
|
|
2082
2082
|
summary: z.ZodString;
|
|
@@ -2087,12 +2087,12 @@ export declare const DreamPatternResponseSchema: z.ZodObject<{
|
|
|
2087
2087
|
evidence_refs: string[];
|
|
2088
2088
|
summary: string;
|
|
2089
2089
|
metadata: Record<string, unknown>;
|
|
2090
|
-
pattern_type:
|
|
2090
|
+
pattern_type: "observation_accuracy" | "strategy_selection" | "scope_sizing" | "task_generation";
|
|
2091
2091
|
goal_id?: string | undefined;
|
|
2092
2092
|
}, {
|
|
2093
2093
|
confidence: number;
|
|
2094
2094
|
summary: string;
|
|
2095
|
-
pattern_type:
|
|
2095
|
+
pattern_type: "observation_accuracy" | "strategy_selection" | "scope_sizing" | "task_generation";
|
|
2096
2096
|
goal_id?: string | undefined;
|
|
2097
2097
|
evidence_refs?: string[] | undefined;
|
|
2098
2098
|
metadata?: Record<string, unknown> | undefined;
|
|
@@ -2103,14 +2103,14 @@ export declare const DreamPatternResponseSchema: z.ZodObject<{
|
|
|
2103
2103
|
evidence_refs: string[];
|
|
2104
2104
|
summary: string;
|
|
2105
2105
|
metadata: Record<string, unknown>;
|
|
2106
|
-
pattern_type:
|
|
2106
|
+
pattern_type: "observation_accuracy" | "strategy_selection" | "scope_sizing" | "task_generation";
|
|
2107
2107
|
goal_id?: string | undefined;
|
|
2108
2108
|
}[];
|
|
2109
2109
|
}, {
|
|
2110
2110
|
patterns?: {
|
|
2111
2111
|
confidence: number;
|
|
2112
2112
|
summary: string;
|
|
2113
|
-
pattern_type:
|
|
2113
|
+
pattern_type: "observation_accuracy" | "strategy_selection" | "scope_sizing" | "task_generation";
|
|
2114
2114
|
goal_id?: string | undefined;
|
|
2115
2115
|
evidence_refs?: string[] | undefined;
|
|
2116
2116
|
metadata?: Record<string, unknown> | undefined;
|
|
@@ -2140,8 +2140,8 @@ export declare const ScheduleSuggestionSchema: z.ZodObject<{
|
|
|
2140
2140
|
jitter_factor: z.ZodDefault<z.ZodNumber>;
|
|
2141
2141
|
}, "strip", z.ZodTypeAny, {
|
|
2142
2142
|
type: "interval";
|
|
2143
|
-
seconds: number;
|
|
2144
2143
|
jitter_factor: number;
|
|
2144
|
+
seconds: number;
|
|
2145
2145
|
}, {
|
|
2146
2146
|
type: "interval";
|
|
2147
2147
|
seconds: number;
|
|
@@ -2156,7 +2156,7 @@ export declare const ScheduleSuggestionSchema: z.ZodObject<{
|
|
|
2156
2156
|
decision_reason: z.ZodOptional<z.ZodString>;
|
|
2157
2157
|
}, "strip", z.ZodTypeAny, {
|
|
2158
2158
|
type: "cron" | "goal_trigger" | "cleanup" | "dream_cron";
|
|
2159
|
-
status: "pending" | "
|
|
2159
|
+
status: "pending" | "rejected" | "applied" | "dismissed";
|
|
2160
2160
|
confidence: number;
|
|
2161
2161
|
reason: string;
|
|
2162
2162
|
proposal: string;
|
|
@@ -2168,19 +2168,19 @@ export declare const ScheduleSuggestionSchema: z.ZodObject<{
|
|
|
2168
2168
|
timezone: string;
|
|
2169
2169
|
} | {
|
|
2170
2170
|
type: "interval";
|
|
2171
|
-
seconds: number;
|
|
2172
2171
|
jitter_factor: number;
|
|
2172
|
+
seconds: number;
|
|
2173
2173
|
} | undefined;
|
|
2174
|
+
decided_at?: string | undefined;
|
|
2174
2175
|
goalId?: string | undefined;
|
|
2175
|
-
decision_reason?: string | undefined;
|
|
2176
2176
|
applied_entry_id?: string | undefined;
|
|
2177
|
-
|
|
2177
|
+
decision_reason?: string | undefined;
|
|
2178
2178
|
}, {
|
|
2179
2179
|
type: "cron" | "goal_trigger" | "cleanup" | "dream_cron";
|
|
2180
2180
|
confidence: number;
|
|
2181
2181
|
reason: string;
|
|
2182
2182
|
proposal: string;
|
|
2183
|
-
status?: "pending" | "
|
|
2183
|
+
status?: "pending" | "rejected" | "applied" | "dismissed" | undefined;
|
|
2184
2184
|
name?: string | undefined;
|
|
2185
2185
|
id?: string | undefined;
|
|
2186
2186
|
trigger?: {
|
|
@@ -2192,10 +2192,10 @@ export declare const ScheduleSuggestionSchema: z.ZodObject<{
|
|
|
2192
2192
|
seconds: number;
|
|
2193
2193
|
jitter_factor?: number | undefined;
|
|
2194
2194
|
} | undefined;
|
|
2195
|
+
decided_at?: string | undefined;
|
|
2195
2196
|
goalId?: string | undefined;
|
|
2196
|
-
decision_reason?: string | undefined;
|
|
2197
2197
|
applied_entry_id?: string | undefined;
|
|
2198
|
-
|
|
2198
|
+
decision_reason?: string | undefined;
|
|
2199
2199
|
}>;
|
|
2200
2200
|
export type ScheduleSuggestionInput = z.input<typeof ScheduleSuggestionSchema>;
|
|
2201
2201
|
export type ScheduleSuggestion = z.infer<typeof ScheduleSuggestionSchema>;
|
|
@@ -2224,8 +2224,8 @@ export declare const ScheduleSuggestionFileSchema: z.ZodObject<{
|
|
|
2224
2224
|
jitter_factor: z.ZodDefault<z.ZodNumber>;
|
|
2225
2225
|
}, "strip", z.ZodTypeAny, {
|
|
2226
2226
|
type: "interval";
|
|
2227
|
-
seconds: number;
|
|
2228
2227
|
jitter_factor: number;
|
|
2228
|
+
seconds: number;
|
|
2229
2229
|
}, {
|
|
2230
2230
|
type: "interval";
|
|
2231
2231
|
seconds: number;
|
|
@@ -2240,7 +2240,7 @@ export declare const ScheduleSuggestionFileSchema: z.ZodObject<{
|
|
|
2240
2240
|
decision_reason: z.ZodOptional<z.ZodString>;
|
|
2241
2241
|
}, "strip", z.ZodTypeAny, {
|
|
2242
2242
|
type: "cron" | "goal_trigger" | "cleanup" | "dream_cron";
|
|
2243
|
-
status: "pending" | "
|
|
2243
|
+
status: "pending" | "rejected" | "applied" | "dismissed";
|
|
2244
2244
|
confidence: number;
|
|
2245
2245
|
reason: string;
|
|
2246
2246
|
proposal: string;
|
|
@@ -2252,19 +2252,19 @@ export declare const ScheduleSuggestionFileSchema: z.ZodObject<{
|
|
|
2252
2252
|
timezone: string;
|
|
2253
2253
|
} | {
|
|
2254
2254
|
type: "interval";
|
|
2255
|
-
seconds: number;
|
|
2256
2255
|
jitter_factor: number;
|
|
2256
|
+
seconds: number;
|
|
2257
2257
|
} | undefined;
|
|
2258
|
+
decided_at?: string | undefined;
|
|
2258
2259
|
goalId?: string | undefined;
|
|
2259
|
-
decision_reason?: string | undefined;
|
|
2260
2260
|
applied_entry_id?: string | undefined;
|
|
2261
|
-
|
|
2261
|
+
decision_reason?: string | undefined;
|
|
2262
2262
|
}, {
|
|
2263
2263
|
type: "cron" | "goal_trigger" | "cleanup" | "dream_cron";
|
|
2264
2264
|
confidence: number;
|
|
2265
2265
|
reason: string;
|
|
2266
2266
|
proposal: string;
|
|
2267
|
-
status?: "pending" | "
|
|
2267
|
+
status?: "pending" | "rejected" | "applied" | "dismissed" | undefined;
|
|
2268
2268
|
name?: string | undefined;
|
|
2269
2269
|
id?: string | undefined;
|
|
2270
2270
|
trigger?: {
|
|
@@ -2276,16 +2276,16 @@ export declare const ScheduleSuggestionFileSchema: z.ZodObject<{
|
|
|
2276
2276
|
seconds: number;
|
|
2277
2277
|
jitter_factor?: number | undefined;
|
|
2278
2278
|
} | undefined;
|
|
2279
|
+
decided_at?: string | undefined;
|
|
2279
2280
|
goalId?: string | undefined;
|
|
2280
|
-
decision_reason?: string | undefined;
|
|
2281
2281
|
applied_entry_id?: string | undefined;
|
|
2282
|
-
|
|
2282
|
+
decision_reason?: string | undefined;
|
|
2283
2283
|
}>, "many">>;
|
|
2284
2284
|
}, "strip", z.ZodTypeAny, {
|
|
2285
2285
|
generated_at: string;
|
|
2286
2286
|
suggestions: {
|
|
2287
2287
|
type: "cron" | "goal_trigger" | "cleanup" | "dream_cron";
|
|
2288
|
-
status: "pending" | "
|
|
2288
|
+
status: "pending" | "rejected" | "applied" | "dismissed";
|
|
2289
2289
|
confidence: number;
|
|
2290
2290
|
reason: string;
|
|
2291
2291
|
proposal: string;
|
|
@@ -2297,13 +2297,13 @@ export declare const ScheduleSuggestionFileSchema: z.ZodObject<{
|
|
|
2297
2297
|
timezone: string;
|
|
2298
2298
|
} | {
|
|
2299
2299
|
type: "interval";
|
|
2300
|
-
seconds: number;
|
|
2301
2300
|
jitter_factor: number;
|
|
2301
|
+
seconds: number;
|
|
2302
2302
|
} | undefined;
|
|
2303
|
+
decided_at?: string | undefined;
|
|
2303
2304
|
goalId?: string | undefined;
|
|
2304
|
-
decision_reason?: string | undefined;
|
|
2305
2305
|
applied_entry_id?: string | undefined;
|
|
2306
|
-
|
|
2306
|
+
decision_reason?: string | undefined;
|
|
2307
2307
|
}[];
|
|
2308
2308
|
}, {
|
|
2309
2309
|
generated_at: string;
|
|
@@ -2312,7 +2312,7 @@ export declare const ScheduleSuggestionFileSchema: z.ZodObject<{
|
|
|
2312
2312
|
confidence: number;
|
|
2313
2313
|
reason: string;
|
|
2314
2314
|
proposal: string;
|
|
2315
|
-
status?: "pending" | "
|
|
2315
|
+
status?: "pending" | "rejected" | "applied" | "dismissed" | undefined;
|
|
2316
2316
|
name?: string | undefined;
|
|
2317
2317
|
id?: string | undefined;
|
|
2318
2318
|
trigger?: {
|
|
@@ -2324,10 +2324,10 @@ export declare const ScheduleSuggestionFileSchema: z.ZodObject<{
|
|
|
2324
2324
|
seconds: number;
|
|
2325
2325
|
jitter_factor?: number | undefined;
|
|
2326
2326
|
} | undefined;
|
|
2327
|
+
decided_at?: string | undefined;
|
|
2327
2328
|
goalId?: string | undefined;
|
|
2328
|
-
decision_reason?: string | undefined;
|
|
2329
2329
|
applied_entry_id?: string | undefined;
|
|
2330
|
-
|
|
2330
|
+
decision_reason?: string | undefined;
|
|
2331
2331
|
}[] | undefined;
|
|
2332
2332
|
}>;
|
|
2333
2333
|
export type ScheduleSuggestionFile = z.infer<typeof ScheduleSuggestionFileSchema>;
|
|
@@ -2409,8 +2409,8 @@ export declare const DreamRunReportSchema: z.ZodObject<{
|
|
|
2409
2409
|
jitter_factor: z.ZodDefault<z.ZodNumber>;
|
|
2410
2410
|
}, "strip", z.ZodTypeAny, {
|
|
2411
2411
|
type: "interval";
|
|
2412
|
-
seconds: number;
|
|
2413
2412
|
jitter_factor: number;
|
|
2413
|
+
seconds: number;
|
|
2414
2414
|
}, {
|
|
2415
2415
|
type: "interval";
|
|
2416
2416
|
seconds: number;
|
|
@@ -2425,7 +2425,7 @@ export declare const DreamRunReportSchema: z.ZodObject<{
|
|
|
2425
2425
|
decision_reason: z.ZodOptional<z.ZodString>;
|
|
2426
2426
|
}, "strip", z.ZodTypeAny, {
|
|
2427
2427
|
type: "cron" | "goal_trigger" | "cleanup" | "dream_cron";
|
|
2428
|
-
status: "pending" | "
|
|
2428
|
+
status: "pending" | "rejected" | "applied" | "dismissed";
|
|
2429
2429
|
confidence: number;
|
|
2430
2430
|
reason: string;
|
|
2431
2431
|
proposal: string;
|
|
@@ -2437,19 +2437,19 @@ export declare const DreamRunReportSchema: z.ZodObject<{
|
|
|
2437
2437
|
timezone: string;
|
|
2438
2438
|
} | {
|
|
2439
2439
|
type: "interval";
|
|
2440
|
-
seconds: number;
|
|
2441
2440
|
jitter_factor: number;
|
|
2441
|
+
seconds: number;
|
|
2442
2442
|
} | undefined;
|
|
2443
|
+
decided_at?: string | undefined;
|
|
2443
2444
|
goalId?: string | undefined;
|
|
2444
|
-
decision_reason?: string | undefined;
|
|
2445
2445
|
applied_entry_id?: string | undefined;
|
|
2446
|
-
|
|
2446
|
+
decision_reason?: string | undefined;
|
|
2447
2447
|
}, {
|
|
2448
2448
|
type: "cron" | "goal_trigger" | "cleanup" | "dream_cron";
|
|
2449
2449
|
confidence: number;
|
|
2450
2450
|
reason: string;
|
|
2451
2451
|
proposal: string;
|
|
2452
|
-
status?: "pending" | "
|
|
2452
|
+
status?: "pending" | "rejected" | "applied" | "dismissed" | undefined;
|
|
2453
2453
|
name?: string | undefined;
|
|
2454
2454
|
id?: string | undefined;
|
|
2455
2455
|
trigger?: {
|
|
@@ -2461,10 +2461,10 @@ export declare const DreamRunReportSchema: z.ZodObject<{
|
|
|
2461
2461
|
seconds: number;
|
|
2462
2462
|
jitter_factor?: number | undefined;
|
|
2463
2463
|
} | undefined;
|
|
2464
|
+
decided_at?: string | undefined;
|
|
2464
2465
|
goalId?: string | undefined;
|
|
2465
|
-
decision_reason?: string | undefined;
|
|
2466
2466
|
applied_entry_id?: string | undefined;
|
|
2467
|
-
|
|
2467
|
+
decision_reason?: string | undefined;
|
|
2468
2468
|
}>, "many">>;
|
|
2469
2469
|
}, "strip", z.ZodTypeAny, {
|
|
2470
2470
|
partial: boolean;
|
|
@@ -2475,7 +2475,7 @@ export declare const DreamRunReportSchema: z.ZodObject<{
|
|
|
2475
2475
|
};
|
|
2476
2476
|
suggestions: {
|
|
2477
2477
|
type: "cron" | "goal_trigger" | "cleanup" | "dream_cron";
|
|
2478
|
-
status: "pending" | "
|
|
2478
|
+
status: "pending" | "rejected" | "applied" | "dismissed";
|
|
2479
2479
|
confidence: number;
|
|
2480
2480
|
reason: string;
|
|
2481
2481
|
proposal: string;
|
|
@@ -2487,13 +2487,13 @@ export declare const DreamRunReportSchema: z.ZodObject<{
|
|
|
2487
2487
|
timezone: string;
|
|
2488
2488
|
} | {
|
|
2489
2489
|
type: "interval";
|
|
2490
|
-
seconds: number;
|
|
2491
2490
|
jitter_factor: number;
|
|
2491
|
+
seconds: number;
|
|
2492
2492
|
} | undefined;
|
|
2493
|
+
decided_at?: string | undefined;
|
|
2493
2494
|
goalId?: string | undefined;
|
|
2494
|
-
decision_reason?: string | undefined;
|
|
2495
2495
|
applied_entry_id?: string | undefined;
|
|
2496
|
-
|
|
2496
|
+
decision_reason?: string | undefined;
|
|
2497
2497
|
}[];
|
|
2498
2498
|
tier: "light" | "deep";
|
|
2499
2499
|
phasesCompleted: ("A" | "B" | "C")[];
|
|
@@ -2531,7 +2531,7 @@ export declare const DreamRunReportSchema: z.ZodObject<{
|
|
|
2531
2531
|
confidence: number;
|
|
2532
2532
|
reason: string;
|
|
2533
2533
|
proposal: string;
|
|
2534
|
-
status?: "pending" | "
|
|
2534
|
+
status?: "pending" | "rejected" | "applied" | "dismissed" | undefined;
|
|
2535
2535
|
name?: string | undefined;
|
|
2536
2536
|
id?: string | undefined;
|
|
2537
2537
|
trigger?: {
|
|
@@ -2543,10 +2543,10 @@ export declare const DreamRunReportSchema: z.ZodObject<{
|
|
|
2543
2543
|
seconds: number;
|
|
2544
2544
|
jitter_factor?: number | undefined;
|
|
2545
2545
|
} | undefined;
|
|
2546
|
+
decided_at?: string | undefined;
|
|
2546
2547
|
goalId?: string | undefined;
|
|
2547
|
-
decision_reason?: string | undefined;
|
|
2548
2548
|
applied_entry_id?: string | undefined;
|
|
2549
|
-
|
|
2549
|
+
decision_reason?: string | undefined;
|
|
2550
2550
|
}[] | undefined;
|
|
2551
2551
|
learnedPatterns?: {
|
|
2552
2552
|
type: "observation_accuracy" | "strategy_selection" | "scope_sizing" | "task_generation";
|
|
@@ -2628,7 +2628,7 @@ export declare const DreamActivationArtifactSchema: z.ZodObject<{
|
|
|
2628
2628
|
run_id?: string | undefined;
|
|
2629
2629
|
}>>;
|
|
2630
2630
|
}, "strict", z.ZodTypeAny, {
|
|
2631
|
-
kind: "
|
|
2631
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
2632
2632
|
id: string;
|
|
2633
2633
|
scope?: {
|
|
2634
2634
|
goal_id?: string | undefined;
|
|
@@ -2636,7 +2636,7 @@ export declare const DreamActivationArtifactSchema: z.ZodObject<{
|
|
|
2636
2636
|
run_id?: string | undefined;
|
|
2637
2637
|
} | undefined;
|
|
2638
2638
|
}, {
|
|
2639
|
-
kind: "
|
|
2639
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
2640
2640
|
id: string;
|
|
2641
2641
|
scope?: {
|
|
2642
2642
|
goal_id?: string | undefined;
|
|
@@ -2664,7 +2664,7 @@ export declare const DreamActivationArtifactSchema: z.ZodObject<{
|
|
|
2664
2664
|
run_id?: string | undefined;
|
|
2665
2665
|
}>>;
|
|
2666
2666
|
}, "strict", z.ZodTypeAny, {
|
|
2667
|
-
kind: "
|
|
2667
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
2668
2668
|
id: string;
|
|
2669
2669
|
scope?: {
|
|
2670
2670
|
goal_id?: string | undefined;
|
|
@@ -2672,7 +2672,7 @@ export declare const DreamActivationArtifactSchema: z.ZodObject<{
|
|
|
2672
2672
|
run_id?: string | undefined;
|
|
2673
2673
|
} | undefined;
|
|
2674
2674
|
}, {
|
|
2675
|
-
kind: "
|
|
2675
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
2676
2676
|
id: string;
|
|
2677
2677
|
scope?: {
|
|
2678
2678
|
goal_id?: string | undefined;
|
|
@@ -2684,13 +2684,12 @@ export declare const DreamActivationArtifactSchema: z.ZodObject<{
|
|
|
2684
2684
|
reason: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
2685
2685
|
updated_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
2686
2686
|
}, "strict", z.ZodTypeAny, {
|
|
2687
|
-
status: "active" | "superseded" | "
|
|
2687
|
+
status: "active" | "superseded" | "retracted" | "corrected" | "forgotten" | "quarantined";
|
|
2688
2688
|
active: boolean;
|
|
2689
2689
|
updated_at: string | null;
|
|
2690
2690
|
reason: string | null;
|
|
2691
|
-
retained_for_audit: boolean;
|
|
2692
2691
|
target_ref: {
|
|
2693
|
-
kind: "
|
|
2692
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
2694
2693
|
id: string;
|
|
2695
2694
|
scope?: {
|
|
2696
2695
|
goal_id?: string | undefined;
|
|
@@ -2698,8 +2697,9 @@ export declare const DreamActivationArtifactSchema: z.ZodObject<{
|
|
|
2698
2697
|
run_id?: string | undefined;
|
|
2699
2698
|
} | undefined;
|
|
2700
2699
|
};
|
|
2700
|
+
retained_for_audit: boolean;
|
|
2701
2701
|
replacement_ref: {
|
|
2702
|
-
kind: "
|
|
2702
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
2703
2703
|
id: string;
|
|
2704
2704
|
scope?: {
|
|
2705
2705
|
goal_id?: string | undefined;
|
|
@@ -2709,10 +2709,10 @@ export declare const DreamActivationArtifactSchema: z.ZodObject<{
|
|
|
2709
2709
|
} | null;
|
|
2710
2710
|
latest_correction_id: string | null;
|
|
2711
2711
|
}, {
|
|
2712
|
-
status: "active" | "superseded" | "
|
|
2712
|
+
status: "active" | "superseded" | "retracted" | "corrected" | "forgotten" | "quarantined";
|
|
2713
2713
|
active: boolean;
|
|
2714
2714
|
target_ref: {
|
|
2715
|
-
kind: "
|
|
2715
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
2716
2716
|
id: string;
|
|
2717
2717
|
scope?: {
|
|
2718
2718
|
goal_id?: string | undefined;
|
|
@@ -2724,7 +2724,7 @@ export declare const DreamActivationArtifactSchema: z.ZodObject<{
|
|
|
2724
2724
|
reason?: string | null | undefined;
|
|
2725
2725
|
retained_for_audit?: boolean | undefined;
|
|
2726
2726
|
replacement_ref?: {
|
|
2727
|
-
kind: "
|
|
2727
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
2728
2728
|
id: string;
|
|
2729
2729
|
scope?: {
|
|
2730
2730
|
goal_id?: string | undefined;
|
|
@@ -2743,24 +2743,23 @@ export declare const DreamActivationArtifactSchema: z.ZodObject<{
|
|
|
2743
2743
|
confidence: number;
|
|
2744
2744
|
evidence_refs: string[];
|
|
2745
2745
|
summary: string;
|
|
2746
|
-
payload: Record<string, unknown>;
|
|
2747
2746
|
scope: {
|
|
2748
2747
|
goal_id?: string | undefined;
|
|
2749
2748
|
strategy_id?: string | undefined;
|
|
2750
2749
|
task_category?: string | undefined;
|
|
2751
2750
|
goal_type?: string | undefined;
|
|
2752
2751
|
};
|
|
2753
|
-
artifact_id: string;
|
|
2754
2752
|
valid_from: string;
|
|
2755
2753
|
valid_to: string | null;
|
|
2754
|
+
payload: Record<string, unknown>;
|
|
2755
|
+
artifact_id: string;
|
|
2756
2756
|
correction_state?: {
|
|
2757
|
-
status: "active" | "superseded" | "
|
|
2757
|
+
status: "active" | "superseded" | "retracted" | "corrected" | "forgotten" | "quarantined";
|
|
2758
2758
|
active: boolean;
|
|
2759
2759
|
updated_at: string | null;
|
|
2760
2760
|
reason: string | null;
|
|
2761
|
-
retained_for_audit: boolean;
|
|
2762
2761
|
target_ref: {
|
|
2763
|
-
kind: "
|
|
2762
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
2764
2763
|
id: string;
|
|
2765
2764
|
scope?: {
|
|
2766
2765
|
goal_id?: string | undefined;
|
|
@@ -2768,8 +2767,9 @@ export declare const DreamActivationArtifactSchema: z.ZodObject<{
|
|
|
2768
2767
|
run_id?: string | undefined;
|
|
2769
2768
|
} | undefined;
|
|
2770
2769
|
};
|
|
2770
|
+
retained_for_audit: boolean;
|
|
2771
2771
|
replacement_ref: {
|
|
2772
|
-
kind: "
|
|
2772
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
2773
2773
|
id: string;
|
|
2774
2774
|
scope?: {
|
|
2775
2775
|
goal_id?: string | undefined;
|
|
@@ -2784,10 +2784,9 @@ export declare const DreamActivationArtifactSchema: z.ZodObject<{
|
|
|
2784
2784
|
source: string;
|
|
2785
2785
|
confidence: number;
|
|
2786
2786
|
summary: string;
|
|
2787
|
-
artifact_id: string;
|
|
2788
2787
|
valid_from: string;
|
|
2788
|
+
artifact_id: string;
|
|
2789
2789
|
evidence_refs?: string[] | undefined;
|
|
2790
|
-
payload?: Record<string, unknown> | undefined;
|
|
2791
2790
|
scope?: {
|
|
2792
2791
|
goal_id?: string | undefined;
|
|
2793
2792
|
strategy_id?: string | undefined;
|
|
@@ -2795,10 +2794,10 @@ export declare const DreamActivationArtifactSchema: z.ZodObject<{
|
|
|
2795
2794
|
goal_type?: string | undefined;
|
|
2796
2795
|
} | undefined;
|
|
2797
2796
|
correction_state?: {
|
|
2798
|
-
status: "active" | "superseded" | "
|
|
2797
|
+
status: "active" | "superseded" | "retracted" | "corrected" | "forgotten" | "quarantined";
|
|
2799
2798
|
active: boolean;
|
|
2800
2799
|
target_ref: {
|
|
2801
|
-
kind: "
|
|
2800
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
2802
2801
|
id: string;
|
|
2803
2802
|
scope?: {
|
|
2804
2803
|
goal_id?: string | undefined;
|
|
@@ -2810,7 +2809,7 @@ export declare const DreamActivationArtifactSchema: z.ZodObject<{
|
|
|
2810
2809
|
reason?: string | null | undefined;
|
|
2811
2810
|
retained_for_audit?: boolean | undefined;
|
|
2812
2811
|
replacement_ref?: {
|
|
2813
|
-
kind: "
|
|
2812
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
2814
2813
|
id: string;
|
|
2815
2814
|
scope?: {
|
|
2816
2815
|
goal_id?: string | undefined;
|
|
@@ -2821,6 +2820,7 @@ export declare const DreamActivationArtifactSchema: z.ZodObject<{
|
|
|
2821
2820
|
latest_correction_id?: string | null | undefined;
|
|
2822
2821
|
} | undefined;
|
|
2823
2822
|
valid_to?: string | null | undefined;
|
|
2823
|
+
payload?: Record<string, unknown> | undefined;
|
|
2824
2824
|
}>;
|
|
2825
2825
|
export type DreamActivationArtifact = z.infer<typeof DreamActivationArtifactSchema>;
|
|
2826
2826
|
export declare const DreamActivationArtifactFileSchema: z.ZodObject<{
|
|
@@ -2867,7 +2867,7 @@ export declare const DreamActivationArtifactFileSchema: z.ZodObject<{
|
|
|
2867
2867
|
run_id?: string | undefined;
|
|
2868
2868
|
}>>;
|
|
2869
2869
|
}, "strict", z.ZodTypeAny, {
|
|
2870
|
-
kind: "
|
|
2870
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
2871
2871
|
id: string;
|
|
2872
2872
|
scope?: {
|
|
2873
2873
|
goal_id?: string | undefined;
|
|
@@ -2875,7 +2875,7 @@ export declare const DreamActivationArtifactFileSchema: z.ZodObject<{
|
|
|
2875
2875
|
run_id?: string | undefined;
|
|
2876
2876
|
} | undefined;
|
|
2877
2877
|
}, {
|
|
2878
|
-
kind: "
|
|
2878
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
2879
2879
|
id: string;
|
|
2880
2880
|
scope?: {
|
|
2881
2881
|
goal_id?: string | undefined;
|
|
@@ -2903,7 +2903,7 @@ export declare const DreamActivationArtifactFileSchema: z.ZodObject<{
|
|
|
2903
2903
|
run_id?: string | undefined;
|
|
2904
2904
|
}>>;
|
|
2905
2905
|
}, "strict", z.ZodTypeAny, {
|
|
2906
|
-
kind: "
|
|
2906
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
2907
2907
|
id: string;
|
|
2908
2908
|
scope?: {
|
|
2909
2909
|
goal_id?: string | undefined;
|
|
@@ -2911,7 +2911,7 @@ export declare const DreamActivationArtifactFileSchema: z.ZodObject<{
|
|
|
2911
2911
|
run_id?: string | undefined;
|
|
2912
2912
|
} | undefined;
|
|
2913
2913
|
}, {
|
|
2914
|
-
kind: "
|
|
2914
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
2915
2915
|
id: string;
|
|
2916
2916
|
scope?: {
|
|
2917
2917
|
goal_id?: string | undefined;
|
|
@@ -2923,13 +2923,12 @@ export declare const DreamActivationArtifactFileSchema: z.ZodObject<{
|
|
|
2923
2923
|
reason: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
2924
2924
|
updated_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
2925
2925
|
}, "strict", z.ZodTypeAny, {
|
|
2926
|
-
status: "active" | "superseded" | "
|
|
2926
|
+
status: "active" | "superseded" | "retracted" | "corrected" | "forgotten" | "quarantined";
|
|
2927
2927
|
active: boolean;
|
|
2928
2928
|
updated_at: string | null;
|
|
2929
2929
|
reason: string | null;
|
|
2930
|
-
retained_for_audit: boolean;
|
|
2931
2930
|
target_ref: {
|
|
2932
|
-
kind: "
|
|
2931
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
2933
2932
|
id: string;
|
|
2934
2933
|
scope?: {
|
|
2935
2934
|
goal_id?: string | undefined;
|
|
@@ -2937,8 +2936,9 @@ export declare const DreamActivationArtifactFileSchema: z.ZodObject<{
|
|
|
2937
2936
|
run_id?: string | undefined;
|
|
2938
2937
|
} | undefined;
|
|
2939
2938
|
};
|
|
2939
|
+
retained_for_audit: boolean;
|
|
2940
2940
|
replacement_ref: {
|
|
2941
|
-
kind: "
|
|
2941
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
2942
2942
|
id: string;
|
|
2943
2943
|
scope?: {
|
|
2944
2944
|
goal_id?: string | undefined;
|
|
@@ -2948,10 +2948,10 @@ export declare const DreamActivationArtifactFileSchema: z.ZodObject<{
|
|
|
2948
2948
|
} | null;
|
|
2949
2949
|
latest_correction_id: string | null;
|
|
2950
2950
|
}, {
|
|
2951
|
-
status: "active" | "superseded" | "
|
|
2951
|
+
status: "active" | "superseded" | "retracted" | "corrected" | "forgotten" | "quarantined";
|
|
2952
2952
|
active: boolean;
|
|
2953
2953
|
target_ref: {
|
|
2954
|
-
kind: "
|
|
2954
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
2955
2955
|
id: string;
|
|
2956
2956
|
scope?: {
|
|
2957
2957
|
goal_id?: string | undefined;
|
|
@@ -2963,7 +2963,7 @@ export declare const DreamActivationArtifactFileSchema: z.ZodObject<{
|
|
|
2963
2963
|
reason?: string | null | undefined;
|
|
2964
2964
|
retained_for_audit?: boolean | undefined;
|
|
2965
2965
|
replacement_ref?: {
|
|
2966
|
-
kind: "
|
|
2966
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
2967
2967
|
id: string;
|
|
2968
2968
|
scope?: {
|
|
2969
2969
|
goal_id?: string | undefined;
|
|
@@ -2982,24 +2982,23 @@ export declare const DreamActivationArtifactFileSchema: z.ZodObject<{
|
|
|
2982
2982
|
confidence: number;
|
|
2983
2983
|
evidence_refs: string[];
|
|
2984
2984
|
summary: string;
|
|
2985
|
-
payload: Record<string, unknown>;
|
|
2986
2985
|
scope: {
|
|
2987
2986
|
goal_id?: string | undefined;
|
|
2988
2987
|
strategy_id?: string | undefined;
|
|
2989
2988
|
task_category?: string | undefined;
|
|
2990
2989
|
goal_type?: string | undefined;
|
|
2991
2990
|
};
|
|
2992
|
-
artifact_id: string;
|
|
2993
2991
|
valid_from: string;
|
|
2994
2992
|
valid_to: string | null;
|
|
2993
|
+
payload: Record<string, unknown>;
|
|
2994
|
+
artifact_id: string;
|
|
2995
2995
|
correction_state?: {
|
|
2996
|
-
status: "active" | "superseded" | "
|
|
2996
|
+
status: "active" | "superseded" | "retracted" | "corrected" | "forgotten" | "quarantined";
|
|
2997
2997
|
active: boolean;
|
|
2998
2998
|
updated_at: string | null;
|
|
2999
2999
|
reason: string | null;
|
|
3000
|
-
retained_for_audit: boolean;
|
|
3001
3000
|
target_ref: {
|
|
3002
|
-
kind: "
|
|
3001
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
3003
3002
|
id: string;
|
|
3004
3003
|
scope?: {
|
|
3005
3004
|
goal_id?: string | undefined;
|
|
@@ -3007,8 +3006,9 @@ export declare const DreamActivationArtifactFileSchema: z.ZodObject<{
|
|
|
3007
3006
|
run_id?: string | undefined;
|
|
3008
3007
|
} | undefined;
|
|
3009
3008
|
};
|
|
3009
|
+
retained_for_audit: boolean;
|
|
3010
3010
|
replacement_ref: {
|
|
3011
|
-
kind: "
|
|
3011
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
3012
3012
|
id: string;
|
|
3013
3013
|
scope?: {
|
|
3014
3014
|
goal_id?: string | undefined;
|
|
@@ -3023,10 +3023,9 @@ export declare const DreamActivationArtifactFileSchema: z.ZodObject<{
|
|
|
3023
3023
|
source: string;
|
|
3024
3024
|
confidence: number;
|
|
3025
3025
|
summary: string;
|
|
3026
|
-
artifact_id: string;
|
|
3027
3026
|
valid_from: string;
|
|
3027
|
+
artifact_id: string;
|
|
3028
3028
|
evidence_refs?: string[] | undefined;
|
|
3029
|
-
payload?: Record<string, unknown> | undefined;
|
|
3030
3029
|
scope?: {
|
|
3031
3030
|
goal_id?: string | undefined;
|
|
3032
3031
|
strategy_id?: string | undefined;
|
|
@@ -3034,10 +3033,10 @@ export declare const DreamActivationArtifactFileSchema: z.ZodObject<{
|
|
|
3034
3033
|
goal_type?: string | undefined;
|
|
3035
3034
|
} | undefined;
|
|
3036
3035
|
correction_state?: {
|
|
3037
|
-
status: "active" | "superseded" | "
|
|
3036
|
+
status: "active" | "superseded" | "retracted" | "corrected" | "forgotten" | "quarantined";
|
|
3038
3037
|
active: boolean;
|
|
3039
3038
|
target_ref: {
|
|
3040
|
-
kind: "
|
|
3039
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
3041
3040
|
id: string;
|
|
3042
3041
|
scope?: {
|
|
3043
3042
|
goal_id?: string | undefined;
|
|
@@ -3049,7 +3048,7 @@ export declare const DreamActivationArtifactFileSchema: z.ZodObject<{
|
|
|
3049
3048
|
reason?: string | null | undefined;
|
|
3050
3049
|
retained_for_audit?: boolean | undefined;
|
|
3051
3050
|
replacement_ref?: {
|
|
3052
|
-
kind: "
|
|
3051
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
3053
3052
|
id: string;
|
|
3054
3053
|
scope?: {
|
|
3055
3054
|
goal_id?: string | undefined;
|
|
@@ -3060,6 +3059,7 @@ export declare const DreamActivationArtifactFileSchema: z.ZodObject<{
|
|
|
3060
3059
|
latest_correction_id?: string | null | undefined;
|
|
3061
3060
|
} | undefined;
|
|
3062
3061
|
valid_to?: string | null | undefined;
|
|
3062
|
+
payload?: Record<string, unknown> | undefined;
|
|
3063
3063
|
}>, "many">>;
|
|
3064
3064
|
}, "strip", z.ZodTypeAny, {
|
|
3065
3065
|
generated_at: string;
|
|
@@ -3070,24 +3070,23 @@ export declare const DreamActivationArtifactFileSchema: z.ZodObject<{
|
|
|
3070
3070
|
confidence: number;
|
|
3071
3071
|
evidence_refs: string[];
|
|
3072
3072
|
summary: string;
|
|
3073
|
-
payload: Record<string, unknown>;
|
|
3074
3073
|
scope: {
|
|
3075
3074
|
goal_id?: string | undefined;
|
|
3076
3075
|
strategy_id?: string | undefined;
|
|
3077
3076
|
task_category?: string | undefined;
|
|
3078
3077
|
goal_type?: string | undefined;
|
|
3079
3078
|
};
|
|
3080
|
-
artifact_id: string;
|
|
3081
3079
|
valid_from: string;
|
|
3082
3080
|
valid_to: string | null;
|
|
3081
|
+
payload: Record<string, unknown>;
|
|
3082
|
+
artifact_id: string;
|
|
3083
3083
|
correction_state?: {
|
|
3084
|
-
status: "active" | "superseded" | "
|
|
3084
|
+
status: "active" | "superseded" | "retracted" | "corrected" | "forgotten" | "quarantined";
|
|
3085
3085
|
active: boolean;
|
|
3086
3086
|
updated_at: string | null;
|
|
3087
3087
|
reason: string | null;
|
|
3088
|
-
retained_for_audit: boolean;
|
|
3089
3088
|
target_ref: {
|
|
3090
|
-
kind: "
|
|
3089
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
3091
3090
|
id: string;
|
|
3092
3091
|
scope?: {
|
|
3093
3092
|
goal_id?: string | undefined;
|
|
@@ -3095,8 +3094,9 @@ export declare const DreamActivationArtifactFileSchema: z.ZodObject<{
|
|
|
3095
3094
|
run_id?: string | undefined;
|
|
3096
3095
|
} | undefined;
|
|
3097
3096
|
};
|
|
3097
|
+
retained_for_audit: boolean;
|
|
3098
3098
|
replacement_ref: {
|
|
3099
|
-
kind: "
|
|
3099
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
3100
3100
|
id: string;
|
|
3101
3101
|
scope?: {
|
|
3102
3102
|
goal_id?: string | undefined;
|
|
@@ -3115,10 +3115,9 @@ export declare const DreamActivationArtifactFileSchema: z.ZodObject<{
|
|
|
3115
3115
|
source: string;
|
|
3116
3116
|
confidence: number;
|
|
3117
3117
|
summary: string;
|
|
3118
|
-
artifact_id: string;
|
|
3119
3118
|
valid_from: string;
|
|
3119
|
+
artifact_id: string;
|
|
3120
3120
|
evidence_refs?: string[] | undefined;
|
|
3121
|
-
payload?: Record<string, unknown> | undefined;
|
|
3122
3121
|
scope?: {
|
|
3123
3122
|
goal_id?: string | undefined;
|
|
3124
3123
|
strategy_id?: string | undefined;
|
|
@@ -3126,10 +3125,10 @@ export declare const DreamActivationArtifactFileSchema: z.ZodObject<{
|
|
|
3126
3125
|
goal_type?: string | undefined;
|
|
3127
3126
|
} | undefined;
|
|
3128
3127
|
correction_state?: {
|
|
3129
|
-
status: "active" | "superseded" | "
|
|
3128
|
+
status: "active" | "superseded" | "retracted" | "corrected" | "forgotten" | "quarantined";
|
|
3130
3129
|
active: boolean;
|
|
3131
3130
|
target_ref: {
|
|
3132
|
-
kind: "
|
|
3131
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
3133
3132
|
id: string;
|
|
3134
3133
|
scope?: {
|
|
3135
3134
|
goal_id?: string | undefined;
|
|
@@ -3141,7 +3140,7 @@ export declare const DreamActivationArtifactFileSchema: z.ZodObject<{
|
|
|
3141
3140
|
reason?: string | null | undefined;
|
|
3142
3141
|
retained_for_audit?: boolean | undefined;
|
|
3143
3142
|
replacement_ref?: {
|
|
3144
|
-
kind: "
|
|
3143
|
+
kind: "soil_record" | "agent_memory" | "runtime_evidence" | "dream_checkpoint";
|
|
3145
3144
|
id: string;
|
|
3146
3145
|
scope?: {
|
|
3147
3146
|
goal_id?: string | undefined;
|
|
@@ -3152,6 +3151,7 @@ export declare const DreamActivationArtifactFileSchema: z.ZodObject<{
|
|
|
3152
3151
|
latest_correction_id?: string | null | undefined;
|
|
3153
3152
|
} | undefined;
|
|
3154
3153
|
valid_to?: string | null | undefined;
|
|
3154
|
+
payload?: Record<string, unknown> | undefined;
|
|
3155
3155
|
}[] | undefined;
|
|
3156
3156
|
}>;
|
|
3157
3157
|
export type DreamActivationArtifactFile = z.infer<typeof DreamActivationArtifactFileSchema>;
|