pulseed 0.2.0 → 0.4.0
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 +40 -111
- package/dist/base/config/config-metadata.d.ts +2 -0
- package/dist/base/config/config-metadata.d.ts.map +1 -0
- package/dist/base/config/config-metadata.js +4 -0
- package/dist/base/config/config-metadata.js.map +1 -0
- package/dist/base/config/global-config.d.ts +19 -0
- package/dist/base/config/global-config.d.ts.map +1 -0
- package/dist/base/config/global-config.js +44 -0
- package/dist/base/config/global-config.js.map +1 -0
- package/dist/base/config/identity-loader.d.ts +15 -0
- package/dist/base/config/identity-loader.d.ts.map +1 -0
- package/dist/base/config/identity-loader.js +94 -0
- package/dist/base/config/identity-loader.js.map +1 -0
- package/dist/base/config/tool-metadata.d.ts +28 -0
- package/dist/base/config/tool-metadata.d.ts.map +1 -0
- package/dist/base/config/tool-metadata.js +114 -0
- package/dist/base/config/tool-metadata.js.map +1 -0
- package/dist/base/llm/llm-client.d.ts +12 -1
- package/dist/base/llm/llm-client.d.ts.map +1 -1
- package/dist/base/llm/llm-client.js +78 -2
- package/dist/base/llm/llm-client.js.map +1 -1
- package/dist/base/llm/ollama-client.d.ts +1 -0
- package/dist/base/llm/ollama-client.d.ts.map +1 -1
- package/dist/base/llm/ollama-client.js +1 -0
- package/dist/base/llm/ollama-client.js.map +1 -1
- package/dist/base/llm/openai-client.d.ts +3 -1
- package/dist/base/llm/openai-client.d.ts.map +1 -1
- package/dist/base/llm/openai-client.js +131 -41
- package/dist/base/llm/openai-client.js.map +1 -1
- package/dist/base/llm/provider-config.d.ts +1 -1
- package/dist/base/llm/provider-config.d.ts.map +1 -1
- package/dist/base/llm/provider-factory.d.ts.map +1 -1
- package/dist/base/llm/provider-factory.js +22 -3
- package/dist/base/llm/provider-factory.js.map +1 -1
- package/dist/base/state/checkpoint-trust-port.d.ts +4 -0
- package/dist/base/state/checkpoint-trust-port.d.ts.map +1 -0
- package/dist/base/state/checkpoint-trust-port.js +2 -0
- package/dist/base/state/checkpoint-trust-port.js.map +1 -0
- package/dist/base/state/state-lock.d.ts +15 -0
- package/dist/base/state/state-lock.d.ts.map +1 -0
- package/dist/base/state/state-lock.js +92 -0
- package/dist/base/state/state-lock.js.map +1 -0
- package/dist/base/state/state-manager.d.ts +26 -3
- package/dist/base/state/state-manager.d.ts.map +1 -1
- package/dist/base/state/state-manager.js +172 -8
- package/dist/base/state/state-manager.js.map +1 -1
- package/dist/base/state/state-snapshot.d.ts +12 -0
- package/dist/base/state/state-snapshot.d.ts.map +1 -0
- package/dist/base/state/state-snapshot.js +61 -0
- package/dist/base/state/state-snapshot.js.map +1 -0
- package/dist/base/state/state-wal.d.ts +27 -0
- package/dist/base/state/state-wal.d.ts.map +1 -0
- package/dist/base/state/state-wal.js +93 -0
- package/dist/base/state/state-wal.js.map +1 -0
- package/dist/base/state/types/state.d.ts +12 -12
- package/dist/base/types/core.d.ts +4 -4
- package/dist/base/types/core.d.ts.map +1 -1
- package/dist/base/types/core.js +3 -0
- package/dist/base/types/core.js.map +1 -1
- package/dist/base/types/index.d.ts +1 -0
- package/dist/base/types/index.d.ts.map +1 -1
- package/dist/base/types/index.js +1 -0
- package/dist/base/types/index.js.map +1 -1
- package/dist/base/types/schedule.d.ts +2 -0
- package/dist/base/types/schedule.d.ts.map +1 -0
- package/dist/base/types/schedule.js +3 -0
- package/dist/base/types/schedule.js.map +1 -0
- package/dist/base/types/time-horizon.d.ts +194 -0
- package/dist/base/types/time-horizon.d.ts.map +1 -0
- package/dist/base/types/time-horizon.js +59 -0
- package/dist/base/types/time-horizon.js.map +1 -0
- package/dist/base/utils/errors.d.ts +4 -0
- package/dist/base/utils/errors.d.ts.map +1 -1
- package/dist/base/utils/errors.js +8 -0
- package/dist/base/utils/errors.js.map +1 -1
- package/dist/base/utils/pulseed-meta.d.ts +4 -0
- package/dist/base/utils/pulseed-meta.d.ts.map +1 -0
- package/dist/base/utils/pulseed-meta.js +32 -0
- package/dist/base/utils/pulseed-meta.js.map +1 -0
- package/dist/index.d.ts +21 -18
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +18 -17
- package/dist/index.js.map +1 -1
- package/dist/interface/chat/chat-event-state.d.ts +10 -0
- package/dist/interface/chat/chat-event-state.d.ts.map +1 -0
- package/dist/interface/chat/chat-event-state.js +75 -0
- package/dist/interface/chat/chat-event-state.js.map +1 -0
- package/dist/interface/chat/chat-events.d.ts +59 -0
- package/dist/interface/chat/chat-events.d.ts.map +1 -0
- package/dist/interface/chat/chat-events.js +2 -0
- package/dist/interface/chat/chat-events.js.map +1 -0
- package/dist/interface/chat/chat-history.d.ts +4 -4
- package/dist/interface/chat/chat-history.d.ts.map +1 -1
- package/dist/interface/chat/chat-history.js +3 -3
- package/dist/interface/chat/chat-history.js.map +1 -1
- package/dist/interface/chat/chat-runner.d.ts +62 -11
- package/dist/interface/chat/chat-runner.d.ts.map +1 -1
- package/dist/interface/chat/chat-runner.js +464 -55
- package/dist/interface/chat/chat-runner.js.map +1 -1
- package/dist/interface/chat/event-subscriber.d.ts +30 -0
- package/dist/interface/chat/event-subscriber.d.ts.map +1 -0
- package/dist/interface/chat/event-subscriber.js +197 -0
- package/dist/interface/chat/event-subscriber.js.map +1 -0
- package/dist/interface/chat/grounding.d.ts +2 -0
- package/dist/interface/chat/grounding.d.ts.map +1 -1
- package/dist/interface/chat/grounding.js +95 -50
- package/dist/interface/chat/grounding.js.map +1 -1
- package/dist/interface/chat/mutation-tool-defs.d.ts +4 -0
- package/dist/interface/chat/mutation-tool-defs.d.ts.map +1 -1
- package/dist/interface/chat/mutation-tool-defs.js +18 -7
- package/dist/interface/chat/mutation-tool-defs.js.map +1 -1
- package/dist/interface/chat/self-knowledge-mutation-tools.d.ts +7 -0
- package/dist/interface/chat/self-knowledge-mutation-tools.d.ts.map +1 -1
- package/dist/interface/chat/self-knowledge-mutation-tools.js +45 -33
- package/dist/interface/chat/self-knowledge-mutation-tools.js.map +1 -1
- package/dist/interface/chat/self-knowledge-tools.d.ts +8 -0
- package/dist/interface/chat/self-knowledge-tools.d.ts.map +1 -1
- package/dist/interface/chat/self-knowledge-tools.js +20 -33
- package/dist/interface/chat/self-knowledge-tools.js.map +1 -1
- package/dist/interface/chat/tend-command.d.ts +51 -0
- package/dist/interface/chat/tend-command.d.ts.map +1 -0
- package/dist/interface/chat/tend-command.js +183 -0
- package/dist/interface/chat/tend-command.js.map +1 -0
- package/dist/interface/cli/cli-command-registry.d.ts.map +1 -1
- package/dist/interface/cli/cli-command-registry.js +20 -5
- package/dist/interface/cli/cli-command-registry.js.map +1 -1
- package/dist/interface/cli/cli-runner.js +0 -0
- package/dist/interface/cli/commands/chat.d.ts.map +1 -1
- package/dist/interface/cli/commands/chat.js +91 -15
- package/dist/interface/cli/commands/chat.js.map +1 -1
- package/dist/interface/cli/commands/config.d.ts +3 -0
- package/dist/interface/cli/commands/config.d.ts.map +1 -1
- package/dist/interface/cli/commands/config.js +87 -6
- package/dist/interface/cli/commands/config.js.map +1 -1
- package/dist/interface/cli/commands/daemon.d.ts.map +1 -1
- package/dist/interface/cli/commands/daemon.js +48 -9
- package/dist/interface/cli/commands/daemon.js.map +1 -1
- package/dist/interface/cli/commands/doctor.d.ts +1 -1
- package/dist/interface/cli/commands/doctor.d.ts.map +1 -1
- package/dist/interface/cli/commands/doctor.js +5 -7
- package/dist/interface/cli/commands/doctor.js.map +1 -1
- package/dist/interface/cli/commands/presets/root-presets.d.ts +19 -0
- package/dist/interface/cli/commands/presets/root-presets.d.ts.map +1 -0
- package/dist/interface/cli/commands/presets/root-presets.js +65 -0
- package/dist/interface/cli/commands/presets/root-presets.js.map +1 -0
- package/dist/interface/cli/commands/schedule.d.ts +3 -0
- package/dist/interface/cli/commands/schedule.d.ts.map +1 -0
- package/dist/interface/cli/commands/schedule.js +258 -0
- package/dist/interface/cli/commands/schedule.js.map +1 -0
- package/dist/interface/cli/commands/setup/steps-adapter.d.ts +3 -0
- package/dist/interface/cli/commands/setup/steps-adapter.d.ts.map +1 -0
- package/dist/interface/cli/commands/setup/steps-adapter.js +24 -0
- package/dist/interface/cli/commands/setup/steps-adapter.js.map +1 -0
- package/dist/interface/cli/commands/setup/steps-identity.d.ts +6 -0
- package/dist/interface/cli/commands/setup/steps-identity.d.ts.map +1 -0
- package/dist/interface/cli/commands/setup/steps-identity.js +67 -0
- package/dist/interface/cli/commands/setup/steps-identity.js.map +1 -0
- package/dist/interface/cli/commands/setup/steps-notification.d.ts +4 -0
- package/dist/interface/cli/commands/setup/steps-notification.d.ts.map +1 -0
- package/dist/interface/cli/commands/setup/steps-notification.js +61 -0
- package/dist/interface/cli/commands/setup/steps-notification.js.map +1 -0
- package/dist/interface/cli/commands/setup/steps-provider.d.ts +8 -0
- package/dist/interface/cli/commands/setup/steps-provider.d.ts.map +1 -0
- package/dist/interface/cli/commands/setup/steps-provider.js +143 -0
- package/dist/interface/cli/commands/setup/steps-provider.js.map +1 -0
- package/dist/interface/cli/commands/setup/steps-runtime.d.ts +10 -0
- package/dist/interface/cli/commands/setup/steps-runtime.d.ts.map +1 -0
- package/dist/interface/cli/commands/setup/steps-runtime.js +160 -0
- package/dist/interface/cli/commands/setup/steps-runtime.js.map +1 -0
- package/dist/interface/cli/commands/setup/utils.d.ts +2 -0
- package/dist/interface/cli/commands/setup/utils.d.ts.map +1 -0
- package/dist/interface/cli/commands/setup/utils.js +9 -0
- package/dist/interface/cli/commands/setup/utils.js.map +1 -0
- package/dist/interface/cli/commands/setup-shared.d.ts +25 -0
- package/dist/interface/cli/commands/setup-shared.d.ts.map +1 -0
- package/dist/interface/cli/commands/setup-shared.js +72 -0
- package/dist/interface/cli/commands/setup-shared.js.map +1 -0
- package/dist/interface/cli/commands/setup-wizard.d.ts +2 -0
- package/dist/interface/cli/commands/setup-wizard.d.ts.map +1 -0
- package/dist/interface/cli/commands/setup-wizard.js +115 -0
- package/dist/interface/cli/commands/setup-wizard.js.map +1 -0
- package/dist/interface/cli/commands/setup.d.ts.map +1 -1
- package/dist/interface/cli/commands/setup.js +10 -241
- package/dist/interface/cli/commands/setup.js.map +1 -1
- package/dist/interface/cli/setup.d.ts +9 -0
- package/dist/interface/cli/setup.d.ts.map +1 -1
- package/dist/interface/cli/setup.js +54 -21
- package/dist/interface/cli/setup.js.map +1 -1
- package/dist/interface/cli/utils.d.ts.map +1 -1
- package/dist/interface/cli/utils.js +9 -1
- package/dist/interface/cli/utils.js.map +1 -1
- package/dist/interface/tui/app.d.ts +11 -6
- package/dist/interface/tui/app.d.ts.map +1 -1
- package/dist/interface/tui/app.js +303 -69
- package/dist/interface/tui/app.js.map +1 -1
- package/dist/interface/tui/bash-mode.d.ts +11 -0
- package/dist/interface/tui/bash-mode.d.ts.map +1 -0
- package/dist/interface/tui/bash-mode.js +64 -0
- package/dist/interface/tui/bash-mode.js.map +1 -0
- package/dist/interface/tui/chat.d.ts +45 -1
- package/dist/interface/tui/chat.d.ts.map +1 -1
- package/dist/interface/tui/chat.js +420 -102
- package/dist/interface/tui/chat.js.map +1 -1
- package/dist/interface/tui/checkerboard-spinner.d.ts +3 -0
- package/dist/interface/tui/checkerboard-spinner.d.ts.map +1 -0
- package/dist/interface/tui/checkerboard-spinner.js +20 -0
- package/dist/interface/tui/checkerboard-spinner.js.map +1 -0
- package/dist/interface/tui/clipboard.d.ts +3 -0
- package/dist/interface/tui/clipboard.d.ts.map +1 -0
- package/dist/interface/tui/clipboard.js +48 -0
- package/dist/interface/tui/clipboard.js.map +1 -0
- package/dist/interface/tui/cursor-tracker.d.ts +26 -0
- package/dist/interface/tui/cursor-tracker.d.ts.map +1 -0
- package/dist/interface/tui/cursor-tracker.js +56 -0
- package/dist/interface/tui/cursor-tracker.js.map +1 -0
- package/dist/interface/tui/dashboard.js +2 -2
- package/dist/interface/tui/dashboard.js.map +1 -1
- package/dist/interface/tui/entry.d.ts.map +1 -1
- package/dist/interface/tui/entry.js +311 -85
- package/dist/interface/tui/entry.js.map +1 -1
- package/dist/interface/tui/flicker/AlternateScreen.d.ts +22 -0
- package/dist/interface/tui/flicker/AlternateScreen.d.ts.map +1 -0
- package/dist/interface/tui/flicker/AlternateScreen.js +29 -0
- package/dist/interface/tui/flicker/AlternateScreen.js.map +1 -0
- package/dist/interface/tui/flicker/dec.d.ts +19 -0
- package/dist/interface/tui/flicker/dec.d.ts.map +1 -0
- package/dist/interface/tui/flicker/dec.js +23 -0
- package/dist/interface/tui/flicker/dec.js.map +1 -0
- package/dist/interface/tui/flicker/frame-writer.d.ts +16 -0
- package/dist/interface/tui/flicker/frame-writer.d.ts.map +1 -0
- package/dist/interface/tui/flicker/frame-writer.js +41 -0
- package/dist/interface/tui/flicker/frame-writer.js.map +1 -0
- package/dist/interface/tui/flicker/index.d.ts +10 -0
- package/dist/interface/tui/flicker/index.d.ts.map +1 -0
- package/dist/interface/tui/flicker/index.js +20 -0
- package/dist/interface/tui/flicker/index.js.map +1 -0
- package/dist/interface/tui/flicker/terminal-detect.d.ts +9 -0
- package/dist/interface/tui/flicker/terminal-detect.d.ts.map +1 -0
- package/dist/interface/tui/flicker/terminal-detect.js +52 -0
- package/dist/interface/tui/flicker/terminal-detect.js.map +1 -0
- package/dist/interface/tui/flicker-overlay.d.ts +7 -0
- package/dist/interface/tui/flicker-overlay.d.ts.map +1 -0
- package/dist/interface/tui/flicker-overlay.js +74 -0
- package/dist/interface/tui/flicker-overlay.js.map +1 -0
- 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 +5 -2
- package/dist/interface/tui/intent-recognizer.js.map +1 -1
- package/dist/interface/tui/markdown-renderer.d.ts +24 -0
- package/dist/interface/tui/markdown-renderer.d.ts.map +1 -1
- package/dist/interface/tui/markdown-renderer.js +89 -0
- package/dist/interface/tui/markdown-renderer.js.map +1 -1
- package/dist/interface/tui/render-output.d.ts +2 -0
- package/dist/interface/tui/render-output.d.ts.map +1 -0
- package/dist/interface/tui/render-output.js +5 -0
- package/dist/interface/tui/render-output.js.map +1 -0
- 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 +32 -5
- package/dist/interface/tui/report-view.js.map +1 -1
- package/dist/interface/tui/seedy-art.d.ts +4 -6
- package/dist/interface/tui/seedy-art.d.ts.map +1 -1
- package/dist/interface/tui/seedy-art.js +74 -5
- package/dist/interface/tui/seedy-art.js.map +1 -1
- package/dist/interface/tui/settings-overlay.d.ts +7 -0
- package/dist/interface/tui/settings-overlay.d.ts.map +1 -0
- package/dist/interface/tui/settings-overlay.js +72 -0
- package/dist/interface/tui/settings-overlay.js.map +1 -0
- package/dist/interface/tui/shimmer-text.d.ts +6 -0
- package/dist/interface/tui/shimmer-text.d.ts.map +1 -0
- package/dist/interface/tui/shimmer-text.js +33 -0
- package/dist/interface/tui/shimmer-text.js.map +1 -0
- package/dist/interface/tui/spinner-verbs.d.ts +9 -0
- package/dist/interface/tui/spinner-verbs.d.ts.map +1 -0
- package/dist/interface/tui/spinner-verbs.js +124 -0
- package/dist/interface/tui/spinner-verbs.js.map +1 -0
- package/dist/interface/tui/splash-screen.d.ts +9 -0
- package/dist/interface/tui/splash-screen.d.ts.map +1 -0
- package/dist/interface/tui/splash-screen.js +27 -0
- package/dist/interface/tui/splash-screen.js.map +1 -0
- package/dist/interface/tui/theme.d.ts +1 -1
- package/dist/interface/tui/theme.d.ts.map +1 -1
- package/dist/interface/tui/theme.js +1 -2
- package/dist/interface/tui/theme.js.map +1 -1
- package/dist/interface/tui/use-loop.d.ts +11 -6
- package/dist/interface/tui/use-loop.d.ts.map +1 -1
- package/dist/interface/tui/use-loop.js +107 -43
- package/dist/interface/tui/use-loop.js.map +1 -1
- package/dist/orchestrator/ethics-gate.d.ts +3 -0
- package/dist/orchestrator/ethics-gate.d.ts.map +1 -0
- package/dist/orchestrator/ethics-gate.js +2 -0
- package/dist/orchestrator/ethics-gate.js.map +1 -0
- package/dist/orchestrator/execution/context/context-builder.d.ts +8 -0
- package/dist/orchestrator/execution/context/context-builder.d.ts.map +1 -1
- package/dist/orchestrator/execution/context/context-builder.js +38 -0
- package/dist/orchestrator/execution/context/context-builder.js.map +1 -1
- package/dist/orchestrator/execution/parallel-execution-types.d.ts +7 -0
- package/dist/orchestrator/execution/parallel-execution-types.d.ts.map +1 -0
- package/dist/orchestrator/execution/parallel-execution-types.js +2 -0
- package/dist/orchestrator/execution/parallel-execution-types.js.map +1 -0
- package/dist/orchestrator/execution/parallel-executor.d.ts +2 -6
- package/dist/orchestrator/execution/parallel-executor.d.ts.map +1 -1
- package/dist/orchestrator/execution/parallel-executor.js.map +1 -1
- package/dist/orchestrator/execution/result-reconciler.d.ts +1 -1
- package/dist/orchestrator/execution/result-reconciler.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-context-enricher.d.ts +13 -0
- package/dist/orchestrator/execution/task/task-context-enricher.d.ts.map +1 -0
- package/dist/orchestrator/execution/task/task-context-enricher.js +35 -0
- package/dist/orchestrator/execution/task/task-context-enricher.js.map +1 -0
- package/dist/orchestrator/execution/task/task-execution-helpers.d.ts +28 -0
- package/dist/orchestrator/execution/task/task-execution-helpers.d.ts.map +1 -0
- package/dist/orchestrator/execution/task/task-execution-helpers.js +105 -0
- package/dist/orchestrator/execution/task/task-execution-helpers.js.map +1 -0
- package/dist/orchestrator/execution/task/task-execution-types.d.ts +2 -0
- package/dist/orchestrator/execution/task/task-execution-types.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-execution-types.js.map +1 -1
- package/dist/orchestrator/execution/task/task-generation.d.ts +4 -1
- package/dist/orchestrator/execution/task/task-generation.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-generation.js +6 -2
- package/dist/orchestrator/execution/task/task-generation.js.map +1 -1
- package/dist/orchestrator/execution/task/task-health-check.d.ts +1 -2
- package/dist/orchestrator/execution/task/task-health-check.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-lifecycle.d.ts +51 -42
- package/dist/orchestrator/execution/task/task-lifecycle.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-lifecycle.js +142 -185
- package/dist/orchestrator/execution/task/task-lifecycle.js.map +1 -1
- package/dist/orchestrator/execution/task/task-pipeline-cycle.d.ts +5 -35
- package/dist/orchestrator/execution/task/task-pipeline-cycle.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-pipeline-cycle.js.map +1 -1
- package/dist/orchestrator/execution/task/task-pipeline-types.d.ts +39 -0
- package/dist/orchestrator/execution/task/task-pipeline-types.d.ts.map +1 -0
- package/dist/orchestrator/execution/task/task-pipeline-types.js +2 -0
- package/dist/orchestrator/execution/task/task-pipeline-types.js.map +1 -0
- package/dist/orchestrator/execution/task/task-post-execution.d.ts +27 -0
- package/dist/orchestrator/execution/task/task-post-execution.d.ts.map +1 -0
- package/dist/orchestrator/execution/task/task-post-execution.js +24 -0
- package/dist/orchestrator/execution/task/task-post-execution.js.map +1 -0
- package/dist/orchestrator/execution/task/task-side-effects.d.ts +23 -0
- package/dist/orchestrator/execution/task/task-side-effects.d.ts.map +1 -0
- package/dist/orchestrator/execution/task/task-side-effects.js +42 -0
- package/dist/orchestrator/execution/task/task-side-effects.js.map +1 -0
- package/dist/orchestrator/execution/task/task-verifier-llm.d.ts +1 -0
- package/dist/orchestrator/execution/task/task-verifier-llm.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-verifier-llm.js +13 -0
- package/dist/orchestrator/execution/task/task-verifier-llm.js.map +1 -1
- package/dist/orchestrator/execution/task/task-verifier-types.d.ts +7 -0
- package/dist/orchestrator/execution/task/task-verifier-types.d.ts.map +1 -1
- package/dist/orchestrator/goal/goal-negotiator.d.ts.map +1 -1
- package/dist/orchestrator/goal/goal-negotiator.js +2 -1
- 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 +1 -1
- package/dist/orchestrator/goal/goal-refiner.js.map +1 -1
- package/dist/orchestrator/goal/goal-tree-manager.d.ts +2 -2
- package/dist/orchestrator/goal/goal-tree-manager.d.ts.map +1 -1
- package/dist/orchestrator/goal/goal-tree-manager.js.map +1 -1
- package/dist/orchestrator/goal/negotiator-feasibility.d.ts +10 -0
- package/dist/orchestrator/goal/negotiator-feasibility.d.ts.map +1 -0
- package/dist/orchestrator/goal/negotiator-feasibility.js +55 -0
- package/dist/orchestrator/goal/negotiator-feasibility.js.map +1 -0
- package/dist/orchestrator/goal/negotiator-steps.d.ts +1 -6
- package/dist/orchestrator/goal/negotiator-steps.d.ts.map +1 -1
- package/dist/orchestrator/goal/negotiator-steps.js +4 -56
- package/dist/orchestrator/goal/negotiator-steps.js.map +1 -1
- package/dist/orchestrator/goal/types/goal.d.ts +33 -33
- package/dist/orchestrator/goal/types/goal.js +1 -1
- package/dist/orchestrator/goal/types/goal.js.map +1 -1
- package/dist/orchestrator/knowledge/knowledge-manager.d.ts +2 -0
- package/dist/orchestrator/knowledge/knowledge-manager.d.ts.map +1 -0
- package/dist/orchestrator/knowledge/knowledge-manager.js +2 -0
- package/dist/orchestrator/knowledge/knowledge-manager.js.map +1 -0
- package/dist/orchestrator/knowledge/memory/memory-lifecycle.d.ts +2 -0
- package/dist/orchestrator/knowledge/memory/memory-lifecycle.d.ts.map +1 -0
- package/dist/orchestrator/knowledge/memory/memory-lifecycle.js +2 -0
- package/dist/orchestrator/knowledge/memory/memory-lifecycle.js.map +1 -0
- package/dist/orchestrator/knowledge/transfer/knowledge-transfer.d.ts +2 -0
- package/dist/orchestrator/knowledge/transfer/knowledge-transfer.d.ts.map +1 -0
- package/dist/orchestrator/knowledge/transfer/knowledge-transfer.js +2 -0
- package/dist/orchestrator/knowledge/transfer/knowledge-transfer.js.map +1 -0
- package/dist/orchestrator/loop/core-loop-capability.d.ts +7 -1
- package/dist/orchestrator/loop/core-loop-capability.d.ts.map +1 -1
- package/dist/orchestrator/loop/core-loop-capability.js +53 -6
- package/dist/orchestrator/loop/core-loop-capability.js.map +1 -1
- package/dist/orchestrator/loop/core-loop-learning.d.ts +3 -2
- package/dist/orchestrator/loop/core-loop-learning.d.ts.map +1 -1
- package/dist/orchestrator/loop/core-loop-learning.js +20 -2
- package/dist/orchestrator/loop/core-loop-learning.js.map +1 -1
- package/dist/orchestrator/loop/core-loop-phases-b.d.ts +2 -1
- package/dist/orchestrator/loop/core-loop-phases-b.d.ts.map +1 -1
- package/dist/orchestrator/loop/core-loop-phases-b.js +218 -6
- package/dist/orchestrator/loop/core-loop-phases-b.js.map +1 -1
- package/dist/orchestrator/loop/core-loop-phases.d.ts +11 -1
- package/dist/orchestrator/loop/core-loop-phases.d.ts.map +1 -1
- package/dist/orchestrator/loop/core-loop-phases.js +42 -1
- package/dist/orchestrator/loop/core-loop-phases.js.map +1 -1
- package/dist/orchestrator/loop/core-loop-types.d.ts +13 -51
- package/dist/orchestrator/loop/core-loop-types.d.ts.map +1 -1
- package/dist/orchestrator/loop/core-loop-types.js +2 -26
- package/dist/orchestrator/loop/core-loop-types.js.map +1 -1
- package/dist/orchestrator/loop/core-loop.d.ts +17 -3
- package/dist/orchestrator/loop/core-loop.d.ts.map +1 -1
- package/dist/orchestrator/loop/core-loop.js +127 -5
- package/dist/orchestrator/loop/core-loop.js.map +1 -1
- package/dist/orchestrator/loop/learning-evidence.d.ts +12 -0
- package/dist/orchestrator/loop/learning-evidence.d.ts.map +1 -0
- package/dist/orchestrator/loop/learning-evidence.js +37 -0
- package/dist/orchestrator/loop/learning-evidence.js.map +1 -0
- package/dist/orchestrator/loop/loop-result-types.d.ts +67 -0
- package/dist/orchestrator/loop/loop-result-types.d.ts.map +1 -0
- package/dist/orchestrator/loop/loop-result-types.js +27 -0
- package/dist/orchestrator/loop/loop-result-types.js.map +1 -0
- package/dist/orchestrator/loop/post-loop-hooks.d.ts +3 -0
- package/dist/orchestrator/loop/post-loop-hooks.d.ts.map +1 -1
- package/dist/orchestrator/loop/post-loop-hooks.js +40 -1
- package/dist/orchestrator/loop/post-loop-hooks.js.map +1 -1
- package/dist/orchestrator/loop/stall-evidence.d.ts +12 -0
- package/dist/orchestrator/loop/stall-evidence.d.ts.map +1 -0
- package/dist/orchestrator/loop/stall-evidence.js +33 -0
- package/dist/orchestrator/loop/stall-evidence.js.map +1 -0
- package/dist/orchestrator/observation/capability-detector.d.ts +2 -0
- package/dist/orchestrator/observation/capability-detector.d.ts.map +1 -0
- package/dist/orchestrator/observation/capability-detector.js +2 -0
- package/dist/orchestrator/observation/capability-detector.js.map +1 -0
- package/dist/orchestrator/strategy/portfolio-allocation.d.ts +2 -1
- package/dist/orchestrator/strategy/portfolio-allocation.d.ts.map +1 -1
- package/dist/orchestrator/strategy/portfolio-allocation.js +4 -3
- package/dist/orchestrator/strategy/portfolio-allocation.js.map +1 -1
- package/dist/orchestrator/strategy/portfolio-manager.js +2 -2
- package/dist/orchestrator/strategy/portfolio-manager.js.map +1 -1
- package/dist/orchestrator/strategy/strategy-helpers.d.ts.map +1 -1
- package/dist/orchestrator/strategy/strategy-helpers.js +2 -2
- package/dist/orchestrator/strategy/strategy-helpers.js.map +1 -1
- package/dist/orchestrator/strategy/strategy-manager-base.d.ts +13 -0
- package/dist/orchestrator/strategy/strategy-manager-base.d.ts.map +1 -1
- package/dist/orchestrator/strategy/strategy-manager-base.js +92 -11
- package/dist/orchestrator/strategy/strategy-manager-base.js.map +1 -1
- package/dist/orchestrator/strategy/strategy-manager.d.ts +6 -0
- package/dist/orchestrator/strategy/strategy-manager.d.ts.map +1 -1
- package/dist/orchestrator/strategy/strategy-manager.js +88 -10
- package/dist/orchestrator/strategy/strategy-manager.js.map +1 -1
- package/dist/orchestrator/strategy/types/strategy.d.ts +64 -112
- package/dist/orchestrator/strategy/types/strategy.d.ts.map +1 -1
- package/dist/orchestrator/strategy/types/strategy.js +18 -1
- package/dist/orchestrator/strategy/types/strategy.js.map +1 -1
- package/dist/orchestrator/strategy-manager.d.ts +2 -0
- package/dist/orchestrator/strategy-manager.d.ts.map +1 -0
- package/dist/orchestrator/strategy-manager.js +2 -0
- package/dist/orchestrator/strategy-manager.js.map +1 -0
- package/dist/platform/dream/dream-activation.d.ts +52 -0
- package/dist/platform/dream/dream-activation.d.ts.map +1 -0
- package/dist/platform/dream/dream-activation.js +199 -0
- package/dist/platform/dream/dream-activation.js.map +1 -0
- package/dist/platform/dream/dream-analyzer.d.ts +53 -0
- package/dist/platform/dream/dream-analyzer.d.ts.map +1 -0
- package/dist/platform/dream/dream-analyzer.js +489 -0
- package/dist/platform/dream/dream-analyzer.js.map +1 -0
- package/dist/platform/dream/dream-config.d.ts +6 -0
- package/dist/platform/dream/dream-config.d.ts.map +1 -0
- package/dist/platform/dream/dream-config.js +20 -0
- package/dist/platform/dream/dream-config.js.map +1 -0
- package/dist/platform/dream/dream-consolidator.d.ts +35 -0
- package/dist/platform/dream/dream-consolidator.d.ts.map +1 -0
- package/dist/platform/dream/dream-consolidator.js +304 -0
- package/dist/platform/dream/dream-consolidator.js.map +1 -0
- package/dist/platform/dream/dream-importance.d.ts +24 -0
- package/dist/platform/dream/dream-importance.d.ts.map +1 -0
- package/dist/platform/dream/dream-importance.js +71 -0
- package/dist/platform/dream/dream-importance.js.map +1 -0
- package/dist/platform/dream/dream-log-collector.d.ts +73 -0
- package/dist/platform/dream/dream-log-collector.d.ts.map +1 -0
- package/dist/platform/dream/dream-log-collector.js +256 -0
- package/dist/platform/dream/dream-log-collector.js.map +1 -0
- package/dist/platform/dream/dream-log-store.d.ts +22 -0
- package/dist/platform/dream/dream-log-store.d.ts.map +1 -0
- package/dist/platform/dream/dream-log-store.js +150 -0
- package/dist/platform/dream/dream-log-store.js.map +1 -0
- package/dist/platform/dream/dream-schedule-suggestions.d.ts +26 -0
- package/dist/platform/dream/dream-schedule-suggestions.d.ts.map +1 -0
- package/dist/platform/dream/dream-schedule-suggestions.js +195 -0
- package/dist/platform/dream/dream-schedule-suggestions.js.map +1 -0
- package/dist/platform/dream/dream-types.d.ts +2587 -0
- package/dist/platform/dream/dream-types.d.ts.map +1 -0
- package/dist/platform/dream/dream-types.js +265 -0
- package/dist/platform/dream/dream-types.js.map +1 -0
- package/dist/platform/dream/index.d.ts +6 -0
- package/dist/platform/dream/index.d.ts.map +1 -0
- package/dist/platform/dream/index.js +6 -0
- package/dist/platform/dream/index.js.map +1 -0
- package/dist/platform/drive/drive-scorer.d.ts +1 -1
- package/dist/platform/drive/drive-scorer.d.ts.map +1 -1
- package/dist/platform/drive/drive-scorer.js +6 -3
- package/dist/platform/drive/drive-scorer.js.map +1 -1
- package/dist/platform/drive/gap-calculator-tools.d.ts +2 -2
- package/dist/platform/drive/gap-calculator-tools.js +12 -3
- package/dist/platform/drive/gap-calculator-tools.js.map +1 -1
- package/dist/platform/drive/types/drive.d.ts +21 -0
- package/dist/platform/drive/types/drive.d.ts.map +1 -1
- package/dist/platform/drive/types/drive.js +5 -0
- package/dist/platform/drive/types/drive.js.map +1 -1
- package/dist/platform/ethics-gate.d.ts +2 -0
- package/dist/platform/ethics-gate.d.ts.map +1 -0
- package/dist/platform/ethics-gate.js +2 -0
- package/dist/platform/ethics-gate.js.map +1 -0
- package/dist/platform/execution/task/task-lifecycle.d.ts +2 -0
- package/dist/platform/execution/task/task-lifecycle.d.ts.map +1 -0
- package/dist/platform/execution/task/task-lifecycle.js +2 -0
- package/dist/platform/execution/task/task-lifecycle.js.map +1 -0
- package/dist/platform/knowledge/knowledge-manager-lint.d.ts +9 -0
- package/dist/platform/knowledge/knowledge-manager-lint.d.ts.map +1 -0
- package/dist/platform/knowledge/knowledge-manager-lint.js +123 -0
- package/dist/platform/knowledge/knowledge-manager-lint.js.map +1 -0
- package/dist/platform/knowledge/knowledge-manager.d.ts +84 -0
- package/dist/platform/knowledge/knowledge-manager.d.ts.map +1 -1
- package/dist/platform/knowledge/knowledge-manager.js +302 -0
- package/dist/platform/knowledge/knowledge-manager.js.map +1 -1
- package/dist/platform/knowledge/transfer/knowledge-transfer-apply.d.ts.map +1 -1
- package/dist/platform/knowledge/transfer/knowledge-transfer-apply.js +6 -0
- package/dist/platform/knowledge/transfer/knowledge-transfer-apply.js.map +1 -1
- package/dist/platform/knowledge/transfer/knowledge-transfer-detect.d.ts.map +1 -1
- package/dist/platform/knowledge/transfer/knowledge-transfer-detect.js +32 -0
- package/dist/platform/knowledge/transfer/knowledge-transfer-detect.js.map +1 -1
- package/dist/platform/knowledge/transfer/knowledge-transfer.d.ts +18 -1
- package/dist/platform/knowledge/transfer/knowledge-transfer.d.ts.map +1 -1
- package/dist/platform/knowledge/transfer/knowledge-transfer.js +121 -6
- package/dist/platform/knowledge/transfer/knowledge-transfer.js.map +1 -1
- package/dist/platform/knowledge/types/agent-memory.d.ts +218 -0
- package/dist/platform/knowledge/types/agent-memory.d.ts.map +1 -0
- package/dist/platform/knowledge/types/agent-memory.js +47 -0
- package/dist/platform/knowledge/types/agent-memory.js.map +1 -0
- package/dist/platform/observation/capability-detector.d.ts +8 -0
- package/dist/platform/observation/capability-detector.d.ts.map +1 -1
- package/dist/platform/observation/capability-detector.js +71 -4
- package/dist/platform/observation/capability-detector.js.map +1 -1
- package/dist/platform/observation/data-source-adapter.d.ts +19 -0
- package/dist/platform/observation/data-source-adapter.d.ts.map +1 -1
- package/dist/platform/observation/data-source-adapter.js +166 -0
- package/dist/platform/observation/data-source-adapter.js.map +1 -1
- package/dist/platform/observation/observation-engine.js +1 -1
- package/dist/platform/observation/observation-engine.js.map +1 -1
- package/dist/platform/observation/observation-helpers.d.ts +6 -0
- package/dist/platform/observation/observation-helpers.d.ts.map +1 -1
- package/dist/platform/observation/observation-helpers.js +2 -0
- package/dist/platform/observation/observation-helpers.js.map +1 -1
- package/dist/platform/observation/observation-tools.d.ts.map +1 -1
- package/dist/platform/observation/observation-tools.js +23 -1
- package/dist/platform/observation/observation-tools.js.map +1 -1
- package/dist/platform/observation/types/data-source.d.ts +12 -0
- package/dist/platform/observation/types/data-source.d.ts.map +1 -1
- package/dist/platform/observation/types/data-source.js +1 -0
- package/dist/platform/observation/types/data-source.js.map +1 -1
- package/dist/platform/runtime/plugin-loader.d.ts +2 -0
- package/dist/platform/runtime/plugin-loader.d.ts.map +1 -0
- package/dist/platform/runtime/plugin-loader.js +2 -0
- package/dist/platform/runtime/plugin-loader.js.map +1 -0
- package/dist/platform/time/effect-latency-estimator.d.ts +15 -0
- package/dist/platform/time/effect-latency-estimator.d.ts.map +1 -0
- package/dist/platform/time/effect-latency-estimator.js +39 -0
- package/dist/platform/time/effect-latency-estimator.js.map +1 -0
- package/dist/platform/time/time-horizon-engine.d.ts +18 -0
- package/dist/platform/time/time-horizon-engine.d.ts.map +1 -0
- package/dist/platform/time/time-horizon-engine.js +215 -0
- package/dist/platform/time/time-horizon-engine.js.map +1 -0
- package/dist/platform/tools/executor.d.ts +2 -0
- package/dist/platform/tools/executor.d.ts.map +1 -0
- package/dist/platform/tools/executor.js +2 -0
- package/dist/platform/tools/executor.js.map +1 -0
- package/dist/platform/traits/curiosity-proposals.d.ts.map +1 -1
- package/dist/platform/traits/curiosity-proposals.js +1 -1
- package/dist/platform/traits/curiosity-proposals.js.map +1 -1
- package/dist/platform/traits/types/guardrail.d.ts +6 -6
- package/dist/prompt/gateway.d.ts.map +1 -1
- package/dist/prompt/gateway.js +68 -1
- package/dist/prompt/gateway.js.map +1 -1
- package/dist/prompt/purposes/curiosity.d.ts.map +1 -1
- package/dist/prompt/purposes/curiosity.js +1 -2
- package/dist/prompt/purposes/curiosity.js.map +1 -1
- package/dist/prompt/purposes/dream.d.ts +9 -0
- package/dist/prompt/purposes/dream.d.ts.map +1 -0
- package/dist/prompt/purposes/dream.js +71 -0
- package/dist/prompt/purposes/dream.js.map +1 -0
- package/dist/prompt/purposes/index.d.ts +1 -0
- package/dist/prompt/purposes/index.d.ts.map +1 -1
- package/dist/prompt/purposes/index.js +1 -0
- package/dist/prompt/purposes/index.js.map +1 -1
- package/dist/reflection/evening-catchup.d.ts.map +1 -1
- package/dist/reflection/evening-catchup.js +2 -1
- package/dist/reflection/evening-catchup.js.map +1 -1
- package/dist/reflection/morning-planning.d.ts.map +1 -1
- package/dist/reflection/morning-planning.js +2 -1
- package/dist/reflection/morning-planning.js.map +1 -1
- package/dist/reflection/types.d.ts +4 -4
- package/dist/reflection/weekly-review.d.ts.map +1 -1
- package/dist/reflection/weekly-review.js +2 -1
- 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/reporting-engine.d.ts +2 -24
- package/dist/reporting/reporting-engine.d.ts.map +1 -1
- package/dist/reporting/reporting-engine.js +0 -1
- package/dist/reporting/reporting-engine.js.map +1 -1
- package/dist/reporting/reporting-types.d.ts +25 -0
- package/dist/reporting/reporting-types.d.ts.map +1 -0
- package/dist/reporting/reporting-types.js +2 -0
- package/dist/reporting/reporting-types.js.map +1 -0
- package/dist/runtime/approval-broker.d.ts +44 -0
- package/dist/runtime/approval-broker.d.ts.map +1 -0
- package/dist/runtime/approval-broker.js +140 -0
- package/dist/runtime/approval-broker.js.map +1 -0
- package/dist/runtime/change-detector.d.ts +6 -0
- package/dist/runtime/change-detector.d.ts.map +1 -0
- package/dist/runtime/change-detector.js +53 -0
- package/dist/runtime/change-detector.js.map +1 -0
- package/dist/runtime/daemon-client.d.ts +56 -0
- package/dist/runtime/daemon-client.d.ts.map +1 -0
- package/dist/runtime/daemon-client.js +298 -0
- package/dist/runtime/daemon-client.js.map +1 -0
- package/dist/runtime/daemon-runner.d.ts +57 -2
- package/dist/runtime/daemon-runner.d.ts.map +1 -1
- package/dist/runtime/daemon-runner.js +408 -27
- package/dist/runtime/daemon-runner.js.map +1 -1
- package/dist/runtime/event-server.d.ts +27 -1
- package/dist/runtime/event-server.d.ts.map +1 -1
- package/dist/runtime/event-server.js +309 -22
- package/dist/runtime/event-server.js.map +1 -1
- package/dist/runtime/executor/goal-worker.d.ts +29 -0
- package/dist/runtime/executor/goal-worker.d.ts.map +1 -0
- package/dist/runtime/executor/goal-worker.js +75 -0
- package/dist/runtime/executor/goal-worker.js.map +1 -0
- package/dist/runtime/executor/index.d.ts +3 -0
- package/dist/runtime/executor/index.d.ts.map +1 -0
- package/dist/runtime/executor/index.js +3 -0
- package/dist/runtime/executor/index.js.map +1 -0
- package/dist/runtime/executor/loop-supervisor.d.ts +72 -0
- package/dist/runtime/executor/loop-supervisor.d.ts.map +1 -0
- package/dist/runtime/executor/loop-supervisor.js +388 -0
- package/dist/runtime/executor/loop-supervisor.js.map +1 -0
- package/dist/runtime/gateway/channel-adapter.d.ts +21 -0
- package/dist/runtime/gateway/channel-adapter.d.ts.map +1 -0
- package/dist/runtime/gateway/channel-adapter.js +2 -0
- package/dist/runtime/gateway/channel-adapter.js.map +1 -0
- package/dist/runtime/gateway/http-channel-adapter.d.ts +23 -0
- package/dist/runtime/gateway/http-channel-adapter.d.ts.map +1 -0
- package/dist/runtime/gateway/http-channel-adapter.js +51 -0
- package/dist/runtime/gateway/http-channel-adapter.js.map +1 -0
- package/dist/runtime/gateway/index.d.ts +8 -0
- package/dist/runtime/gateway/index.d.ts.map +1 -0
- package/dist/runtime/gateway/index.js +5 -0
- package/dist/runtime/gateway/index.js.map +1 -0
- package/dist/runtime/gateway/ingress-gateway.d.ts +27 -0
- package/dist/runtime/gateway/ingress-gateway.d.ts.map +1 -0
- package/dist/runtime/gateway/ingress-gateway.js +75 -0
- package/dist/runtime/gateway/ingress-gateway.js.map +1 -0
- package/dist/runtime/gateway/slack-channel-adapter.d.ts +45 -0
- package/dist/runtime/gateway/slack-channel-adapter.d.ts.map +1 -0
- package/dist/runtime/gateway/slack-channel-adapter.js +129 -0
- package/dist/runtime/gateway/slack-channel-adapter.js.map +1 -0
- package/dist/runtime/gateway/ws-channel-adapter.d.ts +34 -0
- package/dist/runtime/gateway/ws-channel-adapter.d.ts.map +1 -0
- package/dist/runtime/gateway/ws-channel-adapter.js +75 -0
- package/dist/runtime/gateway/ws-channel-adapter.js.map +1 -0
- package/dist/runtime/goal-lease-manager.d.ts +35 -0
- package/dist/runtime/goal-lease-manager.d.ts.map +1 -0
- package/dist/runtime/goal-lease-manager.js +191 -0
- package/dist/runtime/goal-lease-manager.js.map +1 -0
- package/dist/runtime/hook-manager.d.ts +4 -0
- package/dist/runtime/hook-manager.d.ts.map +1 -1
- package/dist/runtime/hook-manager.js +33 -0
- package/dist/runtime/hook-manager.js.map +1 -1
- package/dist/runtime/leader-lock-manager.d.ts +30 -0
- package/dist/runtime/leader-lock-manager.d.ts.map +1 -0
- package/dist/runtime/leader-lock-manager.js +160 -0
- package/dist/runtime/leader-lock-manager.js.map +1 -0
- package/dist/runtime/notification-dispatcher.d.ts +2 -0
- package/dist/runtime/notification-dispatcher.d.ts.map +1 -1
- package/dist/runtime/notification-dispatcher.js +20 -0
- package/dist/runtime/notification-dispatcher.js.map +1 -1
- package/dist/runtime/plugin-loader.d.ts +6 -0
- package/dist/runtime/plugin-loader.d.ts.map +1 -1
- package/dist/runtime/plugin-loader.js +11 -0
- package/dist/runtime/plugin-loader.js.map +1 -1
- package/dist/runtime/port-utils.d.ts +6 -0
- package/dist/runtime/port-utils.d.ts.map +1 -0
- package/dist/runtime/port-utils.js +37 -0
- package/dist/runtime/port-utils.js.map +1 -0
- package/dist/runtime/queue/command-bus.d.ts +18 -0
- package/dist/runtime/queue/command-bus.d.ts.map +1 -0
- package/dist/runtime/queue/command-bus.js +64 -0
- package/dist/runtime/queue/command-bus.js.map +1 -0
- package/dist/runtime/queue/event-bus.d.ts +21 -0
- package/dist/runtime/queue/event-bus.d.ts.map +1 -0
- package/dist/runtime/queue/event-bus.js +104 -0
- package/dist/runtime/queue/event-bus.js.map +1 -0
- package/dist/runtime/queue/index.d.ts +10 -0
- package/dist/runtime/queue/index.d.ts.map +1 -0
- package/dist/runtime/queue/index.js +6 -0
- package/dist/runtime/queue/index.js.map +1 -0
- package/dist/runtime/queue/journal-backed-queue.d.ts +80 -0
- package/dist/runtime/queue/journal-backed-queue.d.ts.map +1 -0
- package/dist/runtime/queue/journal-backed-queue.js +509 -0
- package/dist/runtime/queue/journal-backed-queue.js.map +1 -0
- package/dist/runtime/queue/priority-queue.d.ts +13 -0
- package/dist/runtime/queue/priority-queue.d.ts.map +1 -0
- package/dist/runtime/queue/priority-queue.js +56 -0
- package/dist/runtime/queue/priority-queue.js.map +1 -0
- package/dist/runtime/queue/queue-claim-sweeper.d.ts +15 -0
- package/dist/runtime/queue/queue-claim-sweeper.d.ts.map +1 -0
- package/dist/runtime/queue/queue-claim-sweeper.js +28 -0
- package/dist/runtime/queue/queue-claim-sweeper.js.map +1 -0
- package/dist/runtime/schedule-engine-layers.d.ts +44 -0
- package/dist/runtime/schedule-engine-layers.d.ts.map +1 -0
- package/dist/runtime/schedule-engine-layers.js +433 -0
- package/dist/runtime/schedule-engine-layers.js.map +1 -0
- package/dist/runtime/schedule-engine.d.ts +82 -0
- package/dist/runtime/schedule-engine.d.ts.map +1 -0
- package/dist/runtime/schedule-engine.js +480 -0
- package/dist/runtime/schedule-engine.js.map +1 -0
- package/dist/runtime/schedule-presets.d.ts +536 -0
- package/dist/runtime/schedule-presets.d.ts.map +1 -0
- package/dist/runtime/schedule-presets.js +166 -0
- package/dist/runtime/schedule-presets.js.map +1 -0
- package/dist/runtime/schedule-source.d.ts +65 -0
- package/dist/runtime/schedule-source.d.ts.map +1 -0
- package/dist/runtime/schedule-source.js +16 -0
- package/dist/runtime/schedule-source.js.map +1 -0
- package/dist/runtime/store/approval-store.d.ts +26 -0
- package/dist/runtime/store/approval-store.d.ts.map +1 -0
- package/dist/runtime/store/approval-store.js +119 -0
- package/dist/runtime/store/approval-store.js.map +1 -0
- package/dist/runtime/store/health-store.d.ts +16 -0
- package/dist/runtime/store/health-store.d.ts.map +1 -0
- package/dist/runtime/store/health-store.js +68 -0
- package/dist/runtime/store/health-store.js.map +1 -0
- package/dist/runtime/store/index.d.ts +10 -0
- package/dist/runtime/store/index.d.ts.map +1 -0
- package/dist/runtime/store/index.js +7 -0
- package/dist/runtime/store/index.js.map +1 -0
- package/dist/runtime/store/outbox-store.d.ts +16 -0
- package/dist/runtime/store/outbox-store.d.ts.map +1 -0
- package/dist/runtime/store/outbox-store.js +92 -0
- package/dist/runtime/store/outbox-store.js.map +1 -0
- package/dist/runtime/store/runtime-journal.d.ts +19 -0
- package/dist/runtime/store/runtime-journal.d.ts.map +1 -0
- package/dist/runtime/store/runtime-journal.js +77 -0
- package/dist/runtime/store/runtime-journal.js.map +1 -0
- package/dist/runtime/store/runtime-paths.d.ts +35 -0
- package/dist/runtime/store/runtime-paths.d.ts.map +1 -0
- package/dist/runtime/store/runtime-paths.js +108 -0
- package/dist/runtime/store/runtime-paths.js.map +1 -0
- package/dist/runtime/store/runtime-schemas.d.ts +218 -0
- package/dist/runtime/store/runtime-schemas.d.ts.map +1 -0
- package/dist/runtime/store/runtime-schemas.js +94 -0
- package/dist/runtime/store/runtime-schemas.js.map +1 -0
- package/dist/runtime/types/cron.d.ts +4 -4
- package/dist/runtime/types/daemon.d.ts +9 -0
- package/dist/runtime/types/daemon.d.ts.map +1 -1
- package/dist/runtime/types/daemon.js +3 -0
- package/dist/runtime/types/daemon.js.map +1 -1
- package/dist/runtime/types/envelope.d.ts +90 -0
- package/dist/runtime/types/envelope.d.ts.map +1 -0
- package/dist/runtime/types/envelope.js +41 -0
- package/dist/runtime/types/envelope.js.map +1 -0
- package/dist/runtime/types/hook.d.ts +12 -12
- package/dist/runtime/types/hook.d.ts.map +1 -1
- package/dist/runtime/types/hook.js +1 -0
- package/dist/runtime/types/hook.js.map +1 -1
- package/dist/runtime/types/plugin.d.ts +9 -9
- package/dist/runtime/types/plugin.d.ts.map +1 -1
- package/dist/runtime/types/plugin.js +1 -1
- package/dist/runtime/types/plugin.js.map +1 -1
- package/dist/runtime/types/schedule.d.ts +918 -0
- package/dist/runtime/types/schedule.d.ts.map +1 -0
- package/dist/runtime/types/schedule.js +108 -0
- package/dist/runtime/types/schedule.js.map +1 -0
- package/dist/runtime/types/trigger.d.ts +2 -2
- package/dist/tools/builtin/index.d.ts +74 -24
- package/dist/tools/builtin/index.d.ts.map +1 -1
- package/dist/tools/builtin/index.js +157 -46
- package/dist/tools/builtin/index.js.map +1 -1
- package/dist/tools/execution/MemoryConsolidateTool/MemoryConsolidateTool.d.ts +50 -0
- package/dist/tools/execution/MemoryConsolidateTool/MemoryConsolidateTool.d.ts.map +1 -0
- package/dist/tools/execution/MemoryConsolidateTool/MemoryConsolidateTool.js +84 -0
- package/dist/tools/execution/MemoryConsolidateTool/MemoryConsolidateTool.js.map +1 -0
- package/dist/tools/execution/MemoryConsolidateTool/constants.d.ts +7 -0
- package/dist/tools/execution/MemoryConsolidateTool/constants.d.ts.map +1 -0
- package/dist/tools/execution/MemoryConsolidateTool/constants.js +7 -0
- package/dist/tools/execution/MemoryConsolidateTool/constants.js.map +1 -0
- package/dist/tools/execution/MemoryConsolidateTool/prompt.d.ts +2 -0
- package/dist/tools/execution/MemoryConsolidateTool/prompt.d.ts.map +1 -0
- package/dist/tools/execution/MemoryConsolidateTool/prompt.js +2 -0
- package/dist/tools/execution/MemoryConsolidateTool/prompt.js.map +1 -0
- package/dist/tools/execution/MemoryLintTool/MemoryLintTool.d.ts +42 -0
- package/dist/tools/execution/MemoryLintTool/MemoryLintTool.d.ts.map +1 -0
- package/dist/tools/execution/MemoryLintTool/MemoryLintTool.js +84 -0
- package/dist/tools/execution/MemoryLintTool/MemoryLintTool.js.map +1 -0
- package/dist/tools/execution/MemoryLintTool/constants.d.ts +7 -0
- package/dist/tools/execution/MemoryLintTool/constants.d.ts.map +1 -0
- package/dist/tools/execution/MemoryLintTool/constants.js +7 -0
- package/dist/tools/execution/MemoryLintTool/constants.js.map +1 -0
- package/dist/tools/execution/MemoryLintTool/prompt.d.ts +2 -0
- package/dist/tools/execution/MemoryLintTool/prompt.d.ts.map +1 -0
- package/dist/tools/execution/MemoryLintTool/prompt.js +2 -0
- package/dist/tools/execution/MemoryLintTool/prompt.js.map +1 -0
- package/dist/tools/execution/MemorySaveTool/MemorySaveTool.d.ts +52 -0
- package/dist/tools/execution/MemorySaveTool/MemorySaveTool.d.ts.map +1 -0
- package/dist/tools/execution/MemorySaveTool/MemorySaveTool.js +70 -0
- package/dist/tools/execution/MemorySaveTool/MemorySaveTool.js.map +1 -0
- package/dist/tools/execution/MemorySaveTool/constants.d.ts +7 -0
- package/dist/tools/execution/MemorySaveTool/constants.d.ts.map +1 -0
- package/dist/tools/execution/MemorySaveTool/constants.js +7 -0
- package/dist/tools/execution/MemorySaveTool/constants.js.map +1 -0
- package/dist/tools/execution/MemorySaveTool/prompt.d.ts +2 -0
- package/dist/tools/execution/MemorySaveTool/prompt.d.ts.map +1 -0
- package/dist/tools/execution/MemorySaveTool/prompt.js +2 -0
- package/dist/tools/execution/MemorySaveTool/prompt.js.map +1 -0
- package/dist/tools/execution/ObserveGoalTool/ObserveGoalTool.d.ts +28 -0
- package/dist/tools/execution/ObserveGoalTool/ObserveGoalTool.d.ts.map +1 -0
- package/dist/tools/execution/ObserveGoalTool/ObserveGoalTool.js +56 -0
- package/dist/tools/execution/ObserveGoalTool/ObserveGoalTool.js.map +1 -0
- package/dist/tools/execution/ObserveGoalTool/constants.d.ts +5 -0
- package/dist/tools/execution/ObserveGoalTool/constants.d.ts.map +1 -0
- package/dist/tools/execution/ObserveGoalTool/constants.js +5 -0
- package/dist/tools/execution/ObserveGoalTool/constants.js.map +1 -0
- package/dist/tools/execution/ObserveGoalTool/prompt.d.ts +2 -0
- package/dist/tools/execution/ObserveGoalTool/prompt.d.ts.map +1 -0
- package/dist/tools/execution/ObserveGoalTool/prompt.js +2 -0
- package/dist/tools/execution/ObserveGoalTool/prompt.js.map +1 -0
- package/dist/tools/execution/QueryDataSourceTool/QueryDataSourceTool.d.ts +40 -0
- package/dist/tools/execution/QueryDataSourceTool/QueryDataSourceTool.d.ts.map +1 -0
- package/dist/tools/execution/QueryDataSourceTool/QueryDataSourceTool.js +58 -0
- package/dist/tools/execution/QueryDataSourceTool/QueryDataSourceTool.js.map +1 -0
- package/dist/tools/execution/QueryDataSourceTool/constants.d.ts +5 -0
- package/dist/tools/execution/QueryDataSourceTool/constants.d.ts.map +1 -0
- package/dist/tools/execution/QueryDataSourceTool/constants.js +5 -0
- package/dist/tools/execution/QueryDataSourceTool/constants.js.map +1 -0
- package/dist/tools/execution/QueryDataSourceTool/prompt.d.ts +2 -0
- package/dist/tools/execution/QueryDataSourceTool/prompt.d.ts.map +1 -0
- package/dist/tools/execution/QueryDataSourceTool/prompt.js +2 -0
- package/dist/tools/execution/QueryDataSourceTool/prompt.js.map +1 -0
- package/dist/tools/execution/RunAdapterTool/RunAdapterTool.d.ts +40 -0
- package/dist/tools/execution/RunAdapterTool/RunAdapterTool.d.ts.map +1 -0
- package/dist/tools/execution/RunAdapterTool/RunAdapterTool.js +67 -0
- package/dist/tools/execution/RunAdapterTool/RunAdapterTool.js.map +1 -0
- package/dist/tools/execution/RunAdapterTool/constants.d.ts +5 -0
- package/dist/tools/execution/RunAdapterTool/constants.d.ts.map +1 -0
- package/dist/tools/execution/RunAdapterTool/constants.js +5 -0
- package/dist/tools/execution/RunAdapterTool/constants.js.map +1 -0
- package/dist/tools/execution/RunAdapterTool/prompt.d.ts +2 -0
- package/dist/tools/execution/RunAdapterTool/prompt.d.ts.map +1 -0
- package/dist/tools/execution/RunAdapterTool/prompt.js +2 -0
- package/dist/tools/execution/RunAdapterTool/prompt.js.map +1 -0
- package/dist/tools/execution/SpawnSessionTool/SpawnSessionTool.d.ts +46 -0
- package/dist/tools/execution/SpawnSessionTool/SpawnSessionTool.d.ts.map +1 -0
- package/dist/tools/execution/SpawnSessionTool/SpawnSessionTool.js +60 -0
- package/dist/tools/execution/SpawnSessionTool/SpawnSessionTool.js.map +1 -0
- package/dist/tools/execution/SpawnSessionTool/constants.d.ts +5 -0
- package/dist/tools/execution/SpawnSessionTool/constants.d.ts.map +1 -0
- package/dist/tools/execution/SpawnSessionTool/constants.js +5 -0
- package/dist/tools/execution/SpawnSessionTool/constants.js.map +1 -0
- package/dist/tools/execution/SpawnSessionTool/prompt.d.ts +2 -0
- package/dist/tools/execution/SpawnSessionTool/prompt.d.ts.map +1 -0
- package/dist/tools/execution/SpawnSessionTool/prompt.js +2 -0
- package/dist/tools/execution/SpawnSessionTool/prompt.js.map +1 -0
- package/dist/tools/execution/WriteKnowledgeTool/WriteKnowledgeTool.d.ts +46 -0
- package/dist/tools/execution/WriteKnowledgeTool/WriteKnowledgeTool.d.ts.map +1 -0
- package/dist/tools/execution/WriteKnowledgeTool/WriteKnowledgeTool.js +73 -0
- package/dist/tools/execution/WriteKnowledgeTool/WriteKnowledgeTool.js.map +1 -0
- package/dist/tools/execution/WriteKnowledgeTool/constants.d.ts +5 -0
- package/dist/tools/execution/WriteKnowledgeTool/constants.d.ts.map +1 -0
- package/dist/tools/execution/WriteKnowledgeTool/constants.js +5 -0
- package/dist/tools/execution/WriteKnowledgeTool/constants.js.map +1 -0
- package/dist/tools/execution/WriteKnowledgeTool/prompt.d.ts +2 -0
- package/dist/tools/execution/WriteKnowledgeTool/prompt.d.ts.map +1 -0
- package/dist/tools/execution/WriteKnowledgeTool/prompt.js +2 -0
- package/dist/tools/execution/WriteKnowledgeTool/prompt.js.map +1 -0
- package/dist/tools/executor.d.ts.map +1 -1
- package/dist/tools/executor.js +9 -1
- package/dist/tools/executor.js.map +1 -1
- package/dist/tools/fs/FileEditTool/FileEditTool.d.ts +48 -0
- package/dist/tools/fs/FileEditTool/FileEditTool.d.ts.map +1 -0
- package/dist/tools/fs/FileEditTool/FileEditTool.js +126 -0
- package/dist/tools/fs/FileEditTool/FileEditTool.js.map +1 -0
- package/dist/tools/fs/FileEditTool/constants.d.ts +5 -0
- package/dist/tools/fs/FileEditTool/constants.d.ts.map +1 -0
- package/dist/tools/fs/FileEditTool/constants.js +5 -0
- package/dist/tools/fs/FileEditTool/constants.js.map +1 -0
- package/dist/tools/fs/FileEditTool/prompt.d.ts +2 -0
- package/dist/tools/fs/FileEditTool/prompt.d.ts.map +1 -0
- package/dist/tools/fs/FileEditTool/prompt.js +2 -0
- package/dist/tools/fs/FileEditTool/prompt.js.map +1 -0
- package/dist/tools/fs/FileValidationTool/FileValidationTool.d.ts +6 -0
- package/dist/tools/fs/FileValidationTool/FileValidationTool.d.ts.map +1 -0
- package/dist/tools/fs/FileValidationTool/FileValidationTool.js +17 -0
- package/dist/tools/fs/FileValidationTool/FileValidationTool.js.map +1 -0
- package/dist/tools/fs/FileWriteTool/FileWriteTool.d.ts +41 -0
- package/dist/tools/fs/FileWriteTool/FileWriteTool.d.ts.map +1 -0
- package/dist/tools/fs/FileWriteTool/FileWriteTool.js +85 -0
- package/dist/tools/fs/FileWriteTool/FileWriteTool.js.map +1 -0
- package/dist/tools/fs/FileWriteTool/constants.d.ts +5 -0
- package/dist/tools/fs/FileWriteTool/constants.d.ts.map +1 -0
- package/dist/tools/fs/FileWriteTool/constants.js +5 -0
- package/dist/tools/fs/FileWriteTool/constants.js.map +1 -0
- package/dist/tools/fs/FileWriteTool/prompt.d.ts +2 -0
- package/dist/tools/fs/FileWriteTool/prompt.d.ts.map +1 -0
- package/dist/tools/fs/FileWriteTool/prompt.js +2 -0
- package/dist/tools/fs/FileWriteTool/prompt.js.map +1 -0
- package/dist/tools/fs/GlobTool/GlobTool.d.ts +37 -0
- package/dist/tools/fs/GlobTool/GlobTool.d.ts.map +1 -0
- package/dist/tools/fs/GlobTool/GlobTool.js +59 -0
- package/dist/tools/fs/GlobTool/GlobTool.js.map +1 -0
- package/dist/tools/fs/GlobTool/constants.d.ts +6 -0
- package/dist/tools/fs/GlobTool/constants.d.ts.map +1 -0
- package/dist/tools/fs/GlobTool/constants.js +6 -0
- package/dist/tools/fs/GlobTool/constants.js.map +1 -0
- package/dist/tools/fs/GlobTool/prompt.d.ts +3 -0
- package/dist/tools/fs/GlobTool/prompt.d.ts.map +1 -0
- package/dist/tools/fs/GlobTool/prompt.js +3 -0
- package/dist/tools/fs/GlobTool/prompt.js.map +1 -0
- package/dist/tools/fs/GrepTool/GrepTool.d.ts +61 -0
- package/dist/tools/fs/GrepTool/GrepTool.d.ts.map +1 -0
- package/dist/tools/fs/GrepTool/GrepTool.js +88 -0
- package/dist/tools/fs/GrepTool/GrepTool.js.map +1 -0
- package/dist/tools/fs/GrepTool/constants.d.ts +6 -0
- package/dist/tools/fs/GrepTool/constants.d.ts.map +1 -0
- package/dist/tools/fs/GrepTool/constants.js +6 -0
- package/dist/tools/fs/GrepTool/constants.js.map +1 -0
- package/dist/tools/fs/GrepTool/prompt.d.ts +2 -0
- package/dist/tools/fs/GrepTool/prompt.d.ts.map +1 -0
- package/dist/tools/fs/GrepTool/prompt.js +2 -0
- package/dist/tools/fs/GrepTool/prompt.js.map +1 -0
- package/dist/tools/fs/JsonQueryTool/JsonQueryTool.d.ts +32 -0
- package/dist/tools/fs/JsonQueryTool/JsonQueryTool.d.ts.map +1 -0
- package/dist/tools/fs/JsonQueryTool/JsonQueryTool.js +60 -0
- package/dist/tools/fs/JsonQueryTool/JsonQueryTool.js.map +1 -0
- package/dist/tools/fs/JsonQueryTool/constants.d.ts +6 -0
- package/dist/tools/fs/JsonQueryTool/constants.d.ts.map +1 -0
- package/dist/tools/fs/JsonQueryTool/constants.js +6 -0
- package/dist/tools/fs/JsonQueryTool/constants.js.map +1 -0
- package/dist/tools/fs/JsonQueryTool/prompt.d.ts +2 -0
- package/dist/tools/fs/JsonQueryTool/prompt.d.ts.map +1 -0
- package/dist/tools/fs/JsonQueryTool/prompt.js +2 -0
- package/dist/tools/fs/JsonQueryTool/prompt.js.map +1 -0
- package/dist/tools/fs/ListDirTool/ListDirTool.d.ts +48 -0
- package/dist/tools/fs/ListDirTool/ListDirTool.d.ts.map +1 -0
- package/dist/tools/fs/ListDirTool/ListDirTool.js +91 -0
- package/dist/tools/fs/ListDirTool/ListDirTool.js.map +1 -0
- package/dist/tools/fs/ListDirTool/constants.d.ts +6 -0
- package/dist/tools/fs/ListDirTool/constants.d.ts.map +1 -0
- package/dist/tools/fs/ListDirTool/constants.js +6 -0
- package/dist/tools/fs/ListDirTool/constants.js.map +1 -0
- package/dist/tools/fs/ListDirTool/prompt.d.ts +2 -0
- package/dist/tools/fs/ListDirTool/prompt.d.ts.map +1 -0
- package/dist/tools/fs/ListDirTool/prompt.js +2 -0
- package/dist/tools/fs/ListDirTool/prompt.js.map +1 -0
- package/dist/tools/fs/ReadPulseedFileTool/ReadPulseedFileTool.d.ts +25 -0
- package/dist/tools/fs/ReadPulseedFileTool/ReadPulseedFileTool.d.ts.map +1 -0
- package/dist/tools/fs/ReadPulseedFileTool/ReadPulseedFileTool.js +74 -0
- package/dist/tools/fs/ReadPulseedFileTool/ReadPulseedFileTool.js.map +1 -0
- package/dist/tools/fs/ReadPulseedFileTool/constants.d.ts +6 -0
- package/dist/tools/fs/ReadPulseedFileTool/constants.d.ts.map +1 -0
- package/dist/tools/fs/ReadPulseedFileTool/constants.js +6 -0
- package/dist/tools/fs/ReadPulseedFileTool/constants.js.map +1 -0
- package/dist/tools/fs/ReadPulseedFileTool/prompt.d.ts +2 -0
- package/dist/tools/fs/ReadPulseedFileTool/prompt.d.ts.map +1 -0
- package/dist/tools/fs/ReadPulseedFileTool/prompt.js +2 -0
- package/dist/tools/fs/ReadPulseedFileTool/prompt.js.map +1 -0
- package/dist/tools/fs/ReadTool/ReadTool.d.ts +37 -0
- package/dist/tools/fs/ReadTool/ReadTool.d.ts.map +1 -0
- package/dist/tools/fs/ReadTool/ReadTool.js +70 -0
- package/dist/tools/fs/ReadTool/ReadTool.js.map +1 -0
- package/dist/tools/fs/ReadTool/constants.d.ts +6 -0
- package/dist/tools/fs/ReadTool/constants.d.ts.map +1 -0
- package/dist/tools/fs/ReadTool/constants.js +6 -0
- package/dist/tools/fs/ReadTool/constants.js.map +1 -0
- package/dist/tools/fs/ReadTool/prompt.d.ts +2 -0
- package/dist/tools/fs/ReadTool/prompt.d.ts.map +1 -0
- package/dist/tools/fs/ReadTool/prompt.js +2 -0
- package/dist/tools/fs/ReadTool/prompt.js.map +1 -0
- package/dist/tools/fs/WritePulseedFileTool/WritePulseedFileTool.d.ts +31 -0
- package/dist/tools/fs/WritePulseedFileTool/WritePulseedFileTool.d.ts.map +1 -0
- package/dist/tools/fs/WritePulseedFileTool/WritePulseedFileTool.js +80 -0
- package/dist/tools/fs/WritePulseedFileTool/WritePulseedFileTool.js.map +1 -0
- package/dist/tools/fs/WritePulseedFileTool/constants.d.ts +6 -0
- package/dist/tools/fs/WritePulseedFileTool/constants.d.ts.map +1 -0
- package/dist/tools/fs/WritePulseedFileTool/constants.js +6 -0
- package/dist/tools/fs/WritePulseedFileTool/constants.js.map +1 -0
- package/dist/tools/fs/WritePulseedFileTool/prompt.d.ts +2 -0
- package/dist/tools/fs/WritePulseedFileTool/prompt.d.ts.map +1 -0
- package/dist/tools/fs/WritePulseedFileTool/prompt.js +2 -0
- package/dist/tools/fs/WritePulseedFileTool/prompt.js.map +1 -0
- package/dist/tools/interaction/AskHumanTool/AskHumanTool.d.ts +31 -0
- package/dist/tools/interaction/AskHumanTool/AskHumanTool.d.ts.map +1 -0
- package/dist/tools/interaction/AskHumanTool/AskHumanTool.js +61 -0
- package/dist/tools/interaction/AskHumanTool/AskHumanTool.js.map +1 -0
- package/dist/tools/interaction/AskHumanTool/constants.d.ts +5 -0
- package/dist/tools/interaction/AskHumanTool/constants.d.ts.map +1 -0
- package/dist/tools/interaction/AskHumanTool/constants.js +5 -0
- package/dist/tools/interaction/AskHumanTool/constants.js.map +1 -0
- package/dist/tools/interaction/AskHumanTool/prompt.d.ts +2 -0
- package/dist/tools/interaction/AskHumanTool/prompt.d.ts.map +1 -0
- package/dist/tools/interaction/AskHumanTool/prompt.js +2 -0
- package/dist/tools/interaction/AskHumanTool/prompt.js.map +1 -0
- package/dist/tools/interaction/CreatePlanTool/CreatePlanTool.d.ts +37 -0
- package/dist/tools/interaction/CreatePlanTool/CreatePlanTool.d.ts.map +1 -0
- package/dist/tools/interaction/CreatePlanTool/CreatePlanTool.js +63 -0
- package/dist/tools/interaction/CreatePlanTool/CreatePlanTool.js.map +1 -0
- package/dist/tools/interaction/CreatePlanTool/constants.d.ts +5 -0
- package/dist/tools/interaction/CreatePlanTool/constants.d.ts.map +1 -0
- package/dist/tools/interaction/CreatePlanTool/constants.js +5 -0
- package/dist/tools/interaction/CreatePlanTool/constants.js.map +1 -0
- package/dist/tools/interaction/CreatePlanTool/prompt.d.ts +2 -0
- package/dist/tools/interaction/CreatePlanTool/prompt.d.ts.map +1 -0
- package/dist/tools/interaction/CreatePlanTool/prompt.js +2 -0
- package/dist/tools/interaction/CreatePlanTool/prompt.js.map +1 -0
- package/dist/tools/interaction/ReadPlanTool/ReadPlanTool.d.ts +25 -0
- package/dist/tools/interaction/ReadPlanTool/ReadPlanTool.d.ts.map +1 -0
- package/dist/tools/interaction/ReadPlanTool/ReadPlanTool.js +69 -0
- package/dist/tools/interaction/ReadPlanTool/ReadPlanTool.js.map +1 -0
- package/dist/tools/interaction/ReadPlanTool/constants.d.ts +5 -0
- package/dist/tools/interaction/ReadPlanTool/constants.d.ts.map +1 -0
- package/dist/tools/interaction/ReadPlanTool/constants.js +5 -0
- package/dist/tools/interaction/ReadPlanTool/constants.js.map +1 -0
- package/dist/tools/interaction/ReadPlanTool/prompt.d.ts +2 -0
- package/dist/tools/interaction/ReadPlanTool/prompt.d.ts.map +1 -0
- package/dist/tools/interaction/ReadPlanTool/prompt.js +2 -0
- package/dist/tools/interaction/ReadPlanTool/prompt.js.map +1 -0
- package/dist/tools/interaction/plan-utils.d.ts +3 -0
- package/dist/tools/interaction/plan-utils.d.ts.map +1 -0
- package/dist/tools/interaction/plan-utils.js +7 -0
- package/dist/tools/interaction/plan-utils.js.map +1 -0
- package/dist/tools/mutation/ArchiveGoalTool/ArchiveGoalTool.d.ts +34 -0
- package/dist/tools/mutation/ArchiveGoalTool/ArchiveGoalTool.d.ts.map +1 -0
- package/dist/tools/mutation/ArchiveGoalTool/ArchiveGoalTool.js +87 -0
- package/dist/tools/mutation/ArchiveGoalTool/ArchiveGoalTool.js.map +1 -0
- package/dist/tools/mutation/ArchiveGoalTool/constants.d.ts +5 -0
- package/dist/tools/mutation/ArchiveGoalTool/constants.d.ts.map +1 -0
- package/dist/tools/mutation/ArchiveGoalTool/constants.js +5 -0
- package/dist/tools/mutation/ArchiveGoalTool/constants.js.map +1 -0
- package/dist/tools/mutation/ArchiveGoalTool/prompt.d.ts +2 -0
- package/dist/tools/mutation/ArchiveGoalTool/prompt.d.ts.map +1 -0
- package/dist/tools/mutation/ArchiveGoalTool/prompt.js +2 -0
- package/dist/tools/mutation/ArchiveGoalTool/prompt.js.map +1 -0
- package/dist/tools/mutation/DeleteGoalTool/DeleteGoalTool.d.ts +28 -0
- package/dist/tools/mutation/DeleteGoalTool/DeleteGoalTool.d.ts.map +1 -0
- package/dist/tools/mutation/DeleteGoalTool/DeleteGoalTool.js +89 -0
- package/dist/tools/mutation/DeleteGoalTool/DeleteGoalTool.js.map +1 -0
- package/dist/tools/mutation/DeleteGoalTool/constants.d.ts +5 -0
- package/dist/tools/mutation/DeleteGoalTool/constants.d.ts.map +1 -0
- package/dist/tools/mutation/DeleteGoalTool/constants.js +5 -0
- package/dist/tools/mutation/DeleteGoalTool/constants.js.map +1 -0
- package/dist/tools/mutation/DeleteGoalTool/prompt.d.ts +2 -0
- package/dist/tools/mutation/DeleteGoalTool/prompt.d.ts.map +1 -0
- package/dist/tools/mutation/DeleteGoalTool/prompt.js +2 -0
- package/dist/tools/mutation/DeleteGoalTool/prompt.js.map +1 -0
- package/dist/tools/mutation/ResetTrustTool/ResetTrustTool.d.ts +40 -0
- package/dist/tools/mutation/ResetTrustTool/ResetTrustTool.d.ts.map +1 -0
- package/dist/tools/mutation/ResetTrustTool/ResetTrustTool.js +84 -0
- package/dist/tools/mutation/ResetTrustTool/ResetTrustTool.js.map +1 -0
- package/dist/tools/mutation/ResetTrustTool/constants.d.ts +5 -0
- package/dist/tools/mutation/ResetTrustTool/constants.d.ts.map +1 -0
- package/dist/tools/mutation/ResetTrustTool/constants.js +5 -0
- package/dist/tools/mutation/ResetTrustTool/constants.js.map +1 -0
- package/dist/tools/mutation/ResetTrustTool/prompt.d.ts +2 -0
- package/dist/tools/mutation/ResetTrustTool/prompt.d.ts.map +1 -0
- package/dist/tools/mutation/ResetTrustTool/prompt.js +2 -0
- package/dist/tools/mutation/ResetTrustTool/prompt.js.map +1 -0
- package/dist/tools/mutation/SetGoalTool/SetGoalTool.d.ts +28 -0
- package/dist/tools/mutation/SetGoalTool/SetGoalTool.d.ts.map +1 -0
- package/dist/tools/mutation/SetGoalTool/SetGoalTool.js +84 -0
- package/dist/tools/mutation/SetGoalTool/SetGoalTool.js.map +1 -0
- package/dist/tools/mutation/SetGoalTool/constants.d.ts +5 -0
- package/dist/tools/mutation/SetGoalTool/constants.d.ts.map +1 -0
- package/dist/tools/mutation/SetGoalTool/constants.js +5 -0
- package/dist/tools/mutation/SetGoalTool/constants.js.map +1 -0
- package/dist/tools/mutation/SetGoalTool/prompt.d.ts +2 -0
- package/dist/tools/mutation/SetGoalTool/prompt.d.ts.map +1 -0
- package/dist/tools/mutation/SetGoalTool/prompt.js +2 -0
- package/dist/tools/mutation/SetGoalTool/prompt.js.map +1 -0
- package/dist/tools/mutation/TaskCreateTool/TaskCreateTool.d.ts +216 -0
- package/dist/tools/mutation/TaskCreateTool/TaskCreateTool.d.ts.map +1 -0
- package/dist/tools/mutation/TaskCreateTool/TaskCreateTool.js +104 -0
- package/dist/tools/mutation/TaskCreateTool/TaskCreateTool.js.map +1 -0
- package/dist/tools/mutation/TaskCreateTool/constants.d.ts +5 -0
- package/dist/tools/mutation/TaskCreateTool/constants.d.ts.map +1 -0
- package/dist/tools/mutation/TaskCreateTool/constants.js +5 -0
- package/dist/tools/mutation/TaskCreateTool/constants.js.map +1 -0
- package/dist/tools/mutation/TaskCreateTool/prompt.d.ts +2 -0
- package/dist/tools/mutation/TaskCreateTool/prompt.d.ts.map +1 -0
- package/dist/tools/mutation/TaskCreateTool/prompt.js +2 -0
- package/dist/tools/mutation/TaskCreateTool/prompt.js.map +1 -0
- package/dist/tools/mutation/TaskOutputTool/TaskOutputTool.d.ts +46 -0
- package/dist/tools/mutation/TaskOutputTool/TaskOutputTool.d.ts.map +1 -0
- package/dist/tools/mutation/TaskOutputTool/TaskOutputTool.js +95 -0
- package/dist/tools/mutation/TaskOutputTool/TaskOutputTool.js.map +1 -0
- package/dist/tools/mutation/TaskOutputTool/constants.d.ts +5 -0
- package/dist/tools/mutation/TaskOutputTool/constants.d.ts.map +1 -0
- package/dist/tools/mutation/TaskOutputTool/constants.js +5 -0
- package/dist/tools/mutation/TaskOutputTool/constants.js.map +1 -0
- package/dist/tools/mutation/TaskOutputTool/prompt.d.ts +2 -0
- package/dist/tools/mutation/TaskOutputTool/prompt.d.ts.map +1 -0
- package/dist/tools/mutation/TaskOutputTool/prompt.js +2 -0
- package/dist/tools/mutation/TaskOutputTool/prompt.js.map +1 -0
- package/dist/tools/mutation/TaskStopTool/TaskStopTool.d.ts +40 -0
- package/dist/tools/mutation/TaskStopTool/TaskStopTool.d.ts.map +1 -0
- package/dist/tools/mutation/TaskStopTool/TaskStopTool.js +95 -0
- package/dist/tools/mutation/TaskStopTool/TaskStopTool.js.map +1 -0
- package/dist/tools/mutation/TaskStopTool/constants.d.ts +5 -0
- package/dist/tools/mutation/TaskStopTool/constants.d.ts.map +1 -0
- package/dist/tools/mutation/TaskStopTool/constants.js +5 -0
- package/dist/tools/mutation/TaskStopTool/constants.js.map +1 -0
- package/dist/tools/mutation/TaskStopTool/prompt.d.ts +2 -0
- package/dist/tools/mutation/TaskStopTool/prompt.d.ts.map +1 -0
- package/dist/tools/mutation/TaskStopTool/prompt.js +2 -0
- package/dist/tools/mutation/TaskStopTool/prompt.js.map +1 -0
- package/dist/tools/mutation/TaskUpdateTool/TaskUpdateTool.d.ts +270 -0
- package/dist/tools/mutation/TaskUpdateTool/TaskUpdateTool.d.ts.map +1 -0
- package/dist/tools/mutation/TaskUpdateTool/TaskUpdateTool.js +137 -0
- package/dist/tools/mutation/TaskUpdateTool/TaskUpdateTool.js.map +1 -0
- package/dist/tools/mutation/TaskUpdateTool/constants.d.ts +5 -0
- package/dist/tools/mutation/TaskUpdateTool/constants.d.ts.map +1 -0
- package/dist/tools/mutation/TaskUpdateTool/constants.js +5 -0
- package/dist/tools/mutation/TaskUpdateTool/constants.js.map +1 -0
- package/dist/tools/mutation/TaskUpdateTool/prompt.d.ts +2 -0
- package/dist/tools/mutation/TaskUpdateTool/prompt.d.ts.map +1 -0
- package/dist/tools/mutation/TaskUpdateTool/prompt.js +2 -0
- package/dist/tools/mutation/TaskUpdateTool/prompt.js.map +1 -0
- package/dist/tools/mutation/TogglePluginTool/TogglePluginTool.d.ts +31 -0
- package/dist/tools/mutation/TogglePluginTool/TogglePluginTool.d.ts.map +1 -0
- package/dist/tools/mutation/TogglePluginTool/TogglePluginTool.js +55 -0
- package/dist/tools/mutation/TogglePluginTool/TogglePluginTool.js.map +1 -0
- package/dist/tools/mutation/TogglePluginTool/constants.d.ts +5 -0
- package/dist/tools/mutation/TogglePluginTool/constants.d.ts.map +1 -0
- package/dist/tools/mutation/TogglePluginTool/constants.js +5 -0
- package/dist/tools/mutation/TogglePluginTool/constants.js.map +1 -0
- package/dist/tools/mutation/TogglePluginTool/prompt.d.ts +2 -0
- package/dist/tools/mutation/TogglePluginTool/prompt.d.ts.map +1 -0
- package/dist/tools/mutation/TogglePluginTool/prompt.js +2 -0
- package/dist/tools/mutation/TogglePluginTool/prompt.js.map +1 -0
- package/dist/tools/mutation/UpdateConfigTool/UpdateConfigTool.d.ts +31 -0
- package/dist/tools/mutation/UpdateConfigTool/UpdateConfigTool.d.ts.map +1 -0
- package/dist/tools/mutation/UpdateConfigTool/UpdateConfigTool.js +77 -0
- package/dist/tools/mutation/UpdateConfigTool/UpdateConfigTool.js.map +1 -0
- package/dist/tools/mutation/UpdateConfigTool/constants.d.ts +5 -0
- package/dist/tools/mutation/UpdateConfigTool/constants.d.ts.map +1 -0
- package/dist/tools/mutation/UpdateConfigTool/constants.js +5 -0
- package/dist/tools/mutation/UpdateConfigTool/constants.js.map +1 -0
- package/dist/tools/mutation/UpdateConfigTool/prompt.d.ts +2 -0
- package/dist/tools/mutation/UpdateConfigTool/prompt.d.ts.map +1 -0
- package/dist/tools/mutation/UpdateConfigTool/prompt.js +2 -0
- package/dist/tools/mutation/UpdateConfigTool/prompt.js.map +1 -0
- package/dist/tools/mutation/UpdateGoalTool/UpdateGoalTool.d.ts +40 -0
- package/dist/tools/mutation/UpdateGoalTool/UpdateGoalTool.d.ts.map +1 -0
- package/dist/tools/mutation/UpdateGoalTool/UpdateGoalTool.js +73 -0
- package/dist/tools/mutation/UpdateGoalTool/UpdateGoalTool.js.map +1 -0
- package/dist/tools/mutation/UpdateGoalTool/constants.d.ts +5 -0
- package/dist/tools/mutation/UpdateGoalTool/constants.d.ts.map +1 -0
- package/dist/tools/mutation/UpdateGoalTool/constants.js +5 -0
- package/dist/tools/mutation/UpdateGoalTool/constants.js.map +1 -0
- package/dist/tools/mutation/UpdateGoalTool/prompt.d.ts +2 -0
- package/dist/tools/mutation/UpdateGoalTool/prompt.d.ts.map +1 -0
- package/dist/tools/mutation/UpdateGoalTool/prompt.js +2 -0
- package/dist/tools/mutation/UpdateGoalTool/prompt.js.map +1 -0
- package/dist/tools/mutation/task-history-utils.d.ts +4 -0
- package/dist/tools/mutation/task-history-utils.d.ts.map +1 -0
- package/dist/tools/mutation/task-history-utils.js +30 -0
- package/dist/tools/mutation/task-history-utils.js.map +1 -0
- package/dist/tools/network/HttpFetchTool/HttpFetchTool.d.ts +55 -0
- package/dist/tools/network/HttpFetchTool/HttpFetchTool.d.ts.map +1 -0
- package/dist/tools/network/HttpFetchTool/HttpFetchTool.js +56 -0
- package/dist/tools/network/HttpFetchTool/HttpFetchTool.js.map +1 -0
- package/dist/tools/network/HttpFetchTool/constants.d.ts +6 -0
- package/dist/tools/network/HttpFetchTool/constants.d.ts.map +1 -0
- package/dist/tools/network/HttpFetchTool/constants.js +6 -0
- package/dist/tools/network/HttpFetchTool/constants.js.map +1 -0
- package/dist/tools/network/HttpFetchTool/prompt.d.ts +2 -0
- package/dist/tools/network/HttpFetchTool/prompt.d.ts.map +1 -0
- package/dist/tools/network/HttpFetchTool/prompt.js +2 -0
- package/dist/tools/network/HttpFetchTool/prompt.js.map +1 -0
- package/dist/tools/network/WebSearchTool/WebSearchTool.d.ts +49 -0
- package/dist/tools/network/WebSearchTool/WebSearchTool.d.ts.map +1 -0
- package/dist/tools/network/WebSearchTool/WebSearchTool.js +98 -0
- package/dist/tools/network/WebSearchTool/WebSearchTool.js.map +1 -0
- package/dist/tools/network/WebSearchTool/constants.d.ts +6 -0
- package/dist/tools/network/WebSearchTool/constants.d.ts.map +1 -0
- package/dist/tools/network/WebSearchTool/constants.js +6 -0
- package/dist/tools/network/WebSearchTool/constants.js.map +1 -0
- package/dist/tools/network/WebSearchTool/prompt.d.ts +2 -0
- package/dist/tools/network/WebSearchTool/prompt.d.ts.map +1 -0
- package/dist/tools/network/WebSearchTool/prompt.js +2 -0
- package/dist/tools/network/WebSearchTool/prompt.js.map +1 -0
- package/dist/tools/query/ArchitectureTool/ArchitectureTool.d.ts +25 -0
- package/dist/tools/query/ArchitectureTool/ArchitectureTool.d.ts.map +1 -0
- package/dist/tools/query/ArchitectureTool/ArchitectureTool.js +100 -0
- package/dist/tools/query/ArchitectureTool/ArchitectureTool.js.map +1 -0
- package/dist/tools/query/ArchitectureTool/constants.d.ts +6 -0
- package/dist/tools/query/ArchitectureTool/constants.d.ts.map +1 -0
- package/dist/tools/query/ArchitectureTool/constants.js +6 -0
- package/dist/tools/query/ArchitectureTool/constants.js.map +1 -0
- package/dist/tools/query/ArchitectureTool/prompt.d.ts +2 -0
- package/dist/tools/query/ArchitectureTool/prompt.d.ts.map +1 -0
- package/dist/tools/query/ArchitectureTool/prompt.js +2 -0
- package/dist/tools/query/ArchitectureTool/prompt.js.map +1 -0
- package/dist/tools/query/ConfigTool/ConfigTool.d.ts +25 -0
- package/dist/tools/query/ConfigTool/ConfigTool.d.ts.map +1 -0
- package/dist/tools/query/ConfigTool/ConfigTool.js +89 -0
- package/dist/tools/query/ConfigTool/ConfigTool.js.map +1 -0
- package/dist/tools/query/ConfigTool/constants.d.ts +6 -0
- package/dist/tools/query/ConfigTool/constants.d.ts.map +1 -0
- package/dist/tools/query/ConfigTool/constants.js +6 -0
- package/dist/tools/query/ConfigTool/constants.js.map +1 -0
- package/dist/tools/query/ConfigTool/prompt.d.ts +2 -0
- package/dist/tools/query/ConfigTool/prompt.d.ts.map +1 -0
- package/dist/tools/query/ConfigTool/prompt.js +2 -0
- package/dist/tools/query/ConfigTool/prompt.js.map +1 -0
- package/dist/tools/query/GoalStateTool/GoalStateTool.d.ts +36 -0
- package/dist/tools/query/GoalStateTool/GoalStateTool.d.ts.map +1 -0
- package/dist/tools/query/GoalStateTool/GoalStateTool.js +128 -0
- package/dist/tools/query/GoalStateTool/GoalStateTool.js.map +1 -0
- package/dist/tools/query/GoalStateTool/constants.d.ts +6 -0
- package/dist/tools/query/GoalStateTool/constants.d.ts.map +1 -0
- package/dist/tools/query/GoalStateTool/constants.js +6 -0
- package/dist/tools/query/GoalStateTool/constants.js.map +1 -0
- package/dist/tools/query/GoalStateTool/prompt.d.ts +2 -0
- package/dist/tools/query/GoalStateTool/prompt.d.ts.map +1 -0
- package/dist/tools/query/GoalStateTool/prompt.js +2 -0
- package/dist/tools/query/GoalStateTool/prompt.js.map +1 -0
- package/dist/tools/query/KnowledgeQueryTool/KnowledgeQueryTool.d.ts +61 -0
- package/dist/tools/query/KnowledgeQueryTool/KnowledgeQueryTool.d.ts.map +1 -0
- package/dist/tools/query/KnowledgeQueryTool/KnowledgeQueryTool.js +118 -0
- package/dist/tools/query/KnowledgeQueryTool/KnowledgeQueryTool.js.map +1 -0
- package/dist/tools/query/KnowledgeQueryTool/constants.d.ts +6 -0
- package/dist/tools/query/KnowledgeQueryTool/constants.d.ts.map +1 -0
- package/dist/tools/query/KnowledgeQueryTool/constants.js +6 -0
- package/dist/tools/query/KnowledgeQueryTool/constants.js.map +1 -0
- package/dist/tools/query/KnowledgeQueryTool/prompt.d.ts +2 -0
- package/dist/tools/query/KnowledgeQueryTool/prompt.d.ts.map +1 -0
- package/dist/tools/query/KnowledgeQueryTool/prompt.js +2 -0
- package/dist/tools/query/KnowledgeQueryTool/prompt.js.map +1 -0
- package/dist/tools/query/MemoryRecallTool/MemoryRecallTool.d.ts +69 -0
- package/dist/tools/query/MemoryRecallTool/MemoryRecallTool.d.ts.map +1 -0
- package/dist/tools/query/MemoryRecallTool/MemoryRecallTool.js +98 -0
- package/dist/tools/query/MemoryRecallTool/MemoryRecallTool.js.map +1 -0
- package/dist/tools/query/MemoryRecallTool/constants.d.ts +6 -0
- package/dist/tools/query/MemoryRecallTool/constants.d.ts.map +1 -0
- package/dist/tools/query/MemoryRecallTool/constants.js +6 -0
- package/dist/tools/query/MemoryRecallTool/constants.js.map +1 -0
- package/dist/tools/query/MemoryRecallTool/prompt.d.ts +2 -0
- package/dist/tools/query/MemoryRecallTool/prompt.d.ts.map +1 -0
- package/dist/tools/query/MemoryRecallTool/prompt.js +2 -0
- package/dist/tools/query/MemoryRecallTool/prompt.js.map +1 -0
- package/dist/tools/query/PluginStateTool/PluginStateTool.d.ts +28 -0
- package/dist/tools/query/PluginStateTool/PluginStateTool.d.ts.map +1 -0
- package/dist/tools/query/PluginStateTool/PluginStateTool.js +80 -0
- package/dist/tools/query/PluginStateTool/PluginStateTool.js.map +1 -0
- package/dist/tools/query/PluginStateTool/constants.d.ts +6 -0
- package/dist/tools/query/PluginStateTool/constants.d.ts.map +1 -0
- package/dist/tools/query/PluginStateTool/constants.js +6 -0
- package/dist/tools/query/PluginStateTool/constants.js.map +1 -0
- package/dist/tools/query/PluginStateTool/prompt.d.ts +2 -0
- package/dist/tools/query/PluginStateTool/prompt.d.ts.map +1 -0
- package/dist/tools/query/PluginStateTool/prompt.js +2 -0
- package/dist/tools/query/PluginStateTool/prompt.js.map +1 -0
- package/dist/tools/query/ProgressHistoryTool/ProgressHistoryTool.d.ts +57 -0
- package/dist/tools/query/ProgressHistoryTool/ProgressHistoryTool.d.ts.map +1 -0
- package/dist/tools/query/ProgressHistoryTool/ProgressHistoryTool.js +143 -0
- package/dist/tools/query/ProgressHistoryTool/ProgressHistoryTool.js.map +1 -0
- package/dist/tools/query/ProgressHistoryTool/constants.d.ts +6 -0
- package/dist/tools/query/ProgressHistoryTool/constants.d.ts.map +1 -0
- package/dist/tools/query/ProgressHistoryTool/constants.js +6 -0
- package/dist/tools/query/ProgressHistoryTool/constants.js.map +1 -0
- package/dist/tools/query/ProgressHistoryTool/prompt.d.ts +2 -0
- package/dist/tools/query/ProgressHistoryTool/prompt.d.ts.map +1 -0
- package/dist/tools/query/ProgressHistoryTool/prompt.js +2 -0
- package/dist/tools/query/ProgressHistoryTool/prompt.js.map +1 -0
- package/dist/tools/query/SessionHistoryTool/SessionHistoryTool.d.ts +42 -0
- package/dist/tools/query/SessionHistoryTool/SessionHistoryTool.d.ts.map +1 -0
- package/dist/tools/query/SessionHistoryTool/SessionHistoryTool.js +118 -0
- package/dist/tools/query/SessionHistoryTool/SessionHistoryTool.js.map +1 -0
- package/dist/tools/query/SessionHistoryTool/constants.d.ts +6 -0
- package/dist/tools/query/SessionHistoryTool/constants.d.ts.map +1 -0
- package/dist/tools/query/SessionHistoryTool/constants.js +6 -0
- package/dist/tools/query/SessionHistoryTool/constants.js.map +1 -0
- package/dist/tools/query/SessionHistoryTool/prompt.d.ts +2 -0
- package/dist/tools/query/SessionHistoryTool/prompt.d.ts.map +1 -0
- package/dist/tools/query/SessionHistoryTool/prompt.js +2 -0
- package/dist/tools/query/SessionHistoryTool/prompt.js.map +1 -0
- package/dist/tools/query/TaskGetTool/TaskGetTool.d.ts +34 -0
- package/dist/tools/query/TaskGetTool/TaskGetTool.d.ts.map +1 -0
- package/dist/tools/query/TaskGetTool/TaskGetTool.js +77 -0
- package/dist/tools/query/TaskGetTool/TaskGetTool.js.map +1 -0
- package/dist/tools/query/TaskGetTool/constants.d.ts +6 -0
- package/dist/tools/query/TaskGetTool/constants.d.ts.map +1 -0
- package/dist/tools/query/TaskGetTool/constants.js +6 -0
- package/dist/tools/query/TaskGetTool/constants.js.map +1 -0
- package/dist/tools/query/TaskGetTool/prompt.d.ts +2 -0
- package/dist/tools/query/TaskGetTool/prompt.d.ts.map +1 -0
- package/dist/tools/query/TaskGetTool/prompt.js +2 -0
- package/dist/tools/query/TaskGetTool/prompt.js.map +1 -0
- package/dist/tools/query/TaskListTool/TaskListTool.d.ts +58 -0
- package/dist/tools/query/TaskListTool/TaskListTool.d.ts.map +1 -0
- package/dist/tools/query/TaskListTool/TaskListTool.js +101 -0
- package/dist/tools/query/TaskListTool/TaskListTool.js.map +1 -0
- package/dist/tools/query/TaskListTool/constants.d.ts +6 -0
- package/dist/tools/query/TaskListTool/constants.d.ts.map +1 -0
- package/dist/tools/query/TaskListTool/constants.js +6 -0
- package/dist/tools/query/TaskListTool/constants.js.map +1 -0
- package/dist/tools/query/TaskListTool/prompt.d.ts +2 -0
- package/dist/tools/query/TaskListTool/prompt.d.ts.map +1 -0
- package/dist/tools/query/TaskListTool/prompt.js +2 -0
- package/dist/tools/query/TaskListTool/prompt.js.map +1 -0
- package/dist/tools/query/ToolSearchTool/ToolSearchTool.d.ts +40 -0
- package/dist/tools/query/ToolSearchTool/ToolSearchTool.d.ts.map +1 -0
- package/dist/tools/query/ToolSearchTool/ToolSearchTool.js +48 -0
- package/dist/tools/query/ToolSearchTool/ToolSearchTool.js.map +1 -0
- package/dist/tools/query/ToolSearchTool/constants.d.ts +6 -0
- package/dist/tools/query/ToolSearchTool/constants.d.ts.map +1 -0
- package/dist/tools/query/ToolSearchTool/constants.js +6 -0
- package/dist/tools/query/ToolSearchTool/constants.js.map +1 -0
- package/dist/tools/query/ToolSearchTool/prompt.d.ts +2 -0
- package/dist/tools/query/ToolSearchTool/prompt.d.ts.map +1 -0
- package/dist/tools/query/ToolSearchTool/prompt.js +2 -0
- package/dist/tools/query/ToolSearchTool/prompt.js.map +1 -0
- package/dist/tools/query/TrustStateTool/TrustStateTool.d.ts +30 -0
- package/dist/tools/query/TrustStateTool/TrustStateTool.d.ts.map +1 -0
- package/dist/tools/query/TrustStateTool/TrustStateTool.js +92 -0
- package/dist/tools/query/TrustStateTool/TrustStateTool.js.map +1 -0
- package/dist/tools/query/TrustStateTool/constants.d.ts +6 -0
- package/dist/tools/query/TrustStateTool/constants.d.ts.map +1 -0
- package/dist/tools/query/TrustStateTool/constants.js +6 -0
- package/dist/tools/query/TrustStateTool/constants.js.map +1 -0
- package/dist/tools/query/TrustStateTool/prompt.d.ts +2 -0
- package/dist/tools/query/TrustStateTool/prompt.d.ts.map +1 -0
- package/dist/tools/query/TrustStateTool/prompt.js +2 -0
- package/dist/tools/query/TrustStateTool/prompt.js.map +1 -0
- package/dist/tools/schedule/CreateScheduleTool/CreateScheduleTool.d.ts +1638 -0
- package/dist/tools/schedule/CreateScheduleTool/CreateScheduleTool.d.ts.map +1 -0
- package/dist/tools/schedule/CreateScheduleTool/CreateScheduleTool.js +86 -0
- package/dist/tools/schedule/CreateScheduleTool/CreateScheduleTool.js.map +1 -0
- package/dist/tools/schedule/CreateScheduleTool/constants.d.ts +5 -0
- package/dist/tools/schedule/CreateScheduleTool/constants.d.ts.map +1 -0
- package/dist/tools/schedule/CreateScheduleTool/constants.js +5 -0
- package/dist/tools/schedule/CreateScheduleTool/constants.js.map +1 -0
- package/dist/tools/schedule/CreateScheduleTool/prompt.d.ts +2 -0
- package/dist/tools/schedule/CreateScheduleTool/prompt.d.ts.map +1 -0
- package/dist/tools/schedule/CreateScheduleTool/prompt.js +2 -0
- package/dist/tools/schedule/CreateScheduleTool/prompt.js.map +1 -0
- package/dist/tools/schedule/GetScheduleTool/GetScheduleTool.d.ts +28 -0
- package/dist/tools/schedule/GetScheduleTool/GetScheduleTool.d.ts.map +1 -0
- package/dist/tools/schedule/GetScheduleTool/GetScheduleTool.js +79 -0
- package/dist/tools/schedule/GetScheduleTool/GetScheduleTool.js.map +1 -0
- package/dist/tools/schedule/GetScheduleTool/constants.d.ts +6 -0
- package/dist/tools/schedule/GetScheduleTool/constants.d.ts.map +1 -0
- package/dist/tools/schedule/GetScheduleTool/constants.js +6 -0
- package/dist/tools/schedule/GetScheduleTool/constants.js.map +1 -0
- package/dist/tools/schedule/GetScheduleTool/prompt.d.ts +2 -0
- package/dist/tools/schedule/GetScheduleTool/prompt.d.ts.map +1 -0
- package/dist/tools/schedule/GetScheduleTool/prompt.js +2 -0
- package/dist/tools/schedule/GetScheduleTool/prompt.js.map +1 -0
- package/dist/tools/schedule/ListSchedulesTool/ListSchedulesTool.d.ts +40 -0
- package/dist/tools/schedule/ListSchedulesTool/ListSchedulesTool.d.ts.map +1 -0
- package/dist/tools/schedule/ListSchedulesTool/ListSchedulesTool.js +83 -0
- package/dist/tools/schedule/ListSchedulesTool/ListSchedulesTool.js.map +1 -0
- package/dist/tools/schedule/ListSchedulesTool/constants.d.ts +6 -0
- package/dist/tools/schedule/ListSchedulesTool/constants.d.ts.map +1 -0
- package/dist/tools/schedule/ListSchedulesTool/constants.js +6 -0
- package/dist/tools/schedule/ListSchedulesTool/constants.js.map +1 -0
- package/dist/tools/schedule/ListSchedulesTool/prompt.d.ts +2 -0
- package/dist/tools/schedule/ListSchedulesTool/prompt.d.ts.map +1 -0
- package/dist/tools/schedule/ListSchedulesTool/prompt.js +2 -0
- package/dist/tools/schedule/ListSchedulesTool/prompt.js.map +1 -0
- package/dist/tools/schedule/PauseScheduleTool/PauseScheduleTool.d.ts +32 -0
- package/dist/tools/schedule/PauseScheduleTool/PauseScheduleTool.d.ts.map +1 -0
- package/dist/tools/schedule/PauseScheduleTool/PauseScheduleTool.js +94 -0
- package/dist/tools/schedule/PauseScheduleTool/PauseScheduleTool.js.map +1 -0
- package/dist/tools/schedule/PauseScheduleTool/constants.d.ts +5 -0
- package/dist/tools/schedule/PauseScheduleTool/constants.d.ts.map +1 -0
- package/dist/tools/schedule/PauseScheduleTool/constants.js +5 -0
- package/dist/tools/schedule/PauseScheduleTool/constants.js.map +1 -0
- package/dist/tools/schedule/PauseScheduleTool/prompt.d.ts +2 -0
- package/dist/tools/schedule/PauseScheduleTool/prompt.d.ts.map +1 -0
- package/dist/tools/schedule/PauseScheduleTool/prompt.js +2 -0
- package/dist/tools/schedule/PauseScheduleTool/prompt.js.map +1 -0
- package/dist/tools/schedule/RemoveScheduleTool/RemoveScheduleTool.d.ts +35 -0
- package/dist/tools/schedule/RemoveScheduleTool/RemoveScheduleTool.d.ts.map +1 -0
- package/dist/tools/schedule/RemoveScheduleTool/RemoveScheduleTool.js +100 -0
- package/dist/tools/schedule/RemoveScheduleTool/RemoveScheduleTool.js.map +1 -0
- package/dist/tools/schedule/RemoveScheduleTool/constants.d.ts +5 -0
- package/dist/tools/schedule/RemoveScheduleTool/constants.d.ts.map +1 -0
- package/dist/tools/schedule/RemoveScheduleTool/constants.js +5 -0
- package/dist/tools/schedule/RemoveScheduleTool/constants.js.map +1 -0
- package/dist/tools/schedule/RemoveScheduleTool/prompt.d.ts +2 -0
- package/dist/tools/schedule/RemoveScheduleTool/prompt.d.ts.map +1 -0
- package/dist/tools/schedule/RemoveScheduleTool/prompt.js +2 -0
- package/dist/tools/schedule/RemoveScheduleTool/prompt.js.map +1 -0
- package/dist/tools/schedule/ResumeScheduleTool/ResumeScheduleTool.d.ts +32 -0
- package/dist/tools/schedule/ResumeScheduleTool/ResumeScheduleTool.d.ts.map +1 -0
- package/dist/tools/schedule/ResumeScheduleTool/ResumeScheduleTool.js +94 -0
- package/dist/tools/schedule/ResumeScheduleTool/ResumeScheduleTool.js.map +1 -0
- package/dist/tools/schedule/ResumeScheduleTool/constants.d.ts +5 -0
- package/dist/tools/schedule/ResumeScheduleTool/constants.d.ts.map +1 -0
- package/dist/tools/schedule/ResumeScheduleTool/constants.js +5 -0
- package/dist/tools/schedule/ResumeScheduleTool/constants.js.map +1 -0
- package/dist/tools/schedule/ResumeScheduleTool/prompt.d.ts +2 -0
- package/dist/tools/schedule/ResumeScheduleTool/prompt.d.ts.map +1 -0
- package/dist/tools/schedule/ResumeScheduleTool/prompt.js +2 -0
- package/dist/tools/schedule/ResumeScheduleTool/prompt.js.map +1 -0
- package/dist/tools/schedule/UpdateScheduleTool/UpdateScheduleTool.d.ts +770 -0
- package/dist/tools/schedule/UpdateScheduleTool/UpdateScheduleTool.d.ts.map +1 -0
- package/dist/tools/schedule/UpdateScheduleTool/UpdateScheduleTool.js +131 -0
- package/dist/tools/schedule/UpdateScheduleTool/UpdateScheduleTool.js.map +1 -0
- package/dist/tools/schedule/UpdateScheduleTool/constants.d.ts +5 -0
- package/dist/tools/schedule/UpdateScheduleTool/constants.d.ts.map +1 -0
- package/dist/tools/schedule/UpdateScheduleTool/constants.js +5 -0
- package/dist/tools/schedule/UpdateScheduleTool/constants.js.map +1 -0
- package/dist/tools/schedule/UpdateScheduleTool/prompt.d.ts +2 -0
- package/dist/tools/schedule/UpdateScheduleTool/prompt.d.ts.map +1 -0
- package/dist/tools/schedule/UpdateScheduleTool/prompt.js +2 -0
- package/dist/tools/schedule/UpdateScheduleTool/prompt.js.map +1 -0
- package/dist/tools/shared/parse-tool-output.d.ts +18 -0
- package/dist/tools/shared/parse-tool-output.d.ts.map +1 -0
- package/dist/tools/shared/parse-tool-output.js +53 -0
- package/dist/tools/shared/parse-tool-output.js.map +1 -0
- package/dist/tools/state/architecture-tool.d.ts +25 -0
- package/dist/tools/state/architecture-tool.d.ts.map +1 -0
- package/dist/tools/state/architecture-tool.js +98 -0
- package/dist/tools/state/architecture-tool.js.map +1 -0
- package/dist/tools/state/archive-goal-tool.d.ts +34 -0
- package/dist/tools/state/archive-goal-tool.d.ts.map +1 -0
- package/dist/tools/state/archive-goal-tool.js +85 -0
- package/dist/tools/state/archive-goal-tool.js.map +1 -0
- package/dist/tools/state/config-tool.d.ts +25 -0
- package/dist/tools/state/config-tool.d.ts.map +1 -0
- package/dist/tools/state/config-tool.js +87 -0
- package/dist/tools/state/config-tool.js.map +1 -0
- package/dist/tools/state/delete-goal-tool.d.ts +28 -0
- package/dist/tools/state/delete-goal-tool.d.ts.map +1 -0
- package/dist/tools/state/delete-goal-tool.js +87 -0
- package/dist/tools/state/delete-goal-tool.js.map +1 -0
- package/dist/tools/state/plugin-state-tool.d.ts +28 -0
- package/dist/tools/state/plugin-state-tool.d.ts.map +1 -0
- package/dist/tools/state/plugin-state-tool.js +78 -0
- package/dist/tools/state/plugin-state-tool.js.map +1 -0
- package/dist/tools/state/reset-trust-tool.d.ts +40 -0
- package/dist/tools/state/reset-trust-tool.d.ts.map +1 -0
- package/dist/tools/state/reset-trust-tool.js +82 -0
- package/dist/tools/state/reset-trust-tool.js.map +1 -0
- package/dist/tools/state/set-goal-tool.d.ts +28 -0
- package/dist/tools/state/set-goal-tool.d.ts.map +1 -0
- package/dist/tools/state/set-goal-tool.js +82 -0
- package/dist/tools/state/set-goal-tool.js.map +1 -0
- package/dist/tools/state/toggle-plugin-tool.d.ts +31 -0
- package/dist/tools/state/toggle-plugin-tool.d.ts.map +1 -0
- package/dist/tools/state/toggle-plugin-tool.js +53 -0
- package/dist/tools/state/toggle-plugin-tool.js.map +1 -0
- package/dist/tools/state/update-config-tool.d.ts +31 -0
- package/dist/tools/state/update-config-tool.d.ts.map +1 -0
- package/dist/tools/state/update-config-tool.js +67 -0
- package/dist/tools/state/update-config-tool.js.map +1 -0
- package/dist/tools/state/update-goal-tool.d.ts +40 -0
- package/dist/tools/state/update-goal-tool.d.ts.map +1 -0
- package/dist/tools/state/update-goal-tool.js +71 -0
- package/dist/tools/state/update-goal-tool.js.map +1 -0
- package/dist/tools/system/EnvTool/EnvTool.d.ts +35 -0
- package/dist/tools/system/EnvTool/EnvTool.d.ts.map +1 -0
- package/dist/tools/system/EnvTool/EnvTool.js +127 -0
- package/dist/tools/system/EnvTool/EnvTool.js.map +1 -0
- package/dist/tools/system/EnvTool/constants.d.ts +6 -0
- package/dist/tools/system/EnvTool/constants.d.ts.map +1 -0
- package/dist/tools/system/EnvTool/constants.js +6 -0
- package/dist/tools/system/EnvTool/constants.js.map +1 -0
- package/dist/tools/system/EnvTool/prompt.d.ts +2 -0
- package/dist/tools/system/EnvTool/prompt.d.ts.map +1 -0
- package/dist/tools/system/EnvTool/prompt.js +2 -0
- package/dist/tools/system/EnvTool/prompt.js.map +1 -0
- package/dist/tools/system/GitDiffTool/GitDiffTool.d.ts +43 -0
- package/dist/tools/system/GitDiffTool/GitDiffTool.d.ts.map +1 -0
- package/dist/tools/system/GitDiffTool/GitDiffTool.js +133 -0
- package/dist/tools/system/GitDiffTool/GitDiffTool.js.map +1 -0
- package/dist/tools/system/GitDiffTool/constants.d.ts +6 -0
- package/dist/tools/system/GitDiffTool/constants.d.ts.map +1 -0
- package/dist/tools/system/GitDiffTool/constants.js +6 -0
- package/dist/tools/system/GitDiffTool/constants.js.map +1 -0
- package/dist/tools/system/GitDiffTool/prompt.d.ts +2 -0
- package/dist/tools/system/GitDiffTool/prompt.d.ts.map +1 -0
- package/dist/tools/system/GitDiffTool/prompt.js +2 -0
- package/dist/tools/system/GitDiffTool/prompt.js.map +1 -0
- package/dist/tools/system/GitLogTool/GitLogTool.d.ts +61 -0
- package/dist/tools/system/GitLogTool/GitLogTool.d.ts.map +1 -0
- package/dist/tools/system/GitLogTool/GitLogTool.js +111 -0
- package/dist/tools/system/GitLogTool/GitLogTool.js.map +1 -0
- package/dist/tools/system/GitLogTool/constants.d.ts +6 -0
- package/dist/tools/system/GitLogTool/constants.d.ts.map +1 -0
- package/dist/tools/system/GitLogTool/constants.js +6 -0
- package/dist/tools/system/GitLogTool/constants.js.map +1 -0
- package/dist/tools/system/GitLogTool/prompt.d.ts +2 -0
- package/dist/tools/system/GitLogTool/prompt.d.ts.map +1 -0
- package/dist/tools/system/GitLogTool/prompt.js +2 -0
- package/dist/tools/system/GitLogTool/prompt.js.map +1 -0
- package/dist/tools/system/ProcessStatusTool/ProcessStatusTool.d.ts +61 -0
- package/dist/tools/system/ProcessStatusTool/ProcessStatusTool.d.ts.map +1 -0
- package/dist/tools/system/ProcessStatusTool/ProcessStatusTool.js +147 -0
- package/dist/tools/system/ProcessStatusTool/ProcessStatusTool.js.map +1 -0
- package/dist/tools/system/ProcessStatusTool/constants.d.ts +6 -0
- package/dist/tools/system/ProcessStatusTool/constants.d.ts.map +1 -0
- package/dist/tools/system/ProcessStatusTool/constants.js +6 -0
- package/dist/tools/system/ProcessStatusTool/constants.js.map +1 -0
- package/dist/tools/system/ProcessStatusTool/prompt.d.ts +2 -0
- package/dist/tools/system/ProcessStatusTool/prompt.d.ts.map +1 -0
- package/dist/tools/system/ProcessStatusTool/prompt.js +2 -0
- package/dist/tools/system/ProcessStatusTool/prompt.js.map +1 -0
- package/dist/tools/system/ShellTool/ShellTool.d.ts +48 -0
- package/dist/tools/system/ShellTool/ShellTool.d.ts.map +1 -0
- package/dist/tools/system/ShellTool/ShellTool.js +108 -0
- package/dist/tools/system/ShellTool/ShellTool.js.map +1 -0
- package/dist/tools/system/ShellTool/constants.d.ts +5 -0
- package/dist/tools/system/ShellTool/constants.d.ts.map +1 -0
- package/dist/tools/system/ShellTool/constants.js +5 -0
- package/dist/tools/system/ShellTool/constants.js.map +1 -0
- package/dist/tools/system/ShellTool/prompt.d.ts +2 -0
- package/dist/tools/system/ShellTool/prompt.d.ts.map +1 -0
- package/dist/tools/system/ShellTool/prompt.js +2 -0
- package/dist/tools/system/ShellTool/prompt.js.map +1 -0
- package/dist/tools/system/SleepTool/SleepTool.d.ts +35 -0
- package/dist/tools/system/SleepTool/SleepTool.d.ts.map +1 -0
- package/dist/tools/system/SleepTool/SleepTool.js +50 -0
- package/dist/tools/system/SleepTool/SleepTool.js.map +1 -0
- package/dist/tools/system/SleepTool/constants.d.ts +6 -0
- package/dist/tools/system/SleepTool/constants.d.ts.map +1 -0
- package/dist/tools/system/SleepTool/constants.js +6 -0
- package/dist/tools/system/SleepTool/constants.js.map +1 -0
- package/dist/tools/system/SleepTool/prompt.d.ts +2 -0
- package/dist/tools/system/SleepTool/prompt.d.ts.map +1 -0
- package/dist/tools/system/SleepTool/prompt.js +2 -0
- package/dist/tools/system/SleepTool/prompt.js.map +1 -0
- package/dist/tools/system/TestRunnerTool/TestRunnerTool.d.ts +53 -0
- package/dist/tools/system/TestRunnerTool/TestRunnerTool.d.ts.map +1 -0
- package/dist/tools/system/TestRunnerTool/TestRunnerTool.js +183 -0
- package/dist/tools/system/TestRunnerTool/TestRunnerTool.js.map +1 -0
- package/dist/tools/system/TestRunnerTool/constants.d.ts +5 -0
- package/dist/tools/system/TestRunnerTool/constants.d.ts.map +1 -0
- package/dist/tools/system/TestRunnerTool/constants.js +5 -0
- package/dist/tools/system/TestRunnerTool/constants.js.map +1 -0
- package/dist/tools/system/TestRunnerTool/prompt.d.ts +2 -0
- package/dist/tools/system/TestRunnerTool/prompt.d.ts.map +1 -0
- package/dist/tools/system/TestRunnerTool/prompt.js +2 -0
- package/dist/tools/system/TestRunnerTool/prompt.js.map +1 -0
- package/dist/tools/system/test-runner.d.ts +2 -52
- package/dist/tools/system/test-runner.d.ts.map +1 -1
- package/dist/tools/system/test-runner.js +1 -180
- package/dist/tools/system/test-runner.js.map +1 -1
- package/dist/tools/tool-definition-adapter.d.ts +20 -0
- package/dist/tools/tool-definition-adapter.d.ts.map +1 -0
- package/dist/tools/tool-definition-adapter.js +52 -0
- package/dist/tools/tool-definition-adapter.js.map +1 -0
- package/dist/tools/types.d.ts +5 -0
- package/dist/tools/types.d.ts.map +1 -1
- package/dist/tools/types.js +4 -1
- package/dist/tools/types.js.map +1 -1
- package/package.json +7 -6
|
@@ -0,0 +1,918 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const HeartbeatCheckTypeSchema: z.ZodEnum<["http", "tcp", "process", "disk", "custom"]>;
|
|
3
|
+
export declare const HeartbeatConfigSchema: z.ZodObject<{
|
|
4
|
+
check_type: z.ZodEnum<["http", "tcp", "process", "disk", "custom"]>;
|
|
5
|
+
check_config: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
6
|
+
failure_threshold: z.ZodDefault<z.ZodNumber>;
|
|
7
|
+
timeout_ms: z.ZodDefault<z.ZodNumber>;
|
|
8
|
+
}, "strip", z.ZodTypeAny, {
|
|
9
|
+
timeout_ms: number;
|
|
10
|
+
check_type: "custom" | "http" | "tcp" | "process" | "disk";
|
|
11
|
+
check_config: Record<string, unknown>;
|
|
12
|
+
failure_threshold: number;
|
|
13
|
+
}, {
|
|
14
|
+
check_type: "custom" | "http" | "tcp" | "process" | "disk";
|
|
15
|
+
check_config: Record<string, unknown>;
|
|
16
|
+
timeout_ms?: number | undefined;
|
|
17
|
+
failure_threshold?: number | undefined;
|
|
18
|
+
}>;
|
|
19
|
+
export type HeartbeatConfig = z.infer<typeof HeartbeatConfigSchema>;
|
|
20
|
+
export declare const ProbeConfigSchema: z.ZodObject<{
|
|
21
|
+
data_source_id: z.ZodString;
|
|
22
|
+
probe_dimension: z.ZodOptional<z.ZodString>;
|
|
23
|
+
query_params: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
24
|
+
change_detector: z.ZodObject<{
|
|
25
|
+
mode: z.ZodEnum<["threshold", "diff", "presence"]>;
|
|
26
|
+
threshold_value: z.ZodOptional<z.ZodNumber>;
|
|
27
|
+
baseline_window: z.ZodDefault<z.ZodNumber>;
|
|
28
|
+
}, "strip", z.ZodTypeAny, {
|
|
29
|
+
mode: "threshold" | "diff" | "presence";
|
|
30
|
+
baseline_window: number;
|
|
31
|
+
threshold_value?: number | undefined;
|
|
32
|
+
}, {
|
|
33
|
+
mode: "threshold" | "diff" | "presence";
|
|
34
|
+
threshold_value?: number | undefined;
|
|
35
|
+
baseline_window?: number | undefined;
|
|
36
|
+
}>;
|
|
37
|
+
llm_on_change: z.ZodDefault<z.ZodBoolean>;
|
|
38
|
+
llm_prompt_template: z.ZodOptional<z.ZodString>;
|
|
39
|
+
}, "strip", z.ZodTypeAny, {
|
|
40
|
+
data_source_id: string;
|
|
41
|
+
query_params: Record<string, unknown>;
|
|
42
|
+
change_detector: {
|
|
43
|
+
mode: "threshold" | "diff" | "presence";
|
|
44
|
+
baseline_window: number;
|
|
45
|
+
threshold_value?: number | undefined;
|
|
46
|
+
};
|
|
47
|
+
llm_on_change: boolean;
|
|
48
|
+
probe_dimension?: string | undefined;
|
|
49
|
+
llm_prompt_template?: string | undefined;
|
|
50
|
+
}, {
|
|
51
|
+
data_source_id: string;
|
|
52
|
+
change_detector: {
|
|
53
|
+
mode: "threshold" | "diff" | "presence";
|
|
54
|
+
threshold_value?: number | undefined;
|
|
55
|
+
baseline_window?: number | undefined;
|
|
56
|
+
};
|
|
57
|
+
probe_dimension?: string | undefined;
|
|
58
|
+
query_params?: Record<string, unknown> | undefined;
|
|
59
|
+
llm_on_change?: boolean | undefined;
|
|
60
|
+
llm_prompt_template?: string | undefined;
|
|
61
|
+
}>;
|
|
62
|
+
export type ProbeConfig = z.infer<typeof ProbeConfigSchema>;
|
|
63
|
+
export declare const ReflectionJobKindSchema: z.ZodEnum<["morning_planning", "evening_catchup", "weekly_review", "dream_consolidation"]>;
|
|
64
|
+
export type ReflectionJobKind = z.infer<typeof ReflectionJobKindSchema>;
|
|
65
|
+
export declare const CronConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
66
|
+
job_kind: z.ZodDefault<z.ZodEnum<["prompt", "reflection"]>>;
|
|
67
|
+
reflection_kind: z.ZodOptional<z.ZodEnum<["morning_planning", "evening_catchup", "weekly_review", "dream_consolidation"]>>;
|
|
68
|
+
prompt_template: z.ZodString;
|
|
69
|
+
context_sources: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
70
|
+
output_format: z.ZodDefault<z.ZodEnum<["notification", "report", "both"]>>;
|
|
71
|
+
report_type: z.ZodOptional<z.ZodString>;
|
|
72
|
+
max_tokens: z.ZodDefault<z.ZodNumber>;
|
|
73
|
+
}, "strip", z.ZodTypeAny, {
|
|
74
|
+
max_tokens: number;
|
|
75
|
+
job_kind: "prompt" | "reflection";
|
|
76
|
+
prompt_template: string;
|
|
77
|
+
context_sources: string[];
|
|
78
|
+
output_format: "both" | "notification" | "report";
|
|
79
|
+
report_type?: string | undefined;
|
|
80
|
+
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
81
|
+
}, {
|
|
82
|
+
prompt_template: string;
|
|
83
|
+
report_type?: string | undefined;
|
|
84
|
+
max_tokens?: number | undefined;
|
|
85
|
+
job_kind?: "prompt" | "reflection" | undefined;
|
|
86
|
+
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
87
|
+
context_sources?: string[] | undefined;
|
|
88
|
+
output_format?: "both" | "notification" | "report" | undefined;
|
|
89
|
+
}>, {
|
|
90
|
+
max_tokens: number;
|
|
91
|
+
job_kind: "prompt" | "reflection";
|
|
92
|
+
prompt_template: string;
|
|
93
|
+
context_sources: string[];
|
|
94
|
+
output_format: "both" | "notification" | "report";
|
|
95
|
+
report_type?: string | undefined;
|
|
96
|
+
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
97
|
+
}, {
|
|
98
|
+
prompt_template: string;
|
|
99
|
+
report_type?: string | undefined;
|
|
100
|
+
max_tokens?: number | undefined;
|
|
101
|
+
job_kind?: "prompt" | "reflection" | undefined;
|
|
102
|
+
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
103
|
+
context_sources?: string[] | undefined;
|
|
104
|
+
output_format?: "both" | "notification" | "report" | undefined;
|
|
105
|
+
}>;
|
|
106
|
+
export type CronConfig = z.infer<typeof CronConfigSchema>;
|
|
107
|
+
export declare const GoalTriggerConfigSchema: z.ZodObject<{
|
|
108
|
+
goal_id: z.ZodString;
|
|
109
|
+
max_iterations: z.ZodDefault<z.ZodNumber>;
|
|
110
|
+
skip_if_active: z.ZodDefault<z.ZodBoolean>;
|
|
111
|
+
}, "strip", z.ZodTypeAny, {
|
|
112
|
+
goal_id: string;
|
|
113
|
+
max_iterations: number;
|
|
114
|
+
skip_if_active: boolean;
|
|
115
|
+
}, {
|
|
116
|
+
goal_id: string;
|
|
117
|
+
max_iterations?: number | undefined;
|
|
118
|
+
skip_if_active?: boolean | undefined;
|
|
119
|
+
}>;
|
|
120
|
+
export type GoalTriggerConfig = z.infer<typeof GoalTriggerConfigSchema>;
|
|
121
|
+
export declare const ScheduleEntryMetadataSchema: z.ZodObject<{
|
|
122
|
+
source: z.ZodDefault<z.ZodEnum<["manual", "preset", "dream"]>>;
|
|
123
|
+
preset_key: z.ZodOptional<z.ZodString>;
|
|
124
|
+
dream_suggestion_id: z.ZodOptional<z.ZodString>;
|
|
125
|
+
dependency_hints: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
126
|
+
note: z.ZodOptional<z.ZodString>;
|
|
127
|
+
}, "strip", z.ZodTypeAny, {
|
|
128
|
+
source: "manual" | "preset" | "dream";
|
|
129
|
+
dependency_hints: string[];
|
|
130
|
+
preset_key?: string | undefined;
|
|
131
|
+
dream_suggestion_id?: string | undefined;
|
|
132
|
+
note?: string | undefined;
|
|
133
|
+
}, {
|
|
134
|
+
source?: "manual" | "preset" | "dream" | undefined;
|
|
135
|
+
preset_key?: string | undefined;
|
|
136
|
+
dream_suggestion_id?: string | undefined;
|
|
137
|
+
dependency_hints?: string[] | undefined;
|
|
138
|
+
note?: string | undefined;
|
|
139
|
+
}>;
|
|
140
|
+
export type ScheduleEntryMetadata = z.infer<typeof ScheduleEntryMetadataSchema>;
|
|
141
|
+
export declare const EscalationConfigSchema: z.ZodObject<{
|
|
142
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
143
|
+
target_layer: z.ZodOptional<z.ZodEnum<["probe", "cron", "goal_trigger"]>>;
|
|
144
|
+
target_entry_id: z.ZodOptional<z.ZodString>;
|
|
145
|
+
cooldown_minutes: z.ZodDefault<z.ZodNumber>;
|
|
146
|
+
max_per_hour: z.ZodDefault<z.ZodNumber>;
|
|
147
|
+
circuit_breaker_threshold: z.ZodDefault<z.ZodNumber>;
|
|
148
|
+
}, "strip", z.ZodTypeAny, {
|
|
149
|
+
enabled: boolean;
|
|
150
|
+
cooldown_minutes: number;
|
|
151
|
+
max_per_hour: number;
|
|
152
|
+
circuit_breaker_threshold: number;
|
|
153
|
+
target_layer?: "probe" | "cron" | "goal_trigger" | undefined;
|
|
154
|
+
target_entry_id?: string | undefined;
|
|
155
|
+
}, {
|
|
156
|
+
enabled?: boolean | undefined;
|
|
157
|
+
target_layer?: "probe" | "cron" | "goal_trigger" | undefined;
|
|
158
|
+
target_entry_id?: string | undefined;
|
|
159
|
+
cooldown_minutes?: number | undefined;
|
|
160
|
+
max_per_hour?: number | undefined;
|
|
161
|
+
circuit_breaker_threshold?: number | undefined;
|
|
162
|
+
}>;
|
|
163
|
+
export type EscalationConfig = z.infer<typeof EscalationConfigSchema>;
|
|
164
|
+
export declare const ScheduleLayerSchema: z.ZodEnum<["heartbeat", "probe", "cron", "goal_trigger"]>;
|
|
165
|
+
export declare const ScheduleTriggerSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
166
|
+
type: z.ZodLiteral<"cron">;
|
|
167
|
+
expression: z.ZodString;
|
|
168
|
+
timezone: z.ZodDefault<z.ZodString>;
|
|
169
|
+
}, "strip", z.ZodTypeAny, {
|
|
170
|
+
type: "cron";
|
|
171
|
+
expression: string;
|
|
172
|
+
timezone: string;
|
|
173
|
+
}, {
|
|
174
|
+
type: "cron";
|
|
175
|
+
expression: string;
|
|
176
|
+
timezone?: string | undefined;
|
|
177
|
+
}>, z.ZodObject<{
|
|
178
|
+
type: z.ZodLiteral<"interval">;
|
|
179
|
+
seconds: z.ZodNumber;
|
|
180
|
+
jitter_factor: z.ZodDefault<z.ZodNumber>;
|
|
181
|
+
}, "strip", z.ZodTypeAny, {
|
|
182
|
+
type: "interval";
|
|
183
|
+
seconds: number;
|
|
184
|
+
jitter_factor: number;
|
|
185
|
+
}, {
|
|
186
|
+
type: "interval";
|
|
187
|
+
seconds: number;
|
|
188
|
+
jitter_factor?: number | undefined;
|
|
189
|
+
}>]>;
|
|
190
|
+
export type ScheduleTriggerInput = z.input<typeof ScheduleTriggerSchema>;
|
|
191
|
+
export declare const ScheduleEntrySchema: z.ZodObject<{
|
|
192
|
+
id: z.ZodString;
|
|
193
|
+
name: z.ZodString;
|
|
194
|
+
layer: z.ZodEnum<["heartbeat", "probe", "cron", "goal_trigger"]>;
|
|
195
|
+
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
196
|
+
type: z.ZodLiteral<"cron">;
|
|
197
|
+
expression: z.ZodString;
|
|
198
|
+
timezone: z.ZodDefault<z.ZodString>;
|
|
199
|
+
}, "strip", z.ZodTypeAny, {
|
|
200
|
+
type: "cron";
|
|
201
|
+
expression: string;
|
|
202
|
+
timezone: string;
|
|
203
|
+
}, {
|
|
204
|
+
type: "cron";
|
|
205
|
+
expression: string;
|
|
206
|
+
timezone?: string | undefined;
|
|
207
|
+
}>, z.ZodObject<{
|
|
208
|
+
type: z.ZodLiteral<"interval">;
|
|
209
|
+
seconds: z.ZodNumber;
|
|
210
|
+
jitter_factor: z.ZodDefault<z.ZodNumber>;
|
|
211
|
+
}, "strip", z.ZodTypeAny, {
|
|
212
|
+
type: "interval";
|
|
213
|
+
seconds: number;
|
|
214
|
+
jitter_factor: number;
|
|
215
|
+
}, {
|
|
216
|
+
type: "interval";
|
|
217
|
+
seconds: number;
|
|
218
|
+
jitter_factor?: number | undefined;
|
|
219
|
+
}>]>;
|
|
220
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
221
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
222
|
+
source: z.ZodDefault<z.ZodEnum<["manual", "preset", "dream"]>>;
|
|
223
|
+
preset_key: z.ZodOptional<z.ZodString>;
|
|
224
|
+
dream_suggestion_id: z.ZodOptional<z.ZodString>;
|
|
225
|
+
dependency_hints: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
226
|
+
note: z.ZodOptional<z.ZodString>;
|
|
227
|
+
}, "strip", z.ZodTypeAny, {
|
|
228
|
+
source: "manual" | "preset" | "dream";
|
|
229
|
+
dependency_hints: string[];
|
|
230
|
+
preset_key?: string | undefined;
|
|
231
|
+
dream_suggestion_id?: string | undefined;
|
|
232
|
+
note?: string | undefined;
|
|
233
|
+
}, {
|
|
234
|
+
source?: "manual" | "preset" | "dream" | undefined;
|
|
235
|
+
preset_key?: string | undefined;
|
|
236
|
+
dream_suggestion_id?: string | undefined;
|
|
237
|
+
dependency_hints?: string[] | undefined;
|
|
238
|
+
note?: string | undefined;
|
|
239
|
+
}>>;
|
|
240
|
+
heartbeat: z.ZodOptional<z.ZodObject<{
|
|
241
|
+
check_type: z.ZodEnum<["http", "tcp", "process", "disk", "custom"]>;
|
|
242
|
+
check_config: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
243
|
+
failure_threshold: z.ZodDefault<z.ZodNumber>;
|
|
244
|
+
timeout_ms: z.ZodDefault<z.ZodNumber>;
|
|
245
|
+
}, "strip", z.ZodTypeAny, {
|
|
246
|
+
timeout_ms: number;
|
|
247
|
+
check_type: "custom" | "http" | "tcp" | "process" | "disk";
|
|
248
|
+
check_config: Record<string, unknown>;
|
|
249
|
+
failure_threshold: number;
|
|
250
|
+
}, {
|
|
251
|
+
check_type: "custom" | "http" | "tcp" | "process" | "disk";
|
|
252
|
+
check_config: Record<string, unknown>;
|
|
253
|
+
timeout_ms?: number | undefined;
|
|
254
|
+
failure_threshold?: number | undefined;
|
|
255
|
+
}>>;
|
|
256
|
+
probe: z.ZodOptional<z.ZodObject<{
|
|
257
|
+
data_source_id: z.ZodString;
|
|
258
|
+
probe_dimension: z.ZodOptional<z.ZodString>;
|
|
259
|
+
query_params: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
260
|
+
change_detector: z.ZodObject<{
|
|
261
|
+
mode: z.ZodEnum<["threshold", "diff", "presence"]>;
|
|
262
|
+
threshold_value: z.ZodOptional<z.ZodNumber>;
|
|
263
|
+
baseline_window: z.ZodDefault<z.ZodNumber>;
|
|
264
|
+
}, "strip", z.ZodTypeAny, {
|
|
265
|
+
mode: "threshold" | "diff" | "presence";
|
|
266
|
+
baseline_window: number;
|
|
267
|
+
threshold_value?: number | undefined;
|
|
268
|
+
}, {
|
|
269
|
+
mode: "threshold" | "diff" | "presence";
|
|
270
|
+
threshold_value?: number | undefined;
|
|
271
|
+
baseline_window?: number | undefined;
|
|
272
|
+
}>;
|
|
273
|
+
llm_on_change: z.ZodDefault<z.ZodBoolean>;
|
|
274
|
+
llm_prompt_template: z.ZodOptional<z.ZodString>;
|
|
275
|
+
}, "strip", z.ZodTypeAny, {
|
|
276
|
+
data_source_id: string;
|
|
277
|
+
query_params: Record<string, unknown>;
|
|
278
|
+
change_detector: {
|
|
279
|
+
mode: "threshold" | "diff" | "presence";
|
|
280
|
+
baseline_window: number;
|
|
281
|
+
threshold_value?: number | undefined;
|
|
282
|
+
};
|
|
283
|
+
llm_on_change: boolean;
|
|
284
|
+
probe_dimension?: string | undefined;
|
|
285
|
+
llm_prompt_template?: string | undefined;
|
|
286
|
+
}, {
|
|
287
|
+
data_source_id: string;
|
|
288
|
+
change_detector: {
|
|
289
|
+
mode: "threshold" | "diff" | "presence";
|
|
290
|
+
threshold_value?: number | undefined;
|
|
291
|
+
baseline_window?: number | undefined;
|
|
292
|
+
};
|
|
293
|
+
probe_dimension?: string | undefined;
|
|
294
|
+
query_params?: Record<string, unknown> | undefined;
|
|
295
|
+
llm_on_change?: boolean | undefined;
|
|
296
|
+
llm_prompt_template?: string | undefined;
|
|
297
|
+
}>>;
|
|
298
|
+
escalation: z.ZodOptional<z.ZodObject<{
|
|
299
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
300
|
+
target_layer: z.ZodOptional<z.ZodEnum<["probe", "cron", "goal_trigger"]>>;
|
|
301
|
+
target_entry_id: z.ZodOptional<z.ZodString>;
|
|
302
|
+
cooldown_minutes: z.ZodDefault<z.ZodNumber>;
|
|
303
|
+
max_per_hour: z.ZodDefault<z.ZodNumber>;
|
|
304
|
+
circuit_breaker_threshold: z.ZodDefault<z.ZodNumber>;
|
|
305
|
+
}, "strip", z.ZodTypeAny, {
|
|
306
|
+
enabled: boolean;
|
|
307
|
+
cooldown_minutes: number;
|
|
308
|
+
max_per_hour: number;
|
|
309
|
+
circuit_breaker_threshold: number;
|
|
310
|
+
target_layer?: "probe" | "cron" | "goal_trigger" | undefined;
|
|
311
|
+
target_entry_id?: string | undefined;
|
|
312
|
+
}, {
|
|
313
|
+
enabled?: boolean | undefined;
|
|
314
|
+
target_layer?: "probe" | "cron" | "goal_trigger" | undefined;
|
|
315
|
+
target_entry_id?: string | undefined;
|
|
316
|
+
cooldown_minutes?: number | undefined;
|
|
317
|
+
max_per_hour?: number | undefined;
|
|
318
|
+
circuit_breaker_threshold?: number | undefined;
|
|
319
|
+
}>>;
|
|
320
|
+
baseline_results: z.ZodDefault<z.ZodArray<z.ZodUnknown, "many">>;
|
|
321
|
+
created_at: z.ZodString;
|
|
322
|
+
updated_at: z.ZodString;
|
|
323
|
+
last_fired_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
324
|
+
next_fire_at: z.ZodString;
|
|
325
|
+
consecutive_failures: z.ZodDefault<z.ZodNumber>;
|
|
326
|
+
last_escalation_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
327
|
+
escalation_timestamps: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
328
|
+
total_executions: z.ZodDefault<z.ZodNumber>;
|
|
329
|
+
total_tokens_used: z.ZodDefault<z.ZodNumber>;
|
|
330
|
+
max_tokens_per_day: z.ZodDefault<z.ZodNumber>;
|
|
331
|
+
tokens_used_today: z.ZodDefault<z.ZodNumber>;
|
|
332
|
+
budget_reset_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
333
|
+
cron: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
334
|
+
job_kind: z.ZodDefault<z.ZodEnum<["prompt", "reflection"]>>;
|
|
335
|
+
reflection_kind: z.ZodOptional<z.ZodEnum<["morning_planning", "evening_catchup", "weekly_review", "dream_consolidation"]>>;
|
|
336
|
+
prompt_template: z.ZodString;
|
|
337
|
+
context_sources: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
338
|
+
output_format: z.ZodDefault<z.ZodEnum<["notification", "report", "both"]>>;
|
|
339
|
+
report_type: z.ZodOptional<z.ZodString>;
|
|
340
|
+
max_tokens: z.ZodDefault<z.ZodNumber>;
|
|
341
|
+
}, "strip", z.ZodTypeAny, {
|
|
342
|
+
max_tokens: number;
|
|
343
|
+
job_kind: "prompt" | "reflection";
|
|
344
|
+
prompt_template: string;
|
|
345
|
+
context_sources: string[];
|
|
346
|
+
output_format: "both" | "notification" | "report";
|
|
347
|
+
report_type?: string | undefined;
|
|
348
|
+
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
349
|
+
}, {
|
|
350
|
+
prompt_template: string;
|
|
351
|
+
report_type?: string | undefined;
|
|
352
|
+
max_tokens?: number | undefined;
|
|
353
|
+
job_kind?: "prompt" | "reflection" | undefined;
|
|
354
|
+
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
355
|
+
context_sources?: string[] | undefined;
|
|
356
|
+
output_format?: "both" | "notification" | "report" | undefined;
|
|
357
|
+
}>, {
|
|
358
|
+
max_tokens: number;
|
|
359
|
+
job_kind: "prompt" | "reflection";
|
|
360
|
+
prompt_template: string;
|
|
361
|
+
context_sources: string[];
|
|
362
|
+
output_format: "both" | "notification" | "report";
|
|
363
|
+
report_type?: string | undefined;
|
|
364
|
+
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
365
|
+
}, {
|
|
366
|
+
prompt_template: string;
|
|
367
|
+
report_type?: string | undefined;
|
|
368
|
+
max_tokens?: number | undefined;
|
|
369
|
+
job_kind?: "prompt" | "reflection" | undefined;
|
|
370
|
+
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
371
|
+
context_sources?: string[] | undefined;
|
|
372
|
+
output_format?: "both" | "notification" | "report" | undefined;
|
|
373
|
+
}>>;
|
|
374
|
+
goal_trigger: z.ZodOptional<z.ZodObject<{
|
|
375
|
+
goal_id: z.ZodString;
|
|
376
|
+
max_iterations: z.ZodDefault<z.ZodNumber>;
|
|
377
|
+
skip_if_active: z.ZodDefault<z.ZodBoolean>;
|
|
378
|
+
}, "strip", z.ZodTypeAny, {
|
|
379
|
+
goal_id: string;
|
|
380
|
+
max_iterations: number;
|
|
381
|
+
skip_if_active: boolean;
|
|
382
|
+
}, {
|
|
383
|
+
goal_id: string;
|
|
384
|
+
max_iterations?: number | undefined;
|
|
385
|
+
skip_if_active?: boolean | undefined;
|
|
386
|
+
}>>;
|
|
387
|
+
}, "strip", z.ZodTypeAny, {
|
|
388
|
+
name: string;
|
|
389
|
+
id: string;
|
|
390
|
+
created_at: string;
|
|
391
|
+
updated_at: string;
|
|
392
|
+
trigger: {
|
|
393
|
+
type: "cron";
|
|
394
|
+
expression: string;
|
|
395
|
+
timezone: string;
|
|
396
|
+
} | {
|
|
397
|
+
type: "interval";
|
|
398
|
+
seconds: number;
|
|
399
|
+
jitter_factor: number;
|
|
400
|
+
};
|
|
401
|
+
layer: "heartbeat" | "probe" | "cron" | "goal_trigger";
|
|
402
|
+
enabled: boolean;
|
|
403
|
+
baseline_results: unknown[];
|
|
404
|
+
last_fired_at: string | null;
|
|
405
|
+
next_fire_at: string;
|
|
406
|
+
consecutive_failures: number;
|
|
407
|
+
last_escalation_at: string | null;
|
|
408
|
+
escalation_timestamps: string[];
|
|
409
|
+
total_executions: number;
|
|
410
|
+
total_tokens_used: number;
|
|
411
|
+
max_tokens_per_day: number;
|
|
412
|
+
tokens_used_today: number;
|
|
413
|
+
budget_reset_at: string | null;
|
|
414
|
+
metadata?: {
|
|
415
|
+
source: "manual" | "preset" | "dream";
|
|
416
|
+
dependency_hints: string[];
|
|
417
|
+
preset_key?: string | undefined;
|
|
418
|
+
dream_suggestion_id?: string | undefined;
|
|
419
|
+
note?: string | undefined;
|
|
420
|
+
} | undefined;
|
|
421
|
+
heartbeat?: {
|
|
422
|
+
timeout_ms: number;
|
|
423
|
+
check_type: "custom" | "http" | "tcp" | "process" | "disk";
|
|
424
|
+
check_config: Record<string, unknown>;
|
|
425
|
+
failure_threshold: number;
|
|
426
|
+
} | undefined;
|
|
427
|
+
probe?: {
|
|
428
|
+
data_source_id: string;
|
|
429
|
+
query_params: Record<string, unknown>;
|
|
430
|
+
change_detector: {
|
|
431
|
+
mode: "threshold" | "diff" | "presence";
|
|
432
|
+
baseline_window: number;
|
|
433
|
+
threshold_value?: number | undefined;
|
|
434
|
+
};
|
|
435
|
+
llm_on_change: boolean;
|
|
436
|
+
probe_dimension?: string | undefined;
|
|
437
|
+
llm_prompt_template?: string | undefined;
|
|
438
|
+
} | undefined;
|
|
439
|
+
cron?: {
|
|
440
|
+
max_tokens: number;
|
|
441
|
+
job_kind: "prompt" | "reflection";
|
|
442
|
+
prompt_template: string;
|
|
443
|
+
context_sources: string[];
|
|
444
|
+
output_format: "both" | "notification" | "report";
|
|
445
|
+
report_type?: string | undefined;
|
|
446
|
+
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
447
|
+
} | undefined;
|
|
448
|
+
goal_trigger?: {
|
|
449
|
+
goal_id: string;
|
|
450
|
+
max_iterations: number;
|
|
451
|
+
skip_if_active: boolean;
|
|
452
|
+
} | undefined;
|
|
453
|
+
escalation?: {
|
|
454
|
+
enabled: boolean;
|
|
455
|
+
cooldown_minutes: number;
|
|
456
|
+
max_per_hour: number;
|
|
457
|
+
circuit_breaker_threshold: number;
|
|
458
|
+
target_layer?: "probe" | "cron" | "goal_trigger" | undefined;
|
|
459
|
+
target_entry_id?: string | undefined;
|
|
460
|
+
} | undefined;
|
|
461
|
+
}, {
|
|
462
|
+
name: string;
|
|
463
|
+
id: string;
|
|
464
|
+
created_at: string;
|
|
465
|
+
updated_at: string;
|
|
466
|
+
trigger: {
|
|
467
|
+
type: "cron";
|
|
468
|
+
expression: string;
|
|
469
|
+
timezone?: string | undefined;
|
|
470
|
+
} | {
|
|
471
|
+
type: "interval";
|
|
472
|
+
seconds: number;
|
|
473
|
+
jitter_factor?: number | undefined;
|
|
474
|
+
};
|
|
475
|
+
layer: "heartbeat" | "probe" | "cron" | "goal_trigger";
|
|
476
|
+
next_fire_at: string;
|
|
477
|
+
metadata?: {
|
|
478
|
+
source?: "manual" | "preset" | "dream" | undefined;
|
|
479
|
+
preset_key?: string | undefined;
|
|
480
|
+
dream_suggestion_id?: string | undefined;
|
|
481
|
+
dependency_hints?: string[] | undefined;
|
|
482
|
+
note?: string | undefined;
|
|
483
|
+
} | undefined;
|
|
484
|
+
enabled?: boolean | undefined;
|
|
485
|
+
heartbeat?: {
|
|
486
|
+
check_type: "custom" | "http" | "tcp" | "process" | "disk";
|
|
487
|
+
check_config: Record<string, unknown>;
|
|
488
|
+
timeout_ms?: number | undefined;
|
|
489
|
+
failure_threshold?: number | undefined;
|
|
490
|
+
} | undefined;
|
|
491
|
+
probe?: {
|
|
492
|
+
data_source_id: string;
|
|
493
|
+
change_detector: {
|
|
494
|
+
mode: "threshold" | "diff" | "presence";
|
|
495
|
+
threshold_value?: number | undefined;
|
|
496
|
+
baseline_window?: number | undefined;
|
|
497
|
+
};
|
|
498
|
+
probe_dimension?: string | undefined;
|
|
499
|
+
query_params?: Record<string, unknown> | undefined;
|
|
500
|
+
llm_on_change?: boolean | undefined;
|
|
501
|
+
llm_prompt_template?: string | undefined;
|
|
502
|
+
} | undefined;
|
|
503
|
+
cron?: {
|
|
504
|
+
prompt_template: string;
|
|
505
|
+
report_type?: string | undefined;
|
|
506
|
+
max_tokens?: number | undefined;
|
|
507
|
+
job_kind?: "prompt" | "reflection" | undefined;
|
|
508
|
+
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
509
|
+
context_sources?: string[] | undefined;
|
|
510
|
+
output_format?: "both" | "notification" | "report" | undefined;
|
|
511
|
+
} | undefined;
|
|
512
|
+
goal_trigger?: {
|
|
513
|
+
goal_id: string;
|
|
514
|
+
max_iterations?: number | undefined;
|
|
515
|
+
skip_if_active?: boolean | undefined;
|
|
516
|
+
} | undefined;
|
|
517
|
+
escalation?: {
|
|
518
|
+
enabled?: boolean | undefined;
|
|
519
|
+
target_layer?: "probe" | "cron" | "goal_trigger" | undefined;
|
|
520
|
+
target_entry_id?: string | undefined;
|
|
521
|
+
cooldown_minutes?: number | undefined;
|
|
522
|
+
max_per_hour?: number | undefined;
|
|
523
|
+
circuit_breaker_threshold?: number | undefined;
|
|
524
|
+
} | undefined;
|
|
525
|
+
baseline_results?: unknown[] | undefined;
|
|
526
|
+
last_fired_at?: string | null | undefined;
|
|
527
|
+
consecutive_failures?: number | undefined;
|
|
528
|
+
last_escalation_at?: string | null | undefined;
|
|
529
|
+
escalation_timestamps?: string[] | undefined;
|
|
530
|
+
total_executions?: number | undefined;
|
|
531
|
+
total_tokens_used?: number | undefined;
|
|
532
|
+
max_tokens_per_day?: number | undefined;
|
|
533
|
+
tokens_used_today?: number | undefined;
|
|
534
|
+
budget_reset_at?: string | null | undefined;
|
|
535
|
+
}>;
|
|
536
|
+
export type ScheduleEntry = z.infer<typeof ScheduleEntrySchema>;
|
|
537
|
+
export type ScheduleEntryInput = z.input<typeof ScheduleEntrySchema>;
|
|
538
|
+
export declare const ScheduleEntryListSchema: z.ZodArray<z.ZodObject<{
|
|
539
|
+
id: z.ZodString;
|
|
540
|
+
name: z.ZodString;
|
|
541
|
+
layer: z.ZodEnum<["heartbeat", "probe", "cron", "goal_trigger"]>;
|
|
542
|
+
trigger: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
543
|
+
type: z.ZodLiteral<"cron">;
|
|
544
|
+
expression: z.ZodString;
|
|
545
|
+
timezone: z.ZodDefault<z.ZodString>;
|
|
546
|
+
}, "strip", z.ZodTypeAny, {
|
|
547
|
+
type: "cron";
|
|
548
|
+
expression: string;
|
|
549
|
+
timezone: string;
|
|
550
|
+
}, {
|
|
551
|
+
type: "cron";
|
|
552
|
+
expression: string;
|
|
553
|
+
timezone?: string | undefined;
|
|
554
|
+
}>, z.ZodObject<{
|
|
555
|
+
type: z.ZodLiteral<"interval">;
|
|
556
|
+
seconds: z.ZodNumber;
|
|
557
|
+
jitter_factor: z.ZodDefault<z.ZodNumber>;
|
|
558
|
+
}, "strip", z.ZodTypeAny, {
|
|
559
|
+
type: "interval";
|
|
560
|
+
seconds: number;
|
|
561
|
+
jitter_factor: number;
|
|
562
|
+
}, {
|
|
563
|
+
type: "interval";
|
|
564
|
+
seconds: number;
|
|
565
|
+
jitter_factor?: number | undefined;
|
|
566
|
+
}>]>;
|
|
567
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
568
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
569
|
+
source: z.ZodDefault<z.ZodEnum<["manual", "preset", "dream"]>>;
|
|
570
|
+
preset_key: z.ZodOptional<z.ZodString>;
|
|
571
|
+
dream_suggestion_id: z.ZodOptional<z.ZodString>;
|
|
572
|
+
dependency_hints: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
573
|
+
note: z.ZodOptional<z.ZodString>;
|
|
574
|
+
}, "strip", z.ZodTypeAny, {
|
|
575
|
+
source: "manual" | "preset" | "dream";
|
|
576
|
+
dependency_hints: string[];
|
|
577
|
+
preset_key?: string | undefined;
|
|
578
|
+
dream_suggestion_id?: string | undefined;
|
|
579
|
+
note?: string | undefined;
|
|
580
|
+
}, {
|
|
581
|
+
source?: "manual" | "preset" | "dream" | undefined;
|
|
582
|
+
preset_key?: string | undefined;
|
|
583
|
+
dream_suggestion_id?: string | undefined;
|
|
584
|
+
dependency_hints?: string[] | undefined;
|
|
585
|
+
note?: string | undefined;
|
|
586
|
+
}>>;
|
|
587
|
+
heartbeat: z.ZodOptional<z.ZodObject<{
|
|
588
|
+
check_type: z.ZodEnum<["http", "tcp", "process", "disk", "custom"]>;
|
|
589
|
+
check_config: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
590
|
+
failure_threshold: z.ZodDefault<z.ZodNumber>;
|
|
591
|
+
timeout_ms: z.ZodDefault<z.ZodNumber>;
|
|
592
|
+
}, "strip", z.ZodTypeAny, {
|
|
593
|
+
timeout_ms: number;
|
|
594
|
+
check_type: "custom" | "http" | "tcp" | "process" | "disk";
|
|
595
|
+
check_config: Record<string, unknown>;
|
|
596
|
+
failure_threshold: number;
|
|
597
|
+
}, {
|
|
598
|
+
check_type: "custom" | "http" | "tcp" | "process" | "disk";
|
|
599
|
+
check_config: Record<string, unknown>;
|
|
600
|
+
timeout_ms?: number | undefined;
|
|
601
|
+
failure_threshold?: number | undefined;
|
|
602
|
+
}>>;
|
|
603
|
+
probe: z.ZodOptional<z.ZodObject<{
|
|
604
|
+
data_source_id: z.ZodString;
|
|
605
|
+
probe_dimension: z.ZodOptional<z.ZodString>;
|
|
606
|
+
query_params: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
607
|
+
change_detector: z.ZodObject<{
|
|
608
|
+
mode: z.ZodEnum<["threshold", "diff", "presence"]>;
|
|
609
|
+
threshold_value: z.ZodOptional<z.ZodNumber>;
|
|
610
|
+
baseline_window: z.ZodDefault<z.ZodNumber>;
|
|
611
|
+
}, "strip", z.ZodTypeAny, {
|
|
612
|
+
mode: "threshold" | "diff" | "presence";
|
|
613
|
+
baseline_window: number;
|
|
614
|
+
threshold_value?: number | undefined;
|
|
615
|
+
}, {
|
|
616
|
+
mode: "threshold" | "diff" | "presence";
|
|
617
|
+
threshold_value?: number | undefined;
|
|
618
|
+
baseline_window?: number | undefined;
|
|
619
|
+
}>;
|
|
620
|
+
llm_on_change: z.ZodDefault<z.ZodBoolean>;
|
|
621
|
+
llm_prompt_template: z.ZodOptional<z.ZodString>;
|
|
622
|
+
}, "strip", z.ZodTypeAny, {
|
|
623
|
+
data_source_id: string;
|
|
624
|
+
query_params: Record<string, unknown>;
|
|
625
|
+
change_detector: {
|
|
626
|
+
mode: "threshold" | "diff" | "presence";
|
|
627
|
+
baseline_window: number;
|
|
628
|
+
threshold_value?: number | undefined;
|
|
629
|
+
};
|
|
630
|
+
llm_on_change: boolean;
|
|
631
|
+
probe_dimension?: string | undefined;
|
|
632
|
+
llm_prompt_template?: string | undefined;
|
|
633
|
+
}, {
|
|
634
|
+
data_source_id: string;
|
|
635
|
+
change_detector: {
|
|
636
|
+
mode: "threshold" | "diff" | "presence";
|
|
637
|
+
threshold_value?: number | undefined;
|
|
638
|
+
baseline_window?: number | undefined;
|
|
639
|
+
};
|
|
640
|
+
probe_dimension?: string | undefined;
|
|
641
|
+
query_params?: Record<string, unknown> | undefined;
|
|
642
|
+
llm_on_change?: boolean | undefined;
|
|
643
|
+
llm_prompt_template?: string | undefined;
|
|
644
|
+
}>>;
|
|
645
|
+
escalation: z.ZodOptional<z.ZodObject<{
|
|
646
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
647
|
+
target_layer: z.ZodOptional<z.ZodEnum<["probe", "cron", "goal_trigger"]>>;
|
|
648
|
+
target_entry_id: z.ZodOptional<z.ZodString>;
|
|
649
|
+
cooldown_minutes: z.ZodDefault<z.ZodNumber>;
|
|
650
|
+
max_per_hour: z.ZodDefault<z.ZodNumber>;
|
|
651
|
+
circuit_breaker_threshold: z.ZodDefault<z.ZodNumber>;
|
|
652
|
+
}, "strip", z.ZodTypeAny, {
|
|
653
|
+
enabled: boolean;
|
|
654
|
+
cooldown_minutes: number;
|
|
655
|
+
max_per_hour: number;
|
|
656
|
+
circuit_breaker_threshold: number;
|
|
657
|
+
target_layer?: "probe" | "cron" | "goal_trigger" | undefined;
|
|
658
|
+
target_entry_id?: string | undefined;
|
|
659
|
+
}, {
|
|
660
|
+
enabled?: boolean | undefined;
|
|
661
|
+
target_layer?: "probe" | "cron" | "goal_trigger" | undefined;
|
|
662
|
+
target_entry_id?: string | undefined;
|
|
663
|
+
cooldown_minutes?: number | undefined;
|
|
664
|
+
max_per_hour?: number | undefined;
|
|
665
|
+
circuit_breaker_threshold?: number | undefined;
|
|
666
|
+
}>>;
|
|
667
|
+
baseline_results: z.ZodDefault<z.ZodArray<z.ZodUnknown, "many">>;
|
|
668
|
+
created_at: z.ZodString;
|
|
669
|
+
updated_at: z.ZodString;
|
|
670
|
+
last_fired_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
671
|
+
next_fire_at: z.ZodString;
|
|
672
|
+
consecutive_failures: z.ZodDefault<z.ZodNumber>;
|
|
673
|
+
last_escalation_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
674
|
+
escalation_timestamps: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
675
|
+
total_executions: z.ZodDefault<z.ZodNumber>;
|
|
676
|
+
total_tokens_used: z.ZodDefault<z.ZodNumber>;
|
|
677
|
+
max_tokens_per_day: z.ZodDefault<z.ZodNumber>;
|
|
678
|
+
tokens_used_today: z.ZodDefault<z.ZodNumber>;
|
|
679
|
+
budget_reset_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
680
|
+
cron: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
681
|
+
job_kind: z.ZodDefault<z.ZodEnum<["prompt", "reflection"]>>;
|
|
682
|
+
reflection_kind: z.ZodOptional<z.ZodEnum<["morning_planning", "evening_catchup", "weekly_review", "dream_consolidation"]>>;
|
|
683
|
+
prompt_template: z.ZodString;
|
|
684
|
+
context_sources: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
685
|
+
output_format: z.ZodDefault<z.ZodEnum<["notification", "report", "both"]>>;
|
|
686
|
+
report_type: z.ZodOptional<z.ZodString>;
|
|
687
|
+
max_tokens: z.ZodDefault<z.ZodNumber>;
|
|
688
|
+
}, "strip", z.ZodTypeAny, {
|
|
689
|
+
max_tokens: number;
|
|
690
|
+
job_kind: "prompt" | "reflection";
|
|
691
|
+
prompt_template: string;
|
|
692
|
+
context_sources: string[];
|
|
693
|
+
output_format: "both" | "notification" | "report";
|
|
694
|
+
report_type?: string | undefined;
|
|
695
|
+
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
696
|
+
}, {
|
|
697
|
+
prompt_template: string;
|
|
698
|
+
report_type?: string | undefined;
|
|
699
|
+
max_tokens?: number | undefined;
|
|
700
|
+
job_kind?: "prompt" | "reflection" | undefined;
|
|
701
|
+
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
702
|
+
context_sources?: string[] | undefined;
|
|
703
|
+
output_format?: "both" | "notification" | "report" | undefined;
|
|
704
|
+
}>, {
|
|
705
|
+
max_tokens: number;
|
|
706
|
+
job_kind: "prompt" | "reflection";
|
|
707
|
+
prompt_template: string;
|
|
708
|
+
context_sources: string[];
|
|
709
|
+
output_format: "both" | "notification" | "report";
|
|
710
|
+
report_type?: string | undefined;
|
|
711
|
+
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
712
|
+
}, {
|
|
713
|
+
prompt_template: string;
|
|
714
|
+
report_type?: string | undefined;
|
|
715
|
+
max_tokens?: number | undefined;
|
|
716
|
+
job_kind?: "prompt" | "reflection" | undefined;
|
|
717
|
+
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
718
|
+
context_sources?: string[] | undefined;
|
|
719
|
+
output_format?: "both" | "notification" | "report" | undefined;
|
|
720
|
+
}>>;
|
|
721
|
+
goal_trigger: z.ZodOptional<z.ZodObject<{
|
|
722
|
+
goal_id: z.ZodString;
|
|
723
|
+
max_iterations: z.ZodDefault<z.ZodNumber>;
|
|
724
|
+
skip_if_active: z.ZodDefault<z.ZodBoolean>;
|
|
725
|
+
}, "strip", z.ZodTypeAny, {
|
|
726
|
+
goal_id: string;
|
|
727
|
+
max_iterations: number;
|
|
728
|
+
skip_if_active: boolean;
|
|
729
|
+
}, {
|
|
730
|
+
goal_id: string;
|
|
731
|
+
max_iterations?: number | undefined;
|
|
732
|
+
skip_if_active?: boolean | undefined;
|
|
733
|
+
}>>;
|
|
734
|
+
}, "strip", z.ZodTypeAny, {
|
|
735
|
+
name: string;
|
|
736
|
+
id: string;
|
|
737
|
+
created_at: string;
|
|
738
|
+
updated_at: string;
|
|
739
|
+
trigger: {
|
|
740
|
+
type: "cron";
|
|
741
|
+
expression: string;
|
|
742
|
+
timezone: string;
|
|
743
|
+
} | {
|
|
744
|
+
type: "interval";
|
|
745
|
+
seconds: number;
|
|
746
|
+
jitter_factor: number;
|
|
747
|
+
};
|
|
748
|
+
layer: "heartbeat" | "probe" | "cron" | "goal_trigger";
|
|
749
|
+
enabled: boolean;
|
|
750
|
+
baseline_results: unknown[];
|
|
751
|
+
last_fired_at: string | null;
|
|
752
|
+
next_fire_at: string;
|
|
753
|
+
consecutive_failures: number;
|
|
754
|
+
last_escalation_at: string | null;
|
|
755
|
+
escalation_timestamps: string[];
|
|
756
|
+
total_executions: number;
|
|
757
|
+
total_tokens_used: number;
|
|
758
|
+
max_tokens_per_day: number;
|
|
759
|
+
tokens_used_today: number;
|
|
760
|
+
budget_reset_at: string | null;
|
|
761
|
+
metadata?: {
|
|
762
|
+
source: "manual" | "preset" | "dream";
|
|
763
|
+
dependency_hints: string[];
|
|
764
|
+
preset_key?: string | undefined;
|
|
765
|
+
dream_suggestion_id?: string | undefined;
|
|
766
|
+
note?: string | undefined;
|
|
767
|
+
} | undefined;
|
|
768
|
+
heartbeat?: {
|
|
769
|
+
timeout_ms: number;
|
|
770
|
+
check_type: "custom" | "http" | "tcp" | "process" | "disk";
|
|
771
|
+
check_config: Record<string, unknown>;
|
|
772
|
+
failure_threshold: number;
|
|
773
|
+
} | undefined;
|
|
774
|
+
probe?: {
|
|
775
|
+
data_source_id: string;
|
|
776
|
+
query_params: Record<string, unknown>;
|
|
777
|
+
change_detector: {
|
|
778
|
+
mode: "threshold" | "diff" | "presence";
|
|
779
|
+
baseline_window: number;
|
|
780
|
+
threshold_value?: number | undefined;
|
|
781
|
+
};
|
|
782
|
+
llm_on_change: boolean;
|
|
783
|
+
probe_dimension?: string | undefined;
|
|
784
|
+
llm_prompt_template?: string | undefined;
|
|
785
|
+
} | undefined;
|
|
786
|
+
cron?: {
|
|
787
|
+
max_tokens: number;
|
|
788
|
+
job_kind: "prompt" | "reflection";
|
|
789
|
+
prompt_template: string;
|
|
790
|
+
context_sources: string[];
|
|
791
|
+
output_format: "both" | "notification" | "report";
|
|
792
|
+
report_type?: string | undefined;
|
|
793
|
+
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
794
|
+
} | undefined;
|
|
795
|
+
goal_trigger?: {
|
|
796
|
+
goal_id: string;
|
|
797
|
+
max_iterations: number;
|
|
798
|
+
skip_if_active: boolean;
|
|
799
|
+
} | undefined;
|
|
800
|
+
escalation?: {
|
|
801
|
+
enabled: boolean;
|
|
802
|
+
cooldown_minutes: number;
|
|
803
|
+
max_per_hour: number;
|
|
804
|
+
circuit_breaker_threshold: number;
|
|
805
|
+
target_layer?: "probe" | "cron" | "goal_trigger" | undefined;
|
|
806
|
+
target_entry_id?: string | undefined;
|
|
807
|
+
} | undefined;
|
|
808
|
+
}, {
|
|
809
|
+
name: string;
|
|
810
|
+
id: string;
|
|
811
|
+
created_at: string;
|
|
812
|
+
updated_at: string;
|
|
813
|
+
trigger: {
|
|
814
|
+
type: "cron";
|
|
815
|
+
expression: string;
|
|
816
|
+
timezone?: string | undefined;
|
|
817
|
+
} | {
|
|
818
|
+
type: "interval";
|
|
819
|
+
seconds: number;
|
|
820
|
+
jitter_factor?: number | undefined;
|
|
821
|
+
};
|
|
822
|
+
layer: "heartbeat" | "probe" | "cron" | "goal_trigger";
|
|
823
|
+
next_fire_at: string;
|
|
824
|
+
metadata?: {
|
|
825
|
+
source?: "manual" | "preset" | "dream" | undefined;
|
|
826
|
+
preset_key?: string | undefined;
|
|
827
|
+
dream_suggestion_id?: string | undefined;
|
|
828
|
+
dependency_hints?: string[] | undefined;
|
|
829
|
+
note?: string | undefined;
|
|
830
|
+
} | undefined;
|
|
831
|
+
enabled?: boolean | undefined;
|
|
832
|
+
heartbeat?: {
|
|
833
|
+
check_type: "custom" | "http" | "tcp" | "process" | "disk";
|
|
834
|
+
check_config: Record<string, unknown>;
|
|
835
|
+
timeout_ms?: number | undefined;
|
|
836
|
+
failure_threshold?: number | undefined;
|
|
837
|
+
} | undefined;
|
|
838
|
+
probe?: {
|
|
839
|
+
data_source_id: string;
|
|
840
|
+
change_detector: {
|
|
841
|
+
mode: "threshold" | "diff" | "presence";
|
|
842
|
+
threshold_value?: number | undefined;
|
|
843
|
+
baseline_window?: number | undefined;
|
|
844
|
+
};
|
|
845
|
+
probe_dimension?: string | undefined;
|
|
846
|
+
query_params?: Record<string, unknown> | undefined;
|
|
847
|
+
llm_on_change?: boolean | undefined;
|
|
848
|
+
llm_prompt_template?: string | undefined;
|
|
849
|
+
} | undefined;
|
|
850
|
+
cron?: {
|
|
851
|
+
prompt_template: string;
|
|
852
|
+
report_type?: string | undefined;
|
|
853
|
+
max_tokens?: number | undefined;
|
|
854
|
+
job_kind?: "prompt" | "reflection" | undefined;
|
|
855
|
+
reflection_kind?: "morning_planning" | "evening_catchup" | "weekly_review" | "dream_consolidation" | undefined;
|
|
856
|
+
context_sources?: string[] | undefined;
|
|
857
|
+
output_format?: "both" | "notification" | "report" | undefined;
|
|
858
|
+
} | undefined;
|
|
859
|
+
goal_trigger?: {
|
|
860
|
+
goal_id: string;
|
|
861
|
+
max_iterations?: number | undefined;
|
|
862
|
+
skip_if_active?: boolean | undefined;
|
|
863
|
+
} | undefined;
|
|
864
|
+
escalation?: {
|
|
865
|
+
enabled?: boolean | undefined;
|
|
866
|
+
target_layer?: "probe" | "cron" | "goal_trigger" | undefined;
|
|
867
|
+
target_entry_id?: string | undefined;
|
|
868
|
+
cooldown_minutes?: number | undefined;
|
|
869
|
+
max_per_hour?: number | undefined;
|
|
870
|
+
circuit_breaker_threshold?: number | undefined;
|
|
871
|
+
} | undefined;
|
|
872
|
+
baseline_results?: unknown[] | undefined;
|
|
873
|
+
last_fired_at?: string | null | undefined;
|
|
874
|
+
consecutive_failures?: number | undefined;
|
|
875
|
+
last_escalation_at?: string | null | undefined;
|
|
876
|
+
escalation_timestamps?: string[] | undefined;
|
|
877
|
+
total_executions?: number | undefined;
|
|
878
|
+
total_tokens_used?: number | undefined;
|
|
879
|
+
max_tokens_per_day?: number | undefined;
|
|
880
|
+
tokens_used_today?: number | undefined;
|
|
881
|
+
budget_reset_at?: string | null | undefined;
|
|
882
|
+
}>, "many">;
|
|
883
|
+
export declare const ScheduleResultSchema: z.ZodObject<{
|
|
884
|
+
entry_id: z.ZodString;
|
|
885
|
+
status: z.ZodEnum<["ok", "degraded", "down", "skipped", "error", "escalated"]>;
|
|
886
|
+
duration_ms: z.ZodNumber;
|
|
887
|
+
error_message: z.ZodOptional<z.ZodString>;
|
|
888
|
+
fired_at: z.ZodString;
|
|
889
|
+
layer: z.ZodOptional<z.ZodEnum<["heartbeat", "probe", "cron", "goal_trigger"]>>;
|
|
890
|
+
tokens_used: z.ZodDefault<z.ZodNumber>;
|
|
891
|
+
escalated_to: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
892
|
+
output_summary: z.ZodOptional<z.ZodString>;
|
|
893
|
+
change_detected: z.ZodOptional<z.ZodBoolean>;
|
|
894
|
+
}, "strip", z.ZodTypeAny, {
|
|
895
|
+
status: "error" | "ok" | "down" | "skipped" | "degraded" | "escalated";
|
|
896
|
+
entry_id: string;
|
|
897
|
+
duration_ms: number;
|
|
898
|
+
fired_at: string;
|
|
899
|
+
tokens_used: number;
|
|
900
|
+
escalated_to: string | null;
|
|
901
|
+
layer?: "heartbeat" | "probe" | "cron" | "goal_trigger" | undefined;
|
|
902
|
+
error_message?: string | undefined;
|
|
903
|
+
output_summary?: string | undefined;
|
|
904
|
+
change_detected?: boolean | undefined;
|
|
905
|
+
}, {
|
|
906
|
+
status: "error" | "ok" | "down" | "skipped" | "degraded" | "escalated";
|
|
907
|
+
entry_id: string;
|
|
908
|
+
duration_ms: number;
|
|
909
|
+
fired_at: string;
|
|
910
|
+
layer?: "heartbeat" | "probe" | "cron" | "goal_trigger" | undefined;
|
|
911
|
+
error_message?: string | undefined;
|
|
912
|
+
tokens_used?: number | undefined;
|
|
913
|
+
escalated_to?: string | null | undefined;
|
|
914
|
+
output_summary?: string | undefined;
|
|
915
|
+
change_detected?: boolean | undefined;
|
|
916
|
+
}>;
|
|
917
|
+
export type ScheduleResult = z.infer<typeof ScheduleResultSchema>;
|
|
918
|
+
//# sourceMappingURL=schedule.d.ts.map
|