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
|
@@ -0,0 +1,1345 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const AutonomyDecisionLevelSchema: z.ZodEnum<["advisory", "prepare_only", "user_directed_execute", "autonomous_low_risk", "approval_required", "prohibited"]>;
|
|
3
|
+
export type AutonomyDecisionLevel = z.infer<typeof AutonomyDecisionLevelSchema>;
|
|
4
|
+
export declare const AutonomyBlastRadiusSchema: z.ZodEnum<["local", "workspace", "project", "external", "high"]>;
|
|
5
|
+
export type AutonomyBlastRadius = z.infer<typeof AutonomyBlastRadiusSchema>;
|
|
6
|
+
export declare const AutonomyPrivacySensitivitySchema: z.ZodEnum<["none", "low", "medium", "high"]>;
|
|
7
|
+
export type AutonomyPrivacySensitivity = z.infer<typeof AutonomyPrivacySensitivitySchema>;
|
|
8
|
+
export declare const AutonomyOperationPlanSchema: z.ZodObject<{
|
|
9
|
+
operation_id: z.ZodString;
|
|
10
|
+
capability_id: z.ZodOptional<z.ZodString>;
|
|
11
|
+
operation_kind: z.ZodEnum<["read", "search", "hint", "prepare", "send", "write", "publish", "delete", "mutate", "run"]>;
|
|
12
|
+
provider_ref: z.ZodString;
|
|
13
|
+
payload_class: z.ZodString;
|
|
14
|
+
side_effect_profile: z.ZodEnum<["none", "read", "send", "write", "publish", "delete", "mutate"]>;
|
|
15
|
+
risk_class: z.ZodDefault<z.ZodEnum<["low", "medium", "high"]>>;
|
|
16
|
+
privacy_profile: z.ZodOptional<z.ZodEnum<["local_private", "workspace_private", "external_service", "user_visible"]>>;
|
|
17
|
+
reversibility: z.ZodDefault<z.ZodEnum<["reversible", "append_only", "draft_only", "irreversible", "unknown"]>>;
|
|
18
|
+
external_action_authority: z.ZodDefault<z.ZodBoolean>;
|
|
19
|
+
target_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
20
|
+
advisory_only: z.ZodDefault<z.ZodBoolean>;
|
|
21
|
+
preparable_when_blocked: z.ZodDefault<z.ZodBoolean>;
|
|
22
|
+
setup_guidance_ref: z.ZodOptional<z.ZodString>;
|
|
23
|
+
local_only: z.ZodDefault<z.ZodBoolean>;
|
|
24
|
+
inspectable: z.ZodDefault<z.ZodBoolean>;
|
|
25
|
+
expected_user_visible_effect: z.ZodDefault<z.ZodBoolean>;
|
|
26
|
+
}, "strict", z.ZodTypeAny, {
|
|
27
|
+
reversibility: "unknown" | "reversible" | "irreversible" | "append_only" | "draft_only";
|
|
28
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
29
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
30
|
+
external_action_authority: boolean;
|
|
31
|
+
payload_class: string;
|
|
32
|
+
provider_ref: string;
|
|
33
|
+
operation_id: string;
|
|
34
|
+
risk_class: "low" | "high" | "medium";
|
|
35
|
+
inspectable: boolean;
|
|
36
|
+
local_only: boolean;
|
|
37
|
+
target_refs: string[];
|
|
38
|
+
expected_user_visible_effect: boolean;
|
|
39
|
+
advisory_only: boolean;
|
|
40
|
+
preparable_when_blocked: boolean;
|
|
41
|
+
capability_id?: string | undefined;
|
|
42
|
+
privacy_profile?: "local_private" | "workspace_private" | "external_service" | "user_visible" | undefined;
|
|
43
|
+
setup_guidance_ref?: string | undefined;
|
|
44
|
+
}, {
|
|
45
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
46
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
47
|
+
payload_class: string;
|
|
48
|
+
provider_ref: string;
|
|
49
|
+
operation_id: string;
|
|
50
|
+
reversibility?: "unknown" | "reversible" | "irreversible" | "append_only" | "draft_only" | undefined;
|
|
51
|
+
capability_id?: string | undefined;
|
|
52
|
+
privacy_profile?: "local_private" | "workspace_private" | "external_service" | "user_visible" | undefined;
|
|
53
|
+
external_action_authority?: boolean | undefined;
|
|
54
|
+
risk_class?: "low" | "high" | "medium" | undefined;
|
|
55
|
+
inspectable?: boolean | undefined;
|
|
56
|
+
local_only?: boolean | undefined;
|
|
57
|
+
target_refs?: string[] | undefined;
|
|
58
|
+
expected_user_visible_effect?: boolean | undefined;
|
|
59
|
+
advisory_only?: boolean | undefined;
|
|
60
|
+
preparable_when_blocked?: boolean | undefined;
|
|
61
|
+
setup_guidance_ref?: string | undefined;
|
|
62
|
+
}>;
|
|
63
|
+
export type AutonomyOperationPlan = z.infer<typeof AutonomyOperationPlanSchema>;
|
|
64
|
+
export type AutonomyOperationPlanInput = z.input<typeof AutonomyOperationPlanSchema>;
|
|
65
|
+
export declare const AutonomyPolicySignalResultSchema: z.ZodEnum<["allowed", "approval_required", "prepare_only", "prohibited", "suppressed", "downgraded"]>;
|
|
66
|
+
export type AutonomyPolicySignalResult = z.infer<typeof AutonomyPolicySignalResultSchema>;
|
|
67
|
+
export declare const AutonomyPolicySignalSchema: z.ZodObject<{
|
|
68
|
+
ref: z.ZodString;
|
|
69
|
+
result: z.ZodEnum<["allowed", "approval_required", "prepare_only", "prohibited", "suppressed", "downgraded"]>;
|
|
70
|
+
reason: z.ZodString;
|
|
71
|
+
epoch: z.ZodOptional<z.ZodString>;
|
|
72
|
+
expires_at: z.ZodOptional<z.ZodString>;
|
|
73
|
+
}, "strict", z.ZodTypeAny, {
|
|
74
|
+
reason: string;
|
|
75
|
+
ref: string;
|
|
76
|
+
result: "approval_required" | "suppressed" | "allowed" | "prepare_only" | "prohibited" | "downgraded";
|
|
77
|
+
expires_at?: string | undefined;
|
|
78
|
+
epoch?: string | undefined;
|
|
79
|
+
}, {
|
|
80
|
+
reason: string;
|
|
81
|
+
ref: string;
|
|
82
|
+
result: "approval_required" | "suppressed" | "allowed" | "prepare_only" | "prohibited" | "downgraded";
|
|
83
|
+
expires_at?: string | undefined;
|
|
84
|
+
epoch?: string | undefined;
|
|
85
|
+
}>;
|
|
86
|
+
export type AutonomyPolicySignal = z.infer<typeof AutonomyPolicySignalSchema>;
|
|
87
|
+
export declare const AutonomyRuntimeControlStateSchema: z.ZodObject<{
|
|
88
|
+
ref: z.ZodString;
|
|
89
|
+
state: z.ZodEnum<["available", "approval_required", "suspended", "prohibited"]>;
|
|
90
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
91
|
+
epoch: z.ZodOptional<z.ZodString>;
|
|
92
|
+
expires_at: z.ZodOptional<z.ZodString>;
|
|
93
|
+
}, "strict", z.ZodTypeAny, {
|
|
94
|
+
state: "suspended" | "approval_required" | "available" | "prohibited";
|
|
95
|
+
ref: string;
|
|
96
|
+
reason?: string | undefined;
|
|
97
|
+
expires_at?: string | undefined;
|
|
98
|
+
epoch?: string | undefined;
|
|
99
|
+
}, {
|
|
100
|
+
state: "suspended" | "approval_required" | "available" | "prohibited";
|
|
101
|
+
ref: string;
|
|
102
|
+
reason?: string | undefined;
|
|
103
|
+
expires_at?: string | undefined;
|
|
104
|
+
epoch?: string | undefined;
|
|
105
|
+
}>;
|
|
106
|
+
export type AutonomyRuntimeControlState = z.infer<typeof AutonomyRuntimeControlStateSchema>;
|
|
107
|
+
export declare const AutonomyCompanionStateSchema: z.ZodObject<{
|
|
108
|
+
ref: z.ZodString;
|
|
109
|
+
mode: z.ZodEnum<["active", "quieted", "suspended", "holding_back"]>;
|
|
110
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
111
|
+
epoch: z.ZodOptional<z.ZodString>;
|
|
112
|
+
}, "strict", z.ZodTypeAny, {
|
|
113
|
+
mode: "active" | "suspended" | "quieted" | "holding_back";
|
|
114
|
+
ref: string;
|
|
115
|
+
reason?: string | undefined;
|
|
116
|
+
epoch?: string | undefined;
|
|
117
|
+
}, {
|
|
118
|
+
mode: "active" | "suspended" | "quieted" | "holding_back";
|
|
119
|
+
ref: string;
|
|
120
|
+
reason?: string | undefined;
|
|
121
|
+
epoch?: string | undefined;
|
|
122
|
+
}>;
|
|
123
|
+
export type AutonomyCompanionState = z.infer<typeof AutonomyCompanionStateSchema>;
|
|
124
|
+
export declare const AutonomyTrustProfileSchema: z.ZodObject<{
|
|
125
|
+
ref: z.ZodString;
|
|
126
|
+
provider_ref: z.ZodString;
|
|
127
|
+
trust_level: z.ZodDefault<z.ZodEnum<["unknown", "low", "medium", "high"]>>;
|
|
128
|
+
positive_feedback_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
129
|
+
negative_feedback_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
130
|
+
epoch: z.ZodOptional<z.ZodString>;
|
|
131
|
+
}, "strict", z.ZodTypeAny, {
|
|
132
|
+
ref: string;
|
|
133
|
+
provider_ref: string;
|
|
134
|
+
trust_level: "unknown" | "low" | "high" | "medium";
|
|
135
|
+
positive_feedback_refs: string[];
|
|
136
|
+
negative_feedback_refs: string[];
|
|
137
|
+
epoch?: string | undefined;
|
|
138
|
+
}, {
|
|
139
|
+
ref: string;
|
|
140
|
+
provider_ref: string;
|
|
141
|
+
epoch?: string | undefined;
|
|
142
|
+
trust_level?: "unknown" | "low" | "high" | "medium" | undefined;
|
|
143
|
+
positive_feedback_refs?: string[] | undefined;
|
|
144
|
+
negative_feedback_refs?: string[] | undefined;
|
|
145
|
+
}>;
|
|
146
|
+
export type AutonomyTrustProfile = z.infer<typeof AutonomyTrustProfileSchema>;
|
|
147
|
+
export declare const AutonomyVerificationProfileSchema: z.ZodObject<{
|
|
148
|
+
ref: z.ZodString;
|
|
149
|
+
provider_ref: z.ZodString;
|
|
150
|
+
verification_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
151
|
+
audit_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
152
|
+
epoch: z.ZodOptional<z.ZodString>;
|
|
153
|
+
}, "strict", z.ZodTypeAny, {
|
|
154
|
+
ref: string;
|
|
155
|
+
provider_ref: string;
|
|
156
|
+
verification_refs: string[];
|
|
157
|
+
audit_refs: string[];
|
|
158
|
+
epoch?: string | undefined;
|
|
159
|
+
}, {
|
|
160
|
+
ref: string;
|
|
161
|
+
provider_ref: string;
|
|
162
|
+
verification_refs?: string[] | undefined;
|
|
163
|
+
audit_refs?: string[] | undefined;
|
|
164
|
+
epoch?: string | undefined;
|
|
165
|
+
}>;
|
|
166
|
+
export type AutonomyVerificationProfile = z.infer<typeof AutonomyVerificationProfileSchema>;
|
|
167
|
+
export declare const AutonomyFeedbackSignalSchema: z.ZodObject<{
|
|
168
|
+
ref: z.ZodString;
|
|
169
|
+
outcome: z.ZodEnum<["accepted", "ignored", "dismissed", "corrected", "overreach"]>;
|
|
170
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
171
|
+
overreach_indicators: z.ZodDefault<z.ZodArray<z.ZodEnum<["too_frequent", "wrong_context", "sensitive", "unwanted_timing"]>, "many">>;
|
|
172
|
+
follow_through_success: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
173
|
+
recorded_at: z.ZodOptional<z.ZodString>;
|
|
174
|
+
policy_adjustment: z.ZodOptional<z.ZodEnum<["reduce_frequency", "require_confirmation", "narrow_scope", "avoid_sensitive_context"]>>;
|
|
175
|
+
}, "strict", z.ZodTypeAny, {
|
|
176
|
+
outcome: "accepted" | "corrected" | "ignored" | "dismissed" | "overreach";
|
|
177
|
+
ref: string;
|
|
178
|
+
overreach_indicators: ("sensitive" | "too_frequent" | "wrong_context" | "unwanted_timing")[];
|
|
179
|
+
follow_through_success: boolean | null;
|
|
180
|
+
reason?: string | undefined;
|
|
181
|
+
recorded_at?: string | undefined;
|
|
182
|
+
policy_adjustment?: "narrow_scope" | "require_confirmation" | "reduce_frequency" | "avoid_sensitive_context" | undefined;
|
|
183
|
+
}, {
|
|
184
|
+
outcome: "accepted" | "corrected" | "ignored" | "dismissed" | "overreach";
|
|
185
|
+
ref: string;
|
|
186
|
+
reason?: string | undefined;
|
|
187
|
+
recorded_at?: string | undefined;
|
|
188
|
+
overreach_indicators?: ("sensitive" | "too_frequent" | "wrong_context" | "unwanted_timing")[] | undefined;
|
|
189
|
+
follow_through_success?: boolean | null | undefined;
|
|
190
|
+
policy_adjustment?: "narrow_scope" | "require_confirmation" | "reduce_frequency" | "avoid_sensitive_context" | undefined;
|
|
191
|
+
}>;
|
|
192
|
+
export type AutonomyFeedbackSignal = z.infer<typeof AutonomyFeedbackSignalSchema>;
|
|
193
|
+
export declare const AutonomyContextAuthorityEvidenceSchema: z.ZodObject<{
|
|
194
|
+
ref: z.ZodString;
|
|
195
|
+
kind: z.ZodEnum<["dream_hint", "memory", "route_config", "past_execution", "auth_session", "mcp_enabled", "notification_subscription"]>;
|
|
196
|
+
epoch: z.ZodOptional<z.ZodString>;
|
|
197
|
+
}, "strict", z.ZodTypeAny, {
|
|
198
|
+
kind: "memory" | "dream_hint" | "route_config" | "past_execution" | "auth_session" | "mcp_enabled" | "notification_subscription";
|
|
199
|
+
ref: string;
|
|
200
|
+
epoch?: string | undefined;
|
|
201
|
+
}, {
|
|
202
|
+
kind: "memory" | "dream_hint" | "route_config" | "past_execution" | "auth_session" | "mcp_enabled" | "notification_subscription";
|
|
203
|
+
ref: string;
|
|
204
|
+
epoch?: string | undefined;
|
|
205
|
+
}>;
|
|
206
|
+
export type AutonomyContextAuthorityEvidence = z.infer<typeof AutonomyContextAuthorityEvidenceSchema>;
|
|
207
|
+
export declare const AutonomyCacheInvalidationEvidenceSchema: z.ZodObject<{
|
|
208
|
+
kind: z.ZodEnum<["revocation", "correction", "tombstone", "quieting", "suspend", "policy_downgrade"]>;
|
|
209
|
+
ref: z.ZodString;
|
|
210
|
+
reason: z.ZodString;
|
|
211
|
+
epoch: z.ZodOptional<z.ZodString>;
|
|
212
|
+
}, "strict", z.ZodTypeAny, {
|
|
213
|
+
kind: "correction" | "tombstone" | "quieting" | "suspend" | "revocation" | "policy_downgrade";
|
|
214
|
+
reason: string;
|
|
215
|
+
ref: string;
|
|
216
|
+
epoch?: string | undefined;
|
|
217
|
+
}, {
|
|
218
|
+
kind: "correction" | "tombstone" | "quieting" | "suspend" | "revocation" | "policy_downgrade";
|
|
219
|
+
reason: string;
|
|
220
|
+
ref: string;
|
|
221
|
+
epoch?: string | undefined;
|
|
222
|
+
}>;
|
|
223
|
+
export type AutonomyCacheInvalidationEvidence = z.infer<typeof AutonomyCacheInvalidationEvidenceSchema>;
|
|
224
|
+
export declare const AutonomyInvalidationBindingSchema: z.ZodObject<{
|
|
225
|
+
kind: z.ZodEnum<["admission", "auth", "backpressure", "companion_state", "feedback", "guardrail", "invalidation_evidence", "policy", "provider", "readiness", "runtime_control", "target", "trust", "verification"]>;
|
|
226
|
+
ref: z.ZodString;
|
|
227
|
+
epoch: z.ZodOptional<z.ZodString>;
|
|
228
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
229
|
+
}, "strict", z.ZodTypeAny, {
|
|
230
|
+
kind: "verification" | "provider" | "auth" | "admission" | "policy" | "target" | "guardrail" | "backpressure" | "runtime_control" | "feedback" | "companion_state" | "readiness" | "invalidation_evidence" | "trust";
|
|
231
|
+
ref: string;
|
|
232
|
+
reason?: string | undefined;
|
|
233
|
+
epoch?: string | undefined;
|
|
234
|
+
}, {
|
|
235
|
+
kind: "verification" | "provider" | "auth" | "admission" | "policy" | "target" | "guardrail" | "backpressure" | "runtime_control" | "feedback" | "companion_state" | "readiness" | "invalidation_evidence" | "trust";
|
|
236
|
+
ref: string;
|
|
237
|
+
reason?: string | undefined;
|
|
238
|
+
epoch?: string | undefined;
|
|
239
|
+
}>;
|
|
240
|
+
export type AutonomyInvalidationBinding = z.infer<typeof AutonomyInvalidationBindingSchema>;
|
|
241
|
+
export declare const AutonomyDecisionInputSchema: z.ZodObject<{
|
|
242
|
+
operation_plan: z.ZodObject<{
|
|
243
|
+
operation_id: z.ZodString;
|
|
244
|
+
capability_id: z.ZodOptional<z.ZodString>;
|
|
245
|
+
operation_kind: z.ZodEnum<["read", "search", "hint", "prepare", "send", "write", "publish", "delete", "mutate", "run"]>;
|
|
246
|
+
provider_ref: z.ZodString;
|
|
247
|
+
payload_class: z.ZodString;
|
|
248
|
+
side_effect_profile: z.ZodEnum<["none", "read", "send", "write", "publish", "delete", "mutate"]>;
|
|
249
|
+
risk_class: z.ZodDefault<z.ZodEnum<["low", "medium", "high"]>>;
|
|
250
|
+
privacy_profile: z.ZodOptional<z.ZodEnum<["local_private", "workspace_private", "external_service", "user_visible"]>>;
|
|
251
|
+
reversibility: z.ZodDefault<z.ZodEnum<["reversible", "append_only", "draft_only", "irreversible", "unknown"]>>;
|
|
252
|
+
external_action_authority: z.ZodDefault<z.ZodBoolean>;
|
|
253
|
+
target_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
254
|
+
advisory_only: z.ZodDefault<z.ZodBoolean>;
|
|
255
|
+
preparable_when_blocked: z.ZodDefault<z.ZodBoolean>;
|
|
256
|
+
setup_guidance_ref: z.ZodOptional<z.ZodString>;
|
|
257
|
+
local_only: z.ZodDefault<z.ZodBoolean>;
|
|
258
|
+
inspectable: z.ZodDefault<z.ZodBoolean>;
|
|
259
|
+
expected_user_visible_effect: z.ZodDefault<z.ZodBoolean>;
|
|
260
|
+
}, "strict", z.ZodTypeAny, {
|
|
261
|
+
reversibility: "unknown" | "reversible" | "irreversible" | "append_only" | "draft_only";
|
|
262
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
263
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
264
|
+
external_action_authority: boolean;
|
|
265
|
+
payload_class: string;
|
|
266
|
+
provider_ref: string;
|
|
267
|
+
operation_id: string;
|
|
268
|
+
risk_class: "low" | "high" | "medium";
|
|
269
|
+
inspectable: boolean;
|
|
270
|
+
local_only: boolean;
|
|
271
|
+
target_refs: string[];
|
|
272
|
+
expected_user_visible_effect: boolean;
|
|
273
|
+
advisory_only: boolean;
|
|
274
|
+
preparable_when_blocked: boolean;
|
|
275
|
+
capability_id?: string | undefined;
|
|
276
|
+
privacy_profile?: "local_private" | "workspace_private" | "external_service" | "user_visible" | undefined;
|
|
277
|
+
setup_guidance_ref?: string | undefined;
|
|
278
|
+
}, {
|
|
279
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
280
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
281
|
+
payload_class: string;
|
|
282
|
+
provider_ref: string;
|
|
283
|
+
operation_id: string;
|
|
284
|
+
reversibility?: "unknown" | "reversible" | "irreversible" | "append_only" | "draft_only" | undefined;
|
|
285
|
+
capability_id?: string | undefined;
|
|
286
|
+
privacy_profile?: "local_private" | "workspace_private" | "external_service" | "user_visible" | undefined;
|
|
287
|
+
external_action_authority?: boolean | undefined;
|
|
288
|
+
risk_class?: "low" | "high" | "medium" | undefined;
|
|
289
|
+
inspectable?: boolean | undefined;
|
|
290
|
+
local_only?: boolean | undefined;
|
|
291
|
+
target_refs?: string[] | undefined;
|
|
292
|
+
expected_user_visible_effect?: boolean | undefined;
|
|
293
|
+
advisory_only?: boolean | undefined;
|
|
294
|
+
preparable_when_blocked?: boolean | undefined;
|
|
295
|
+
setup_guidance_ref?: string | undefined;
|
|
296
|
+
}>;
|
|
297
|
+
readiness_snapshots: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
298
|
+
schema_version: z.ZodLiteral<"capability-readiness-snapshot/v1">;
|
|
299
|
+
snapshot_id: z.ZodString;
|
|
300
|
+
capability_id: z.ZodString;
|
|
301
|
+
provider_ref: z.ZodString;
|
|
302
|
+
asset_ref: z.ZodString;
|
|
303
|
+
operation_id: z.ZodString;
|
|
304
|
+
operation_kind: z.ZodEnum<["read", "search", "hint", "prepare", "send", "write", "publish", "delete", "mutate", "run"]>;
|
|
305
|
+
tool_name: z.ZodString;
|
|
306
|
+
payload_class: z.ZodString;
|
|
307
|
+
risk_class: z.ZodEnum<["low", "medium", "high"]>;
|
|
308
|
+
side_effect_profile: z.ZodEnum<["none", "read", "send", "write", "publish", "delete", "mutate"]>;
|
|
309
|
+
evaluated_at: z.ZodString;
|
|
310
|
+
state: z.ZodEnum<["stored", "discoverable", "loadable", "compatible", "configured", "authenticated", "executable_verified", "degraded", "blocked"]>;
|
|
311
|
+
passed_gates: z.ZodDefault<z.ZodArray<z.ZodEnum<["stored", "discoverable", "loadable", "compatible", "configured", "authenticated", "executable_verified", "degraded", "blocked"]>, "many">>;
|
|
312
|
+
failed_gates: z.ZodDefault<z.ZodArray<z.ZodEnum<["stored", "discoverable", "loadable", "compatible", "configured", "authenticated", "executable_verified", "degraded", "blocked"]>, "many">>;
|
|
313
|
+
degraded_gates: z.ZodDefault<z.ZodArray<z.ZodEnum<["stored", "discoverable", "loadable", "compatible", "configured", "authenticated", "executable_verified", "degraded", "blocked"]>, "many">>;
|
|
314
|
+
missing_config_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
315
|
+
missing_auth_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
316
|
+
verification_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
317
|
+
evidence_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
318
|
+
stale_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
319
|
+
safe_user_visible_label: z.ZodEnum<["Recorded, not executable", "Setup required", "Auth required", "Configured, verification required", "Execution substrate verified", "Degraded", "Blocked"]>;
|
|
320
|
+
metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
321
|
+
}, "strict", z.ZodTypeAny, {
|
|
322
|
+
evaluated_at: string;
|
|
323
|
+
tool_name: string;
|
|
324
|
+
schema_version: "capability-readiness-snapshot/v1";
|
|
325
|
+
evidence_refs: string[];
|
|
326
|
+
state: "blocked" | "stored" | "discoverable" | "loadable" | "compatible" | "configured" | "authenticated" | "executable_verified" | "degraded";
|
|
327
|
+
metadata: Record<string, unknown>;
|
|
328
|
+
capability_id: string;
|
|
329
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
330
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
331
|
+
payload_class: string;
|
|
332
|
+
snapshot_id: string;
|
|
333
|
+
provider_ref: string;
|
|
334
|
+
asset_ref: string;
|
|
335
|
+
operation_id: string;
|
|
336
|
+
risk_class: "low" | "high" | "medium";
|
|
337
|
+
passed_gates: ("blocked" | "stored" | "discoverable" | "loadable" | "compatible" | "configured" | "authenticated" | "executable_verified" | "degraded")[];
|
|
338
|
+
failed_gates: ("blocked" | "stored" | "discoverable" | "loadable" | "compatible" | "configured" | "authenticated" | "executable_verified" | "degraded")[];
|
|
339
|
+
degraded_gates: ("blocked" | "stored" | "discoverable" | "loadable" | "compatible" | "configured" | "authenticated" | "executable_verified" | "degraded")[];
|
|
340
|
+
missing_config_refs: string[];
|
|
341
|
+
missing_auth_refs: string[];
|
|
342
|
+
verification_refs: string[];
|
|
343
|
+
stale_refs: string[];
|
|
344
|
+
safe_user_visible_label: "Recorded, not executable" | "Setup required" | "Auth required" | "Configured, verification required" | "Execution substrate verified" | "Degraded" | "Blocked";
|
|
345
|
+
}, {
|
|
346
|
+
evaluated_at: string;
|
|
347
|
+
tool_name: string;
|
|
348
|
+
schema_version: "capability-readiness-snapshot/v1";
|
|
349
|
+
state: "blocked" | "stored" | "discoverable" | "loadable" | "compatible" | "configured" | "authenticated" | "executable_verified" | "degraded";
|
|
350
|
+
capability_id: string;
|
|
351
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
352
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
353
|
+
payload_class: string;
|
|
354
|
+
snapshot_id: string;
|
|
355
|
+
provider_ref: string;
|
|
356
|
+
asset_ref: string;
|
|
357
|
+
operation_id: string;
|
|
358
|
+
risk_class: "low" | "high" | "medium";
|
|
359
|
+
safe_user_visible_label: "Recorded, not executable" | "Setup required" | "Auth required" | "Configured, verification required" | "Execution substrate verified" | "Degraded" | "Blocked";
|
|
360
|
+
evidence_refs?: string[] | undefined;
|
|
361
|
+
metadata?: Record<string, unknown> | undefined;
|
|
362
|
+
passed_gates?: ("blocked" | "stored" | "discoverable" | "loadable" | "compatible" | "configured" | "authenticated" | "executable_verified" | "degraded")[] | undefined;
|
|
363
|
+
failed_gates?: ("blocked" | "stored" | "discoverable" | "loadable" | "compatible" | "configured" | "authenticated" | "executable_verified" | "degraded")[] | undefined;
|
|
364
|
+
degraded_gates?: ("blocked" | "stored" | "discoverable" | "loadable" | "compatible" | "configured" | "authenticated" | "executable_verified" | "degraded")[] | undefined;
|
|
365
|
+
missing_config_refs?: string[] | undefined;
|
|
366
|
+
missing_auth_refs?: string[] | undefined;
|
|
367
|
+
verification_refs?: string[] | undefined;
|
|
368
|
+
stale_refs?: string[] | undefined;
|
|
369
|
+
}>, "many">>;
|
|
370
|
+
admission_evaluation: z.ZodObject<{
|
|
371
|
+
schema_version: z.ZodLiteral<"admission-policy-evaluation/v1">;
|
|
372
|
+
evaluation_id: z.ZodString;
|
|
373
|
+
operation_id: z.ZodString;
|
|
374
|
+
capability_id: z.ZodOptional<z.ZodString>;
|
|
375
|
+
evaluated_at: z.ZodString;
|
|
376
|
+
actor_ref: z.ZodString;
|
|
377
|
+
surface_ref: z.ZodString;
|
|
378
|
+
provider_ref: z.ZodString;
|
|
379
|
+
payload_class: z.ZodString;
|
|
380
|
+
target_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
381
|
+
permission_grant_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
382
|
+
rejected_permission_grant_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
383
|
+
relationship_policy_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
384
|
+
quieting_policy_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
385
|
+
privacy_policy_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
386
|
+
runtime_control_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
387
|
+
notification_policy_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
388
|
+
auth_state_ref: z.ZodOptional<z.ZodString>;
|
|
389
|
+
readiness_ref: z.ZodOptional<z.ZodString>;
|
|
390
|
+
result: z.ZodEnum<["allowed", "approval_required", "suppressed", "prohibited"]>;
|
|
391
|
+
rationale: z.ZodArray<z.ZodString, "many">;
|
|
392
|
+
expires_at: z.ZodString;
|
|
393
|
+
invalidation_bindings: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
394
|
+
kind: z.ZodEnum<["target", "provider", "auth", "payload", "policy", "surface"]>;
|
|
395
|
+
ref: z.ZodString;
|
|
396
|
+
epoch: z.ZodOptional<z.ZodString>;
|
|
397
|
+
}, "strict", z.ZodTypeAny, {
|
|
398
|
+
kind: "provider" | "auth" | "policy" | "target" | "surface" | "payload";
|
|
399
|
+
ref: string;
|
|
400
|
+
epoch?: string | undefined;
|
|
401
|
+
}, {
|
|
402
|
+
kind: "provider" | "auth" | "policy" | "target" | "surface" | "payload";
|
|
403
|
+
ref: string;
|
|
404
|
+
epoch?: string | undefined;
|
|
405
|
+
}>, "many">>;
|
|
406
|
+
metadata: z.ZodObject<{
|
|
407
|
+
operation_kind: z.ZodEnum<["read", "search", "hint", "prepare", "send", "write", "publish", "delete", "mutate", "run"]>;
|
|
408
|
+
side_effect_profile: z.ZodEnum<["none", "read", "send", "write", "publish", "delete", "mutate"]>;
|
|
409
|
+
required_permission_capabilities: z.ZodDefault<z.ZodArray<z.ZodEnum<["read_workspace", "write_workspace", "run_tests", "run_safe_local_commands", "update_memory", "update_surface", "notify_user", "delegate_work", "inspect_runtime", "prepare_draft"]>, "many">>;
|
|
410
|
+
considered_permission_grant_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
411
|
+
}, "strict", z.ZodTypeAny, {
|
|
412
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
413
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
414
|
+
required_permission_capabilities: ("read_workspace" | "write_workspace" | "run_tests" | "run_safe_local_commands" | "update_memory" | "update_surface" | "notify_user" | "delegate_work" | "inspect_runtime" | "prepare_draft")[];
|
|
415
|
+
considered_permission_grant_refs: string[];
|
|
416
|
+
}, {
|
|
417
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
418
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
419
|
+
required_permission_capabilities?: ("read_workspace" | "write_workspace" | "run_tests" | "run_safe_local_commands" | "update_memory" | "update_surface" | "notify_user" | "delegate_work" | "inspect_runtime" | "prepare_draft")[] | undefined;
|
|
420
|
+
considered_permission_grant_refs?: string[] | undefined;
|
|
421
|
+
}>;
|
|
422
|
+
}, "strict", z.ZodTypeAny, {
|
|
423
|
+
rationale: string[];
|
|
424
|
+
evaluated_at: string;
|
|
425
|
+
schema_version: "admission-policy-evaluation/v1";
|
|
426
|
+
metadata: {
|
|
427
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
428
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
429
|
+
required_permission_capabilities: ("read_workspace" | "write_workspace" | "run_tests" | "run_safe_local_commands" | "update_memory" | "update_surface" | "notify_user" | "delegate_work" | "inspect_runtime" | "prepare_draft")[];
|
|
430
|
+
considered_permission_grant_refs: string[];
|
|
431
|
+
};
|
|
432
|
+
payload_class: string;
|
|
433
|
+
provider_ref: string;
|
|
434
|
+
operation_id: string;
|
|
435
|
+
surface_ref: string;
|
|
436
|
+
expires_at: string;
|
|
437
|
+
result: "approval_required" | "suppressed" | "allowed" | "prohibited";
|
|
438
|
+
target_refs: string[];
|
|
439
|
+
evaluation_id: string;
|
|
440
|
+
actor_ref: string;
|
|
441
|
+
permission_grant_refs: string[];
|
|
442
|
+
rejected_permission_grant_refs: string[];
|
|
443
|
+
relationship_policy_refs: string[];
|
|
444
|
+
quieting_policy_refs: string[];
|
|
445
|
+
privacy_policy_refs: string[];
|
|
446
|
+
runtime_control_refs: string[];
|
|
447
|
+
notification_policy_refs: string[];
|
|
448
|
+
invalidation_bindings: {
|
|
449
|
+
kind: "provider" | "auth" | "policy" | "target" | "surface" | "payload";
|
|
450
|
+
ref: string;
|
|
451
|
+
epoch?: string | undefined;
|
|
452
|
+
}[];
|
|
453
|
+
capability_id?: string | undefined;
|
|
454
|
+
auth_state_ref?: string | undefined;
|
|
455
|
+
readiness_ref?: string | undefined;
|
|
456
|
+
}, {
|
|
457
|
+
rationale: string[];
|
|
458
|
+
evaluated_at: string;
|
|
459
|
+
schema_version: "admission-policy-evaluation/v1";
|
|
460
|
+
metadata: {
|
|
461
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
462
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
463
|
+
required_permission_capabilities?: ("read_workspace" | "write_workspace" | "run_tests" | "run_safe_local_commands" | "update_memory" | "update_surface" | "notify_user" | "delegate_work" | "inspect_runtime" | "prepare_draft")[] | undefined;
|
|
464
|
+
considered_permission_grant_refs?: string[] | undefined;
|
|
465
|
+
};
|
|
466
|
+
payload_class: string;
|
|
467
|
+
provider_ref: string;
|
|
468
|
+
operation_id: string;
|
|
469
|
+
surface_ref: string;
|
|
470
|
+
expires_at: string;
|
|
471
|
+
result: "approval_required" | "suppressed" | "allowed" | "prohibited";
|
|
472
|
+
evaluation_id: string;
|
|
473
|
+
actor_ref: string;
|
|
474
|
+
capability_id?: string | undefined;
|
|
475
|
+
target_refs?: string[] | undefined;
|
|
476
|
+
auth_state_ref?: string | undefined;
|
|
477
|
+
permission_grant_refs?: string[] | undefined;
|
|
478
|
+
rejected_permission_grant_refs?: string[] | undefined;
|
|
479
|
+
relationship_policy_refs?: string[] | undefined;
|
|
480
|
+
quieting_policy_refs?: string[] | undefined;
|
|
481
|
+
privacy_policy_refs?: string[] | undefined;
|
|
482
|
+
runtime_control_refs?: string[] | undefined;
|
|
483
|
+
notification_policy_refs?: string[] | undefined;
|
|
484
|
+
readiness_ref?: string | undefined;
|
|
485
|
+
invalidation_bindings?: {
|
|
486
|
+
kind: "provider" | "auth" | "policy" | "target" | "surface" | "payload";
|
|
487
|
+
ref: string;
|
|
488
|
+
epoch?: string | undefined;
|
|
489
|
+
}[] | undefined;
|
|
490
|
+
}>;
|
|
491
|
+
internal_autonomy_default: z.ZodOptional<z.ZodObject<{
|
|
492
|
+
ref: z.ZodString;
|
|
493
|
+
result: z.ZodEnum<["eligible", "ineligible", "unknown"]>;
|
|
494
|
+
reason: z.ZodString;
|
|
495
|
+
capability_family: z.ZodEnum<["soil", "knowledge", "dream", "audit", "readiness"]>;
|
|
496
|
+
operation_class: z.ZodEnum<["soil_retrieval", "soil_context_evaluation", "soil_projection", "soil_materialization", "knowledge_search", "knowledge_recall", "knowledge_consolidation", "knowledge_quarantine", "knowledge_learning_record", "knowledge_transfer_detection", "dream_hint_selection", "dream_reuse_tracking", "dream_demotion", "dream_confidence_update", "dream_candidate_capture", "audit_append", "readiness_observation", "protected_target_mutation", "external_publish", "external_open", "cross_scope_auto_apply", "deletion", "notification", "browser_or_desktop_operation", "side_effecting_mcp", "foreign_plugin_execution"]>;
|
|
497
|
+
operation_id: z.ZodString;
|
|
498
|
+
capability_id: z.ZodOptional<z.ZodString>;
|
|
499
|
+
operation_kind: z.ZodEnum<["read", "search", "hint", "prepare", "send", "write", "publish", "delete", "mutate", "run"]>;
|
|
500
|
+
provider_ref: z.ZodString;
|
|
501
|
+
payload_class: z.ZodString;
|
|
502
|
+
locality: z.ZodEnum<["local_only", "not_local"]>;
|
|
503
|
+
side_effect_profile: z.ZodEnum<["none", "read", "send", "write", "publish", "delete", "mutate"]>;
|
|
504
|
+
reversibility: z.ZodEnum<["reversible", "append_only", "draft_only", "irreversible", "unknown"]>;
|
|
505
|
+
scope: z.ZodString;
|
|
506
|
+
target_class: z.ZodEnum<["generated_cache", "generated_snapshot", "generated_review_area", "internal_quarantine", "internal_learning_store", "dream_playbook_metadata", "audit_log", "readiness_observation", "protected_public_docs", "protected_user_authored_memory", "protected_hand_maintained_file", "protected_published_artifact", "protected_user_authored_skill", "external_surface", "browser_or_desktop", "side_effecting_mcp", "foreign_plugin", "third_party_system"]>;
|
|
507
|
+
target_disposition: z.ZodEnum<["allowed_internal", "quarantine", "proposal", "review", "approval_required", "blocked"]>;
|
|
508
|
+
target_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
509
|
+
protected_target_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
510
|
+
external_effect_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
511
|
+
guardrail_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
512
|
+
epoch: z.ZodOptional<z.ZodString>;
|
|
513
|
+
expires_at: z.ZodOptional<z.ZodString>;
|
|
514
|
+
}, "strict", z.ZodTypeAny, {
|
|
515
|
+
reversibility: "unknown" | "reversible" | "irreversible" | "append_only" | "draft_only";
|
|
516
|
+
reason: string;
|
|
517
|
+
ref: string;
|
|
518
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
519
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
520
|
+
payload_class: string;
|
|
521
|
+
provider_ref: string;
|
|
522
|
+
operation_id: string;
|
|
523
|
+
scope: string;
|
|
524
|
+
result: "unknown" | "eligible" | "ineligible";
|
|
525
|
+
guardrail_refs: string[];
|
|
526
|
+
target_refs: string[];
|
|
527
|
+
capability_family: "dream" | "soil" | "knowledge" | "audit" | "readiness";
|
|
528
|
+
operation_class: "notification" | "deletion" | "soil_retrieval" | "soil_context_evaluation" | "soil_projection" | "soil_materialization" | "knowledge_search" | "knowledge_recall" | "knowledge_consolidation" | "knowledge_quarantine" | "knowledge_learning_record" | "knowledge_transfer_detection" | "dream_hint_selection" | "dream_reuse_tracking" | "dream_demotion" | "dream_confidence_update" | "dream_candidate_capture" | "audit_append" | "readiness_observation" | "protected_target_mutation" | "external_publish" | "external_open" | "cross_scope_auto_apply" | "browser_or_desktop_operation" | "side_effecting_mcp" | "foreign_plugin_execution";
|
|
529
|
+
locality: "local_only" | "not_local";
|
|
530
|
+
target_class: "foreign_plugin" | "readiness_observation" | "side_effecting_mcp" | "generated_cache" | "generated_snapshot" | "generated_review_area" | "internal_quarantine" | "internal_learning_store" | "dream_playbook_metadata" | "audit_log" | "protected_public_docs" | "protected_user_authored_memory" | "protected_hand_maintained_file" | "protected_published_artifact" | "protected_user_authored_skill" | "external_surface" | "browser_or_desktop" | "third_party_system";
|
|
531
|
+
target_disposition: "blocked" | "approval_required" | "review" | "allowed_internal" | "quarantine" | "proposal";
|
|
532
|
+
protected_target_refs: string[];
|
|
533
|
+
external_effect_refs: string[];
|
|
534
|
+
capability_id?: string | undefined;
|
|
535
|
+
expires_at?: string | undefined;
|
|
536
|
+
epoch?: string | undefined;
|
|
537
|
+
}, {
|
|
538
|
+
reversibility: "unknown" | "reversible" | "irreversible" | "append_only" | "draft_only";
|
|
539
|
+
reason: string;
|
|
540
|
+
ref: string;
|
|
541
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
542
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
543
|
+
payload_class: string;
|
|
544
|
+
provider_ref: string;
|
|
545
|
+
operation_id: string;
|
|
546
|
+
scope: string;
|
|
547
|
+
result: "unknown" | "eligible" | "ineligible";
|
|
548
|
+
capability_family: "dream" | "soil" | "knowledge" | "audit" | "readiness";
|
|
549
|
+
operation_class: "notification" | "deletion" | "soil_retrieval" | "soil_context_evaluation" | "soil_projection" | "soil_materialization" | "knowledge_search" | "knowledge_recall" | "knowledge_consolidation" | "knowledge_quarantine" | "knowledge_learning_record" | "knowledge_transfer_detection" | "dream_hint_selection" | "dream_reuse_tracking" | "dream_demotion" | "dream_confidence_update" | "dream_candidate_capture" | "audit_append" | "readiness_observation" | "protected_target_mutation" | "external_publish" | "external_open" | "cross_scope_auto_apply" | "browser_or_desktop_operation" | "side_effecting_mcp" | "foreign_plugin_execution";
|
|
550
|
+
locality: "local_only" | "not_local";
|
|
551
|
+
target_class: "foreign_plugin" | "readiness_observation" | "side_effecting_mcp" | "generated_cache" | "generated_snapshot" | "generated_review_area" | "internal_quarantine" | "internal_learning_store" | "dream_playbook_metadata" | "audit_log" | "protected_public_docs" | "protected_user_authored_memory" | "protected_hand_maintained_file" | "protected_published_artifact" | "protected_user_authored_skill" | "external_surface" | "browser_or_desktop" | "third_party_system";
|
|
552
|
+
target_disposition: "blocked" | "approval_required" | "review" | "allowed_internal" | "quarantine" | "proposal";
|
|
553
|
+
capability_id?: string | undefined;
|
|
554
|
+
expires_at?: string | undefined;
|
|
555
|
+
guardrail_refs?: string[] | undefined;
|
|
556
|
+
epoch?: string | undefined;
|
|
557
|
+
target_refs?: string[] | undefined;
|
|
558
|
+
protected_target_refs?: string[] | undefined;
|
|
559
|
+
external_effect_refs?: string[] | undefined;
|
|
560
|
+
}>>;
|
|
561
|
+
user_directed: z.ZodDefault<z.ZodBoolean>;
|
|
562
|
+
explicit_user_instruction_ref: z.ZodOptional<z.ZodString>;
|
|
563
|
+
active_surface_ref: z.ZodOptional<z.ZodString>;
|
|
564
|
+
relationship_permissions: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
565
|
+
ref: z.ZodString;
|
|
566
|
+
result: z.ZodEnum<["allowed", "approval_required", "prepare_only", "prohibited", "suppressed", "downgraded"]>;
|
|
567
|
+
reason: z.ZodString;
|
|
568
|
+
epoch: z.ZodOptional<z.ZodString>;
|
|
569
|
+
expires_at: z.ZodOptional<z.ZodString>;
|
|
570
|
+
}, "strict", z.ZodTypeAny, {
|
|
571
|
+
reason: string;
|
|
572
|
+
ref: string;
|
|
573
|
+
result: "approval_required" | "suppressed" | "allowed" | "prepare_only" | "prohibited" | "downgraded";
|
|
574
|
+
expires_at?: string | undefined;
|
|
575
|
+
epoch?: string | undefined;
|
|
576
|
+
}, {
|
|
577
|
+
reason: string;
|
|
578
|
+
ref: string;
|
|
579
|
+
result: "approval_required" | "suppressed" | "allowed" | "prepare_only" | "prohibited" | "downgraded";
|
|
580
|
+
expires_at?: string | undefined;
|
|
581
|
+
epoch?: string | undefined;
|
|
582
|
+
}>, "many">>;
|
|
583
|
+
quieting_policy: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
584
|
+
ref: z.ZodString;
|
|
585
|
+
result: z.ZodEnum<["allowed", "approval_required", "prepare_only", "prohibited", "suppressed", "downgraded"]>;
|
|
586
|
+
reason: z.ZodString;
|
|
587
|
+
epoch: z.ZodOptional<z.ZodString>;
|
|
588
|
+
expires_at: z.ZodOptional<z.ZodString>;
|
|
589
|
+
}, "strict", z.ZodTypeAny, {
|
|
590
|
+
reason: string;
|
|
591
|
+
ref: string;
|
|
592
|
+
result: "approval_required" | "suppressed" | "allowed" | "prepare_only" | "prohibited" | "downgraded";
|
|
593
|
+
expires_at?: string | undefined;
|
|
594
|
+
epoch?: string | undefined;
|
|
595
|
+
}, {
|
|
596
|
+
reason: string;
|
|
597
|
+
ref: string;
|
|
598
|
+
result: "approval_required" | "suppressed" | "allowed" | "prepare_only" | "prohibited" | "downgraded";
|
|
599
|
+
expires_at?: string | undefined;
|
|
600
|
+
epoch?: string | undefined;
|
|
601
|
+
}>, "many">>;
|
|
602
|
+
privacy_context: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
603
|
+
ref: z.ZodString;
|
|
604
|
+
result: z.ZodEnum<["allowed", "approval_required", "prepare_only", "prohibited", "suppressed", "downgraded"]>;
|
|
605
|
+
reason: z.ZodString;
|
|
606
|
+
epoch: z.ZodOptional<z.ZodString>;
|
|
607
|
+
expires_at: z.ZodOptional<z.ZodString>;
|
|
608
|
+
}, "strict", z.ZodTypeAny, {
|
|
609
|
+
reason: string;
|
|
610
|
+
ref: string;
|
|
611
|
+
result: "approval_required" | "suppressed" | "allowed" | "prepare_only" | "prohibited" | "downgraded";
|
|
612
|
+
expires_at?: string | undefined;
|
|
613
|
+
epoch?: string | undefined;
|
|
614
|
+
}, {
|
|
615
|
+
reason: string;
|
|
616
|
+
ref: string;
|
|
617
|
+
result: "approval_required" | "suppressed" | "allowed" | "prepare_only" | "prohibited" | "downgraded";
|
|
618
|
+
expires_at?: string | undefined;
|
|
619
|
+
epoch?: string | undefined;
|
|
620
|
+
}>, "many">>;
|
|
621
|
+
runtime_control_state: z.ZodOptional<z.ZodObject<{
|
|
622
|
+
ref: z.ZodString;
|
|
623
|
+
state: z.ZodEnum<["available", "approval_required", "suspended", "prohibited"]>;
|
|
624
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
625
|
+
epoch: z.ZodOptional<z.ZodString>;
|
|
626
|
+
expires_at: z.ZodOptional<z.ZodString>;
|
|
627
|
+
}, "strict", z.ZodTypeAny, {
|
|
628
|
+
state: "suspended" | "approval_required" | "available" | "prohibited";
|
|
629
|
+
ref: string;
|
|
630
|
+
reason?: string | undefined;
|
|
631
|
+
expires_at?: string | undefined;
|
|
632
|
+
epoch?: string | undefined;
|
|
633
|
+
}, {
|
|
634
|
+
state: "suspended" | "approval_required" | "available" | "prohibited";
|
|
635
|
+
ref: string;
|
|
636
|
+
reason?: string | undefined;
|
|
637
|
+
expires_at?: string | undefined;
|
|
638
|
+
epoch?: string | undefined;
|
|
639
|
+
}>>;
|
|
640
|
+
companion_state: z.ZodOptional<z.ZodObject<{
|
|
641
|
+
ref: z.ZodString;
|
|
642
|
+
mode: z.ZodEnum<["active", "quieted", "suspended", "holding_back"]>;
|
|
643
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
644
|
+
epoch: z.ZodOptional<z.ZodString>;
|
|
645
|
+
}, "strict", z.ZodTypeAny, {
|
|
646
|
+
mode: "active" | "suspended" | "quieted" | "holding_back";
|
|
647
|
+
ref: string;
|
|
648
|
+
reason?: string | undefined;
|
|
649
|
+
epoch?: string | undefined;
|
|
650
|
+
}, {
|
|
651
|
+
mode: "active" | "suspended" | "quieted" | "holding_back";
|
|
652
|
+
ref: string;
|
|
653
|
+
reason?: string | undefined;
|
|
654
|
+
epoch?: string | undefined;
|
|
655
|
+
}>>;
|
|
656
|
+
auth_state: z.ZodOptional<z.ZodObject<{
|
|
657
|
+
ref: z.ZodString;
|
|
658
|
+
status: z.ZodEnum<["valid", "missing", "expired", "stale", "revoked"]>;
|
|
659
|
+
epoch: z.ZodOptional<z.ZodString>;
|
|
660
|
+
expires_at: z.ZodOptional<z.ZodString>;
|
|
661
|
+
}, "strict", z.ZodTypeAny, {
|
|
662
|
+
status: "valid" | "stale" | "expired" | "missing" | "revoked";
|
|
663
|
+
ref: string;
|
|
664
|
+
expires_at?: string | undefined;
|
|
665
|
+
epoch?: string | undefined;
|
|
666
|
+
}, {
|
|
667
|
+
status: "valid" | "stale" | "expired" | "missing" | "revoked";
|
|
668
|
+
ref: string;
|
|
669
|
+
expires_at?: string | undefined;
|
|
670
|
+
epoch?: string | undefined;
|
|
671
|
+
}>>;
|
|
672
|
+
guardrail_state: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
673
|
+
ref: z.ZodString;
|
|
674
|
+
result: z.ZodEnum<["allowed", "approval_required", "prepare_only", "prohibited", "suppressed", "downgraded"]>;
|
|
675
|
+
reason: z.ZodString;
|
|
676
|
+
epoch: z.ZodOptional<z.ZodString>;
|
|
677
|
+
expires_at: z.ZodOptional<z.ZodString>;
|
|
678
|
+
}, "strict", z.ZodTypeAny, {
|
|
679
|
+
reason: string;
|
|
680
|
+
ref: string;
|
|
681
|
+
result: "approval_required" | "suppressed" | "allowed" | "prepare_only" | "prohibited" | "downgraded";
|
|
682
|
+
expires_at?: string | undefined;
|
|
683
|
+
epoch?: string | undefined;
|
|
684
|
+
}, {
|
|
685
|
+
reason: string;
|
|
686
|
+
ref: string;
|
|
687
|
+
result: "approval_required" | "suppressed" | "allowed" | "prepare_only" | "prohibited" | "downgraded";
|
|
688
|
+
expires_at?: string | undefined;
|
|
689
|
+
epoch?: string | undefined;
|
|
690
|
+
}>, "many">>;
|
|
691
|
+
backpressure_state: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
692
|
+
ref: z.ZodString;
|
|
693
|
+
result: z.ZodEnum<["allowed", "approval_required", "prepare_only", "prohibited", "suppressed", "downgraded"]>;
|
|
694
|
+
reason: z.ZodString;
|
|
695
|
+
epoch: z.ZodOptional<z.ZodString>;
|
|
696
|
+
expires_at: z.ZodOptional<z.ZodString>;
|
|
697
|
+
}, "strict", z.ZodTypeAny, {
|
|
698
|
+
reason: string;
|
|
699
|
+
ref: string;
|
|
700
|
+
result: "approval_required" | "suppressed" | "allowed" | "prepare_only" | "prohibited" | "downgraded";
|
|
701
|
+
expires_at?: string | undefined;
|
|
702
|
+
epoch?: string | undefined;
|
|
703
|
+
}, {
|
|
704
|
+
reason: string;
|
|
705
|
+
ref: string;
|
|
706
|
+
result: "approval_required" | "suppressed" | "allowed" | "prepare_only" | "prohibited" | "downgraded";
|
|
707
|
+
expires_at?: string | undefined;
|
|
708
|
+
epoch?: string | undefined;
|
|
709
|
+
}>, "many">>;
|
|
710
|
+
trust_profile: z.ZodOptional<z.ZodObject<{
|
|
711
|
+
ref: z.ZodString;
|
|
712
|
+
provider_ref: z.ZodString;
|
|
713
|
+
trust_level: z.ZodDefault<z.ZodEnum<["unknown", "low", "medium", "high"]>>;
|
|
714
|
+
positive_feedback_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
715
|
+
negative_feedback_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
716
|
+
epoch: z.ZodOptional<z.ZodString>;
|
|
717
|
+
}, "strict", z.ZodTypeAny, {
|
|
718
|
+
ref: string;
|
|
719
|
+
provider_ref: string;
|
|
720
|
+
trust_level: "unknown" | "low" | "high" | "medium";
|
|
721
|
+
positive_feedback_refs: string[];
|
|
722
|
+
negative_feedback_refs: string[];
|
|
723
|
+
epoch?: string | undefined;
|
|
724
|
+
}, {
|
|
725
|
+
ref: string;
|
|
726
|
+
provider_ref: string;
|
|
727
|
+
epoch?: string | undefined;
|
|
728
|
+
trust_level?: "unknown" | "low" | "high" | "medium" | undefined;
|
|
729
|
+
positive_feedback_refs?: string[] | undefined;
|
|
730
|
+
negative_feedback_refs?: string[] | undefined;
|
|
731
|
+
}>>;
|
|
732
|
+
verification_profile: z.ZodOptional<z.ZodObject<{
|
|
733
|
+
ref: z.ZodString;
|
|
734
|
+
provider_ref: z.ZodString;
|
|
735
|
+
verification_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
736
|
+
audit_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
737
|
+
epoch: z.ZodOptional<z.ZodString>;
|
|
738
|
+
}, "strict", z.ZodTypeAny, {
|
|
739
|
+
ref: string;
|
|
740
|
+
provider_ref: string;
|
|
741
|
+
verification_refs: string[];
|
|
742
|
+
audit_refs: string[];
|
|
743
|
+
epoch?: string | undefined;
|
|
744
|
+
}, {
|
|
745
|
+
ref: string;
|
|
746
|
+
provider_ref: string;
|
|
747
|
+
verification_refs?: string[] | undefined;
|
|
748
|
+
audit_refs?: string[] | undefined;
|
|
749
|
+
epoch?: string | undefined;
|
|
750
|
+
}>>;
|
|
751
|
+
recent_feedback: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
752
|
+
ref: z.ZodString;
|
|
753
|
+
outcome: z.ZodEnum<["accepted", "ignored", "dismissed", "corrected", "overreach"]>;
|
|
754
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
755
|
+
overreach_indicators: z.ZodDefault<z.ZodArray<z.ZodEnum<["too_frequent", "wrong_context", "sensitive", "unwanted_timing"]>, "many">>;
|
|
756
|
+
follow_through_success: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
757
|
+
recorded_at: z.ZodOptional<z.ZodString>;
|
|
758
|
+
policy_adjustment: z.ZodOptional<z.ZodEnum<["reduce_frequency", "require_confirmation", "narrow_scope", "avoid_sensitive_context"]>>;
|
|
759
|
+
}, "strict", z.ZodTypeAny, {
|
|
760
|
+
outcome: "accepted" | "corrected" | "ignored" | "dismissed" | "overreach";
|
|
761
|
+
ref: string;
|
|
762
|
+
overreach_indicators: ("sensitive" | "too_frequent" | "wrong_context" | "unwanted_timing")[];
|
|
763
|
+
follow_through_success: boolean | null;
|
|
764
|
+
reason?: string | undefined;
|
|
765
|
+
recorded_at?: string | undefined;
|
|
766
|
+
policy_adjustment?: "narrow_scope" | "require_confirmation" | "reduce_frequency" | "avoid_sensitive_context" | undefined;
|
|
767
|
+
}, {
|
|
768
|
+
outcome: "accepted" | "corrected" | "ignored" | "dismissed" | "overreach";
|
|
769
|
+
ref: string;
|
|
770
|
+
reason?: string | undefined;
|
|
771
|
+
recorded_at?: string | undefined;
|
|
772
|
+
overreach_indicators?: ("sensitive" | "too_frequent" | "wrong_context" | "unwanted_timing")[] | undefined;
|
|
773
|
+
follow_through_success?: boolean | null | undefined;
|
|
774
|
+
policy_adjustment?: "narrow_scope" | "require_confirmation" | "reduce_frequency" | "avoid_sensitive_context" | undefined;
|
|
775
|
+
}>, "many">>;
|
|
776
|
+
context_authority_evidence: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
777
|
+
ref: z.ZodString;
|
|
778
|
+
kind: z.ZodEnum<["dream_hint", "memory", "route_config", "past_execution", "auth_session", "mcp_enabled", "notification_subscription"]>;
|
|
779
|
+
epoch: z.ZodOptional<z.ZodString>;
|
|
780
|
+
}, "strict", z.ZodTypeAny, {
|
|
781
|
+
kind: "memory" | "dream_hint" | "route_config" | "past_execution" | "auth_session" | "mcp_enabled" | "notification_subscription";
|
|
782
|
+
ref: string;
|
|
783
|
+
epoch?: string | undefined;
|
|
784
|
+
}, {
|
|
785
|
+
kind: "memory" | "dream_hint" | "route_config" | "past_execution" | "auth_session" | "mcp_enabled" | "notification_subscription";
|
|
786
|
+
ref: string;
|
|
787
|
+
epoch?: string | undefined;
|
|
788
|
+
}>, "many">>;
|
|
789
|
+
invalidation_evidence: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
790
|
+
kind: z.ZodEnum<["revocation", "correction", "tombstone", "quieting", "suspend", "policy_downgrade"]>;
|
|
791
|
+
ref: z.ZodString;
|
|
792
|
+
reason: z.ZodString;
|
|
793
|
+
epoch: z.ZodOptional<z.ZodString>;
|
|
794
|
+
}, "strict", z.ZodTypeAny, {
|
|
795
|
+
kind: "correction" | "tombstone" | "quieting" | "suspend" | "revocation" | "policy_downgrade";
|
|
796
|
+
reason: string;
|
|
797
|
+
ref: string;
|
|
798
|
+
epoch?: string | undefined;
|
|
799
|
+
}, {
|
|
800
|
+
kind: "correction" | "tombstone" | "quieting" | "suspend" | "revocation" | "policy_downgrade";
|
|
801
|
+
reason: string;
|
|
802
|
+
ref: string;
|
|
803
|
+
epoch?: string | undefined;
|
|
804
|
+
}>, "many">>;
|
|
805
|
+
blast_radius: z.ZodDefault<z.ZodEnum<["local", "workspace", "project", "external", "high"]>>;
|
|
806
|
+
reversibility: z.ZodOptional<z.ZodEnum<["reversible", "append_only", "draft_only", "irreversible", "unknown"]>>;
|
|
807
|
+
external_side_effect: z.ZodOptional<z.ZodBoolean>;
|
|
808
|
+
privacy_sensitivity: z.ZodDefault<z.ZodEnum<["none", "low", "medium", "high"]>>;
|
|
809
|
+
evaluated_at: z.ZodOptional<z.ZodString>;
|
|
810
|
+
expires_at: z.ZodOptional<z.ZodString>;
|
|
811
|
+
ttl_ms: z.ZodOptional<z.ZodNumber>;
|
|
812
|
+
decision_id: z.ZodOptional<z.ZodString>;
|
|
813
|
+
}, "strict", z.ZodTypeAny, {
|
|
814
|
+
blast_radius: "high" | "external" | "project" | "workspace" | "local";
|
|
815
|
+
relationship_permissions: {
|
|
816
|
+
reason: string;
|
|
817
|
+
ref: string;
|
|
818
|
+
result: "approval_required" | "suppressed" | "allowed" | "prepare_only" | "prohibited" | "downgraded";
|
|
819
|
+
expires_at?: string | undefined;
|
|
820
|
+
epoch?: string | undefined;
|
|
821
|
+
}[];
|
|
822
|
+
guardrail_state: {
|
|
823
|
+
reason: string;
|
|
824
|
+
ref: string;
|
|
825
|
+
result: "approval_required" | "suppressed" | "allowed" | "prepare_only" | "prohibited" | "downgraded";
|
|
826
|
+
expires_at?: string | undefined;
|
|
827
|
+
epoch?: string | undefined;
|
|
828
|
+
}[];
|
|
829
|
+
backpressure_state: {
|
|
830
|
+
reason: string;
|
|
831
|
+
ref: string;
|
|
832
|
+
result: "approval_required" | "suppressed" | "allowed" | "prepare_only" | "prohibited" | "downgraded";
|
|
833
|
+
expires_at?: string | undefined;
|
|
834
|
+
epoch?: string | undefined;
|
|
835
|
+
}[];
|
|
836
|
+
invalidation_evidence: {
|
|
837
|
+
kind: "correction" | "tombstone" | "quieting" | "suspend" | "revocation" | "policy_downgrade";
|
|
838
|
+
reason: string;
|
|
839
|
+
ref: string;
|
|
840
|
+
epoch?: string | undefined;
|
|
841
|
+
}[];
|
|
842
|
+
operation_plan: {
|
|
843
|
+
reversibility: "unknown" | "reversible" | "irreversible" | "append_only" | "draft_only";
|
|
844
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
845
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
846
|
+
external_action_authority: boolean;
|
|
847
|
+
payload_class: string;
|
|
848
|
+
provider_ref: string;
|
|
849
|
+
operation_id: string;
|
|
850
|
+
risk_class: "low" | "high" | "medium";
|
|
851
|
+
inspectable: boolean;
|
|
852
|
+
local_only: boolean;
|
|
853
|
+
target_refs: string[];
|
|
854
|
+
expected_user_visible_effect: boolean;
|
|
855
|
+
advisory_only: boolean;
|
|
856
|
+
preparable_when_blocked: boolean;
|
|
857
|
+
capability_id?: string | undefined;
|
|
858
|
+
privacy_profile?: "local_private" | "workspace_private" | "external_service" | "user_visible" | undefined;
|
|
859
|
+
setup_guidance_ref?: string | undefined;
|
|
860
|
+
};
|
|
861
|
+
readiness_snapshots: {
|
|
862
|
+
evaluated_at: string;
|
|
863
|
+
tool_name: string;
|
|
864
|
+
schema_version: "capability-readiness-snapshot/v1";
|
|
865
|
+
evidence_refs: string[];
|
|
866
|
+
state: "blocked" | "stored" | "discoverable" | "loadable" | "compatible" | "configured" | "authenticated" | "executable_verified" | "degraded";
|
|
867
|
+
metadata: Record<string, unknown>;
|
|
868
|
+
capability_id: string;
|
|
869
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
870
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
871
|
+
payload_class: string;
|
|
872
|
+
snapshot_id: string;
|
|
873
|
+
provider_ref: string;
|
|
874
|
+
asset_ref: string;
|
|
875
|
+
operation_id: string;
|
|
876
|
+
risk_class: "low" | "high" | "medium";
|
|
877
|
+
passed_gates: ("blocked" | "stored" | "discoverable" | "loadable" | "compatible" | "configured" | "authenticated" | "executable_verified" | "degraded")[];
|
|
878
|
+
failed_gates: ("blocked" | "stored" | "discoverable" | "loadable" | "compatible" | "configured" | "authenticated" | "executable_verified" | "degraded")[];
|
|
879
|
+
degraded_gates: ("blocked" | "stored" | "discoverable" | "loadable" | "compatible" | "configured" | "authenticated" | "executable_verified" | "degraded")[];
|
|
880
|
+
missing_config_refs: string[];
|
|
881
|
+
missing_auth_refs: string[];
|
|
882
|
+
verification_refs: string[];
|
|
883
|
+
stale_refs: string[];
|
|
884
|
+
safe_user_visible_label: "Recorded, not executable" | "Setup required" | "Auth required" | "Configured, verification required" | "Execution substrate verified" | "Degraded" | "Blocked";
|
|
885
|
+
}[];
|
|
886
|
+
admission_evaluation: {
|
|
887
|
+
rationale: string[];
|
|
888
|
+
evaluated_at: string;
|
|
889
|
+
schema_version: "admission-policy-evaluation/v1";
|
|
890
|
+
metadata: {
|
|
891
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
892
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
893
|
+
required_permission_capabilities: ("read_workspace" | "write_workspace" | "run_tests" | "run_safe_local_commands" | "update_memory" | "update_surface" | "notify_user" | "delegate_work" | "inspect_runtime" | "prepare_draft")[];
|
|
894
|
+
considered_permission_grant_refs: string[];
|
|
895
|
+
};
|
|
896
|
+
payload_class: string;
|
|
897
|
+
provider_ref: string;
|
|
898
|
+
operation_id: string;
|
|
899
|
+
surface_ref: string;
|
|
900
|
+
expires_at: string;
|
|
901
|
+
result: "approval_required" | "suppressed" | "allowed" | "prohibited";
|
|
902
|
+
target_refs: string[];
|
|
903
|
+
evaluation_id: string;
|
|
904
|
+
actor_ref: string;
|
|
905
|
+
permission_grant_refs: string[];
|
|
906
|
+
rejected_permission_grant_refs: string[];
|
|
907
|
+
relationship_policy_refs: string[];
|
|
908
|
+
quieting_policy_refs: string[];
|
|
909
|
+
privacy_policy_refs: string[];
|
|
910
|
+
runtime_control_refs: string[];
|
|
911
|
+
notification_policy_refs: string[];
|
|
912
|
+
invalidation_bindings: {
|
|
913
|
+
kind: "provider" | "auth" | "policy" | "target" | "surface" | "payload";
|
|
914
|
+
ref: string;
|
|
915
|
+
epoch?: string | undefined;
|
|
916
|
+
}[];
|
|
917
|
+
capability_id?: string | undefined;
|
|
918
|
+
auth_state_ref?: string | undefined;
|
|
919
|
+
readiness_ref?: string | undefined;
|
|
920
|
+
};
|
|
921
|
+
user_directed: boolean;
|
|
922
|
+
quieting_policy: {
|
|
923
|
+
reason: string;
|
|
924
|
+
ref: string;
|
|
925
|
+
result: "approval_required" | "suppressed" | "allowed" | "prepare_only" | "prohibited" | "downgraded";
|
|
926
|
+
expires_at?: string | undefined;
|
|
927
|
+
epoch?: string | undefined;
|
|
928
|
+
}[];
|
|
929
|
+
privacy_context: {
|
|
930
|
+
reason: string;
|
|
931
|
+
ref: string;
|
|
932
|
+
result: "approval_required" | "suppressed" | "allowed" | "prepare_only" | "prohibited" | "downgraded";
|
|
933
|
+
expires_at?: string | undefined;
|
|
934
|
+
epoch?: string | undefined;
|
|
935
|
+
}[];
|
|
936
|
+
recent_feedback: {
|
|
937
|
+
outcome: "accepted" | "corrected" | "ignored" | "dismissed" | "overreach";
|
|
938
|
+
ref: string;
|
|
939
|
+
overreach_indicators: ("sensitive" | "too_frequent" | "wrong_context" | "unwanted_timing")[];
|
|
940
|
+
follow_through_success: boolean | null;
|
|
941
|
+
reason?: string | undefined;
|
|
942
|
+
recorded_at?: string | undefined;
|
|
943
|
+
policy_adjustment?: "narrow_scope" | "require_confirmation" | "reduce_frequency" | "avoid_sensitive_context" | undefined;
|
|
944
|
+
}[];
|
|
945
|
+
context_authority_evidence: {
|
|
946
|
+
kind: "memory" | "dream_hint" | "route_config" | "past_execution" | "auth_session" | "mcp_enabled" | "notification_subscription";
|
|
947
|
+
ref: string;
|
|
948
|
+
epoch?: string | undefined;
|
|
949
|
+
}[];
|
|
950
|
+
privacy_sensitivity: "low" | "high" | "medium" | "none";
|
|
951
|
+
evaluated_at?: string | undefined;
|
|
952
|
+
reversibility?: "unknown" | "reversible" | "irreversible" | "append_only" | "draft_only" | undefined;
|
|
953
|
+
expires_at?: string | undefined;
|
|
954
|
+
active_surface_ref?: string | undefined;
|
|
955
|
+
ttl_ms?: number | undefined;
|
|
956
|
+
companion_state?: {
|
|
957
|
+
mode: "active" | "suspended" | "quieted" | "holding_back";
|
|
958
|
+
ref: string;
|
|
959
|
+
reason?: string | undefined;
|
|
960
|
+
epoch?: string | undefined;
|
|
961
|
+
} | undefined;
|
|
962
|
+
external_side_effect?: boolean | undefined;
|
|
963
|
+
decision_id?: string | undefined;
|
|
964
|
+
internal_autonomy_default?: {
|
|
965
|
+
reversibility: "unknown" | "reversible" | "irreversible" | "append_only" | "draft_only";
|
|
966
|
+
reason: string;
|
|
967
|
+
ref: string;
|
|
968
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
969
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
970
|
+
payload_class: string;
|
|
971
|
+
provider_ref: string;
|
|
972
|
+
operation_id: string;
|
|
973
|
+
scope: string;
|
|
974
|
+
result: "unknown" | "eligible" | "ineligible";
|
|
975
|
+
guardrail_refs: string[];
|
|
976
|
+
target_refs: string[];
|
|
977
|
+
capability_family: "dream" | "soil" | "knowledge" | "audit" | "readiness";
|
|
978
|
+
operation_class: "notification" | "deletion" | "soil_retrieval" | "soil_context_evaluation" | "soil_projection" | "soil_materialization" | "knowledge_search" | "knowledge_recall" | "knowledge_consolidation" | "knowledge_quarantine" | "knowledge_learning_record" | "knowledge_transfer_detection" | "dream_hint_selection" | "dream_reuse_tracking" | "dream_demotion" | "dream_confidence_update" | "dream_candidate_capture" | "audit_append" | "readiness_observation" | "protected_target_mutation" | "external_publish" | "external_open" | "cross_scope_auto_apply" | "browser_or_desktop_operation" | "side_effecting_mcp" | "foreign_plugin_execution";
|
|
979
|
+
locality: "local_only" | "not_local";
|
|
980
|
+
target_class: "foreign_plugin" | "readiness_observation" | "side_effecting_mcp" | "generated_cache" | "generated_snapshot" | "generated_review_area" | "internal_quarantine" | "internal_learning_store" | "dream_playbook_metadata" | "audit_log" | "protected_public_docs" | "protected_user_authored_memory" | "protected_hand_maintained_file" | "protected_published_artifact" | "protected_user_authored_skill" | "external_surface" | "browser_or_desktop" | "third_party_system";
|
|
981
|
+
target_disposition: "blocked" | "approval_required" | "review" | "allowed_internal" | "quarantine" | "proposal";
|
|
982
|
+
protected_target_refs: string[];
|
|
983
|
+
external_effect_refs: string[];
|
|
984
|
+
capability_id?: string | undefined;
|
|
985
|
+
expires_at?: string | undefined;
|
|
986
|
+
epoch?: string | undefined;
|
|
987
|
+
} | undefined;
|
|
988
|
+
explicit_user_instruction_ref?: string | undefined;
|
|
989
|
+
runtime_control_state?: {
|
|
990
|
+
state: "suspended" | "approval_required" | "available" | "prohibited";
|
|
991
|
+
ref: string;
|
|
992
|
+
reason?: string | undefined;
|
|
993
|
+
expires_at?: string | undefined;
|
|
994
|
+
epoch?: string | undefined;
|
|
995
|
+
} | undefined;
|
|
996
|
+
auth_state?: {
|
|
997
|
+
status: "valid" | "stale" | "expired" | "missing" | "revoked";
|
|
998
|
+
ref: string;
|
|
999
|
+
expires_at?: string | undefined;
|
|
1000
|
+
epoch?: string | undefined;
|
|
1001
|
+
} | undefined;
|
|
1002
|
+
trust_profile?: {
|
|
1003
|
+
ref: string;
|
|
1004
|
+
provider_ref: string;
|
|
1005
|
+
trust_level: "unknown" | "low" | "high" | "medium";
|
|
1006
|
+
positive_feedback_refs: string[];
|
|
1007
|
+
negative_feedback_refs: string[];
|
|
1008
|
+
epoch?: string | undefined;
|
|
1009
|
+
} | undefined;
|
|
1010
|
+
verification_profile?: {
|
|
1011
|
+
ref: string;
|
|
1012
|
+
provider_ref: string;
|
|
1013
|
+
verification_refs: string[];
|
|
1014
|
+
audit_refs: string[];
|
|
1015
|
+
epoch?: string | undefined;
|
|
1016
|
+
} | undefined;
|
|
1017
|
+
}, {
|
|
1018
|
+
operation_plan: {
|
|
1019
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
1020
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
1021
|
+
payload_class: string;
|
|
1022
|
+
provider_ref: string;
|
|
1023
|
+
operation_id: string;
|
|
1024
|
+
reversibility?: "unknown" | "reversible" | "irreversible" | "append_only" | "draft_only" | undefined;
|
|
1025
|
+
capability_id?: string | undefined;
|
|
1026
|
+
privacy_profile?: "local_private" | "workspace_private" | "external_service" | "user_visible" | undefined;
|
|
1027
|
+
external_action_authority?: boolean | undefined;
|
|
1028
|
+
risk_class?: "low" | "high" | "medium" | undefined;
|
|
1029
|
+
inspectable?: boolean | undefined;
|
|
1030
|
+
local_only?: boolean | undefined;
|
|
1031
|
+
target_refs?: string[] | undefined;
|
|
1032
|
+
expected_user_visible_effect?: boolean | undefined;
|
|
1033
|
+
advisory_only?: boolean | undefined;
|
|
1034
|
+
preparable_when_blocked?: boolean | undefined;
|
|
1035
|
+
setup_guidance_ref?: string | undefined;
|
|
1036
|
+
};
|
|
1037
|
+
admission_evaluation: {
|
|
1038
|
+
rationale: string[];
|
|
1039
|
+
evaluated_at: string;
|
|
1040
|
+
schema_version: "admission-policy-evaluation/v1";
|
|
1041
|
+
metadata: {
|
|
1042
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
1043
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
1044
|
+
required_permission_capabilities?: ("read_workspace" | "write_workspace" | "run_tests" | "run_safe_local_commands" | "update_memory" | "update_surface" | "notify_user" | "delegate_work" | "inspect_runtime" | "prepare_draft")[] | undefined;
|
|
1045
|
+
considered_permission_grant_refs?: string[] | undefined;
|
|
1046
|
+
};
|
|
1047
|
+
payload_class: string;
|
|
1048
|
+
provider_ref: string;
|
|
1049
|
+
operation_id: string;
|
|
1050
|
+
surface_ref: string;
|
|
1051
|
+
expires_at: string;
|
|
1052
|
+
result: "approval_required" | "suppressed" | "allowed" | "prohibited";
|
|
1053
|
+
evaluation_id: string;
|
|
1054
|
+
actor_ref: string;
|
|
1055
|
+
capability_id?: string | undefined;
|
|
1056
|
+
target_refs?: string[] | undefined;
|
|
1057
|
+
auth_state_ref?: string | undefined;
|
|
1058
|
+
permission_grant_refs?: string[] | undefined;
|
|
1059
|
+
rejected_permission_grant_refs?: string[] | undefined;
|
|
1060
|
+
relationship_policy_refs?: string[] | undefined;
|
|
1061
|
+
quieting_policy_refs?: string[] | undefined;
|
|
1062
|
+
privacy_policy_refs?: string[] | undefined;
|
|
1063
|
+
runtime_control_refs?: string[] | undefined;
|
|
1064
|
+
notification_policy_refs?: string[] | undefined;
|
|
1065
|
+
readiness_ref?: string | undefined;
|
|
1066
|
+
invalidation_bindings?: {
|
|
1067
|
+
kind: "provider" | "auth" | "policy" | "target" | "surface" | "payload";
|
|
1068
|
+
ref: string;
|
|
1069
|
+
epoch?: string | undefined;
|
|
1070
|
+
}[] | undefined;
|
|
1071
|
+
};
|
|
1072
|
+
evaluated_at?: string | undefined;
|
|
1073
|
+
blast_radius?: "high" | "external" | "project" | "workspace" | "local" | undefined;
|
|
1074
|
+
reversibility?: "unknown" | "reversible" | "irreversible" | "append_only" | "draft_only" | undefined;
|
|
1075
|
+
relationship_permissions?: {
|
|
1076
|
+
reason: string;
|
|
1077
|
+
ref: string;
|
|
1078
|
+
result: "approval_required" | "suppressed" | "allowed" | "prepare_only" | "prohibited" | "downgraded";
|
|
1079
|
+
expires_at?: string | undefined;
|
|
1080
|
+
epoch?: string | undefined;
|
|
1081
|
+
}[] | undefined;
|
|
1082
|
+
expires_at?: string | undefined;
|
|
1083
|
+
guardrail_state?: {
|
|
1084
|
+
reason: string;
|
|
1085
|
+
ref: string;
|
|
1086
|
+
result: "approval_required" | "suppressed" | "allowed" | "prepare_only" | "prohibited" | "downgraded";
|
|
1087
|
+
expires_at?: string | undefined;
|
|
1088
|
+
epoch?: string | undefined;
|
|
1089
|
+
}[] | undefined;
|
|
1090
|
+
backpressure_state?: {
|
|
1091
|
+
reason: string;
|
|
1092
|
+
ref: string;
|
|
1093
|
+
result: "approval_required" | "suppressed" | "allowed" | "prepare_only" | "prohibited" | "downgraded";
|
|
1094
|
+
expires_at?: string | undefined;
|
|
1095
|
+
epoch?: string | undefined;
|
|
1096
|
+
}[] | undefined;
|
|
1097
|
+
active_surface_ref?: string | undefined;
|
|
1098
|
+
ttl_ms?: number | undefined;
|
|
1099
|
+
companion_state?: {
|
|
1100
|
+
mode: "active" | "suspended" | "quieted" | "holding_back";
|
|
1101
|
+
ref: string;
|
|
1102
|
+
reason?: string | undefined;
|
|
1103
|
+
epoch?: string | undefined;
|
|
1104
|
+
} | undefined;
|
|
1105
|
+
external_side_effect?: boolean | undefined;
|
|
1106
|
+
decision_id?: string | undefined;
|
|
1107
|
+
invalidation_evidence?: {
|
|
1108
|
+
kind: "correction" | "tombstone" | "quieting" | "suspend" | "revocation" | "policy_downgrade";
|
|
1109
|
+
reason: string;
|
|
1110
|
+
ref: string;
|
|
1111
|
+
epoch?: string | undefined;
|
|
1112
|
+
}[] | undefined;
|
|
1113
|
+
readiness_snapshots?: {
|
|
1114
|
+
evaluated_at: string;
|
|
1115
|
+
tool_name: string;
|
|
1116
|
+
schema_version: "capability-readiness-snapshot/v1";
|
|
1117
|
+
state: "blocked" | "stored" | "discoverable" | "loadable" | "compatible" | "configured" | "authenticated" | "executable_verified" | "degraded";
|
|
1118
|
+
capability_id: string;
|
|
1119
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
1120
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
1121
|
+
payload_class: string;
|
|
1122
|
+
snapshot_id: string;
|
|
1123
|
+
provider_ref: string;
|
|
1124
|
+
asset_ref: string;
|
|
1125
|
+
operation_id: string;
|
|
1126
|
+
risk_class: "low" | "high" | "medium";
|
|
1127
|
+
safe_user_visible_label: "Recorded, not executable" | "Setup required" | "Auth required" | "Configured, verification required" | "Execution substrate verified" | "Degraded" | "Blocked";
|
|
1128
|
+
evidence_refs?: string[] | undefined;
|
|
1129
|
+
metadata?: Record<string, unknown> | undefined;
|
|
1130
|
+
passed_gates?: ("blocked" | "stored" | "discoverable" | "loadable" | "compatible" | "configured" | "authenticated" | "executable_verified" | "degraded")[] | undefined;
|
|
1131
|
+
failed_gates?: ("blocked" | "stored" | "discoverable" | "loadable" | "compatible" | "configured" | "authenticated" | "executable_verified" | "degraded")[] | undefined;
|
|
1132
|
+
degraded_gates?: ("blocked" | "stored" | "discoverable" | "loadable" | "compatible" | "configured" | "authenticated" | "executable_verified" | "degraded")[] | undefined;
|
|
1133
|
+
missing_config_refs?: string[] | undefined;
|
|
1134
|
+
missing_auth_refs?: string[] | undefined;
|
|
1135
|
+
verification_refs?: string[] | undefined;
|
|
1136
|
+
stale_refs?: string[] | undefined;
|
|
1137
|
+
}[] | undefined;
|
|
1138
|
+
internal_autonomy_default?: {
|
|
1139
|
+
reversibility: "unknown" | "reversible" | "irreversible" | "append_only" | "draft_only";
|
|
1140
|
+
reason: string;
|
|
1141
|
+
ref: string;
|
|
1142
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
1143
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
1144
|
+
payload_class: string;
|
|
1145
|
+
provider_ref: string;
|
|
1146
|
+
operation_id: string;
|
|
1147
|
+
scope: string;
|
|
1148
|
+
result: "unknown" | "eligible" | "ineligible";
|
|
1149
|
+
capability_family: "dream" | "soil" | "knowledge" | "audit" | "readiness";
|
|
1150
|
+
operation_class: "notification" | "deletion" | "soil_retrieval" | "soil_context_evaluation" | "soil_projection" | "soil_materialization" | "knowledge_search" | "knowledge_recall" | "knowledge_consolidation" | "knowledge_quarantine" | "knowledge_learning_record" | "knowledge_transfer_detection" | "dream_hint_selection" | "dream_reuse_tracking" | "dream_demotion" | "dream_confidence_update" | "dream_candidate_capture" | "audit_append" | "readiness_observation" | "protected_target_mutation" | "external_publish" | "external_open" | "cross_scope_auto_apply" | "browser_or_desktop_operation" | "side_effecting_mcp" | "foreign_plugin_execution";
|
|
1151
|
+
locality: "local_only" | "not_local";
|
|
1152
|
+
target_class: "foreign_plugin" | "readiness_observation" | "side_effecting_mcp" | "generated_cache" | "generated_snapshot" | "generated_review_area" | "internal_quarantine" | "internal_learning_store" | "dream_playbook_metadata" | "audit_log" | "protected_public_docs" | "protected_user_authored_memory" | "protected_hand_maintained_file" | "protected_published_artifact" | "protected_user_authored_skill" | "external_surface" | "browser_or_desktop" | "third_party_system";
|
|
1153
|
+
target_disposition: "blocked" | "approval_required" | "review" | "allowed_internal" | "quarantine" | "proposal";
|
|
1154
|
+
capability_id?: string | undefined;
|
|
1155
|
+
expires_at?: string | undefined;
|
|
1156
|
+
guardrail_refs?: string[] | undefined;
|
|
1157
|
+
epoch?: string | undefined;
|
|
1158
|
+
target_refs?: string[] | undefined;
|
|
1159
|
+
protected_target_refs?: string[] | undefined;
|
|
1160
|
+
external_effect_refs?: string[] | undefined;
|
|
1161
|
+
} | undefined;
|
|
1162
|
+
user_directed?: boolean | undefined;
|
|
1163
|
+
explicit_user_instruction_ref?: string | undefined;
|
|
1164
|
+
quieting_policy?: {
|
|
1165
|
+
reason: string;
|
|
1166
|
+
ref: string;
|
|
1167
|
+
result: "approval_required" | "suppressed" | "allowed" | "prepare_only" | "prohibited" | "downgraded";
|
|
1168
|
+
expires_at?: string | undefined;
|
|
1169
|
+
epoch?: string | undefined;
|
|
1170
|
+
}[] | undefined;
|
|
1171
|
+
privacy_context?: {
|
|
1172
|
+
reason: string;
|
|
1173
|
+
ref: string;
|
|
1174
|
+
result: "approval_required" | "suppressed" | "allowed" | "prepare_only" | "prohibited" | "downgraded";
|
|
1175
|
+
expires_at?: string | undefined;
|
|
1176
|
+
epoch?: string | undefined;
|
|
1177
|
+
}[] | undefined;
|
|
1178
|
+
runtime_control_state?: {
|
|
1179
|
+
state: "suspended" | "approval_required" | "available" | "prohibited";
|
|
1180
|
+
ref: string;
|
|
1181
|
+
reason?: string | undefined;
|
|
1182
|
+
expires_at?: string | undefined;
|
|
1183
|
+
epoch?: string | undefined;
|
|
1184
|
+
} | undefined;
|
|
1185
|
+
auth_state?: {
|
|
1186
|
+
status: "valid" | "stale" | "expired" | "missing" | "revoked";
|
|
1187
|
+
ref: string;
|
|
1188
|
+
expires_at?: string | undefined;
|
|
1189
|
+
epoch?: string | undefined;
|
|
1190
|
+
} | undefined;
|
|
1191
|
+
trust_profile?: {
|
|
1192
|
+
ref: string;
|
|
1193
|
+
provider_ref: string;
|
|
1194
|
+
epoch?: string | undefined;
|
|
1195
|
+
trust_level?: "unknown" | "low" | "high" | "medium" | undefined;
|
|
1196
|
+
positive_feedback_refs?: string[] | undefined;
|
|
1197
|
+
negative_feedback_refs?: string[] | undefined;
|
|
1198
|
+
} | undefined;
|
|
1199
|
+
verification_profile?: {
|
|
1200
|
+
ref: string;
|
|
1201
|
+
provider_ref: string;
|
|
1202
|
+
verification_refs?: string[] | undefined;
|
|
1203
|
+
audit_refs?: string[] | undefined;
|
|
1204
|
+
epoch?: string | undefined;
|
|
1205
|
+
} | undefined;
|
|
1206
|
+
recent_feedback?: {
|
|
1207
|
+
outcome: "accepted" | "corrected" | "ignored" | "dismissed" | "overreach";
|
|
1208
|
+
ref: string;
|
|
1209
|
+
reason?: string | undefined;
|
|
1210
|
+
recorded_at?: string | undefined;
|
|
1211
|
+
overreach_indicators?: ("sensitive" | "too_frequent" | "wrong_context" | "unwanted_timing")[] | undefined;
|
|
1212
|
+
follow_through_success?: boolean | null | undefined;
|
|
1213
|
+
policy_adjustment?: "narrow_scope" | "require_confirmation" | "reduce_frequency" | "avoid_sensitive_context" | undefined;
|
|
1214
|
+
}[] | undefined;
|
|
1215
|
+
context_authority_evidence?: {
|
|
1216
|
+
kind: "memory" | "dream_hint" | "route_config" | "past_execution" | "auth_session" | "mcp_enabled" | "notification_subscription";
|
|
1217
|
+
ref: string;
|
|
1218
|
+
epoch?: string | undefined;
|
|
1219
|
+
}[] | undefined;
|
|
1220
|
+
privacy_sensitivity?: "low" | "high" | "medium" | "none" | undefined;
|
|
1221
|
+
}>;
|
|
1222
|
+
export type AutonomyDecisionInput = z.input<typeof AutonomyDecisionInputSchema>;
|
|
1223
|
+
export declare const AutonomyDecisionSchema: z.ZodObject<{
|
|
1224
|
+
schema_version: z.ZodLiteral<"autonomy-decision/v1">;
|
|
1225
|
+
decision_id: z.ZodString;
|
|
1226
|
+
operation_id: z.ZodString;
|
|
1227
|
+
capability_id: z.ZodOptional<z.ZodString>;
|
|
1228
|
+
evaluated_at: z.ZodString;
|
|
1229
|
+
level: z.ZodEnum<["advisory", "prepare_only", "user_directed_execute", "autonomous_low_risk", "approval_required", "prohibited"]>;
|
|
1230
|
+
rationale: z.ZodArray<z.ZodString, "many">;
|
|
1231
|
+
allowed_steps: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1232
|
+
blocked_steps: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1233
|
+
required_user_approval: z.ZodBoolean;
|
|
1234
|
+
required_confirmation_text: z.ZodOptional<z.ZodString>;
|
|
1235
|
+
suppression_reason: z.ZodOptional<z.ZodString>;
|
|
1236
|
+
audit_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1237
|
+
expires_at: z.ZodString;
|
|
1238
|
+
invalidation_bindings: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1239
|
+
kind: z.ZodEnum<["admission", "auth", "backpressure", "companion_state", "feedback", "guardrail", "invalidation_evidence", "policy", "provider", "readiness", "runtime_control", "target", "trust", "verification"]>;
|
|
1240
|
+
ref: z.ZodString;
|
|
1241
|
+
epoch: z.ZodOptional<z.ZodString>;
|
|
1242
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
1243
|
+
}, "strict", z.ZodTypeAny, {
|
|
1244
|
+
kind: "verification" | "provider" | "auth" | "admission" | "policy" | "target" | "guardrail" | "backpressure" | "runtime_control" | "feedback" | "companion_state" | "readiness" | "invalidation_evidence" | "trust";
|
|
1245
|
+
ref: string;
|
|
1246
|
+
reason?: string | undefined;
|
|
1247
|
+
epoch?: string | undefined;
|
|
1248
|
+
}, {
|
|
1249
|
+
kind: "verification" | "provider" | "auth" | "admission" | "policy" | "target" | "guardrail" | "backpressure" | "runtime_control" | "feedback" | "companion_state" | "readiness" | "invalidation_evidence" | "trust";
|
|
1250
|
+
ref: string;
|
|
1251
|
+
reason?: string | undefined;
|
|
1252
|
+
epoch?: string | undefined;
|
|
1253
|
+
}>, "many">>;
|
|
1254
|
+
cache_key: z.ZodString;
|
|
1255
|
+
metadata: z.ZodObject<{
|
|
1256
|
+
admission_evaluation_ref: z.ZodString;
|
|
1257
|
+
readiness_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1258
|
+
user_directed: z.ZodBoolean;
|
|
1259
|
+
external_side_effect: z.ZodBoolean;
|
|
1260
|
+
blast_radius: z.ZodEnum<["local", "workspace", "project", "external", "high"]>;
|
|
1261
|
+
privacy_sensitivity: z.ZodEnum<["none", "low", "medium", "high"]>;
|
|
1262
|
+
context_authority_evidence_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1263
|
+
}, "strict", z.ZodTypeAny, {
|
|
1264
|
+
blast_radius: "high" | "external" | "project" | "workspace" | "local";
|
|
1265
|
+
external_side_effect: boolean;
|
|
1266
|
+
user_directed: boolean;
|
|
1267
|
+
privacy_sensitivity: "low" | "high" | "medium" | "none";
|
|
1268
|
+
admission_evaluation_ref: string;
|
|
1269
|
+
readiness_refs: string[];
|
|
1270
|
+
context_authority_evidence_refs: string[];
|
|
1271
|
+
}, {
|
|
1272
|
+
blast_radius: "high" | "external" | "project" | "workspace" | "local";
|
|
1273
|
+
external_side_effect: boolean;
|
|
1274
|
+
user_directed: boolean;
|
|
1275
|
+
privacy_sensitivity: "low" | "high" | "medium" | "none";
|
|
1276
|
+
admission_evaluation_ref: string;
|
|
1277
|
+
readiness_refs?: string[] | undefined;
|
|
1278
|
+
context_authority_evidence_refs?: string[] | undefined;
|
|
1279
|
+
}>;
|
|
1280
|
+
}, "strict", z.ZodTypeAny, {
|
|
1281
|
+
rationale: string[];
|
|
1282
|
+
evaluated_at: string;
|
|
1283
|
+
schema_version: "autonomy-decision/v1";
|
|
1284
|
+
metadata: {
|
|
1285
|
+
blast_radius: "high" | "external" | "project" | "workspace" | "local";
|
|
1286
|
+
external_side_effect: boolean;
|
|
1287
|
+
user_directed: boolean;
|
|
1288
|
+
privacy_sensitivity: "low" | "high" | "medium" | "none";
|
|
1289
|
+
admission_evaluation_ref: string;
|
|
1290
|
+
readiness_refs: string[];
|
|
1291
|
+
context_authority_evidence_refs: string[];
|
|
1292
|
+
};
|
|
1293
|
+
operation_id: string;
|
|
1294
|
+
audit_refs: string[];
|
|
1295
|
+
expires_at: string;
|
|
1296
|
+
level: "approval_required" | "advisory" | "prepare_only" | "user_directed_execute" | "autonomous_low_risk" | "prohibited";
|
|
1297
|
+
decision_id: string;
|
|
1298
|
+
invalidation_bindings: {
|
|
1299
|
+
kind: "verification" | "provider" | "auth" | "admission" | "policy" | "target" | "guardrail" | "backpressure" | "runtime_control" | "feedback" | "companion_state" | "readiness" | "invalidation_evidence" | "trust";
|
|
1300
|
+
ref: string;
|
|
1301
|
+
reason?: string | undefined;
|
|
1302
|
+
epoch?: string | undefined;
|
|
1303
|
+
}[];
|
|
1304
|
+
allowed_steps: string[];
|
|
1305
|
+
blocked_steps: string[];
|
|
1306
|
+
required_user_approval: boolean;
|
|
1307
|
+
cache_key: string;
|
|
1308
|
+
capability_id?: string | undefined;
|
|
1309
|
+
suppression_reason?: string | undefined;
|
|
1310
|
+
required_confirmation_text?: string | undefined;
|
|
1311
|
+
}, {
|
|
1312
|
+
rationale: string[];
|
|
1313
|
+
evaluated_at: string;
|
|
1314
|
+
schema_version: "autonomy-decision/v1";
|
|
1315
|
+
metadata: {
|
|
1316
|
+
blast_radius: "high" | "external" | "project" | "workspace" | "local";
|
|
1317
|
+
external_side_effect: boolean;
|
|
1318
|
+
user_directed: boolean;
|
|
1319
|
+
privacy_sensitivity: "low" | "high" | "medium" | "none";
|
|
1320
|
+
admission_evaluation_ref: string;
|
|
1321
|
+
readiness_refs?: string[] | undefined;
|
|
1322
|
+
context_authority_evidence_refs?: string[] | undefined;
|
|
1323
|
+
};
|
|
1324
|
+
operation_id: string;
|
|
1325
|
+
expires_at: string;
|
|
1326
|
+
level: "approval_required" | "advisory" | "prepare_only" | "user_directed_execute" | "autonomous_low_risk" | "prohibited";
|
|
1327
|
+
decision_id: string;
|
|
1328
|
+
required_user_approval: boolean;
|
|
1329
|
+
cache_key: string;
|
|
1330
|
+
capability_id?: string | undefined;
|
|
1331
|
+
audit_refs?: string[] | undefined;
|
|
1332
|
+
suppression_reason?: string | undefined;
|
|
1333
|
+
invalidation_bindings?: {
|
|
1334
|
+
kind: "verification" | "provider" | "auth" | "admission" | "policy" | "target" | "guardrail" | "backpressure" | "runtime_control" | "feedback" | "companion_state" | "readiness" | "invalidation_evidence" | "trust";
|
|
1335
|
+
ref: string;
|
|
1336
|
+
reason?: string | undefined;
|
|
1337
|
+
epoch?: string | undefined;
|
|
1338
|
+
}[] | undefined;
|
|
1339
|
+
allowed_steps?: string[] | undefined;
|
|
1340
|
+
blocked_steps?: string[] | undefined;
|
|
1341
|
+
required_confirmation_text?: string | undefined;
|
|
1342
|
+
}>;
|
|
1343
|
+
export type AutonomyDecision = z.infer<typeof AutonomyDecisionSchema>;
|
|
1344
|
+
export declare function evaluateAutonomyDecision(input: AutonomyDecisionInput): AutonomyDecision;
|
|
1345
|
+
//# sourceMappingURL=autonomy-governor.d.ts.map
|