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
|
@@ -1,21 +1,179 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const HeartbeatCheckTypeSchema: z.ZodEnum<["http", "tcp", "process", "disk", "custom"]>;
|
|
3
|
-
export declare const
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
export declare const HeartbeatHttpCheckConfigSchema: z.ZodObject<{
|
|
4
|
+
url: z.ZodString;
|
|
5
|
+
}, "strip", z.ZodTypeAny, {
|
|
6
|
+
url: string;
|
|
7
|
+
}, {
|
|
8
|
+
url: string;
|
|
9
|
+
}>;
|
|
10
|
+
export declare const HeartbeatTcpCheckConfigSchema: z.ZodObject<{
|
|
11
|
+
host: z.ZodString;
|
|
12
|
+
port: z.ZodNumber;
|
|
13
|
+
}, "strip", z.ZodTypeAny, {
|
|
14
|
+
host: string;
|
|
15
|
+
port: number;
|
|
16
|
+
}, {
|
|
17
|
+
host: string;
|
|
18
|
+
port: number;
|
|
19
|
+
}>;
|
|
20
|
+
export declare const HeartbeatProcessCheckConfigSchema: z.ZodObject<{
|
|
21
|
+
pid: z.ZodNumber;
|
|
22
|
+
}, "strip", z.ZodTypeAny, {
|
|
23
|
+
pid: number;
|
|
24
|
+
}, {
|
|
25
|
+
pid: number;
|
|
26
|
+
}>;
|
|
27
|
+
export declare const HeartbeatDiskCheckConfigSchema: z.ZodObject<{
|
|
28
|
+
path: z.ZodString;
|
|
29
|
+
}, "strip", z.ZodTypeAny, {
|
|
30
|
+
path: string;
|
|
31
|
+
}, {
|
|
32
|
+
path: string;
|
|
33
|
+
}>;
|
|
34
|
+
export declare const HeartbeatCustomCheckConfigSchema: z.ZodObject<{
|
|
35
|
+
command: z.ZodString;
|
|
36
|
+
}, "strip", z.ZodTypeAny, {
|
|
37
|
+
command: string;
|
|
38
|
+
}, {
|
|
39
|
+
command: string;
|
|
40
|
+
}>;
|
|
41
|
+
export declare const HeartbeatConfigSchema: z.ZodDiscriminatedUnion<"check_type", [z.ZodObject<{
|
|
6
42
|
failure_threshold: z.ZodDefault<z.ZodNumber>;
|
|
7
43
|
timeout_ms: z.ZodDefault<z.ZodNumber>;
|
|
44
|
+
} & {
|
|
45
|
+
check_type: z.ZodLiteral<"http">;
|
|
46
|
+
check_config: z.ZodObject<{
|
|
47
|
+
url: z.ZodString;
|
|
48
|
+
}, "strip", z.ZodTypeAny, {
|
|
49
|
+
url: string;
|
|
50
|
+
}, {
|
|
51
|
+
url: string;
|
|
52
|
+
}>;
|
|
8
53
|
}, "strip", z.ZodTypeAny, {
|
|
9
54
|
timeout_ms: number;
|
|
10
|
-
check_type: "custom" | "process" | "http" | "tcp" | "disk";
|
|
11
|
-
check_config: Record<string, unknown>;
|
|
12
55
|
failure_threshold: number;
|
|
56
|
+
check_type: "http";
|
|
57
|
+
check_config: {
|
|
58
|
+
url: string;
|
|
59
|
+
};
|
|
13
60
|
}, {
|
|
14
|
-
check_type: "
|
|
15
|
-
check_config:
|
|
61
|
+
check_type: "http";
|
|
62
|
+
check_config: {
|
|
63
|
+
url: string;
|
|
64
|
+
};
|
|
16
65
|
timeout_ms?: number | undefined;
|
|
17
66
|
failure_threshold?: number | undefined;
|
|
18
|
-
}
|
|
67
|
+
}>, z.ZodObject<{
|
|
68
|
+
failure_threshold: z.ZodDefault<z.ZodNumber>;
|
|
69
|
+
timeout_ms: z.ZodDefault<z.ZodNumber>;
|
|
70
|
+
} & {
|
|
71
|
+
check_type: z.ZodLiteral<"tcp">;
|
|
72
|
+
check_config: z.ZodObject<{
|
|
73
|
+
host: z.ZodString;
|
|
74
|
+
port: z.ZodNumber;
|
|
75
|
+
}, "strip", z.ZodTypeAny, {
|
|
76
|
+
host: string;
|
|
77
|
+
port: number;
|
|
78
|
+
}, {
|
|
79
|
+
host: string;
|
|
80
|
+
port: number;
|
|
81
|
+
}>;
|
|
82
|
+
}, "strip", z.ZodTypeAny, {
|
|
83
|
+
timeout_ms: number;
|
|
84
|
+
failure_threshold: number;
|
|
85
|
+
check_type: "tcp";
|
|
86
|
+
check_config: {
|
|
87
|
+
host: string;
|
|
88
|
+
port: number;
|
|
89
|
+
};
|
|
90
|
+
}, {
|
|
91
|
+
check_type: "tcp";
|
|
92
|
+
check_config: {
|
|
93
|
+
host: string;
|
|
94
|
+
port: number;
|
|
95
|
+
};
|
|
96
|
+
timeout_ms?: number | undefined;
|
|
97
|
+
failure_threshold?: number | undefined;
|
|
98
|
+
}>, z.ZodObject<{
|
|
99
|
+
failure_threshold: z.ZodDefault<z.ZodNumber>;
|
|
100
|
+
timeout_ms: z.ZodDefault<z.ZodNumber>;
|
|
101
|
+
} & {
|
|
102
|
+
check_type: z.ZodLiteral<"process">;
|
|
103
|
+
check_config: z.ZodObject<{
|
|
104
|
+
pid: z.ZodNumber;
|
|
105
|
+
}, "strip", z.ZodTypeAny, {
|
|
106
|
+
pid: number;
|
|
107
|
+
}, {
|
|
108
|
+
pid: number;
|
|
109
|
+
}>;
|
|
110
|
+
}, "strip", z.ZodTypeAny, {
|
|
111
|
+
timeout_ms: number;
|
|
112
|
+
failure_threshold: number;
|
|
113
|
+
check_type: "process";
|
|
114
|
+
check_config: {
|
|
115
|
+
pid: number;
|
|
116
|
+
};
|
|
117
|
+
}, {
|
|
118
|
+
check_type: "process";
|
|
119
|
+
check_config: {
|
|
120
|
+
pid: number;
|
|
121
|
+
};
|
|
122
|
+
timeout_ms?: number | undefined;
|
|
123
|
+
failure_threshold?: number | undefined;
|
|
124
|
+
}>, z.ZodObject<{
|
|
125
|
+
failure_threshold: z.ZodDefault<z.ZodNumber>;
|
|
126
|
+
timeout_ms: z.ZodDefault<z.ZodNumber>;
|
|
127
|
+
} & {
|
|
128
|
+
check_type: z.ZodLiteral<"disk">;
|
|
129
|
+
check_config: z.ZodObject<{
|
|
130
|
+
path: z.ZodString;
|
|
131
|
+
}, "strip", z.ZodTypeAny, {
|
|
132
|
+
path: string;
|
|
133
|
+
}, {
|
|
134
|
+
path: string;
|
|
135
|
+
}>;
|
|
136
|
+
}, "strip", z.ZodTypeAny, {
|
|
137
|
+
timeout_ms: number;
|
|
138
|
+
failure_threshold: number;
|
|
139
|
+
check_type: "disk";
|
|
140
|
+
check_config: {
|
|
141
|
+
path: string;
|
|
142
|
+
};
|
|
143
|
+
}, {
|
|
144
|
+
check_type: "disk";
|
|
145
|
+
check_config: {
|
|
146
|
+
path: string;
|
|
147
|
+
};
|
|
148
|
+
timeout_ms?: number | undefined;
|
|
149
|
+
failure_threshold?: number | undefined;
|
|
150
|
+
}>, z.ZodObject<{
|
|
151
|
+
failure_threshold: z.ZodDefault<z.ZodNumber>;
|
|
152
|
+
timeout_ms: z.ZodDefault<z.ZodNumber>;
|
|
153
|
+
} & {
|
|
154
|
+
check_type: z.ZodLiteral<"custom">;
|
|
155
|
+
check_config: z.ZodObject<{
|
|
156
|
+
command: z.ZodString;
|
|
157
|
+
}, "strip", z.ZodTypeAny, {
|
|
158
|
+
command: string;
|
|
159
|
+
}, {
|
|
160
|
+
command: string;
|
|
161
|
+
}>;
|
|
162
|
+
}, "strip", z.ZodTypeAny, {
|
|
163
|
+
timeout_ms: number;
|
|
164
|
+
failure_threshold: number;
|
|
165
|
+
check_type: "custom";
|
|
166
|
+
check_config: {
|
|
167
|
+
command: string;
|
|
168
|
+
};
|
|
169
|
+
}, {
|
|
170
|
+
check_type: "custom";
|
|
171
|
+
check_config: {
|
|
172
|
+
command: string;
|
|
173
|
+
};
|
|
174
|
+
timeout_ms?: number | undefined;
|
|
175
|
+
failure_threshold?: number | undefined;
|
|
176
|
+
}>]>;
|
|
19
177
|
export type HeartbeatConfig = z.infer<typeof HeartbeatConfigSchema>;
|
|
20
178
|
export declare const ProbeConfigSchema: z.ZodObject<{
|
|
21
179
|
data_source_id: z.ZodString;
|
|
@@ -71,37 +229,37 @@ export declare const CronConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
71
229
|
report_type: z.ZodOptional<z.ZodString>;
|
|
72
230
|
max_tokens: z.ZodDefault<z.ZodNumber>;
|
|
73
231
|
}, "strip", z.ZodTypeAny, {
|
|
74
|
-
max_tokens: number;
|
|
75
232
|
job_kind: "prompt" | "reflection" | "soil_publish";
|
|
76
233
|
prompt_template: string;
|
|
77
234
|
context_sources: string[];
|
|
78
235
|
output_format: "notification" | "both" | "report";
|
|
236
|
+
max_tokens: number;
|
|
79
237
|
report_type?: string | undefined;
|
|
80
238
|
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
81
239
|
}, {
|
|
82
240
|
prompt_template: string;
|
|
83
241
|
report_type?: string | undefined;
|
|
84
|
-
max_tokens?: number | undefined;
|
|
85
242
|
job_kind?: "prompt" | "reflection" | "soil_publish" | undefined;
|
|
86
243
|
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
87
244
|
context_sources?: string[] | undefined;
|
|
88
245
|
output_format?: "notification" | "both" | "report" | undefined;
|
|
246
|
+
max_tokens?: number | undefined;
|
|
89
247
|
}>, {
|
|
90
|
-
max_tokens: number;
|
|
91
248
|
job_kind: "prompt" | "reflection" | "soil_publish";
|
|
92
249
|
prompt_template: string;
|
|
93
250
|
context_sources: string[];
|
|
94
251
|
output_format: "notification" | "both" | "report";
|
|
252
|
+
max_tokens: number;
|
|
95
253
|
report_type?: string | undefined;
|
|
96
254
|
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
97
255
|
}, {
|
|
98
256
|
prompt_template: string;
|
|
99
257
|
report_type?: string | undefined;
|
|
100
|
-
max_tokens?: number | undefined;
|
|
101
258
|
job_kind?: "prompt" | "reflection" | "soil_publish" | undefined;
|
|
102
259
|
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
103
260
|
context_sources?: string[] | undefined;
|
|
104
261
|
output_format?: "notification" | "both" | "report" | undefined;
|
|
262
|
+
max_tokens?: number | undefined;
|
|
105
263
|
}>;
|
|
106
264
|
export type CronConfig = z.infer<typeof CronConfigSchema>;
|
|
107
265
|
export declare const GoalTriggerConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
@@ -151,11 +309,11 @@ export declare const ScheduleEntryMetadataSchema: z.ZodObject<{
|
|
|
151
309
|
goal_id?: string | undefined;
|
|
152
310
|
strategy_id?: string | undefined;
|
|
153
311
|
activation_kind?: "wait_resume" | undefined;
|
|
154
|
-
external_id?: string | undefined;
|
|
155
312
|
note?: string | undefined;
|
|
156
313
|
preset_key?: string | undefined;
|
|
157
314
|
dream_suggestion_id?: string | undefined;
|
|
158
315
|
external_source_id?: string | undefined;
|
|
316
|
+
external_id?: string | undefined;
|
|
159
317
|
wait_strategy_id?: string | undefined;
|
|
160
318
|
}, {
|
|
161
319
|
source?: "manual" | "external" | "dream" | "preset" | undefined;
|
|
@@ -163,17 +321,134 @@ export declare const ScheduleEntryMetadataSchema: z.ZodObject<{
|
|
|
163
321
|
goal_id?: string | undefined;
|
|
164
322
|
strategy_id?: string | undefined;
|
|
165
323
|
activation_kind?: "wait_resume" | undefined;
|
|
166
|
-
external_id?: string | undefined;
|
|
167
324
|
note?: string | undefined;
|
|
168
325
|
preset_key?: string | undefined;
|
|
169
326
|
dream_suggestion_id?: string | undefined;
|
|
170
327
|
external_source_id?: string | undefined;
|
|
328
|
+
external_id?: string | undefined;
|
|
171
329
|
dependency_hints?: string[] | undefined;
|
|
172
330
|
wait_strategy_id?: string | undefined;
|
|
173
331
|
}>;
|
|
174
332
|
export type ScheduleEntryMetadata = z.infer<typeof ScheduleEntryMetadataSchema>;
|
|
175
333
|
export declare const ScheduleFailureKindSchema: z.ZodEnum<["transient", "permanent"]>;
|
|
176
334
|
export type ScheduleFailureKind = z.infer<typeof ScheduleFailureKindSchema>;
|
|
335
|
+
export declare const ScheduleInternalAttentionProjectionSchema: z.ZodObject<{
|
|
336
|
+
kind: z.ZodLiteral<"wait_resume_attention_projection">;
|
|
337
|
+
projected_at: z.ZodString;
|
|
338
|
+
signal_context_id: z.ZodString;
|
|
339
|
+
signal_sources: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
340
|
+
urge_candidate_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
341
|
+
agenda_item_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
342
|
+
inhibition_decisions: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
343
|
+
ref: z.ZodString;
|
|
344
|
+
decision: z.ZodEnum<["suppress", "hold", "watch", "wait_for_opportunity", "decay", "reject_stale", "allow_to_gate"]>;
|
|
345
|
+
}, "strict", z.ZodTypeAny, {
|
|
346
|
+
decision: "suppress" | "hold" | "watch" | "wait_for_opportunity" | "decay" | "reject_stale" | "allow_to_gate";
|
|
347
|
+
ref: string;
|
|
348
|
+
}, {
|
|
349
|
+
decision: "suppress" | "hold" | "watch" | "wait_for_opportunity" | "decay" | "reject_stale" | "allow_to_gate";
|
|
350
|
+
ref: string;
|
|
351
|
+
}>, "many">>;
|
|
352
|
+
initiative_gate_decisions: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
353
|
+
ref: z.ZodString;
|
|
354
|
+
status: z.ZodEnum<["selected", "blocked", "delayed", "narrowed"]>;
|
|
355
|
+
selected_outcome: z.ZodOptional<z.ZodEnum<["silence", "keep_watching", "hold_in_agenda", "prepare_silently", "run_authorized_work", "delegate_bounded_work", "prepare_action_candidate", "request_approval", "write_governed_memory_candidate", "update_surface_candidate", "add_to_digest", "express_to_user", "escalate"]>>;
|
|
356
|
+
}, "strict", z.ZodTypeAny, {
|
|
357
|
+
status: "blocked" | "selected" | "delayed" | "narrowed";
|
|
358
|
+
ref: string;
|
|
359
|
+
selected_outcome?: "request_approval" | "escalate" | "run_authorized_work" | "delegate_bounded_work" | "update_surface_candidate" | "silence" | "keep_watching" | "hold_in_agenda" | "prepare_silently" | "prepare_action_candidate" | "write_governed_memory_candidate" | "add_to_digest" | "express_to_user" | undefined;
|
|
360
|
+
}, {
|
|
361
|
+
status: "blocked" | "selected" | "delayed" | "narrowed";
|
|
362
|
+
ref: string;
|
|
363
|
+
selected_outcome?: "request_approval" | "escalate" | "run_authorized_work" | "delegate_bounded_work" | "update_surface_candidate" | "silence" | "keep_watching" | "hold_in_agenda" | "prepare_silently" | "prepare_action_candidate" | "write_governed_memory_candidate" | "add_to_digest" | "express_to_user" | undefined;
|
|
364
|
+
}>, "many">>;
|
|
365
|
+
runtime_items: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
366
|
+
ref: z.ZodString;
|
|
367
|
+
type: z.ZodEnum<["run", "task", "session", "goal", "wait", "watch", "hold", "urge_candidate", "agent_agenda_item", "surface_projection", "permission_boundary", "audit_trace", "diff_proposal", "auth_handoff", "browser_session", "guardrail_state", "backpressure_state"]>;
|
|
368
|
+
status: z.ZodEnum<["pending", "running", "active", "mature", "completed", "failed", "cancelled", "paused", "expired", "blocked", "superseded"]>;
|
|
369
|
+
posture: z.ZodEnum<["working", "watching", "waiting", "holding", "cooling_down", "blocked_by_boundary", "needs_user", "ready_to_digest", "safe_to_forget", "stale", "suspended", "suppressed", "proposed", "committed", "rejected"]>;
|
|
370
|
+
visibility_display: z.ZodEnum<["normal", "hidden", "redacted"]>;
|
|
371
|
+
inspectable: z.ZodBoolean;
|
|
372
|
+
auditable: z.ZodBoolean;
|
|
373
|
+
}, "strict", z.ZodTypeAny, {
|
|
374
|
+
type: "goal" | "task" | "run" | "surface_projection" | "urge_candidate" | "audit_trace" | "hold" | "session" | "wait" | "watch" | "agent_agenda_item" | "permission_boundary" | "diff_proposal" | "auth_handoff" | "browser_session" | "guardrail_state" | "backpressure_state";
|
|
375
|
+
status: "pending" | "running" | "completed" | "cancelled" | "blocked" | "active" | "paused" | "failed" | "expired" | "superseded" | "mature";
|
|
376
|
+
ref: string;
|
|
377
|
+
inspectable: boolean;
|
|
378
|
+
auditable: boolean;
|
|
379
|
+
posture: "suspended" | "waiting" | "stale" | "suppressed" | "rejected" | "working" | "watching" | "holding" | "cooling_down" | "blocked_by_boundary" | "needs_user" | "ready_to_digest" | "safe_to_forget" | "proposed" | "committed";
|
|
380
|
+
visibility_display: "normal" | "redacted" | "hidden";
|
|
381
|
+
}, {
|
|
382
|
+
type: "goal" | "task" | "run" | "surface_projection" | "urge_candidate" | "audit_trace" | "hold" | "session" | "wait" | "watch" | "agent_agenda_item" | "permission_boundary" | "diff_proposal" | "auth_handoff" | "browser_session" | "guardrail_state" | "backpressure_state";
|
|
383
|
+
status: "pending" | "running" | "completed" | "cancelled" | "blocked" | "active" | "paused" | "failed" | "expired" | "superseded" | "mature";
|
|
384
|
+
ref: string;
|
|
385
|
+
inspectable: boolean;
|
|
386
|
+
auditable: boolean;
|
|
387
|
+
posture: "suspended" | "waiting" | "stale" | "suppressed" | "rejected" | "working" | "watching" | "holding" | "cooling_down" | "blocked_by_boundary" | "needs_user" | "ready_to_digest" | "safe_to_forget" | "proposed" | "committed";
|
|
388
|
+
visibility_display: "normal" | "redacted" | "hidden";
|
|
389
|
+
}>, "many">>;
|
|
390
|
+
non_execution_states: z.ZodDefault<z.ZodArray<z.ZodEnum<["blocked", "delayed", "held", "suppressed", "decayed", "expired", "rejected_stale", "inspectable_hidden", "silent_runtime_item"]>, "many">>;
|
|
391
|
+
summary: z.ZodString;
|
|
392
|
+
}, "strict", z.ZodTypeAny, {
|
|
393
|
+
kind: "wait_resume_attention_projection";
|
|
394
|
+
summary: string;
|
|
395
|
+
runtime_items: {
|
|
396
|
+
type: "goal" | "task" | "run" | "surface_projection" | "urge_candidate" | "audit_trace" | "hold" | "session" | "wait" | "watch" | "agent_agenda_item" | "permission_boundary" | "diff_proposal" | "auth_handoff" | "browser_session" | "guardrail_state" | "backpressure_state";
|
|
397
|
+
status: "pending" | "running" | "completed" | "cancelled" | "blocked" | "active" | "paused" | "failed" | "expired" | "superseded" | "mature";
|
|
398
|
+
ref: string;
|
|
399
|
+
inspectable: boolean;
|
|
400
|
+
auditable: boolean;
|
|
401
|
+
posture: "suspended" | "waiting" | "stale" | "suppressed" | "rejected" | "working" | "watching" | "holding" | "cooling_down" | "blocked_by_boundary" | "needs_user" | "ready_to_digest" | "safe_to_forget" | "proposed" | "committed";
|
|
402
|
+
visibility_display: "normal" | "redacted" | "hidden";
|
|
403
|
+
}[];
|
|
404
|
+
signal_context_id: string;
|
|
405
|
+
signal_sources: string[];
|
|
406
|
+
projected_at: string;
|
|
407
|
+
urge_candidate_refs: string[];
|
|
408
|
+
agenda_item_refs: string[];
|
|
409
|
+
inhibition_decisions: {
|
|
410
|
+
decision: "suppress" | "hold" | "watch" | "wait_for_opportunity" | "decay" | "reject_stale" | "allow_to_gate";
|
|
411
|
+
ref: string;
|
|
412
|
+
}[];
|
|
413
|
+
initiative_gate_decisions: {
|
|
414
|
+
status: "blocked" | "selected" | "delayed" | "narrowed";
|
|
415
|
+
ref: string;
|
|
416
|
+
selected_outcome?: "request_approval" | "escalate" | "run_authorized_work" | "delegate_bounded_work" | "update_surface_candidate" | "silence" | "keep_watching" | "hold_in_agenda" | "prepare_silently" | "prepare_action_candidate" | "write_governed_memory_candidate" | "add_to_digest" | "express_to_user" | undefined;
|
|
417
|
+
}[];
|
|
418
|
+
non_execution_states: ("blocked" | "expired" | "suppressed" | "decayed" | "held" | "rejected_stale" | "delayed" | "inspectable_hidden" | "silent_runtime_item")[];
|
|
419
|
+
}, {
|
|
420
|
+
kind: "wait_resume_attention_projection";
|
|
421
|
+
summary: string;
|
|
422
|
+
signal_context_id: string;
|
|
423
|
+
projected_at: string;
|
|
424
|
+
runtime_items?: {
|
|
425
|
+
type: "goal" | "task" | "run" | "surface_projection" | "urge_candidate" | "audit_trace" | "hold" | "session" | "wait" | "watch" | "agent_agenda_item" | "permission_boundary" | "diff_proposal" | "auth_handoff" | "browser_session" | "guardrail_state" | "backpressure_state";
|
|
426
|
+
status: "pending" | "running" | "completed" | "cancelled" | "blocked" | "active" | "paused" | "failed" | "expired" | "superseded" | "mature";
|
|
427
|
+
ref: string;
|
|
428
|
+
inspectable: boolean;
|
|
429
|
+
auditable: boolean;
|
|
430
|
+
posture: "suspended" | "waiting" | "stale" | "suppressed" | "rejected" | "working" | "watching" | "holding" | "cooling_down" | "blocked_by_boundary" | "needs_user" | "ready_to_digest" | "safe_to_forget" | "proposed" | "committed";
|
|
431
|
+
visibility_display: "normal" | "redacted" | "hidden";
|
|
432
|
+
}[] | undefined;
|
|
433
|
+
signal_sources?: string[] | undefined;
|
|
434
|
+
urge_candidate_refs?: string[] | undefined;
|
|
435
|
+
agenda_item_refs?: string[] | undefined;
|
|
436
|
+
inhibition_decisions?: {
|
|
437
|
+
decision: "suppress" | "hold" | "watch" | "wait_for_opportunity" | "decay" | "reject_stale" | "allow_to_gate";
|
|
438
|
+
ref: string;
|
|
439
|
+
}[] | undefined;
|
|
440
|
+
initiative_gate_decisions?: {
|
|
441
|
+
status: "blocked" | "selected" | "delayed" | "narrowed";
|
|
442
|
+
ref: string;
|
|
443
|
+
selected_outcome?: "request_approval" | "escalate" | "run_authorized_work" | "delegate_bounded_work" | "update_surface_candidate" | "silence" | "keep_watching" | "hold_in_agenda" | "prepare_silently" | "prepare_action_candidate" | "write_governed_memory_candidate" | "add_to_digest" | "express_to_user" | undefined;
|
|
444
|
+
}[] | undefined;
|
|
445
|
+
non_execution_states?: ("blocked" | "expired" | "suppressed" | "decayed" | "held" | "rejected_stale" | "delayed" | "inspectable_hidden" | "silent_runtime_item")[] | undefined;
|
|
446
|
+
}>;
|
|
447
|
+
export type ScheduleInternalAttentionProjection = z.infer<typeof ScheduleInternalAttentionProjectionSchema>;
|
|
448
|
+
export declare const MAX_SCHEDULE_RETRY_DELAY_MS: number;
|
|
449
|
+
export declare const MAX_SCHEDULE_RETRY_WINDOW_MS: number;
|
|
450
|
+
export declare const MAX_SCHEDULE_RETRY_ATTEMPTS = 100;
|
|
451
|
+
export declare const MAX_SCHEDULE_RETRY_MULTIPLIER = 100;
|
|
177
452
|
export declare const ScheduleRetryPolicySchema: z.ZodObject<{
|
|
178
453
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
179
454
|
initial_delay_ms: z.ZodDefault<z.ZodNumber>;
|
|
@@ -185,20 +460,20 @@ export declare const ScheduleRetryPolicySchema: z.ZodObject<{
|
|
|
185
460
|
retryable_failure_kinds: z.ZodDefault<z.ZodArray<z.ZodEnum<["transient", "permanent"]>, "many">>;
|
|
186
461
|
}, "strip", z.ZodTypeAny, {
|
|
187
462
|
enabled: boolean;
|
|
188
|
-
max_attempts: number;
|
|
189
463
|
initial_delay_ms: number;
|
|
190
464
|
max_delay_ms: number;
|
|
191
465
|
multiplier: number;
|
|
192
466
|
jitter_factor: number;
|
|
467
|
+
max_attempts: number;
|
|
193
468
|
max_retry_window_ms: number;
|
|
194
469
|
retryable_failure_kinds: ("transient" | "permanent")[];
|
|
195
470
|
}, {
|
|
196
471
|
enabled?: boolean | undefined;
|
|
197
|
-
max_attempts?: number | undefined;
|
|
198
472
|
initial_delay_ms?: number | undefined;
|
|
199
473
|
max_delay_ms?: number | undefined;
|
|
200
474
|
multiplier?: number | undefined;
|
|
201
475
|
jitter_factor?: number | undefined;
|
|
476
|
+
max_attempts?: number | undefined;
|
|
202
477
|
max_retry_window_ms?: number | undefined;
|
|
203
478
|
retryable_failure_kinds?: ("transient" | "permanent")[] | undefined;
|
|
204
479
|
}>;
|
|
@@ -206,6 +481,7 @@ export type ScheduleRetryPolicy = z.infer<typeof ScheduleRetryPolicySchema>;
|
|
|
206
481
|
export declare const ScheduleRetryStateSchema: z.ZodObject<{
|
|
207
482
|
attempts: z.ZodDefault<z.ZodNumber>;
|
|
208
483
|
next_retry_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
484
|
+
scheduled_for: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
209
485
|
last_attempt_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
210
486
|
first_failure_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
211
487
|
last_failure_kind: z.ZodDefault<z.ZodNullable<z.ZodEnum<["transient", "permanent"]>>>;
|
|
@@ -213,6 +489,7 @@ export declare const ScheduleRetryStateSchema: z.ZodObject<{
|
|
|
213
489
|
}, "strip", z.ZodTypeAny, {
|
|
214
490
|
attempts: number;
|
|
215
491
|
next_retry_at: string | null;
|
|
492
|
+
scheduled_for: string | null;
|
|
216
493
|
last_attempt_at: string | null;
|
|
217
494
|
first_failure_at: string | null;
|
|
218
495
|
last_failure_kind: "transient" | "permanent" | null;
|
|
@@ -220,6 +497,7 @@ export declare const ScheduleRetryStateSchema: z.ZodObject<{
|
|
|
220
497
|
}, {
|
|
221
498
|
attempts?: number | undefined;
|
|
222
499
|
next_retry_at?: string | null | undefined;
|
|
500
|
+
scheduled_for?: string | null | undefined;
|
|
223
501
|
last_attempt_at?: string | null | undefined;
|
|
224
502
|
first_failure_at?: string | null | undefined;
|
|
225
503
|
last_failure_kind?: "transient" | "permanent" | null | undefined;
|
|
@@ -271,8 +549,8 @@ export declare const ScheduleTriggerSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
271
549
|
jitter_factor: z.ZodDefault<z.ZodNumber>;
|
|
272
550
|
}, "strip", z.ZodTypeAny, {
|
|
273
551
|
type: "interval";
|
|
274
|
-
seconds: number;
|
|
275
552
|
jitter_factor: number;
|
|
553
|
+
seconds: number;
|
|
276
554
|
}, {
|
|
277
555
|
type: "interval";
|
|
278
556
|
seconds: number;
|
|
@@ -301,8 +579,8 @@ export declare const ScheduleEntrySchema: z.ZodObject<{
|
|
|
301
579
|
jitter_factor: z.ZodDefault<z.ZodNumber>;
|
|
302
580
|
}, "strip", z.ZodTypeAny, {
|
|
303
581
|
type: "interval";
|
|
304
|
-
seconds: number;
|
|
305
582
|
jitter_factor: number;
|
|
583
|
+
seconds: number;
|
|
306
584
|
}, {
|
|
307
585
|
type: "interval";
|
|
308
586
|
seconds: number;
|
|
@@ -329,11 +607,11 @@ export declare const ScheduleEntrySchema: z.ZodObject<{
|
|
|
329
607
|
goal_id?: string | undefined;
|
|
330
608
|
strategy_id?: string | undefined;
|
|
331
609
|
activation_kind?: "wait_resume" | undefined;
|
|
332
|
-
external_id?: string | undefined;
|
|
333
610
|
note?: string | undefined;
|
|
334
611
|
preset_key?: string | undefined;
|
|
335
612
|
dream_suggestion_id?: string | undefined;
|
|
336
613
|
external_source_id?: string | undefined;
|
|
614
|
+
external_id?: string | undefined;
|
|
337
615
|
wait_strategy_id?: string | undefined;
|
|
338
616
|
}, {
|
|
339
617
|
source?: "manual" | "external" | "dream" | "preset" | undefined;
|
|
@@ -341,30 +619,150 @@ export declare const ScheduleEntrySchema: z.ZodObject<{
|
|
|
341
619
|
goal_id?: string | undefined;
|
|
342
620
|
strategy_id?: string | undefined;
|
|
343
621
|
activation_kind?: "wait_resume" | undefined;
|
|
344
|
-
external_id?: string | undefined;
|
|
345
622
|
note?: string | undefined;
|
|
346
623
|
preset_key?: string | undefined;
|
|
347
624
|
dream_suggestion_id?: string | undefined;
|
|
348
625
|
external_source_id?: string | undefined;
|
|
626
|
+
external_id?: string | undefined;
|
|
349
627
|
dependency_hints?: string[] | undefined;
|
|
350
628
|
wait_strategy_id?: string | undefined;
|
|
351
629
|
}>>;
|
|
352
|
-
heartbeat: z.ZodOptional<z.ZodObject<{
|
|
353
|
-
check_type: z.ZodEnum<["http", "tcp", "process", "disk", "custom"]>;
|
|
354
|
-
check_config: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
630
|
+
heartbeat: z.ZodOptional<z.ZodDiscriminatedUnion<"check_type", [z.ZodObject<{
|
|
355
631
|
failure_threshold: z.ZodDefault<z.ZodNumber>;
|
|
356
632
|
timeout_ms: z.ZodDefault<z.ZodNumber>;
|
|
633
|
+
} & {
|
|
634
|
+
check_type: z.ZodLiteral<"http">;
|
|
635
|
+
check_config: z.ZodObject<{
|
|
636
|
+
url: z.ZodString;
|
|
637
|
+
}, "strip", z.ZodTypeAny, {
|
|
638
|
+
url: string;
|
|
639
|
+
}, {
|
|
640
|
+
url: string;
|
|
641
|
+
}>;
|
|
357
642
|
}, "strip", z.ZodTypeAny, {
|
|
358
643
|
timeout_ms: number;
|
|
359
|
-
check_type: "custom" | "process" | "http" | "tcp" | "disk";
|
|
360
|
-
check_config: Record<string, unknown>;
|
|
361
644
|
failure_threshold: number;
|
|
645
|
+
check_type: "http";
|
|
646
|
+
check_config: {
|
|
647
|
+
url: string;
|
|
648
|
+
};
|
|
362
649
|
}, {
|
|
363
|
-
check_type: "
|
|
364
|
-
check_config:
|
|
650
|
+
check_type: "http";
|
|
651
|
+
check_config: {
|
|
652
|
+
url: string;
|
|
653
|
+
};
|
|
365
654
|
timeout_ms?: number | undefined;
|
|
366
655
|
failure_threshold?: number | undefined;
|
|
367
|
-
}
|
|
656
|
+
}>, z.ZodObject<{
|
|
657
|
+
failure_threshold: z.ZodDefault<z.ZodNumber>;
|
|
658
|
+
timeout_ms: z.ZodDefault<z.ZodNumber>;
|
|
659
|
+
} & {
|
|
660
|
+
check_type: z.ZodLiteral<"tcp">;
|
|
661
|
+
check_config: z.ZodObject<{
|
|
662
|
+
host: z.ZodString;
|
|
663
|
+
port: z.ZodNumber;
|
|
664
|
+
}, "strip", z.ZodTypeAny, {
|
|
665
|
+
host: string;
|
|
666
|
+
port: number;
|
|
667
|
+
}, {
|
|
668
|
+
host: string;
|
|
669
|
+
port: number;
|
|
670
|
+
}>;
|
|
671
|
+
}, "strip", z.ZodTypeAny, {
|
|
672
|
+
timeout_ms: number;
|
|
673
|
+
failure_threshold: number;
|
|
674
|
+
check_type: "tcp";
|
|
675
|
+
check_config: {
|
|
676
|
+
host: string;
|
|
677
|
+
port: number;
|
|
678
|
+
};
|
|
679
|
+
}, {
|
|
680
|
+
check_type: "tcp";
|
|
681
|
+
check_config: {
|
|
682
|
+
host: string;
|
|
683
|
+
port: number;
|
|
684
|
+
};
|
|
685
|
+
timeout_ms?: number | undefined;
|
|
686
|
+
failure_threshold?: number | undefined;
|
|
687
|
+
}>, z.ZodObject<{
|
|
688
|
+
failure_threshold: z.ZodDefault<z.ZodNumber>;
|
|
689
|
+
timeout_ms: z.ZodDefault<z.ZodNumber>;
|
|
690
|
+
} & {
|
|
691
|
+
check_type: z.ZodLiteral<"process">;
|
|
692
|
+
check_config: z.ZodObject<{
|
|
693
|
+
pid: z.ZodNumber;
|
|
694
|
+
}, "strip", z.ZodTypeAny, {
|
|
695
|
+
pid: number;
|
|
696
|
+
}, {
|
|
697
|
+
pid: number;
|
|
698
|
+
}>;
|
|
699
|
+
}, "strip", z.ZodTypeAny, {
|
|
700
|
+
timeout_ms: number;
|
|
701
|
+
failure_threshold: number;
|
|
702
|
+
check_type: "process";
|
|
703
|
+
check_config: {
|
|
704
|
+
pid: number;
|
|
705
|
+
};
|
|
706
|
+
}, {
|
|
707
|
+
check_type: "process";
|
|
708
|
+
check_config: {
|
|
709
|
+
pid: number;
|
|
710
|
+
};
|
|
711
|
+
timeout_ms?: number | undefined;
|
|
712
|
+
failure_threshold?: number | undefined;
|
|
713
|
+
}>, z.ZodObject<{
|
|
714
|
+
failure_threshold: z.ZodDefault<z.ZodNumber>;
|
|
715
|
+
timeout_ms: z.ZodDefault<z.ZodNumber>;
|
|
716
|
+
} & {
|
|
717
|
+
check_type: z.ZodLiteral<"disk">;
|
|
718
|
+
check_config: z.ZodObject<{
|
|
719
|
+
path: z.ZodString;
|
|
720
|
+
}, "strip", z.ZodTypeAny, {
|
|
721
|
+
path: string;
|
|
722
|
+
}, {
|
|
723
|
+
path: string;
|
|
724
|
+
}>;
|
|
725
|
+
}, "strip", z.ZodTypeAny, {
|
|
726
|
+
timeout_ms: number;
|
|
727
|
+
failure_threshold: number;
|
|
728
|
+
check_type: "disk";
|
|
729
|
+
check_config: {
|
|
730
|
+
path: string;
|
|
731
|
+
};
|
|
732
|
+
}, {
|
|
733
|
+
check_type: "disk";
|
|
734
|
+
check_config: {
|
|
735
|
+
path: string;
|
|
736
|
+
};
|
|
737
|
+
timeout_ms?: number | undefined;
|
|
738
|
+
failure_threshold?: number | undefined;
|
|
739
|
+
}>, z.ZodObject<{
|
|
740
|
+
failure_threshold: z.ZodDefault<z.ZodNumber>;
|
|
741
|
+
timeout_ms: z.ZodDefault<z.ZodNumber>;
|
|
742
|
+
} & {
|
|
743
|
+
check_type: z.ZodLiteral<"custom">;
|
|
744
|
+
check_config: z.ZodObject<{
|
|
745
|
+
command: z.ZodString;
|
|
746
|
+
}, "strip", z.ZodTypeAny, {
|
|
747
|
+
command: string;
|
|
748
|
+
}, {
|
|
749
|
+
command: string;
|
|
750
|
+
}>;
|
|
751
|
+
}, "strip", z.ZodTypeAny, {
|
|
752
|
+
timeout_ms: number;
|
|
753
|
+
failure_threshold: number;
|
|
754
|
+
check_type: "custom";
|
|
755
|
+
check_config: {
|
|
756
|
+
command: string;
|
|
757
|
+
};
|
|
758
|
+
}, {
|
|
759
|
+
check_type: "custom";
|
|
760
|
+
check_config: {
|
|
761
|
+
command: string;
|
|
762
|
+
};
|
|
763
|
+
timeout_ms?: number | undefined;
|
|
764
|
+
failure_threshold?: number | undefined;
|
|
765
|
+
}>]>>;
|
|
368
766
|
probe: z.ZodOptional<z.ZodObject<{
|
|
369
767
|
data_source_id: z.ZodString;
|
|
370
768
|
probe_dimension: z.ZodOptional<z.ZodString>;
|
|
@@ -443,26 +841,27 @@ export declare const ScheduleEntrySchema: z.ZodObject<{
|
|
|
443
841
|
retryable_failure_kinds: z.ZodDefault<z.ZodArray<z.ZodEnum<["transient", "permanent"]>, "many">>;
|
|
444
842
|
}, "strip", z.ZodTypeAny, {
|
|
445
843
|
enabled: boolean;
|
|
446
|
-
max_attempts: number;
|
|
447
844
|
initial_delay_ms: number;
|
|
448
845
|
max_delay_ms: number;
|
|
449
846
|
multiplier: number;
|
|
450
847
|
jitter_factor: number;
|
|
848
|
+
max_attempts: number;
|
|
451
849
|
max_retry_window_ms: number;
|
|
452
850
|
retryable_failure_kinds: ("transient" | "permanent")[];
|
|
453
851
|
}, {
|
|
454
852
|
enabled?: boolean | undefined;
|
|
455
|
-
max_attempts?: number | undefined;
|
|
456
853
|
initial_delay_ms?: number | undefined;
|
|
457
854
|
max_delay_ms?: number | undefined;
|
|
458
855
|
multiplier?: number | undefined;
|
|
459
856
|
jitter_factor?: number | undefined;
|
|
857
|
+
max_attempts?: number | undefined;
|
|
460
858
|
max_retry_window_ms?: number | undefined;
|
|
461
859
|
retryable_failure_kinds?: ("transient" | "permanent")[] | undefined;
|
|
462
860
|
}>>;
|
|
463
861
|
retry_state: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
464
862
|
attempts: z.ZodDefault<z.ZodNumber>;
|
|
465
863
|
next_retry_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
864
|
+
scheduled_for: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
466
865
|
last_attempt_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
467
866
|
first_failure_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
468
867
|
last_failure_kind: z.ZodDefault<z.ZodNullable<z.ZodEnum<["transient", "permanent"]>>>;
|
|
@@ -470,6 +869,7 @@ export declare const ScheduleEntrySchema: z.ZodObject<{
|
|
|
470
869
|
}, "strip", z.ZodTypeAny, {
|
|
471
870
|
attempts: number;
|
|
472
871
|
next_retry_at: string | null;
|
|
872
|
+
scheduled_for: string | null;
|
|
473
873
|
last_attempt_at: string | null;
|
|
474
874
|
first_failure_at: string | null;
|
|
475
875
|
last_failure_kind: "transient" | "permanent" | null;
|
|
@@ -477,6 +877,7 @@ export declare const ScheduleEntrySchema: z.ZodObject<{
|
|
|
477
877
|
}, {
|
|
478
878
|
attempts?: number | undefined;
|
|
479
879
|
next_retry_at?: string | null | undefined;
|
|
880
|
+
scheduled_for?: string | null | undefined;
|
|
480
881
|
last_attempt_at?: string | null | undefined;
|
|
481
882
|
first_failure_at?: string | null | undefined;
|
|
482
883
|
last_failure_kind?: "transient" | "permanent" | null | undefined;
|
|
@@ -504,37 +905,37 @@ export declare const ScheduleEntrySchema: z.ZodObject<{
|
|
|
504
905
|
report_type: z.ZodOptional<z.ZodString>;
|
|
505
906
|
max_tokens: z.ZodDefault<z.ZodNumber>;
|
|
506
907
|
}, "strip", z.ZodTypeAny, {
|
|
507
|
-
max_tokens: number;
|
|
508
908
|
job_kind: "prompt" | "reflection" | "soil_publish";
|
|
509
909
|
prompt_template: string;
|
|
510
910
|
context_sources: string[];
|
|
511
911
|
output_format: "notification" | "both" | "report";
|
|
912
|
+
max_tokens: number;
|
|
512
913
|
report_type?: string | undefined;
|
|
513
914
|
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
514
915
|
}, {
|
|
515
916
|
prompt_template: string;
|
|
516
917
|
report_type?: string | undefined;
|
|
517
|
-
max_tokens?: number | undefined;
|
|
518
918
|
job_kind?: "prompt" | "reflection" | "soil_publish" | undefined;
|
|
519
919
|
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
520
920
|
context_sources?: string[] | undefined;
|
|
521
921
|
output_format?: "notification" | "both" | "report" | undefined;
|
|
922
|
+
max_tokens?: number | undefined;
|
|
522
923
|
}>, {
|
|
523
|
-
max_tokens: number;
|
|
524
924
|
job_kind: "prompt" | "reflection" | "soil_publish";
|
|
525
925
|
prompt_template: string;
|
|
526
926
|
context_sources: string[];
|
|
527
927
|
output_format: "notification" | "both" | "report";
|
|
928
|
+
max_tokens: number;
|
|
528
929
|
report_type?: string | undefined;
|
|
529
930
|
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
530
931
|
}, {
|
|
531
932
|
prompt_template: string;
|
|
532
933
|
report_type?: string | undefined;
|
|
533
|
-
max_tokens?: number | undefined;
|
|
534
934
|
job_kind?: "prompt" | "reflection" | "soil_publish" | undefined;
|
|
535
935
|
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
536
936
|
context_sources?: string[] | undefined;
|
|
537
937
|
output_format?: "notification" | "both" | "report" | undefined;
|
|
938
|
+
max_tokens?: number | undefined;
|
|
538
939
|
}>>;
|
|
539
940
|
goal_trigger: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
540
941
|
goal_id: z.ZodString;
|
|
@@ -573,10 +974,10 @@ export declare const ScheduleEntrySchema: z.ZodObject<{
|
|
|
573
974
|
timezone: string;
|
|
574
975
|
} | {
|
|
575
976
|
type: "interval";
|
|
576
|
-
seconds: number;
|
|
577
977
|
jitter_factor: number;
|
|
978
|
+
seconds: number;
|
|
578
979
|
};
|
|
579
|
-
layer: "
|
|
980
|
+
layer: "probe" | "cron" | "goal_trigger" | "heartbeat";
|
|
580
981
|
enabled: boolean;
|
|
581
982
|
baseline_results: unknown[];
|
|
582
983
|
last_fired_at: string | null;
|
|
@@ -596,19 +997,13 @@ export declare const ScheduleEntrySchema: z.ZodObject<{
|
|
|
596
997
|
goal_id?: string | undefined;
|
|
597
998
|
strategy_id?: string | undefined;
|
|
598
999
|
activation_kind?: "wait_resume" | undefined;
|
|
599
|
-
external_id?: string | undefined;
|
|
600
1000
|
note?: string | undefined;
|
|
601
1001
|
preset_key?: string | undefined;
|
|
602
1002
|
dream_suggestion_id?: string | undefined;
|
|
603
1003
|
external_source_id?: string | undefined;
|
|
1004
|
+
external_id?: string | undefined;
|
|
604
1005
|
wait_strategy_id?: string | undefined;
|
|
605
1006
|
} | undefined;
|
|
606
|
-
heartbeat?: {
|
|
607
|
-
timeout_ms: number;
|
|
608
|
-
check_type: "custom" | "process" | "http" | "tcp" | "disk";
|
|
609
|
-
check_config: Record<string, unknown>;
|
|
610
|
-
failure_threshold: number;
|
|
611
|
-
} | undefined;
|
|
612
1007
|
probe?: {
|
|
613
1008
|
data_source_id: string;
|
|
614
1009
|
query_params: Record<string, unknown>;
|
|
@@ -622,11 +1017,11 @@ export declare const ScheduleEntrySchema: z.ZodObject<{
|
|
|
622
1017
|
llm_prompt_template?: string | undefined;
|
|
623
1018
|
} | undefined;
|
|
624
1019
|
cron?: {
|
|
625
|
-
max_tokens: number;
|
|
626
1020
|
job_kind: "prompt" | "reflection" | "soil_publish";
|
|
627
1021
|
prompt_template: string;
|
|
628
1022
|
context_sources: string[];
|
|
629
1023
|
output_format: "notification" | "both" | "report";
|
|
1024
|
+
max_tokens: number;
|
|
630
1025
|
report_type?: string | undefined;
|
|
631
1026
|
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
632
1027
|
} | undefined;
|
|
@@ -636,6 +1031,43 @@ export declare const ScheduleEntrySchema: z.ZodObject<{
|
|
|
636
1031
|
max_iterations: number | null;
|
|
637
1032
|
skip_if_active: boolean;
|
|
638
1033
|
} | undefined;
|
|
1034
|
+
heartbeat?: {
|
|
1035
|
+
timeout_ms: number;
|
|
1036
|
+
failure_threshold: number;
|
|
1037
|
+
check_type: "http";
|
|
1038
|
+
check_config: {
|
|
1039
|
+
url: string;
|
|
1040
|
+
};
|
|
1041
|
+
} | {
|
|
1042
|
+
timeout_ms: number;
|
|
1043
|
+
failure_threshold: number;
|
|
1044
|
+
check_type: "tcp";
|
|
1045
|
+
check_config: {
|
|
1046
|
+
host: string;
|
|
1047
|
+
port: number;
|
|
1048
|
+
};
|
|
1049
|
+
} | {
|
|
1050
|
+
timeout_ms: number;
|
|
1051
|
+
failure_threshold: number;
|
|
1052
|
+
check_type: "process";
|
|
1053
|
+
check_config: {
|
|
1054
|
+
pid: number;
|
|
1055
|
+
};
|
|
1056
|
+
} | {
|
|
1057
|
+
timeout_ms: number;
|
|
1058
|
+
failure_threshold: number;
|
|
1059
|
+
check_type: "disk";
|
|
1060
|
+
check_config: {
|
|
1061
|
+
path: string;
|
|
1062
|
+
};
|
|
1063
|
+
} | {
|
|
1064
|
+
timeout_ms: number;
|
|
1065
|
+
failure_threshold: number;
|
|
1066
|
+
check_type: "custom";
|
|
1067
|
+
check_config: {
|
|
1068
|
+
command: string;
|
|
1069
|
+
};
|
|
1070
|
+
} | undefined;
|
|
639
1071
|
escalation?: {
|
|
640
1072
|
enabled: boolean;
|
|
641
1073
|
cooldown_minutes: number;
|
|
@@ -647,17 +1079,18 @@ export declare const ScheduleEntrySchema: z.ZodObject<{
|
|
|
647
1079
|
} | undefined;
|
|
648
1080
|
retry_policy?: {
|
|
649
1081
|
enabled: boolean;
|
|
650
|
-
max_attempts: number;
|
|
651
1082
|
initial_delay_ms: number;
|
|
652
1083
|
max_delay_ms: number;
|
|
653
1084
|
multiplier: number;
|
|
654
1085
|
jitter_factor: number;
|
|
1086
|
+
max_attempts: number;
|
|
655
1087
|
max_retry_window_ms: number;
|
|
656
1088
|
retryable_failure_kinds: ("transient" | "permanent")[];
|
|
657
1089
|
} | undefined;
|
|
658
1090
|
retry_state?: {
|
|
659
1091
|
attempts: number;
|
|
660
1092
|
next_retry_at: string | null;
|
|
1093
|
+
scheduled_for: string | null;
|
|
661
1094
|
last_attempt_at: string | null;
|
|
662
1095
|
first_failure_at: string | null;
|
|
663
1096
|
last_failure_kind: "transient" | "permanent" | null;
|
|
@@ -677,7 +1110,7 @@ export declare const ScheduleEntrySchema: z.ZodObject<{
|
|
|
677
1110
|
seconds: number;
|
|
678
1111
|
jitter_factor?: number | undefined;
|
|
679
1112
|
};
|
|
680
|
-
layer: "
|
|
1113
|
+
layer: "probe" | "cron" | "goal_trigger" | "heartbeat";
|
|
681
1114
|
next_fire_at: string;
|
|
682
1115
|
metadata?: {
|
|
683
1116
|
source?: "manual" | "external" | "dream" | "preset" | undefined;
|
|
@@ -685,21 +1118,15 @@ export declare const ScheduleEntrySchema: z.ZodObject<{
|
|
|
685
1118
|
goal_id?: string | undefined;
|
|
686
1119
|
strategy_id?: string | undefined;
|
|
687
1120
|
activation_kind?: "wait_resume" | undefined;
|
|
688
|
-
external_id?: string | undefined;
|
|
689
1121
|
note?: string | undefined;
|
|
690
1122
|
preset_key?: string | undefined;
|
|
691
1123
|
dream_suggestion_id?: string | undefined;
|
|
692
1124
|
external_source_id?: string | undefined;
|
|
1125
|
+
external_id?: string | undefined;
|
|
693
1126
|
dependency_hints?: string[] | undefined;
|
|
694
1127
|
wait_strategy_id?: string | undefined;
|
|
695
1128
|
} | undefined;
|
|
696
1129
|
enabled?: boolean | undefined;
|
|
697
|
-
heartbeat?: {
|
|
698
|
-
check_type: "custom" | "process" | "http" | "tcp" | "disk";
|
|
699
|
-
check_config: Record<string, unknown>;
|
|
700
|
-
timeout_ms?: number | undefined;
|
|
701
|
-
failure_threshold?: number | undefined;
|
|
702
|
-
} | undefined;
|
|
703
1130
|
probe?: {
|
|
704
1131
|
data_source_id: string;
|
|
705
1132
|
change_detector: {
|
|
@@ -715,11 +1142,11 @@ export declare const ScheduleEntrySchema: z.ZodObject<{
|
|
|
715
1142
|
cron?: {
|
|
716
1143
|
prompt_template: string;
|
|
717
1144
|
report_type?: string | undefined;
|
|
718
|
-
max_tokens?: number | undefined;
|
|
719
1145
|
job_kind?: "prompt" | "reflection" | "soil_publish" | undefined;
|
|
720
1146
|
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
721
1147
|
context_sources?: string[] | undefined;
|
|
722
1148
|
output_format?: "notification" | "both" | "report" | undefined;
|
|
1149
|
+
max_tokens?: number | undefined;
|
|
723
1150
|
} | undefined;
|
|
724
1151
|
goal_trigger?: {
|
|
725
1152
|
goal_id: string;
|
|
@@ -727,6 +1154,43 @@ export declare const ScheduleEntrySchema: z.ZodObject<{
|
|
|
727
1154
|
max_iterations?: number | null | undefined;
|
|
728
1155
|
skip_if_active?: boolean | undefined;
|
|
729
1156
|
} | undefined;
|
|
1157
|
+
heartbeat?: {
|
|
1158
|
+
check_type: "http";
|
|
1159
|
+
check_config: {
|
|
1160
|
+
url: string;
|
|
1161
|
+
};
|
|
1162
|
+
timeout_ms?: number | undefined;
|
|
1163
|
+
failure_threshold?: number | undefined;
|
|
1164
|
+
} | {
|
|
1165
|
+
check_type: "tcp";
|
|
1166
|
+
check_config: {
|
|
1167
|
+
host: string;
|
|
1168
|
+
port: number;
|
|
1169
|
+
};
|
|
1170
|
+
timeout_ms?: number | undefined;
|
|
1171
|
+
failure_threshold?: number | undefined;
|
|
1172
|
+
} | {
|
|
1173
|
+
check_type: "process";
|
|
1174
|
+
check_config: {
|
|
1175
|
+
pid: number;
|
|
1176
|
+
};
|
|
1177
|
+
timeout_ms?: number | undefined;
|
|
1178
|
+
failure_threshold?: number | undefined;
|
|
1179
|
+
} | {
|
|
1180
|
+
check_type: "disk";
|
|
1181
|
+
check_config: {
|
|
1182
|
+
path: string;
|
|
1183
|
+
};
|
|
1184
|
+
timeout_ms?: number | undefined;
|
|
1185
|
+
failure_threshold?: number | undefined;
|
|
1186
|
+
} | {
|
|
1187
|
+
check_type: "custom";
|
|
1188
|
+
check_config: {
|
|
1189
|
+
command: string;
|
|
1190
|
+
};
|
|
1191
|
+
timeout_ms?: number | undefined;
|
|
1192
|
+
failure_threshold?: number | undefined;
|
|
1193
|
+
} | undefined;
|
|
730
1194
|
escalation?: {
|
|
731
1195
|
enabled?: boolean | undefined;
|
|
732
1196
|
target_goal_id?: string | undefined;
|
|
@@ -738,17 +1202,18 @@ export declare const ScheduleEntrySchema: z.ZodObject<{
|
|
|
738
1202
|
} | undefined;
|
|
739
1203
|
retry_policy?: {
|
|
740
1204
|
enabled?: boolean | undefined;
|
|
741
|
-
max_attempts?: number | undefined;
|
|
742
1205
|
initial_delay_ms?: number | undefined;
|
|
743
1206
|
max_delay_ms?: number | undefined;
|
|
744
1207
|
multiplier?: number | undefined;
|
|
745
1208
|
jitter_factor?: number | undefined;
|
|
1209
|
+
max_attempts?: number | undefined;
|
|
746
1210
|
max_retry_window_ms?: number | undefined;
|
|
747
1211
|
retryable_failure_kinds?: ("transient" | "permanent")[] | undefined;
|
|
748
1212
|
} | undefined;
|
|
749
1213
|
retry_state?: {
|
|
750
1214
|
attempts?: number | undefined;
|
|
751
1215
|
next_retry_at?: string | null | undefined;
|
|
1216
|
+
scheduled_for?: string | null | undefined;
|
|
752
1217
|
last_attempt_at?: string | null | undefined;
|
|
753
1218
|
first_failure_at?: string | null | undefined;
|
|
754
1219
|
last_failure_kind?: "transient" | "permanent" | null | undefined;
|
|
@@ -789,8 +1254,8 @@ export declare const ScheduleEntryListSchema: z.ZodArray<z.ZodObject<{
|
|
|
789
1254
|
jitter_factor: z.ZodDefault<z.ZodNumber>;
|
|
790
1255
|
}, "strip", z.ZodTypeAny, {
|
|
791
1256
|
type: "interval";
|
|
792
|
-
seconds: number;
|
|
793
1257
|
jitter_factor: number;
|
|
1258
|
+
seconds: number;
|
|
794
1259
|
}, {
|
|
795
1260
|
type: "interval";
|
|
796
1261
|
seconds: number;
|
|
@@ -817,11 +1282,11 @@ export declare const ScheduleEntryListSchema: z.ZodArray<z.ZodObject<{
|
|
|
817
1282
|
goal_id?: string | undefined;
|
|
818
1283
|
strategy_id?: string | undefined;
|
|
819
1284
|
activation_kind?: "wait_resume" | undefined;
|
|
820
|
-
external_id?: string | undefined;
|
|
821
1285
|
note?: string | undefined;
|
|
822
1286
|
preset_key?: string | undefined;
|
|
823
1287
|
dream_suggestion_id?: string | undefined;
|
|
824
1288
|
external_source_id?: string | undefined;
|
|
1289
|
+
external_id?: string | undefined;
|
|
825
1290
|
wait_strategy_id?: string | undefined;
|
|
826
1291
|
}, {
|
|
827
1292
|
source?: "manual" | "external" | "dream" | "preset" | undefined;
|
|
@@ -829,30 +1294,150 @@ export declare const ScheduleEntryListSchema: z.ZodArray<z.ZodObject<{
|
|
|
829
1294
|
goal_id?: string | undefined;
|
|
830
1295
|
strategy_id?: string | undefined;
|
|
831
1296
|
activation_kind?: "wait_resume" | undefined;
|
|
832
|
-
external_id?: string | undefined;
|
|
833
1297
|
note?: string | undefined;
|
|
834
1298
|
preset_key?: string | undefined;
|
|
835
1299
|
dream_suggestion_id?: string | undefined;
|
|
836
1300
|
external_source_id?: string | undefined;
|
|
1301
|
+
external_id?: string | undefined;
|
|
837
1302
|
dependency_hints?: string[] | undefined;
|
|
838
1303
|
wait_strategy_id?: string | undefined;
|
|
839
1304
|
}>>;
|
|
840
|
-
heartbeat: z.ZodOptional<z.ZodObject<{
|
|
841
|
-
check_type: z.ZodEnum<["http", "tcp", "process", "disk", "custom"]>;
|
|
842
|
-
check_config: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1305
|
+
heartbeat: z.ZodOptional<z.ZodDiscriminatedUnion<"check_type", [z.ZodObject<{
|
|
843
1306
|
failure_threshold: z.ZodDefault<z.ZodNumber>;
|
|
844
1307
|
timeout_ms: z.ZodDefault<z.ZodNumber>;
|
|
1308
|
+
} & {
|
|
1309
|
+
check_type: z.ZodLiteral<"http">;
|
|
1310
|
+
check_config: z.ZodObject<{
|
|
1311
|
+
url: z.ZodString;
|
|
1312
|
+
}, "strip", z.ZodTypeAny, {
|
|
1313
|
+
url: string;
|
|
1314
|
+
}, {
|
|
1315
|
+
url: string;
|
|
1316
|
+
}>;
|
|
845
1317
|
}, "strip", z.ZodTypeAny, {
|
|
846
1318
|
timeout_ms: number;
|
|
847
|
-
check_type: "custom" | "process" | "http" | "tcp" | "disk";
|
|
848
|
-
check_config: Record<string, unknown>;
|
|
849
1319
|
failure_threshold: number;
|
|
1320
|
+
check_type: "http";
|
|
1321
|
+
check_config: {
|
|
1322
|
+
url: string;
|
|
1323
|
+
};
|
|
850
1324
|
}, {
|
|
851
|
-
check_type: "
|
|
852
|
-
check_config:
|
|
1325
|
+
check_type: "http";
|
|
1326
|
+
check_config: {
|
|
1327
|
+
url: string;
|
|
1328
|
+
};
|
|
853
1329
|
timeout_ms?: number | undefined;
|
|
854
1330
|
failure_threshold?: number | undefined;
|
|
855
|
-
}
|
|
1331
|
+
}>, z.ZodObject<{
|
|
1332
|
+
failure_threshold: z.ZodDefault<z.ZodNumber>;
|
|
1333
|
+
timeout_ms: z.ZodDefault<z.ZodNumber>;
|
|
1334
|
+
} & {
|
|
1335
|
+
check_type: z.ZodLiteral<"tcp">;
|
|
1336
|
+
check_config: z.ZodObject<{
|
|
1337
|
+
host: z.ZodString;
|
|
1338
|
+
port: z.ZodNumber;
|
|
1339
|
+
}, "strip", z.ZodTypeAny, {
|
|
1340
|
+
host: string;
|
|
1341
|
+
port: number;
|
|
1342
|
+
}, {
|
|
1343
|
+
host: string;
|
|
1344
|
+
port: number;
|
|
1345
|
+
}>;
|
|
1346
|
+
}, "strip", z.ZodTypeAny, {
|
|
1347
|
+
timeout_ms: number;
|
|
1348
|
+
failure_threshold: number;
|
|
1349
|
+
check_type: "tcp";
|
|
1350
|
+
check_config: {
|
|
1351
|
+
host: string;
|
|
1352
|
+
port: number;
|
|
1353
|
+
};
|
|
1354
|
+
}, {
|
|
1355
|
+
check_type: "tcp";
|
|
1356
|
+
check_config: {
|
|
1357
|
+
host: string;
|
|
1358
|
+
port: number;
|
|
1359
|
+
};
|
|
1360
|
+
timeout_ms?: number | undefined;
|
|
1361
|
+
failure_threshold?: number | undefined;
|
|
1362
|
+
}>, z.ZodObject<{
|
|
1363
|
+
failure_threshold: z.ZodDefault<z.ZodNumber>;
|
|
1364
|
+
timeout_ms: z.ZodDefault<z.ZodNumber>;
|
|
1365
|
+
} & {
|
|
1366
|
+
check_type: z.ZodLiteral<"process">;
|
|
1367
|
+
check_config: z.ZodObject<{
|
|
1368
|
+
pid: z.ZodNumber;
|
|
1369
|
+
}, "strip", z.ZodTypeAny, {
|
|
1370
|
+
pid: number;
|
|
1371
|
+
}, {
|
|
1372
|
+
pid: number;
|
|
1373
|
+
}>;
|
|
1374
|
+
}, "strip", z.ZodTypeAny, {
|
|
1375
|
+
timeout_ms: number;
|
|
1376
|
+
failure_threshold: number;
|
|
1377
|
+
check_type: "process";
|
|
1378
|
+
check_config: {
|
|
1379
|
+
pid: number;
|
|
1380
|
+
};
|
|
1381
|
+
}, {
|
|
1382
|
+
check_type: "process";
|
|
1383
|
+
check_config: {
|
|
1384
|
+
pid: number;
|
|
1385
|
+
};
|
|
1386
|
+
timeout_ms?: number | undefined;
|
|
1387
|
+
failure_threshold?: number | undefined;
|
|
1388
|
+
}>, z.ZodObject<{
|
|
1389
|
+
failure_threshold: z.ZodDefault<z.ZodNumber>;
|
|
1390
|
+
timeout_ms: z.ZodDefault<z.ZodNumber>;
|
|
1391
|
+
} & {
|
|
1392
|
+
check_type: z.ZodLiteral<"disk">;
|
|
1393
|
+
check_config: z.ZodObject<{
|
|
1394
|
+
path: z.ZodString;
|
|
1395
|
+
}, "strip", z.ZodTypeAny, {
|
|
1396
|
+
path: string;
|
|
1397
|
+
}, {
|
|
1398
|
+
path: string;
|
|
1399
|
+
}>;
|
|
1400
|
+
}, "strip", z.ZodTypeAny, {
|
|
1401
|
+
timeout_ms: number;
|
|
1402
|
+
failure_threshold: number;
|
|
1403
|
+
check_type: "disk";
|
|
1404
|
+
check_config: {
|
|
1405
|
+
path: string;
|
|
1406
|
+
};
|
|
1407
|
+
}, {
|
|
1408
|
+
check_type: "disk";
|
|
1409
|
+
check_config: {
|
|
1410
|
+
path: string;
|
|
1411
|
+
};
|
|
1412
|
+
timeout_ms?: number | undefined;
|
|
1413
|
+
failure_threshold?: number | undefined;
|
|
1414
|
+
}>, z.ZodObject<{
|
|
1415
|
+
failure_threshold: z.ZodDefault<z.ZodNumber>;
|
|
1416
|
+
timeout_ms: z.ZodDefault<z.ZodNumber>;
|
|
1417
|
+
} & {
|
|
1418
|
+
check_type: z.ZodLiteral<"custom">;
|
|
1419
|
+
check_config: z.ZodObject<{
|
|
1420
|
+
command: z.ZodString;
|
|
1421
|
+
}, "strip", z.ZodTypeAny, {
|
|
1422
|
+
command: string;
|
|
1423
|
+
}, {
|
|
1424
|
+
command: string;
|
|
1425
|
+
}>;
|
|
1426
|
+
}, "strip", z.ZodTypeAny, {
|
|
1427
|
+
timeout_ms: number;
|
|
1428
|
+
failure_threshold: number;
|
|
1429
|
+
check_type: "custom";
|
|
1430
|
+
check_config: {
|
|
1431
|
+
command: string;
|
|
1432
|
+
};
|
|
1433
|
+
}, {
|
|
1434
|
+
check_type: "custom";
|
|
1435
|
+
check_config: {
|
|
1436
|
+
command: string;
|
|
1437
|
+
};
|
|
1438
|
+
timeout_ms?: number | undefined;
|
|
1439
|
+
failure_threshold?: number | undefined;
|
|
1440
|
+
}>]>>;
|
|
856
1441
|
probe: z.ZodOptional<z.ZodObject<{
|
|
857
1442
|
data_source_id: z.ZodString;
|
|
858
1443
|
probe_dimension: z.ZodOptional<z.ZodString>;
|
|
@@ -931,26 +1516,27 @@ export declare const ScheduleEntryListSchema: z.ZodArray<z.ZodObject<{
|
|
|
931
1516
|
retryable_failure_kinds: z.ZodDefault<z.ZodArray<z.ZodEnum<["transient", "permanent"]>, "many">>;
|
|
932
1517
|
}, "strip", z.ZodTypeAny, {
|
|
933
1518
|
enabled: boolean;
|
|
934
|
-
max_attempts: number;
|
|
935
1519
|
initial_delay_ms: number;
|
|
936
1520
|
max_delay_ms: number;
|
|
937
1521
|
multiplier: number;
|
|
938
1522
|
jitter_factor: number;
|
|
1523
|
+
max_attempts: number;
|
|
939
1524
|
max_retry_window_ms: number;
|
|
940
1525
|
retryable_failure_kinds: ("transient" | "permanent")[];
|
|
941
1526
|
}, {
|
|
942
1527
|
enabled?: boolean | undefined;
|
|
943
|
-
max_attempts?: number | undefined;
|
|
944
1528
|
initial_delay_ms?: number | undefined;
|
|
945
1529
|
max_delay_ms?: number | undefined;
|
|
946
1530
|
multiplier?: number | undefined;
|
|
947
1531
|
jitter_factor?: number | undefined;
|
|
1532
|
+
max_attempts?: number | undefined;
|
|
948
1533
|
max_retry_window_ms?: number | undefined;
|
|
949
1534
|
retryable_failure_kinds?: ("transient" | "permanent")[] | undefined;
|
|
950
1535
|
}>>;
|
|
951
1536
|
retry_state: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
952
1537
|
attempts: z.ZodDefault<z.ZodNumber>;
|
|
953
1538
|
next_retry_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
1539
|
+
scheduled_for: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
954
1540
|
last_attempt_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
955
1541
|
first_failure_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
956
1542
|
last_failure_kind: z.ZodDefault<z.ZodNullable<z.ZodEnum<["transient", "permanent"]>>>;
|
|
@@ -958,6 +1544,7 @@ export declare const ScheduleEntryListSchema: z.ZodArray<z.ZodObject<{
|
|
|
958
1544
|
}, "strip", z.ZodTypeAny, {
|
|
959
1545
|
attempts: number;
|
|
960
1546
|
next_retry_at: string | null;
|
|
1547
|
+
scheduled_for: string | null;
|
|
961
1548
|
last_attempt_at: string | null;
|
|
962
1549
|
first_failure_at: string | null;
|
|
963
1550
|
last_failure_kind: "transient" | "permanent" | null;
|
|
@@ -965,6 +1552,7 @@ export declare const ScheduleEntryListSchema: z.ZodArray<z.ZodObject<{
|
|
|
965
1552
|
}, {
|
|
966
1553
|
attempts?: number | undefined;
|
|
967
1554
|
next_retry_at?: string | null | undefined;
|
|
1555
|
+
scheduled_for?: string | null | undefined;
|
|
968
1556
|
last_attempt_at?: string | null | undefined;
|
|
969
1557
|
first_failure_at?: string | null | undefined;
|
|
970
1558
|
last_failure_kind?: "transient" | "permanent" | null | undefined;
|
|
@@ -992,37 +1580,37 @@ export declare const ScheduleEntryListSchema: z.ZodArray<z.ZodObject<{
|
|
|
992
1580
|
report_type: z.ZodOptional<z.ZodString>;
|
|
993
1581
|
max_tokens: z.ZodDefault<z.ZodNumber>;
|
|
994
1582
|
}, "strip", z.ZodTypeAny, {
|
|
995
|
-
max_tokens: number;
|
|
996
1583
|
job_kind: "prompt" | "reflection" | "soil_publish";
|
|
997
1584
|
prompt_template: string;
|
|
998
1585
|
context_sources: string[];
|
|
999
1586
|
output_format: "notification" | "both" | "report";
|
|
1587
|
+
max_tokens: number;
|
|
1000
1588
|
report_type?: string | undefined;
|
|
1001
1589
|
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
1002
1590
|
}, {
|
|
1003
1591
|
prompt_template: string;
|
|
1004
1592
|
report_type?: string | undefined;
|
|
1005
|
-
max_tokens?: number | undefined;
|
|
1006
1593
|
job_kind?: "prompt" | "reflection" | "soil_publish" | undefined;
|
|
1007
1594
|
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
1008
1595
|
context_sources?: string[] | undefined;
|
|
1009
1596
|
output_format?: "notification" | "both" | "report" | undefined;
|
|
1597
|
+
max_tokens?: number | undefined;
|
|
1010
1598
|
}>, {
|
|
1011
|
-
max_tokens: number;
|
|
1012
1599
|
job_kind: "prompt" | "reflection" | "soil_publish";
|
|
1013
1600
|
prompt_template: string;
|
|
1014
1601
|
context_sources: string[];
|
|
1015
1602
|
output_format: "notification" | "both" | "report";
|
|
1603
|
+
max_tokens: number;
|
|
1016
1604
|
report_type?: string | undefined;
|
|
1017
1605
|
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
1018
1606
|
}, {
|
|
1019
1607
|
prompt_template: string;
|
|
1020
1608
|
report_type?: string | undefined;
|
|
1021
|
-
max_tokens?: number | undefined;
|
|
1022
1609
|
job_kind?: "prompt" | "reflection" | "soil_publish" | undefined;
|
|
1023
1610
|
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
1024
1611
|
context_sources?: string[] | undefined;
|
|
1025
1612
|
output_format?: "notification" | "both" | "report" | undefined;
|
|
1613
|
+
max_tokens?: number | undefined;
|
|
1026
1614
|
}>>;
|
|
1027
1615
|
goal_trigger: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
1028
1616
|
goal_id: z.ZodString;
|
|
@@ -1061,10 +1649,10 @@ export declare const ScheduleEntryListSchema: z.ZodArray<z.ZodObject<{
|
|
|
1061
1649
|
timezone: string;
|
|
1062
1650
|
} | {
|
|
1063
1651
|
type: "interval";
|
|
1064
|
-
seconds: number;
|
|
1065
1652
|
jitter_factor: number;
|
|
1653
|
+
seconds: number;
|
|
1066
1654
|
};
|
|
1067
|
-
layer: "
|
|
1655
|
+
layer: "probe" | "cron" | "goal_trigger" | "heartbeat";
|
|
1068
1656
|
enabled: boolean;
|
|
1069
1657
|
baseline_results: unknown[];
|
|
1070
1658
|
last_fired_at: string | null;
|
|
@@ -1084,19 +1672,13 @@ export declare const ScheduleEntryListSchema: z.ZodArray<z.ZodObject<{
|
|
|
1084
1672
|
goal_id?: string | undefined;
|
|
1085
1673
|
strategy_id?: string | undefined;
|
|
1086
1674
|
activation_kind?: "wait_resume" | undefined;
|
|
1087
|
-
external_id?: string | undefined;
|
|
1088
1675
|
note?: string | undefined;
|
|
1089
1676
|
preset_key?: string | undefined;
|
|
1090
1677
|
dream_suggestion_id?: string | undefined;
|
|
1091
1678
|
external_source_id?: string | undefined;
|
|
1679
|
+
external_id?: string | undefined;
|
|
1092
1680
|
wait_strategy_id?: string | undefined;
|
|
1093
1681
|
} | undefined;
|
|
1094
|
-
heartbeat?: {
|
|
1095
|
-
timeout_ms: number;
|
|
1096
|
-
check_type: "custom" | "process" | "http" | "tcp" | "disk";
|
|
1097
|
-
check_config: Record<string, unknown>;
|
|
1098
|
-
failure_threshold: number;
|
|
1099
|
-
} | undefined;
|
|
1100
1682
|
probe?: {
|
|
1101
1683
|
data_source_id: string;
|
|
1102
1684
|
query_params: Record<string, unknown>;
|
|
@@ -1110,11 +1692,11 @@ export declare const ScheduleEntryListSchema: z.ZodArray<z.ZodObject<{
|
|
|
1110
1692
|
llm_prompt_template?: string | undefined;
|
|
1111
1693
|
} | undefined;
|
|
1112
1694
|
cron?: {
|
|
1113
|
-
max_tokens: number;
|
|
1114
1695
|
job_kind: "prompt" | "reflection" | "soil_publish";
|
|
1115
1696
|
prompt_template: string;
|
|
1116
1697
|
context_sources: string[];
|
|
1117
1698
|
output_format: "notification" | "both" | "report";
|
|
1699
|
+
max_tokens: number;
|
|
1118
1700
|
report_type?: string | undefined;
|
|
1119
1701
|
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
1120
1702
|
} | undefined;
|
|
@@ -1124,6 +1706,43 @@ export declare const ScheduleEntryListSchema: z.ZodArray<z.ZodObject<{
|
|
|
1124
1706
|
max_iterations: number | null;
|
|
1125
1707
|
skip_if_active: boolean;
|
|
1126
1708
|
} | undefined;
|
|
1709
|
+
heartbeat?: {
|
|
1710
|
+
timeout_ms: number;
|
|
1711
|
+
failure_threshold: number;
|
|
1712
|
+
check_type: "http";
|
|
1713
|
+
check_config: {
|
|
1714
|
+
url: string;
|
|
1715
|
+
};
|
|
1716
|
+
} | {
|
|
1717
|
+
timeout_ms: number;
|
|
1718
|
+
failure_threshold: number;
|
|
1719
|
+
check_type: "tcp";
|
|
1720
|
+
check_config: {
|
|
1721
|
+
host: string;
|
|
1722
|
+
port: number;
|
|
1723
|
+
};
|
|
1724
|
+
} | {
|
|
1725
|
+
timeout_ms: number;
|
|
1726
|
+
failure_threshold: number;
|
|
1727
|
+
check_type: "process";
|
|
1728
|
+
check_config: {
|
|
1729
|
+
pid: number;
|
|
1730
|
+
};
|
|
1731
|
+
} | {
|
|
1732
|
+
timeout_ms: number;
|
|
1733
|
+
failure_threshold: number;
|
|
1734
|
+
check_type: "disk";
|
|
1735
|
+
check_config: {
|
|
1736
|
+
path: string;
|
|
1737
|
+
};
|
|
1738
|
+
} | {
|
|
1739
|
+
timeout_ms: number;
|
|
1740
|
+
failure_threshold: number;
|
|
1741
|
+
check_type: "custom";
|
|
1742
|
+
check_config: {
|
|
1743
|
+
command: string;
|
|
1744
|
+
};
|
|
1745
|
+
} | undefined;
|
|
1127
1746
|
escalation?: {
|
|
1128
1747
|
enabled: boolean;
|
|
1129
1748
|
cooldown_minutes: number;
|
|
@@ -1135,17 +1754,18 @@ export declare const ScheduleEntryListSchema: z.ZodArray<z.ZodObject<{
|
|
|
1135
1754
|
} | undefined;
|
|
1136
1755
|
retry_policy?: {
|
|
1137
1756
|
enabled: boolean;
|
|
1138
|
-
max_attempts: number;
|
|
1139
1757
|
initial_delay_ms: number;
|
|
1140
1758
|
max_delay_ms: number;
|
|
1141
1759
|
multiplier: number;
|
|
1142
1760
|
jitter_factor: number;
|
|
1761
|
+
max_attempts: number;
|
|
1143
1762
|
max_retry_window_ms: number;
|
|
1144
1763
|
retryable_failure_kinds: ("transient" | "permanent")[];
|
|
1145
1764
|
} | undefined;
|
|
1146
1765
|
retry_state?: {
|
|
1147
1766
|
attempts: number;
|
|
1148
1767
|
next_retry_at: string | null;
|
|
1768
|
+
scheduled_for: string | null;
|
|
1149
1769
|
last_attempt_at: string | null;
|
|
1150
1770
|
first_failure_at: string | null;
|
|
1151
1771
|
last_failure_kind: "transient" | "permanent" | null;
|
|
@@ -1165,7 +1785,7 @@ export declare const ScheduleEntryListSchema: z.ZodArray<z.ZodObject<{
|
|
|
1165
1785
|
seconds: number;
|
|
1166
1786
|
jitter_factor?: number | undefined;
|
|
1167
1787
|
};
|
|
1168
|
-
layer: "
|
|
1788
|
+
layer: "probe" | "cron" | "goal_trigger" | "heartbeat";
|
|
1169
1789
|
next_fire_at: string;
|
|
1170
1790
|
metadata?: {
|
|
1171
1791
|
source?: "manual" | "external" | "dream" | "preset" | undefined;
|
|
@@ -1173,21 +1793,15 @@ export declare const ScheduleEntryListSchema: z.ZodArray<z.ZodObject<{
|
|
|
1173
1793
|
goal_id?: string | undefined;
|
|
1174
1794
|
strategy_id?: string | undefined;
|
|
1175
1795
|
activation_kind?: "wait_resume" | undefined;
|
|
1176
|
-
external_id?: string | undefined;
|
|
1177
1796
|
note?: string | undefined;
|
|
1178
1797
|
preset_key?: string | undefined;
|
|
1179
1798
|
dream_suggestion_id?: string | undefined;
|
|
1180
1799
|
external_source_id?: string | undefined;
|
|
1800
|
+
external_id?: string | undefined;
|
|
1181
1801
|
dependency_hints?: string[] | undefined;
|
|
1182
1802
|
wait_strategy_id?: string | undefined;
|
|
1183
1803
|
} | undefined;
|
|
1184
1804
|
enabled?: boolean | undefined;
|
|
1185
|
-
heartbeat?: {
|
|
1186
|
-
check_type: "custom" | "process" | "http" | "tcp" | "disk";
|
|
1187
|
-
check_config: Record<string, unknown>;
|
|
1188
|
-
timeout_ms?: number | undefined;
|
|
1189
|
-
failure_threshold?: number | undefined;
|
|
1190
|
-
} | undefined;
|
|
1191
1805
|
probe?: {
|
|
1192
1806
|
data_source_id: string;
|
|
1193
1807
|
change_detector: {
|
|
@@ -1203,11 +1817,11 @@ export declare const ScheduleEntryListSchema: z.ZodArray<z.ZodObject<{
|
|
|
1203
1817
|
cron?: {
|
|
1204
1818
|
prompt_template: string;
|
|
1205
1819
|
report_type?: string | undefined;
|
|
1206
|
-
max_tokens?: number | undefined;
|
|
1207
1820
|
job_kind?: "prompt" | "reflection" | "soil_publish" | undefined;
|
|
1208
1821
|
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
1209
1822
|
context_sources?: string[] | undefined;
|
|
1210
1823
|
output_format?: "notification" | "both" | "report" | undefined;
|
|
1824
|
+
max_tokens?: number | undefined;
|
|
1211
1825
|
} | undefined;
|
|
1212
1826
|
goal_trigger?: {
|
|
1213
1827
|
goal_id: string;
|
|
@@ -1215,6 +1829,43 @@ export declare const ScheduleEntryListSchema: z.ZodArray<z.ZodObject<{
|
|
|
1215
1829
|
max_iterations?: number | null | undefined;
|
|
1216
1830
|
skip_if_active?: boolean | undefined;
|
|
1217
1831
|
} | undefined;
|
|
1832
|
+
heartbeat?: {
|
|
1833
|
+
check_type: "http";
|
|
1834
|
+
check_config: {
|
|
1835
|
+
url: string;
|
|
1836
|
+
};
|
|
1837
|
+
timeout_ms?: number | undefined;
|
|
1838
|
+
failure_threshold?: number | undefined;
|
|
1839
|
+
} | {
|
|
1840
|
+
check_type: "tcp";
|
|
1841
|
+
check_config: {
|
|
1842
|
+
host: string;
|
|
1843
|
+
port: number;
|
|
1844
|
+
};
|
|
1845
|
+
timeout_ms?: number | undefined;
|
|
1846
|
+
failure_threshold?: number | undefined;
|
|
1847
|
+
} | {
|
|
1848
|
+
check_type: "process";
|
|
1849
|
+
check_config: {
|
|
1850
|
+
pid: number;
|
|
1851
|
+
};
|
|
1852
|
+
timeout_ms?: number | undefined;
|
|
1853
|
+
failure_threshold?: number | undefined;
|
|
1854
|
+
} | {
|
|
1855
|
+
check_type: "disk";
|
|
1856
|
+
check_config: {
|
|
1857
|
+
path: string;
|
|
1858
|
+
};
|
|
1859
|
+
timeout_ms?: number | undefined;
|
|
1860
|
+
failure_threshold?: number | undefined;
|
|
1861
|
+
} | {
|
|
1862
|
+
check_type: "custom";
|
|
1863
|
+
check_config: {
|
|
1864
|
+
command: string;
|
|
1865
|
+
};
|
|
1866
|
+
timeout_ms?: number | undefined;
|
|
1867
|
+
failure_threshold?: number | undefined;
|
|
1868
|
+
} | undefined;
|
|
1218
1869
|
escalation?: {
|
|
1219
1870
|
enabled?: boolean | undefined;
|
|
1220
1871
|
target_goal_id?: string | undefined;
|
|
@@ -1226,17 +1877,18 @@ export declare const ScheduleEntryListSchema: z.ZodArray<z.ZodObject<{
|
|
|
1226
1877
|
} | undefined;
|
|
1227
1878
|
retry_policy?: {
|
|
1228
1879
|
enabled?: boolean | undefined;
|
|
1229
|
-
max_attempts?: number | undefined;
|
|
1230
1880
|
initial_delay_ms?: number | undefined;
|
|
1231
1881
|
max_delay_ms?: number | undefined;
|
|
1232
1882
|
multiplier?: number | undefined;
|
|
1233
1883
|
jitter_factor?: number | undefined;
|
|
1884
|
+
max_attempts?: number | undefined;
|
|
1234
1885
|
max_retry_window_ms?: number | undefined;
|
|
1235
1886
|
retryable_failure_kinds?: ("transient" | "permanent")[] | undefined;
|
|
1236
1887
|
} | undefined;
|
|
1237
1888
|
retry_state?: {
|
|
1238
1889
|
attempts?: number | undefined;
|
|
1239
1890
|
next_retry_at?: string | null | undefined;
|
|
1891
|
+
scheduled_for?: string | null | undefined;
|
|
1240
1892
|
last_attempt_at?: string | null | undefined;
|
|
1241
1893
|
first_failure_at?: string | null | undefined;
|
|
1242
1894
|
last_failure_kind?: "transient" | "permanent" | null | undefined;
|
|
@@ -1266,32 +1918,668 @@ export declare const ScheduleResultSchema: z.ZodObject<{
|
|
|
1266
1918
|
escalated_to: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
1267
1919
|
output_summary: z.ZodOptional<z.ZodString>;
|
|
1268
1920
|
change_detected: z.ZodOptional<z.ZodBoolean>;
|
|
1921
|
+
internal_attention_projection: z.ZodOptional<z.ZodObject<{
|
|
1922
|
+
kind: z.ZodLiteral<"wait_resume_attention_projection">;
|
|
1923
|
+
projected_at: z.ZodString;
|
|
1924
|
+
signal_context_id: z.ZodString;
|
|
1925
|
+
signal_sources: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1926
|
+
urge_candidate_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1927
|
+
agenda_item_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1928
|
+
inhibition_decisions: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1929
|
+
ref: z.ZodString;
|
|
1930
|
+
decision: z.ZodEnum<["suppress", "hold", "watch", "wait_for_opportunity", "decay", "reject_stale", "allow_to_gate"]>;
|
|
1931
|
+
}, "strict", z.ZodTypeAny, {
|
|
1932
|
+
decision: "suppress" | "hold" | "watch" | "wait_for_opportunity" | "decay" | "reject_stale" | "allow_to_gate";
|
|
1933
|
+
ref: string;
|
|
1934
|
+
}, {
|
|
1935
|
+
decision: "suppress" | "hold" | "watch" | "wait_for_opportunity" | "decay" | "reject_stale" | "allow_to_gate";
|
|
1936
|
+
ref: string;
|
|
1937
|
+
}>, "many">>;
|
|
1938
|
+
initiative_gate_decisions: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1939
|
+
ref: z.ZodString;
|
|
1940
|
+
status: z.ZodEnum<["selected", "blocked", "delayed", "narrowed"]>;
|
|
1941
|
+
selected_outcome: z.ZodOptional<z.ZodEnum<["silence", "keep_watching", "hold_in_agenda", "prepare_silently", "run_authorized_work", "delegate_bounded_work", "prepare_action_candidate", "request_approval", "write_governed_memory_candidate", "update_surface_candidate", "add_to_digest", "express_to_user", "escalate"]>>;
|
|
1942
|
+
}, "strict", z.ZodTypeAny, {
|
|
1943
|
+
status: "blocked" | "selected" | "delayed" | "narrowed";
|
|
1944
|
+
ref: string;
|
|
1945
|
+
selected_outcome?: "request_approval" | "escalate" | "run_authorized_work" | "delegate_bounded_work" | "update_surface_candidate" | "silence" | "keep_watching" | "hold_in_agenda" | "prepare_silently" | "prepare_action_candidate" | "write_governed_memory_candidate" | "add_to_digest" | "express_to_user" | undefined;
|
|
1946
|
+
}, {
|
|
1947
|
+
status: "blocked" | "selected" | "delayed" | "narrowed";
|
|
1948
|
+
ref: string;
|
|
1949
|
+
selected_outcome?: "request_approval" | "escalate" | "run_authorized_work" | "delegate_bounded_work" | "update_surface_candidate" | "silence" | "keep_watching" | "hold_in_agenda" | "prepare_silently" | "prepare_action_candidate" | "write_governed_memory_candidate" | "add_to_digest" | "express_to_user" | undefined;
|
|
1950
|
+
}>, "many">>;
|
|
1951
|
+
runtime_items: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1952
|
+
ref: z.ZodString;
|
|
1953
|
+
type: z.ZodEnum<["run", "task", "session", "goal", "wait", "watch", "hold", "urge_candidate", "agent_agenda_item", "surface_projection", "permission_boundary", "audit_trace", "diff_proposal", "auth_handoff", "browser_session", "guardrail_state", "backpressure_state"]>;
|
|
1954
|
+
status: z.ZodEnum<["pending", "running", "active", "mature", "completed", "failed", "cancelled", "paused", "expired", "blocked", "superseded"]>;
|
|
1955
|
+
posture: z.ZodEnum<["working", "watching", "waiting", "holding", "cooling_down", "blocked_by_boundary", "needs_user", "ready_to_digest", "safe_to_forget", "stale", "suspended", "suppressed", "proposed", "committed", "rejected"]>;
|
|
1956
|
+
visibility_display: z.ZodEnum<["normal", "hidden", "redacted"]>;
|
|
1957
|
+
inspectable: z.ZodBoolean;
|
|
1958
|
+
auditable: z.ZodBoolean;
|
|
1959
|
+
}, "strict", z.ZodTypeAny, {
|
|
1960
|
+
type: "goal" | "task" | "run" | "surface_projection" | "urge_candidate" | "audit_trace" | "hold" | "session" | "wait" | "watch" | "agent_agenda_item" | "permission_boundary" | "diff_proposal" | "auth_handoff" | "browser_session" | "guardrail_state" | "backpressure_state";
|
|
1961
|
+
status: "pending" | "running" | "completed" | "cancelled" | "blocked" | "active" | "paused" | "failed" | "expired" | "superseded" | "mature";
|
|
1962
|
+
ref: string;
|
|
1963
|
+
inspectable: boolean;
|
|
1964
|
+
auditable: boolean;
|
|
1965
|
+
posture: "suspended" | "waiting" | "stale" | "suppressed" | "rejected" | "working" | "watching" | "holding" | "cooling_down" | "blocked_by_boundary" | "needs_user" | "ready_to_digest" | "safe_to_forget" | "proposed" | "committed";
|
|
1966
|
+
visibility_display: "normal" | "redacted" | "hidden";
|
|
1967
|
+
}, {
|
|
1968
|
+
type: "goal" | "task" | "run" | "surface_projection" | "urge_candidate" | "audit_trace" | "hold" | "session" | "wait" | "watch" | "agent_agenda_item" | "permission_boundary" | "diff_proposal" | "auth_handoff" | "browser_session" | "guardrail_state" | "backpressure_state";
|
|
1969
|
+
status: "pending" | "running" | "completed" | "cancelled" | "blocked" | "active" | "paused" | "failed" | "expired" | "superseded" | "mature";
|
|
1970
|
+
ref: string;
|
|
1971
|
+
inspectable: boolean;
|
|
1972
|
+
auditable: boolean;
|
|
1973
|
+
posture: "suspended" | "waiting" | "stale" | "suppressed" | "rejected" | "working" | "watching" | "holding" | "cooling_down" | "blocked_by_boundary" | "needs_user" | "ready_to_digest" | "safe_to_forget" | "proposed" | "committed";
|
|
1974
|
+
visibility_display: "normal" | "redacted" | "hidden";
|
|
1975
|
+
}>, "many">>;
|
|
1976
|
+
non_execution_states: z.ZodDefault<z.ZodArray<z.ZodEnum<["blocked", "delayed", "held", "suppressed", "decayed", "expired", "rejected_stale", "inspectable_hidden", "silent_runtime_item"]>, "many">>;
|
|
1977
|
+
summary: z.ZodString;
|
|
1978
|
+
}, "strict", z.ZodTypeAny, {
|
|
1979
|
+
kind: "wait_resume_attention_projection";
|
|
1980
|
+
summary: string;
|
|
1981
|
+
runtime_items: {
|
|
1982
|
+
type: "goal" | "task" | "run" | "surface_projection" | "urge_candidate" | "audit_trace" | "hold" | "session" | "wait" | "watch" | "agent_agenda_item" | "permission_boundary" | "diff_proposal" | "auth_handoff" | "browser_session" | "guardrail_state" | "backpressure_state";
|
|
1983
|
+
status: "pending" | "running" | "completed" | "cancelled" | "blocked" | "active" | "paused" | "failed" | "expired" | "superseded" | "mature";
|
|
1984
|
+
ref: string;
|
|
1985
|
+
inspectable: boolean;
|
|
1986
|
+
auditable: boolean;
|
|
1987
|
+
posture: "suspended" | "waiting" | "stale" | "suppressed" | "rejected" | "working" | "watching" | "holding" | "cooling_down" | "blocked_by_boundary" | "needs_user" | "ready_to_digest" | "safe_to_forget" | "proposed" | "committed";
|
|
1988
|
+
visibility_display: "normal" | "redacted" | "hidden";
|
|
1989
|
+
}[];
|
|
1990
|
+
signal_context_id: string;
|
|
1991
|
+
signal_sources: string[];
|
|
1992
|
+
projected_at: string;
|
|
1993
|
+
urge_candidate_refs: string[];
|
|
1994
|
+
agenda_item_refs: string[];
|
|
1995
|
+
inhibition_decisions: {
|
|
1996
|
+
decision: "suppress" | "hold" | "watch" | "wait_for_opportunity" | "decay" | "reject_stale" | "allow_to_gate";
|
|
1997
|
+
ref: string;
|
|
1998
|
+
}[];
|
|
1999
|
+
initiative_gate_decisions: {
|
|
2000
|
+
status: "blocked" | "selected" | "delayed" | "narrowed";
|
|
2001
|
+
ref: string;
|
|
2002
|
+
selected_outcome?: "request_approval" | "escalate" | "run_authorized_work" | "delegate_bounded_work" | "update_surface_candidate" | "silence" | "keep_watching" | "hold_in_agenda" | "prepare_silently" | "prepare_action_candidate" | "write_governed_memory_candidate" | "add_to_digest" | "express_to_user" | undefined;
|
|
2003
|
+
}[];
|
|
2004
|
+
non_execution_states: ("blocked" | "expired" | "suppressed" | "decayed" | "held" | "rejected_stale" | "delayed" | "inspectable_hidden" | "silent_runtime_item")[];
|
|
2005
|
+
}, {
|
|
2006
|
+
kind: "wait_resume_attention_projection";
|
|
2007
|
+
summary: string;
|
|
2008
|
+
signal_context_id: string;
|
|
2009
|
+
projected_at: string;
|
|
2010
|
+
runtime_items?: {
|
|
2011
|
+
type: "goal" | "task" | "run" | "surface_projection" | "urge_candidate" | "audit_trace" | "hold" | "session" | "wait" | "watch" | "agent_agenda_item" | "permission_boundary" | "diff_proposal" | "auth_handoff" | "browser_session" | "guardrail_state" | "backpressure_state";
|
|
2012
|
+
status: "pending" | "running" | "completed" | "cancelled" | "blocked" | "active" | "paused" | "failed" | "expired" | "superseded" | "mature";
|
|
2013
|
+
ref: string;
|
|
2014
|
+
inspectable: boolean;
|
|
2015
|
+
auditable: boolean;
|
|
2016
|
+
posture: "suspended" | "waiting" | "stale" | "suppressed" | "rejected" | "working" | "watching" | "holding" | "cooling_down" | "blocked_by_boundary" | "needs_user" | "ready_to_digest" | "safe_to_forget" | "proposed" | "committed";
|
|
2017
|
+
visibility_display: "normal" | "redacted" | "hidden";
|
|
2018
|
+
}[] | undefined;
|
|
2019
|
+
signal_sources?: string[] | undefined;
|
|
2020
|
+
urge_candidate_refs?: string[] | undefined;
|
|
2021
|
+
agenda_item_refs?: string[] | undefined;
|
|
2022
|
+
inhibition_decisions?: {
|
|
2023
|
+
decision: "suppress" | "hold" | "watch" | "wait_for_opportunity" | "decay" | "reject_stale" | "allow_to_gate";
|
|
2024
|
+
ref: string;
|
|
2025
|
+
}[] | undefined;
|
|
2026
|
+
initiative_gate_decisions?: {
|
|
2027
|
+
status: "blocked" | "selected" | "delayed" | "narrowed";
|
|
2028
|
+
ref: string;
|
|
2029
|
+
selected_outcome?: "request_approval" | "escalate" | "run_authorized_work" | "delegate_bounded_work" | "update_surface_candidate" | "silence" | "keep_watching" | "hold_in_agenda" | "prepare_silently" | "prepare_action_candidate" | "write_governed_memory_candidate" | "add_to_digest" | "express_to_user" | undefined;
|
|
2030
|
+
}[] | undefined;
|
|
2031
|
+
non_execution_states?: ("blocked" | "expired" | "suppressed" | "decayed" | "held" | "rejected_stale" | "delayed" | "inspectable_hidden" | "silent_runtime_item")[] | undefined;
|
|
2032
|
+
}>>;
|
|
2033
|
+
capability_operation_plan_assembly: z.ZodOptional<z.ZodObject<{
|
|
2034
|
+
schema_version: z.ZodLiteral<"capability-operation-plan-assembly/v1">;
|
|
2035
|
+
assembly_id: z.ZodString;
|
|
2036
|
+
assembled_at: z.ZodString;
|
|
2037
|
+
source: z.ZodObject<{
|
|
2038
|
+
kind: z.ZodEnum<["schedule_tick", "attention_projection", "internal_proposal"]>;
|
|
2039
|
+
source_ref: z.ZodString;
|
|
2040
|
+
source_epoch: z.ZodOptional<z.ZodString>;
|
|
2041
|
+
emitted_at: z.ZodString;
|
|
2042
|
+
metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2043
|
+
}, "strict", z.ZodTypeAny, {
|
|
2044
|
+
kind: "schedule_tick" | "attention_projection" | "internal_proposal";
|
|
2045
|
+
metadata: Record<string, unknown>;
|
|
2046
|
+
source_ref: string;
|
|
2047
|
+
emitted_at: string;
|
|
2048
|
+
source_epoch?: string | undefined;
|
|
2049
|
+
}, {
|
|
2050
|
+
kind: "schedule_tick" | "attention_projection" | "internal_proposal";
|
|
2051
|
+
source_ref: string;
|
|
2052
|
+
emitted_at: string;
|
|
2053
|
+
metadata?: Record<string, unknown> | undefined;
|
|
2054
|
+
source_epoch?: string | undefined;
|
|
2055
|
+
}>;
|
|
2056
|
+
status: z.ZodEnum<["planned", "no_supported_plan", "clarification_required", "fail_closed"]>;
|
|
2057
|
+
reason: z.ZodString;
|
|
2058
|
+
candidate_plans: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2059
|
+
plan_id: z.ZodString;
|
|
2060
|
+
source_ref: z.ZodString;
|
|
2061
|
+
operation_plan: z.ZodObject<{
|
|
2062
|
+
operation_id: z.ZodString;
|
|
2063
|
+
capability_id: z.ZodOptional<z.ZodString>;
|
|
2064
|
+
operation_kind: z.ZodEnum<["read", "search", "hint", "prepare", "send", "write", "publish", "delete", "mutate", "run"]>;
|
|
2065
|
+
provider_ref: z.ZodString;
|
|
2066
|
+
payload_class: z.ZodString;
|
|
2067
|
+
side_effect_profile: z.ZodEnum<["none", "read", "send", "write", "publish", "delete", "mutate"]>;
|
|
2068
|
+
risk_class: z.ZodDefault<z.ZodEnum<["low", "medium", "high"]>>;
|
|
2069
|
+
privacy_profile: z.ZodOptional<z.ZodEnum<["local_private", "workspace_private", "external_service", "user_visible"]>>;
|
|
2070
|
+
reversibility: z.ZodDefault<z.ZodEnum<["reversible", "append_only", "draft_only", "irreversible", "unknown"]>>;
|
|
2071
|
+
external_action_authority: z.ZodDefault<z.ZodBoolean>;
|
|
2072
|
+
target_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
2073
|
+
advisory_only: z.ZodDefault<z.ZodBoolean>;
|
|
2074
|
+
preparable_when_blocked: z.ZodDefault<z.ZodBoolean>;
|
|
2075
|
+
setup_guidance_ref: z.ZodOptional<z.ZodString>;
|
|
2076
|
+
local_only: z.ZodDefault<z.ZodBoolean>;
|
|
2077
|
+
inspectable: z.ZodDefault<z.ZodBoolean>;
|
|
2078
|
+
expected_user_visible_effect: z.ZodDefault<z.ZodBoolean>;
|
|
2079
|
+
}, "strict", z.ZodTypeAny, {
|
|
2080
|
+
reversibility: "unknown" | "reversible" | "irreversible" | "append_only" | "draft_only";
|
|
2081
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
2082
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
2083
|
+
external_action_authority: boolean;
|
|
2084
|
+
payload_class: string;
|
|
2085
|
+
provider_ref: string;
|
|
2086
|
+
operation_id: string;
|
|
2087
|
+
risk_class: "low" | "high" | "medium";
|
|
2088
|
+
inspectable: boolean;
|
|
2089
|
+
local_only: boolean;
|
|
2090
|
+
target_refs: string[];
|
|
2091
|
+
expected_user_visible_effect: boolean;
|
|
2092
|
+
advisory_only: boolean;
|
|
2093
|
+
preparable_when_blocked: boolean;
|
|
2094
|
+
capability_id?: string | undefined;
|
|
2095
|
+
privacy_profile?: "local_private" | "workspace_private" | "external_service" | "user_visible" | undefined;
|
|
2096
|
+
setup_guidance_ref?: string | undefined;
|
|
2097
|
+
}, {
|
|
2098
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
2099
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
2100
|
+
payload_class: string;
|
|
2101
|
+
provider_ref: string;
|
|
2102
|
+
operation_id: string;
|
|
2103
|
+
reversibility?: "unknown" | "reversible" | "irreversible" | "append_only" | "draft_only" | undefined;
|
|
2104
|
+
capability_id?: string | undefined;
|
|
2105
|
+
privacy_profile?: "local_private" | "workspace_private" | "external_service" | "user_visible" | undefined;
|
|
2106
|
+
external_action_authority?: boolean | undefined;
|
|
2107
|
+
risk_class?: "low" | "high" | "medium" | undefined;
|
|
2108
|
+
inspectable?: boolean | undefined;
|
|
2109
|
+
local_only?: boolean | undefined;
|
|
2110
|
+
target_refs?: string[] | undefined;
|
|
2111
|
+
expected_user_visible_effect?: boolean | undefined;
|
|
2112
|
+
advisory_only?: boolean | undefined;
|
|
2113
|
+
preparable_when_blocked?: boolean | undefined;
|
|
2114
|
+
setup_guidance_ref?: string | undefined;
|
|
2115
|
+
}>;
|
|
2116
|
+
admission_scope: z.ZodObject<{
|
|
2117
|
+
operation_id: z.ZodString;
|
|
2118
|
+
capability_id: z.ZodOptional<z.ZodString>;
|
|
2119
|
+
operation_kind: z.ZodEnum<["read", "search", "hint", "prepare", "send", "write", "publish", "delete", "mutate", "run"]>;
|
|
2120
|
+
provider_ref: z.ZodString;
|
|
2121
|
+
asset_ref: z.ZodOptional<z.ZodString>;
|
|
2122
|
+
tool_name: z.ZodOptional<z.ZodString>;
|
|
2123
|
+
payload_class: z.ZodString;
|
|
2124
|
+
payload_epoch: z.ZodOptional<z.ZodString>;
|
|
2125
|
+
side_effect_profile: z.ZodEnum<["none", "read", "send", "write", "publish", "delete", "mutate"]>;
|
|
2126
|
+
external_action_authority: z.ZodDefault<z.ZodBoolean>;
|
|
2127
|
+
requires_runtime_control: z.ZodDefault<z.ZodBoolean>;
|
|
2128
|
+
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">>;
|
|
2129
|
+
target_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
2130
|
+
target_epoch_refs: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2131
|
+
provider_epoch: z.ZodOptional<z.ZodString>;
|
|
2132
|
+
}, "strict", z.ZodTypeAny, {
|
|
2133
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
2134
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
2135
|
+
external_action_authority: boolean;
|
|
2136
|
+
payload_class: string;
|
|
2137
|
+
provider_ref: string;
|
|
2138
|
+
operation_id: string;
|
|
2139
|
+
requires_runtime_control: boolean;
|
|
2140
|
+
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")[];
|
|
2141
|
+
target_refs: string[];
|
|
2142
|
+
target_epoch_refs: Record<string, string>;
|
|
2143
|
+
tool_name?: string | undefined;
|
|
2144
|
+
capability_id?: string | undefined;
|
|
2145
|
+
asset_ref?: string | undefined;
|
|
2146
|
+
payload_epoch?: string | undefined;
|
|
2147
|
+
provider_epoch?: string | undefined;
|
|
2148
|
+
}, {
|
|
2149
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
2150
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
2151
|
+
payload_class: string;
|
|
2152
|
+
provider_ref: string;
|
|
2153
|
+
operation_id: string;
|
|
2154
|
+
tool_name?: string | undefined;
|
|
2155
|
+
capability_id?: string | undefined;
|
|
2156
|
+
external_action_authority?: boolean | undefined;
|
|
2157
|
+
asset_ref?: string | undefined;
|
|
2158
|
+
payload_epoch?: string | undefined;
|
|
2159
|
+
requires_runtime_control?: boolean | undefined;
|
|
2160
|
+
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;
|
|
2161
|
+
target_refs?: string[] | undefined;
|
|
2162
|
+
target_epoch_refs?: Record<string, string> | undefined;
|
|
2163
|
+
provider_epoch?: string | undefined;
|
|
2164
|
+
}>;
|
|
2165
|
+
readiness_snapshot_refs: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
2166
|
+
required_approvals: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
2167
|
+
reversible_preparation_steps: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
2168
|
+
not_allowed_steps: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
2169
|
+
user_visible_summary: z.ZodString;
|
|
2170
|
+
audit_seed: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2171
|
+
}, "strict", z.ZodTypeAny, {
|
|
2172
|
+
source_ref: string;
|
|
2173
|
+
operation_plan: {
|
|
2174
|
+
reversibility: "unknown" | "reversible" | "irreversible" | "append_only" | "draft_only";
|
|
2175
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
2176
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
2177
|
+
external_action_authority: boolean;
|
|
2178
|
+
payload_class: string;
|
|
2179
|
+
provider_ref: string;
|
|
2180
|
+
operation_id: string;
|
|
2181
|
+
risk_class: "low" | "high" | "medium";
|
|
2182
|
+
inspectable: boolean;
|
|
2183
|
+
local_only: boolean;
|
|
2184
|
+
target_refs: string[];
|
|
2185
|
+
expected_user_visible_effect: boolean;
|
|
2186
|
+
advisory_only: boolean;
|
|
2187
|
+
preparable_when_blocked: boolean;
|
|
2188
|
+
capability_id?: string | undefined;
|
|
2189
|
+
privacy_profile?: "local_private" | "workspace_private" | "external_service" | "user_visible" | undefined;
|
|
2190
|
+
setup_guidance_ref?: string | undefined;
|
|
2191
|
+
};
|
|
2192
|
+
plan_id: string;
|
|
2193
|
+
admission_scope: {
|
|
2194
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
2195
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
2196
|
+
external_action_authority: boolean;
|
|
2197
|
+
payload_class: string;
|
|
2198
|
+
provider_ref: string;
|
|
2199
|
+
operation_id: string;
|
|
2200
|
+
requires_runtime_control: boolean;
|
|
2201
|
+
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")[];
|
|
2202
|
+
target_refs: string[];
|
|
2203
|
+
target_epoch_refs: Record<string, string>;
|
|
2204
|
+
tool_name?: string | undefined;
|
|
2205
|
+
capability_id?: string | undefined;
|
|
2206
|
+
asset_ref?: string | undefined;
|
|
2207
|
+
payload_epoch?: string | undefined;
|
|
2208
|
+
provider_epoch?: string | undefined;
|
|
2209
|
+
};
|
|
2210
|
+
readiness_snapshot_refs: string[];
|
|
2211
|
+
required_approvals: string[];
|
|
2212
|
+
reversible_preparation_steps: string[];
|
|
2213
|
+
not_allowed_steps: string[];
|
|
2214
|
+
user_visible_summary: string;
|
|
2215
|
+
audit_seed: Record<string, unknown>;
|
|
2216
|
+
}, {
|
|
2217
|
+
source_ref: string;
|
|
2218
|
+
operation_plan: {
|
|
2219
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
2220
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
2221
|
+
payload_class: string;
|
|
2222
|
+
provider_ref: string;
|
|
2223
|
+
operation_id: string;
|
|
2224
|
+
reversibility?: "unknown" | "reversible" | "irreversible" | "append_only" | "draft_only" | undefined;
|
|
2225
|
+
capability_id?: string | undefined;
|
|
2226
|
+
privacy_profile?: "local_private" | "workspace_private" | "external_service" | "user_visible" | undefined;
|
|
2227
|
+
external_action_authority?: boolean | undefined;
|
|
2228
|
+
risk_class?: "low" | "high" | "medium" | undefined;
|
|
2229
|
+
inspectable?: boolean | undefined;
|
|
2230
|
+
local_only?: boolean | undefined;
|
|
2231
|
+
target_refs?: string[] | undefined;
|
|
2232
|
+
expected_user_visible_effect?: boolean | undefined;
|
|
2233
|
+
advisory_only?: boolean | undefined;
|
|
2234
|
+
preparable_when_blocked?: boolean | undefined;
|
|
2235
|
+
setup_guidance_ref?: string | undefined;
|
|
2236
|
+
};
|
|
2237
|
+
plan_id: string;
|
|
2238
|
+
admission_scope: {
|
|
2239
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
2240
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
2241
|
+
payload_class: string;
|
|
2242
|
+
provider_ref: string;
|
|
2243
|
+
operation_id: string;
|
|
2244
|
+
tool_name?: string | undefined;
|
|
2245
|
+
capability_id?: string | undefined;
|
|
2246
|
+
external_action_authority?: boolean | undefined;
|
|
2247
|
+
asset_ref?: string | undefined;
|
|
2248
|
+
payload_epoch?: string | undefined;
|
|
2249
|
+
requires_runtime_control?: boolean | undefined;
|
|
2250
|
+
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;
|
|
2251
|
+
target_refs?: string[] | undefined;
|
|
2252
|
+
target_epoch_refs?: Record<string, string> | undefined;
|
|
2253
|
+
provider_epoch?: string | undefined;
|
|
2254
|
+
};
|
|
2255
|
+
user_visible_summary: string;
|
|
2256
|
+
readiness_snapshot_refs?: string[] | undefined;
|
|
2257
|
+
required_approvals?: string[] | undefined;
|
|
2258
|
+
reversible_preparation_steps?: string[] | undefined;
|
|
2259
|
+
not_allowed_steps?: string[] | undefined;
|
|
2260
|
+
audit_seed?: Record<string, unknown> | undefined;
|
|
2261
|
+
}>, "many">>;
|
|
2262
|
+
}, "strict", z.ZodTypeAny, {
|
|
2263
|
+
status: "fail_closed" | "planned" | "no_supported_plan" | "clarification_required";
|
|
2264
|
+
source: {
|
|
2265
|
+
kind: "schedule_tick" | "attention_projection" | "internal_proposal";
|
|
2266
|
+
metadata: Record<string, unknown>;
|
|
2267
|
+
source_ref: string;
|
|
2268
|
+
emitted_at: string;
|
|
2269
|
+
source_epoch?: string | undefined;
|
|
2270
|
+
};
|
|
2271
|
+
reason: string;
|
|
2272
|
+
schema_version: "capability-operation-plan-assembly/v1";
|
|
2273
|
+
assembled_at: string;
|
|
2274
|
+
assembly_id: string;
|
|
2275
|
+
candidate_plans: {
|
|
2276
|
+
source_ref: string;
|
|
2277
|
+
operation_plan: {
|
|
2278
|
+
reversibility: "unknown" | "reversible" | "irreversible" | "append_only" | "draft_only";
|
|
2279
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
2280
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
2281
|
+
external_action_authority: boolean;
|
|
2282
|
+
payload_class: string;
|
|
2283
|
+
provider_ref: string;
|
|
2284
|
+
operation_id: string;
|
|
2285
|
+
risk_class: "low" | "high" | "medium";
|
|
2286
|
+
inspectable: boolean;
|
|
2287
|
+
local_only: boolean;
|
|
2288
|
+
target_refs: string[];
|
|
2289
|
+
expected_user_visible_effect: boolean;
|
|
2290
|
+
advisory_only: boolean;
|
|
2291
|
+
preparable_when_blocked: boolean;
|
|
2292
|
+
capability_id?: string | undefined;
|
|
2293
|
+
privacy_profile?: "local_private" | "workspace_private" | "external_service" | "user_visible" | undefined;
|
|
2294
|
+
setup_guidance_ref?: string | undefined;
|
|
2295
|
+
};
|
|
2296
|
+
plan_id: string;
|
|
2297
|
+
admission_scope: {
|
|
2298
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
2299
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
2300
|
+
external_action_authority: boolean;
|
|
2301
|
+
payload_class: string;
|
|
2302
|
+
provider_ref: string;
|
|
2303
|
+
operation_id: string;
|
|
2304
|
+
requires_runtime_control: boolean;
|
|
2305
|
+
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")[];
|
|
2306
|
+
target_refs: string[];
|
|
2307
|
+
target_epoch_refs: Record<string, string>;
|
|
2308
|
+
tool_name?: string | undefined;
|
|
2309
|
+
capability_id?: string | undefined;
|
|
2310
|
+
asset_ref?: string | undefined;
|
|
2311
|
+
payload_epoch?: string | undefined;
|
|
2312
|
+
provider_epoch?: string | undefined;
|
|
2313
|
+
};
|
|
2314
|
+
readiness_snapshot_refs: string[];
|
|
2315
|
+
required_approvals: string[];
|
|
2316
|
+
reversible_preparation_steps: string[];
|
|
2317
|
+
not_allowed_steps: string[];
|
|
2318
|
+
user_visible_summary: string;
|
|
2319
|
+
audit_seed: Record<string, unknown>;
|
|
2320
|
+
}[];
|
|
2321
|
+
}, {
|
|
2322
|
+
status: "fail_closed" | "planned" | "no_supported_plan" | "clarification_required";
|
|
2323
|
+
source: {
|
|
2324
|
+
kind: "schedule_tick" | "attention_projection" | "internal_proposal";
|
|
2325
|
+
source_ref: string;
|
|
2326
|
+
emitted_at: string;
|
|
2327
|
+
metadata?: Record<string, unknown> | undefined;
|
|
2328
|
+
source_epoch?: string | undefined;
|
|
2329
|
+
};
|
|
2330
|
+
reason: string;
|
|
2331
|
+
schema_version: "capability-operation-plan-assembly/v1";
|
|
2332
|
+
assembled_at: string;
|
|
2333
|
+
assembly_id: string;
|
|
2334
|
+
candidate_plans?: {
|
|
2335
|
+
source_ref: string;
|
|
2336
|
+
operation_plan: {
|
|
2337
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
2338
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
2339
|
+
payload_class: string;
|
|
2340
|
+
provider_ref: string;
|
|
2341
|
+
operation_id: string;
|
|
2342
|
+
reversibility?: "unknown" | "reversible" | "irreversible" | "append_only" | "draft_only" | undefined;
|
|
2343
|
+
capability_id?: string | undefined;
|
|
2344
|
+
privacy_profile?: "local_private" | "workspace_private" | "external_service" | "user_visible" | undefined;
|
|
2345
|
+
external_action_authority?: boolean | undefined;
|
|
2346
|
+
risk_class?: "low" | "high" | "medium" | undefined;
|
|
2347
|
+
inspectable?: boolean | undefined;
|
|
2348
|
+
local_only?: boolean | undefined;
|
|
2349
|
+
target_refs?: string[] | undefined;
|
|
2350
|
+
expected_user_visible_effect?: boolean | undefined;
|
|
2351
|
+
advisory_only?: boolean | undefined;
|
|
2352
|
+
preparable_when_blocked?: boolean | undefined;
|
|
2353
|
+
setup_guidance_ref?: string | undefined;
|
|
2354
|
+
};
|
|
2355
|
+
plan_id: string;
|
|
2356
|
+
admission_scope: {
|
|
2357
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
2358
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
2359
|
+
payload_class: string;
|
|
2360
|
+
provider_ref: string;
|
|
2361
|
+
operation_id: string;
|
|
2362
|
+
tool_name?: string | undefined;
|
|
2363
|
+
capability_id?: string | undefined;
|
|
2364
|
+
external_action_authority?: boolean | undefined;
|
|
2365
|
+
asset_ref?: string | undefined;
|
|
2366
|
+
payload_epoch?: string | undefined;
|
|
2367
|
+
requires_runtime_control?: boolean | undefined;
|
|
2368
|
+
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;
|
|
2369
|
+
target_refs?: string[] | undefined;
|
|
2370
|
+
target_epoch_refs?: Record<string, string> | undefined;
|
|
2371
|
+
provider_epoch?: string | undefined;
|
|
2372
|
+
};
|
|
2373
|
+
user_visible_summary: string;
|
|
2374
|
+
readiness_snapshot_refs?: string[] | undefined;
|
|
2375
|
+
required_approvals?: string[] | undefined;
|
|
2376
|
+
reversible_preparation_steps?: string[] | undefined;
|
|
2377
|
+
not_allowed_steps?: string[] | undefined;
|
|
2378
|
+
audit_seed?: Record<string, unknown> | undefined;
|
|
2379
|
+
}[] | undefined;
|
|
2380
|
+
}>>;
|
|
1269
2381
|
}, "strip", z.ZodTypeAny, {
|
|
1270
2382
|
status: "error" | "ok" | "degraded" | "skipped" | "down" | "escalated";
|
|
1271
2383
|
entry_id: string;
|
|
2384
|
+
tokens_used: number;
|
|
1272
2385
|
duration_ms: number;
|
|
1273
2386
|
fired_at: string;
|
|
1274
|
-
tokens_used: number;
|
|
1275
2387
|
escalated_to: string | null;
|
|
1276
2388
|
goal_id?: string | undefined;
|
|
1277
|
-
layer?: "
|
|
2389
|
+
layer?: "probe" | "cron" | "goal_trigger" | "heartbeat" | undefined;
|
|
1278
2390
|
error_message?: string | undefined;
|
|
1279
2391
|
failure_kind?: "transient" | "permanent" | undefined;
|
|
1280
2392
|
output_summary?: string | undefined;
|
|
1281
2393
|
change_detected?: boolean | undefined;
|
|
2394
|
+
internal_attention_projection?: {
|
|
2395
|
+
kind: "wait_resume_attention_projection";
|
|
2396
|
+
summary: string;
|
|
2397
|
+
runtime_items: {
|
|
2398
|
+
type: "goal" | "task" | "run" | "surface_projection" | "urge_candidate" | "audit_trace" | "hold" | "session" | "wait" | "watch" | "agent_agenda_item" | "permission_boundary" | "diff_proposal" | "auth_handoff" | "browser_session" | "guardrail_state" | "backpressure_state";
|
|
2399
|
+
status: "pending" | "running" | "completed" | "cancelled" | "blocked" | "active" | "paused" | "failed" | "expired" | "superseded" | "mature";
|
|
2400
|
+
ref: string;
|
|
2401
|
+
inspectable: boolean;
|
|
2402
|
+
auditable: boolean;
|
|
2403
|
+
posture: "suspended" | "waiting" | "stale" | "suppressed" | "rejected" | "working" | "watching" | "holding" | "cooling_down" | "blocked_by_boundary" | "needs_user" | "ready_to_digest" | "safe_to_forget" | "proposed" | "committed";
|
|
2404
|
+
visibility_display: "normal" | "redacted" | "hidden";
|
|
2405
|
+
}[];
|
|
2406
|
+
signal_context_id: string;
|
|
2407
|
+
signal_sources: string[];
|
|
2408
|
+
projected_at: string;
|
|
2409
|
+
urge_candidate_refs: string[];
|
|
2410
|
+
agenda_item_refs: string[];
|
|
2411
|
+
inhibition_decisions: {
|
|
2412
|
+
decision: "suppress" | "hold" | "watch" | "wait_for_opportunity" | "decay" | "reject_stale" | "allow_to_gate";
|
|
2413
|
+
ref: string;
|
|
2414
|
+
}[];
|
|
2415
|
+
initiative_gate_decisions: {
|
|
2416
|
+
status: "blocked" | "selected" | "delayed" | "narrowed";
|
|
2417
|
+
ref: string;
|
|
2418
|
+
selected_outcome?: "request_approval" | "escalate" | "run_authorized_work" | "delegate_bounded_work" | "update_surface_candidate" | "silence" | "keep_watching" | "hold_in_agenda" | "prepare_silently" | "prepare_action_candidate" | "write_governed_memory_candidate" | "add_to_digest" | "express_to_user" | undefined;
|
|
2419
|
+
}[];
|
|
2420
|
+
non_execution_states: ("blocked" | "expired" | "suppressed" | "decayed" | "held" | "rejected_stale" | "delayed" | "inspectable_hidden" | "silent_runtime_item")[];
|
|
2421
|
+
} | undefined;
|
|
2422
|
+
capability_operation_plan_assembly?: {
|
|
2423
|
+
status: "fail_closed" | "planned" | "no_supported_plan" | "clarification_required";
|
|
2424
|
+
source: {
|
|
2425
|
+
kind: "schedule_tick" | "attention_projection" | "internal_proposal";
|
|
2426
|
+
metadata: Record<string, unknown>;
|
|
2427
|
+
source_ref: string;
|
|
2428
|
+
emitted_at: string;
|
|
2429
|
+
source_epoch?: string | undefined;
|
|
2430
|
+
};
|
|
2431
|
+
reason: string;
|
|
2432
|
+
schema_version: "capability-operation-plan-assembly/v1";
|
|
2433
|
+
assembled_at: string;
|
|
2434
|
+
assembly_id: string;
|
|
2435
|
+
candidate_plans: {
|
|
2436
|
+
source_ref: string;
|
|
2437
|
+
operation_plan: {
|
|
2438
|
+
reversibility: "unknown" | "reversible" | "irreversible" | "append_only" | "draft_only";
|
|
2439
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
2440
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
2441
|
+
external_action_authority: boolean;
|
|
2442
|
+
payload_class: string;
|
|
2443
|
+
provider_ref: string;
|
|
2444
|
+
operation_id: string;
|
|
2445
|
+
risk_class: "low" | "high" | "medium";
|
|
2446
|
+
inspectable: boolean;
|
|
2447
|
+
local_only: boolean;
|
|
2448
|
+
target_refs: string[];
|
|
2449
|
+
expected_user_visible_effect: boolean;
|
|
2450
|
+
advisory_only: boolean;
|
|
2451
|
+
preparable_when_blocked: boolean;
|
|
2452
|
+
capability_id?: string | undefined;
|
|
2453
|
+
privacy_profile?: "local_private" | "workspace_private" | "external_service" | "user_visible" | undefined;
|
|
2454
|
+
setup_guidance_ref?: string | undefined;
|
|
2455
|
+
};
|
|
2456
|
+
plan_id: string;
|
|
2457
|
+
admission_scope: {
|
|
2458
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
2459
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
2460
|
+
external_action_authority: boolean;
|
|
2461
|
+
payload_class: string;
|
|
2462
|
+
provider_ref: string;
|
|
2463
|
+
operation_id: string;
|
|
2464
|
+
requires_runtime_control: boolean;
|
|
2465
|
+
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")[];
|
|
2466
|
+
target_refs: string[];
|
|
2467
|
+
target_epoch_refs: Record<string, string>;
|
|
2468
|
+
tool_name?: string | undefined;
|
|
2469
|
+
capability_id?: string | undefined;
|
|
2470
|
+
asset_ref?: string | undefined;
|
|
2471
|
+
payload_epoch?: string | undefined;
|
|
2472
|
+
provider_epoch?: string | undefined;
|
|
2473
|
+
};
|
|
2474
|
+
readiness_snapshot_refs: string[];
|
|
2475
|
+
required_approvals: string[];
|
|
2476
|
+
reversible_preparation_steps: string[];
|
|
2477
|
+
not_allowed_steps: string[];
|
|
2478
|
+
user_visible_summary: string;
|
|
2479
|
+
audit_seed: Record<string, unknown>;
|
|
2480
|
+
}[];
|
|
2481
|
+
} | undefined;
|
|
1282
2482
|
}, {
|
|
1283
2483
|
status: "error" | "ok" | "degraded" | "skipped" | "down" | "escalated";
|
|
1284
2484
|
entry_id: string;
|
|
1285
2485
|
duration_ms: number;
|
|
1286
2486
|
fired_at: string;
|
|
1287
2487
|
goal_id?: string | undefined;
|
|
1288
|
-
layer?: "
|
|
2488
|
+
layer?: "probe" | "cron" | "goal_trigger" | "heartbeat" | undefined;
|
|
1289
2489
|
error_message?: string | undefined;
|
|
1290
|
-
failure_kind?: "transient" | "permanent" | undefined;
|
|
1291
2490
|
tokens_used?: number | undefined;
|
|
2491
|
+
failure_kind?: "transient" | "permanent" | undefined;
|
|
1292
2492
|
escalated_to?: string | null | undefined;
|
|
1293
2493
|
output_summary?: string | undefined;
|
|
1294
2494
|
change_detected?: boolean | undefined;
|
|
2495
|
+
internal_attention_projection?: {
|
|
2496
|
+
kind: "wait_resume_attention_projection";
|
|
2497
|
+
summary: string;
|
|
2498
|
+
signal_context_id: string;
|
|
2499
|
+
projected_at: string;
|
|
2500
|
+
runtime_items?: {
|
|
2501
|
+
type: "goal" | "task" | "run" | "surface_projection" | "urge_candidate" | "audit_trace" | "hold" | "session" | "wait" | "watch" | "agent_agenda_item" | "permission_boundary" | "diff_proposal" | "auth_handoff" | "browser_session" | "guardrail_state" | "backpressure_state";
|
|
2502
|
+
status: "pending" | "running" | "completed" | "cancelled" | "blocked" | "active" | "paused" | "failed" | "expired" | "superseded" | "mature";
|
|
2503
|
+
ref: string;
|
|
2504
|
+
inspectable: boolean;
|
|
2505
|
+
auditable: boolean;
|
|
2506
|
+
posture: "suspended" | "waiting" | "stale" | "suppressed" | "rejected" | "working" | "watching" | "holding" | "cooling_down" | "blocked_by_boundary" | "needs_user" | "ready_to_digest" | "safe_to_forget" | "proposed" | "committed";
|
|
2507
|
+
visibility_display: "normal" | "redacted" | "hidden";
|
|
2508
|
+
}[] | undefined;
|
|
2509
|
+
signal_sources?: string[] | undefined;
|
|
2510
|
+
urge_candidate_refs?: string[] | undefined;
|
|
2511
|
+
agenda_item_refs?: string[] | undefined;
|
|
2512
|
+
inhibition_decisions?: {
|
|
2513
|
+
decision: "suppress" | "hold" | "watch" | "wait_for_opportunity" | "decay" | "reject_stale" | "allow_to_gate";
|
|
2514
|
+
ref: string;
|
|
2515
|
+
}[] | undefined;
|
|
2516
|
+
initiative_gate_decisions?: {
|
|
2517
|
+
status: "blocked" | "selected" | "delayed" | "narrowed";
|
|
2518
|
+
ref: string;
|
|
2519
|
+
selected_outcome?: "request_approval" | "escalate" | "run_authorized_work" | "delegate_bounded_work" | "update_surface_candidate" | "silence" | "keep_watching" | "hold_in_agenda" | "prepare_silently" | "prepare_action_candidate" | "write_governed_memory_candidate" | "add_to_digest" | "express_to_user" | undefined;
|
|
2520
|
+
}[] | undefined;
|
|
2521
|
+
non_execution_states?: ("blocked" | "expired" | "suppressed" | "decayed" | "held" | "rejected_stale" | "delayed" | "inspectable_hidden" | "silent_runtime_item")[] | undefined;
|
|
2522
|
+
} | undefined;
|
|
2523
|
+
capability_operation_plan_assembly?: {
|
|
2524
|
+
status: "fail_closed" | "planned" | "no_supported_plan" | "clarification_required";
|
|
2525
|
+
source: {
|
|
2526
|
+
kind: "schedule_tick" | "attention_projection" | "internal_proposal";
|
|
2527
|
+
source_ref: string;
|
|
2528
|
+
emitted_at: string;
|
|
2529
|
+
metadata?: Record<string, unknown> | undefined;
|
|
2530
|
+
source_epoch?: string | undefined;
|
|
2531
|
+
};
|
|
2532
|
+
reason: string;
|
|
2533
|
+
schema_version: "capability-operation-plan-assembly/v1";
|
|
2534
|
+
assembled_at: string;
|
|
2535
|
+
assembly_id: string;
|
|
2536
|
+
candidate_plans?: {
|
|
2537
|
+
source_ref: string;
|
|
2538
|
+
operation_plan: {
|
|
2539
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
2540
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
2541
|
+
payload_class: string;
|
|
2542
|
+
provider_ref: string;
|
|
2543
|
+
operation_id: string;
|
|
2544
|
+
reversibility?: "unknown" | "reversible" | "irreversible" | "append_only" | "draft_only" | undefined;
|
|
2545
|
+
capability_id?: string | undefined;
|
|
2546
|
+
privacy_profile?: "local_private" | "workspace_private" | "external_service" | "user_visible" | undefined;
|
|
2547
|
+
external_action_authority?: boolean | undefined;
|
|
2548
|
+
risk_class?: "low" | "high" | "medium" | undefined;
|
|
2549
|
+
inspectable?: boolean | undefined;
|
|
2550
|
+
local_only?: boolean | undefined;
|
|
2551
|
+
target_refs?: string[] | undefined;
|
|
2552
|
+
expected_user_visible_effect?: boolean | undefined;
|
|
2553
|
+
advisory_only?: boolean | undefined;
|
|
2554
|
+
preparable_when_blocked?: boolean | undefined;
|
|
2555
|
+
setup_guidance_ref?: string | undefined;
|
|
2556
|
+
};
|
|
2557
|
+
plan_id: string;
|
|
2558
|
+
admission_scope: {
|
|
2559
|
+
operation_kind: "read" | "search" | "hint" | "prepare" | "send" | "write" | "publish" | "delete" | "mutate" | "run";
|
|
2560
|
+
side_effect_profile: "none" | "read" | "send" | "write" | "publish" | "delete" | "mutate";
|
|
2561
|
+
payload_class: string;
|
|
2562
|
+
provider_ref: string;
|
|
2563
|
+
operation_id: string;
|
|
2564
|
+
tool_name?: string | undefined;
|
|
2565
|
+
capability_id?: string | undefined;
|
|
2566
|
+
external_action_authority?: boolean | undefined;
|
|
2567
|
+
asset_ref?: string | undefined;
|
|
2568
|
+
payload_epoch?: string | undefined;
|
|
2569
|
+
requires_runtime_control?: boolean | undefined;
|
|
2570
|
+
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;
|
|
2571
|
+
target_refs?: string[] | undefined;
|
|
2572
|
+
target_epoch_refs?: Record<string, string> | undefined;
|
|
2573
|
+
provider_epoch?: string | undefined;
|
|
2574
|
+
};
|
|
2575
|
+
user_visible_summary: string;
|
|
2576
|
+
readiness_snapshot_refs?: string[] | undefined;
|
|
2577
|
+
required_approvals?: string[] | undefined;
|
|
2578
|
+
reversible_preparation_steps?: string[] | undefined;
|
|
2579
|
+
not_allowed_steps?: string[] | undefined;
|
|
2580
|
+
audit_seed?: Record<string, unknown> | undefined;
|
|
2581
|
+
}[] | undefined;
|
|
2582
|
+
} | undefined;
|
|
1295
2583
|
}>;
|
|
1296
2584
|
export type ScheduleResult = z.infer<typeof ScheduleResultSchema>;
|
|
1297
2585
|
//# sourceMappingURL=schedule.d.ts.map
|