pulseed 0.6.2 → 0.6.4
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/dist/adapters/agents/claude-api.d.ts +2 -2
- package/dist/adapters/agents/claude-api.d.ts.map +1 -1
- package/dist/adapters/agents/claude-api.js +3 -2
- package/dist/adapters/agents/claude-api.js.map +1 -1
- package/dist/adapters/agents/openai-codex.d.ts +3 -0
- package/dist/adapters/agents/openai-codex.d.ts.map +1 -1
- package/dist/adapters/agents/openai-codex.js +5 -0
- package/dist/adapters/agents/openai-codex.js.map +1 -1
- package/dist/adapters/datasources/artifact-metric-datasource.d.ts +13 -0
- package/dist/adapters/datasources/artifact-metric-datasource.d.ts.map +1 -1
- package/dist/adapters/datasources/artifact-metric-datasource.js +257 -8
- package/dist/adapters/datasources/artifact-metric-datasource.js.map +1 -1
- package/dist/base/config/global-config.d.ts +4 -4
- package/dist/base/llm/codex-llm-client.d.ts +3 -0
- package/dist/base/llm/codex-llm-client.d.ts.map +1 -1
- package/dist/base/llm/codex-llm-client.js +71 -7
- package/dist/base/llm/codex-llm-client.js.map +1 -1
- package/dist/base/llm/llm-client.d.ts +2 -0
- package/dist/base/llm/llm-client.d.ts.map +1 -1
- package/dist/base/llm/llm-client.js +2 -2
- package/dist/base/llm/llm-client.js.map +1 -1
- package/dist/base/llm/ollama-client.d.ts.map +1 -1
- package/dist/base/llm/ollama-client.js +12 -0
- package/dist/base/llm/ollama-client.js.map +1 -1
- package/dist/base/llm/openai-client.d.ts +4 -0
- package/dist/base/llm/openai-client.d.ts.map +1 -1
- package/dist/base/llm/openai-client.js +29 -15
- package/dist/base/llm/openai-client.js.map +1 -1
- package/dist/base/llm/provider-config.d.ts +12 -2
- package/dist/base/llm/provider-config.d.ts.map +1 -1
- package/dist/base/llm/provider-config.js +46 -5
- package/dist/base/llm/provider-config.js.map +1 -1
- package/dist/base/llm/provider-factory.d.ts +1 -1
- package/dist/base/llm/provider-factory.d.ts.map +1 -1
- package/dist/base/llm/provider-factory.js +7 -2
- package/dist/base/llm/provider-factory.js.map +1 -1
- package/dist/base/protocol/exact-protocol.d.ts +47 -0
- package/dist/base/protocol/exact-protocol.d.ts.map +1 -0
- package/dist/base/protocol/exact-protocol.js +175 -0
- package/dist/base/protocol/exact-protocol.js.map +1 -0
- package/dist/base/types/core.d.ts +1 -1
- package/dist/base/types/core.d.ts.map +1 -1
- package/dist/base/types/core.js +2 -0
- package/dist/base/types/core.js.map +1 -1
- package/dist/base/utils/execFileNoThrow.d.ts +4 -0
- package/dist/base/utils/execFileNoThrow.d.ts.map +1 -1
- package/dist/base/utils/execFileNoThrow.js +81 -2
- package/dist/base/utils/execFileNoThrow.js.map +1 -1
- package/dist/base/utils/workspace-path.d.ts +6 -0
- package/dist/base/utils/workspace-path.d.ts.map +1 -0
- package/dist/base/utils/workspace-path.js +24 -0
- package/dist/base/utils/workspace-path.js.map +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/interface/chat/chat-event-state.d.ts +2 -0
- package/dist/interface/chat/chat-event-state.d.ts.map +1 -1
- package/dist/interface/chat/chat-event-state.js +22 -41
- package/dist/interface/chat/chat-event-state.js.map +1 -1
- package/dist/interface/chat/chat-events.d.ts +15 -1
- package/dist/interface/chat/chat-events.d.ts.map +1 -1
- package/dist/interface/chat/chat-history.d.ts +3816 -192
- package/dist/interface/chat/chat-history.d.ts.map +1 -1
- package/dist/interface/chat/chat-history.js +529 -5
- package/dist/interface/chat/chat-history.js.map +1 -1
- package/dist/interface/chat/chat-runner-command-helpers.d.ts +1 -0
- package/dist/interface/chat/chat-runner-command-helpers.d.ts.map +1 -1
- package/dist/interface/chat/chat-runner-command-helpers.js +1 -0
- package/dist/interface/chat/chat-runner-command-helpers.js.map +1 -1
- package/dist/interface/chat/chat-runner-commands.d.ts +3 -1
- package/dist/interface/chat/chat-runner-commands.d.ts.map +1 -1
- package/dist/interface/chat/chat-runner-commands.js +175 -22
- package/dist/interface/chat/chat-runner-commands.js.map +1 -1
- package/dist/interface/chat/chat-runner-contracts.d.ts +6 -1
- package/dist/interface/chat/chat-runner-contracts.d.ts.map +1 -1
- package/dist/interface/chat/chat-runner-event-bridge.d.ts +13 -1
- package/dist/interface/chat/chat-runner-event-bridge.d.ts.map +1 -1
- package/dist/interface/chat/chat-runner-event-bridge.js +51 -3
- package/dist/interface/chat/chat-runner-event-bridge.js.map +1 -1
- package/dist/interface/chat/chat-runner-routes.d.ts +5 -17
- package/dist/interface/chat/chat-runner-routes.d.ts.map +1 -1
- package/dist/interface/chat/chat-runner-routes.js +80 -51
- package/dist/interface/chat/chat-runner-routes.js.map +1 -1
- package/dist/interface/chat/chat-runner-runtime.d.ts.map +1 -1
- package/dist/interface/chat/chat-runner-runtime.js +4 -0
- package/dist/interface/chat/chat-runner-runtime.js.map +1 -1
- package/dist/interface/chat/chat-runner.d.ts +8 -1
- package/dist/interface/chat/chat-runner.d.ts.map +1 -1
- package/dist/interface/chat/chat-runner.js +172 -49
- package/dist/interface/chat/chat-runner.js.map +1 -1
- package/dist/interface/chat/chat-session-store.d.ts +3 -0
- package/dist/interface/chat/chat-session-store.d.ts.map +1 -1
- package/dist/interface/chat/chat-session-store.js +12 -0
- package/dist/interface/chat/chat-session-store.js.map +1 -1
- package/dist/interface/chat/chat-state-service.d.ts +1 -0
- package/dist/interface/chat/chat-state-service.d.ts.map +1 -1
- package/dist/interface/chat/chat-state-service.js +1 -0
- package/dist/interface/chat/chat-state-service.js.map +1 -1
- package/dist/interface/chat/cross-platform-session.d.ts +15 -0
- package/dist/interface/chat/cross-platform-session.d.ts.map +1 -1
- package/dist/interface/chat/cross-platform-session.js +260 -42
- package/dist/interface/chat/cross-platform-session.js.map +1 -1
- package/dist/interface/chat/failure-recovery.d.ts.map +1 -1
- package/dist/interface/chat/failure-recovery.js +15 -1
- package/dist/interface/chat/failure-recovery.js.map +1 -1
- package/dist/interface/chat/freeform-route-classifier.d.ts +2 -2
- package/dist/interface/chat/ingress-router.d.ts +3 -0
- package/dist/interface/chat/ingress-router.d.ts.map +1 -1
- package/dist/interface/chat/ingress-router.js +3 -0
- package/dist/interface/chat/ingress-router.js.map +1 -1
- package/dist/interface/chat/model-request-builder.d.ts +37 -0
- package/dist/interface/chat/model-request-builder.d.ts.map +1 -0
- package/dist/interface/chat/model-request-builder.js +76 -0
- package/dist/interface/chat/model-request-builder.js.map +1 -0
- package/dist/interface/chat/turn-context.d.ts +200 -0
- package/dist/interface/chat/turn-context.d.ts.map +1 -0
- package/dist/interface/chat/turn-context.js +249 -0
- package/dist/interface/chat/turn-context.js.map +1 -0
- package/dist/interface/chat/turn-protocol.d.ts +35 -0
- package/dist/interface/chat/turn-protocol.d.ts.map +1 -0
- package/dist/interface/chat/turn-protocol.js +27 -0
- package/dist/interface/chat/turn-protocol.js.map +1 -0
- package/dist/interface/chat/user-input.d.ts +55 -0
- package/dist/interface/chat/user-input.d.ts.map +1 -0
- package/dist/interface/chat/user-input.js +52 -0
- package/dist/interface/chat/user-input.js.map +1 -0
- package/dist/interface/cli/cli-command-registry.d.ts +1 -1
- package/dist/interface/cli/cli-command-registry.d.ts.map +1 -1
- package/dist/interface/cli/cli-command-registry.js +12 -16
- package/dist/interface/cli/cli-command-registry.js.map +1 -1
- package/dist/interface/cli/commands/config.d.ts.map +1 -1
- package/dist/interface/cli/commands/config.js +12 -1
- package/dist/interface/cli/commands/config.js.map +1 -1
- package/dist/interface/cli/commands/daemon-shared.d.ts +8 -0
- package/dist/interface/cli/commands/daemon-shared.d.ts.map +1 -1
- package/dist/interface/cli/commands/daemon-shared.js +18 -2
- package/dist/interface/cli/commands/daemon-shared.js.map +1 -1
- package/dist/interface/cli/commands/daemon.d.ts.map +1 -1
- package/dist/interface/cli/commands/daemon.js +64 -2
- package/dist/interface/cli/commands/daemon.js.map +1 -1
- package/dist/interface/cli/commands/doctor.d.ts +1 -0
- package/dist/interface/cli/commands/doctor.d.ts.map +1 -1
- package/dist/interface/cli/commands/doctor.js +83 -1
- package/dist/interface/cli/commands/doctor.js.map +1 -1
- package/dist/interface/cli/commands/goal-dispatch.d.ts.map +1 -1
- package/dist/interface/cli/commands/goal-dispatch.js +19 -7
- package/dist/interface/cli/commands/goal-dispatch.js.map +1 -1
- package/dist/interface/cli/commands/goal-raw.d.ts +1 -0
- package/dist/interface/cli/commands/goal-raw.d.ts.map +1 -1
- package/dist/interface/cli/commands/goal-raw.js +34 -2
- package/dist/interface/cli/commands/goal-raw.js.map +1 -1
- package/dist/interface/cli/commands/goal-utils.d.ts.map +1 -1
- package/dist/interface/cli/commands/goal-utils.js +3 -5
- package/dist/interface/cli/commands/goal-utils.js.map +1 -1
- package/dist/interface/cli/commands/run.d.ts.map +1 -1
- package/dist/interface/cli/commands/run.js +50 -0
- package/dist/interface/cli/commands/run.js.map +1 -1
- package/dist/interface/cli/commands/setup/import/flow.d.ts.map +1 -1
- package/dist/interface/cli/commands/setup/import/flow.js +2 -0
- package/dist/interface/cli/commands/setup/import/flow.js.map +1 -1
- package/dist/interface/cli/commands/setup/import/provider.d.ts.map +1 -1
- package/dist/interface/cli/commands/setup/import/provider.js +5 -1
- package/dist/interface/cli/commands/setup/import/provider.js.map +1 -1
- package/dist/interface/cli/commands/setup/import/types.d.ts +1 -0
- package/dist/interface/cli/commands/setup/import/types.d.ts.map +1 -1
- package/dist/interface/cli/commands/setup-shared.d.ts +2 -0
- package/dist/interface/cli/commands/setup-shared.d.ts.map +1 -1
- package/dist/interface/cli/commands/setup-shared.js +4 -1
- package/dist/interface/cli/commands/setup-shared.js.map +1 -1
- package/dist/interface/cli/commands/setup-wizard.d.ts +2 -0
- package/dist/interface/cli/commands/setup-wizard.d.ts.map +1 -1
- package/dist/interface/cli/commands/setup-wizard.js +36 -4
- package/dist/interface/cli/commands/setup-wizard.js.map +1 -1
- package/dist/interface/cli/commands/setup.d.ts.map +1 -1
- package/dist/interface/cli/commands/setup.js +13 -1
- package/dist/interface/cli/commands/setup.js.map +1 -1
- package/dist/interface/cli/setup.d.ts +1 -1
- package/dist/interface/cli/setup.d.ts.map +1 -1
- package/dist/interface/cli/setup.js +4 -3
- package/dist/interface/cli/setup.js.map +1 -1
- package/dist/interface/cli/utils/loop-runner.d.ts +1 -0
- package/dist/interface/cli/utils/loop-runner.d.ts.map +1 -1
- package/dist/interface/cli/utils/loop-runner.js +12 -3
- package/dist/interface/cli/utils/loop-runner.js.map +1 -1
- package/dist/interface/tui/app.d.ts +6 -1
- package/dist/interface/tui/app.d.ts.map +1 -1
- package/dist/interface/tui/app.js +29 -12
- package/dist/interface/tui/app.js.map +1 -1
- package/dist/interface/tui/bash-mode.d.ts.map +1 -1
- package/dist/interface/tui/bash-mode.js +2 -9
- package/dist/interface/tui/bash-mode.js.map +1 -1
- package/dist/interface/tui/chat/suggestions.js +1 -1
- package/dist/interface/tui/chat/suggestions.js.map +1 -1
- package/dist/interface/tui/chat/viewport.d.ts.map +1 -1
- package/dist/interface/tui/chat/viewport.js +57 -11
- package/dist/interface/tui/chat/viewport.js.map +1 -1
- package/dist/interface/tui/entry-deps.d.ts +6 -1
- package/dist/interface/tui/entry-deps.d.ts.map +1 -1
- package/dist/interface/tui/entry-deps.js +3 -0
- package/dist/interface/tui/entry-deps.js.map +1 -1
- package/dist/interface/tui/entry.d.ts.map +1 -1
- package/dist/interface/tui/entry.js +6 -2
- package/dist/interface/tui/entry.js.map +1 -1
- package/dist/interface/tui/input-action.d.ts.map +1 -1
- package/dist/interface/tui/input-action.js +3 -2
- package/dist/interface/tui/input-action.js.map +1 -1
- package/dist/interface/tui/intent-recognizer.d.ts.map +1 -1
- package/dist/interface/tui/intent-recognizer.js +21 -33
- package/dist/interface/tui/intent-recognizer.js.map +1 -1
- package/dist/orchestrator/execution/adapter-layer.d.ts +6 -1
- package/dist/orchestrator/execution/adapter-layer.d.ts.map +1 -1
- package/dist/orchestrator/execution/adapter-layer.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-command-classifier.d.ts +12 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-command-classifier.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-command-classifier.js +16 -31
- package/dist/orchestrator/execution/agent-loop/agent-loop-command-classifier.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-compaction-record.d.ts +75 -0
- package/dist/orchestrator/execution/agent-loop/agent-loop-compaction-record.d.ts.map +1 -0
- package/dist/orchestrator/execution/agent-loop/agent-loop-compaction-record.js +10 -0
- package/dist/orchestrator/execution/agent-loop/agent-loop-compaction-record.js.map +1 -0
- package/dist/orchestrator/execution/agent-loop/agent-loop-compactor.d.ts +3 -2
- package/dist/orchestrator/execution/agent-loop/agent-loop-compactor.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-compactor.js +185 -22
- package/dist/orchestrator/execution/agent-loop/agent-loop-compactor.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-context-assembler.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-context-assembler.js +12 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-context-assembler.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-default-profile.d.ts +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-default-profile.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-default-profile.js +11 -2
- package/dist/orchestrator/execution/agent-loop/agent-loop-default-profile.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-events.d.ts +8 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-events.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-events.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-history.d.ts +3 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-history.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-history.js +12 -3
- package/dist/orchestrator/execution/agent-loop/agent-loop-history.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-model-client.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-model-client.js +8 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-model-client.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-model.d.ts +39 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-model.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-model.js +21 -0
- package/dist/orchestrator/execution/agent-loop/agent-loop-model.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-result.d.ts +17 -11
- package/dist/orchestrator/execution/agent-loop/agent-loop-result.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-session-state.d.ts +4 -0
- package/dist/orchestrator/execution/agent-loop/agent-loop-session-state.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-session-state.js +135 -0
- package/dist/orchestrator/execution/agent-loop/agent-loop-session-state.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-tool-runtime.d.ts +3 -2
- package/dist/orchestrator/execution/agent-loop/agent-loop-tool-runtime.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-tool-runtime.js +68 -61
- package/dist/orchestrator/execution/agent-loop/agent-loop-tool-runtime.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-turn-context.d.ts +3 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-turn-context.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-loop-turn-context.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-timeline.d.ts +12 -1
- package/dist/orchestrator/execution/agent-loop/agent-timeline.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/agent-timeline.js +19 -56
- package/dist/orchestrator/execution/agent-loop/agent-timeline.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/anthropic-messages-agent-loop-model-client.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/anthropic-messages-agent-loop-model-client.js +13 -4
- package/dist/orchestrator/execution/agent-loop/anthropic-messages-agent-loop-model-client.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/bounded-agent-loop-runner.d.ts +12 -0
- package/dist/orchestrator/execution/agent-loop/bounded-agent-loop-runner.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/bounded-agent-loop-runner.js +404 -79
- package/dist/orchestrator/execution/agent-loop/bounded-agent-loop-runner.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/chat-agent-loop-runner.d.ts +1 -1
- package/dist/orchestrator/execution/agent-loop/chat-agent-loop-runner.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/chat-agent-loop-runner.js +80 -12
- package/dist/orchestrator/execution/agent-loop/chat-agent-loop-runner.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/chat-display-output.d.ts +1 -0
- package/dist/orchestrator/execution/agent-loop/chat-display-output.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/chat-display-output.js +3 -1
- package/dist/orchestrator/execution/agent-loop/chat-display-output.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/index.d.ts +3 -0
- package/dist/orchestrator/execution/agent-loop/index.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/index.js +3 -0
- package/dist/orchestrator/execution/agent-loop/index.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/openai-responses-agent-loop-model-client.d.ts +1 -0
- package/dist/orchestrator/execution/agent-loop/openai-responses-agent-loop-model-client.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/openai-responses-agent-loop-model-client.js +56 -11
- package/dist/orchestrator/execution/agent-loop/openai-responses-agent-loop-model-client.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/response-item-tool-router.d.ts +20 -0
- package/dist/orchestrator/execution/agent-loop/response-item-tool-router.d.ts.map +1 -0
- package/dist/orchestrator/execution/agent-loop/response-item-tool-router.js +180 -0
- package/dist/orchestrator/execution/agent-loop/response-item-tool-router.js.map +1 -0
- package/dist/orchestrator/execution/agent-loop/response-item.d.ts +805 -0
- package/dist/orchestrator/execution/agent-loop/response-item.d.ts.map +1 -0
- package/dist/orchestrator/execution/agent-loop/response-item.js +104 -0
- package/dist/orchestrator/execution/agent-loop/response-item.js.map +1 -0
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-context.d.ts +7 -2
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-context.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-context.js +20 -1
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-context.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-result.d.ts +5 -3
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-result.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-result.js +110 -10
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-result.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-runner.d.ts +2 -0
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-runner.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-runner.js +9 -4
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-runner.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-verification.d.ts +0 -1
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-verification.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-verification.js +7 -87
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-verification.js.map +1 -1
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-worktree.d.ts.map +1 -1
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-worktree.js +25 -0
- package/dist/orchestrator/execution/agent-loop/task-agent-loop-worktree.js.map +1 -1
- package/dist/orchestrator/execution/context/issue-context-fetcher.d.ts +5 -1
- package/dist/orchestrator/execution/context/issue-context-fetcher.d.ts.map +1 -1
- package/dist/orchestrator/execution/context/issue-context-fetcher.js +7 -4
- package/dist/orchestrator/execution/context/issue-context-fetcher.js.map +1 -1
- package/dist/orchestrator/execution/task/task-artifact-contract.d.ts +18 -0
- package/dist/orchestrator/execution/task/task-artifact-contract.d.ts.map +1 -0
- package/dist/orchestrator/execution/task/task-artifact-contract.js +176 -0
- package/dist/orchestrator/execution/task/task-artifact-contract.js.map +1 -0
- package/dist/orchestrator/execution/task/task-diff-capture.d.ts +14 -1
- package/dist/orchestrator/execution/task/task-diff-capture.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-diff-capture.js +269 -17
- package/dist/orchestrator/execution/task/task-diff-capture.js.map +1 -1
- package/dist/orchestrator/execution/task/task-execution-helpers.d.ts +1 -0
- package/dist/orchestrator/execution/task/task-execution-helpers.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-execution-helpers.js +76 -17
- package/dist/orchestrator/execution/task/task-execution-helpers.js.map +1 -1
- package/dist/orchestrator/execution/task/task-executor.d.ts +16 -1
- package/dist/orchestrator/execution/task/task-executor.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-executor.js +55 -50
- package/dist/orchestrator/execution/task/task-executor.js.map +1 -1
- package/dist/orchestrator/execution/task/task-generation.d.ts +54 -1
- package/dist/orchestrator/execution/task/task-generation.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-generation.js +19 -3
- package/dist/orchestrator/execution/task/task-generation.js.map +1 -1
- package/dist/orchestrator/execution/task/task-lifecycle-runner.d.ts +4 -3
- package/dist/orchestrator/execution/task/task-lifecycle-runner.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-lifecycle-runner.js +32 -5
- package/dist/orchestrator/execution/task/task-lifecycle-runner.js.map +1 -1
- package/dist/orchestrator/execution/task/task-lifecycle.d.ts +5 -4
- package/dist/orchestrator/execution/task/task-lifecycle.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-lifecycle.js +61 -11
- package/dist/orchestrator/execution/task/task-lifecycle.js.map +1 -1
- package/dist/orchestrator/execution/task/task-outcome-ledger.d.ts +8 -0
- package/dist/orchestrator/execution/task/task-outcome-ledger.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-outcome-ledger.js +59 -3
- package/dist/orchestrator/execution/task/task-outcome-ledger.js.map +1 -1
- package/dist/orchestrator/execution/task/task-prompt-builder.d.ts +3 -1
- package/dist/orchestrator/execution/task/task-prompt-builder.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-prompt-builder.js +23 -12
- package/dist/orchestrator/execution/task/task-prompt-builder.js.map +1 -1
- package/dist/orchestrator/execution/task/task-verifier-rules.d.ts +5 -2
- package/dist/orchestrator/execution/task/task-verifier-rules.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-verifier-rules.js +346 -104
- package/dist/orchestrator/execution/task/task-verifier-rules.js.map +1 -1
- package/dist/orchestrator/execution/task/task-verifier-types.d.ts +13 -0
- package/dist/orchestrator/execution/task/task-verifier-types.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-verifier-types.js.map +1 -1
- package/dist/orchestrator/execution/task/task-verifier.d.ts +5 -4
- package/dist/orchestrator/execution/task/task-verifier.d.ts.map +1 -1
- package/dist/orchestrator/execution/task/task-verifier.js +237 -22
- package/dist/orchestrator/execution/task/task-verifier.js.map +1 -1
- package/dist/orchestrator/execution/task/task-workspace.d.ts +13 -0
- package/dist/orchestrator/execution/task/task-workspace.d.ts.map +1 -0
- package/dist/orchestrator/execution/task/task-workspace.js +32 -0
- package/dist/orchestrator/execution/task/task-workspace.js.map +1 -0
- package/dist/orchestrator/execution/types/task-group.d.ts +76 -5
- package/dist/orchestrator/execution/types/task-group.d.ts.map +1 -1
- package/dist/orchestrator/execution/types/task.d.ts +117 -3
- package/dist/orchestrator/execution/types/task.d.ts.map +1 -1
- package/dist/orchestrator/execution/types/task.js +12 -0
- package/dist/orchestrator/execution/types/task.js.map +1 -1
- package/dist/orchestrator/goal/types/goal.d.ts +6 -6
- package/dist/orchestrator/loop/durable-loop/iteration-kernel.d.ts +1 -0
- package/dist/orchestrator/loop/durable-loop/iteration-kernel.d.ts.map +1 -1
- package/dist/orchestrator/loop/durable-loop/iteration-kernel.js +2 -2
- package/dist/orchestrator/loop/durable-loop/iteration-kernel.js.map +1 -1
- package/dist/orchestrator/loop/durable-loop/preparation.d.ts.map +1 -1
- package/dist/orchestrator/loop/durable-loop/preparation.js +7 -1
- package/dist/orchestrator/loop/durable-loop/preparation.js.map +1 -1
- package/dist/orchestrator/loop/durable-loop/task-cycle.d.ts +2 -1
- package/dist/orchestrator/loop/durable-loop/task-cycle.d.ts.map +1 -1
- package/dist/orchestrator/loop/durable-loop/task-cycle.js +2 -2
- package/dist/orchestrator/loop/durable-loop/task-cycle.js.map +1 -1
- package/dist/orchestrator/loop/durable-loop.d.ts +3 -2
- package/dist/orchestrator/loop/durable-loop.d.ts.map +1 -1
- package/dist/orchestrator/loop/durable-loop.js +26 -6
- package/dist/orchestrator/loop/durable-loop.js.map +1 -1
- package/dist/platform/corrections/memory-correction-ledger.d.ts +30 -30
- package/dist/platform/corrections/memory-governance.d.ts +2 -2
- package/dist/platform/knowledge/memory/memory-selection.d.ts.map +1 -1
- package/dist/platform/knowledge/memory/memory-selection.js +24 -18
- package/dist/platform/knowledge/memory/memory-selection.js.map +1 -1
- package/dist/platform/knowledge/types/agent-memory.d.ts +30 -30
- package/dist/platform/observation/context-provider/collector.d.ts.map +1 -1
- package/dist/platform/observation/context-provider/collector.js +89 -24
- package/dist/platform/observation/context-provider/collector.js.map +1 -1
- package/dist/platform/observation/data-source-adapter.d.ts +2 -0
- package/dist/platform/observation/data-source-adapter.d.ts.map +1 -1
- package/dist/platform/observation/data-source-adapter.js.map +1 -1
- package/dist/platform/observation/observation-apply.d.ts.map +1 -1
- package/dist/platform/observation/observation-apply.js +8 -2
- package/dist/platform/observation/observation-apply.js.map +1 -1
- package/dist/platform/observation/observation-engine.d.ts.map +1 -1
- package/dist/platform/observation/observation-engine.js +154 -67
- package/dist/platform/observation/observation-engine.js.map +1 -1
- package/dist/platform/observation/observation-helpers.d.ts +2 -0
- package/dist/platform/observation/observation-helpers.d.ts.map +1 -1
- package/dist/platform/observation/observation-helpers.js.map +1 -1
- package/dist/platform/observation/types/data-source.d.ts +60 -0
- package/dist/platform/observation/types/data-source.d.ts.map +1 -1
- package/dist/platform/observation/types/data-source.js +5 -0
- package/dist/platform/observation/types/data-source.js.map +1 -1
- package/dist/platform/observation/workspace-context.d.ts.map +1 -1
- package/dist/platform/observation/workspace-context.js +13 -18
- package/dist/platform/observation/workspace-context.js.map +1 -1
- package/dist/platform/soil/contracts.d.ts +74 -74
- package/dist/reporting/types/report.d.ts +7 -0
- package/dist/reporting/types/report.d.ts.map +1 -1
- package/dist/runtime/approval-broker.d.ts +12 -0
- package/dist/runtime/approval-broker.d.ts.map +1 -1
- package/dist/runtime/approval-broker.js +27 -7
- package/dist/runtime/approval-broker.js.map +1 -1
- package/dist/runtime/control/daemon-runtime-control-executor.d.ts.map +1 -1
- package/dist/runtime/control/daemon-runtime-control-executor.js +9 -4
- package/dist/runtime/control/daemon-runtime-control-executor.js.map +1 -1
- package/dist/runtime/control/runtime-control-intent.d.ts.map +1 -1
- package/dist/runtime/control/runtime-control-intent.js +3 -2
- package/dist/runtime/control/runtime-control-intent.js.map +1 -1
- package/dist/runtime/control/runtime-control-service.d.ts +2 -1
- package/dist/runtime/control/runtime-control-service.d.ts.map +1 -1
- package/dist/runtime/control/runtime-control-service.js +9 -2
- package/dist/runtime/control/runtime-control-service.js.map +1 -1
- package/dist/runtime/control/runtime-target-resolver.js +2 -0
- package/dist/runtime/control/runtime-target-resolver.js.map +1 -1
- package/dist/runtime/daemon/runner-goal-cycle.d.ts.map +1 -1
- package/dist/runtime/daemon/runner-goal-cycle.js +1 -2
- package/dist/runtime/daemon/runner-goal-cycle.js.map +1 -1
- package/dist/runtime/daemon/runner-recovery.d.ts +17 -3
- package/dist/runtime/daemon/runner-recovery.d.ts.map +1 -1
- package/dist/runtime/daemon/runner-recovery.js +50 -12
- package/dist/runtime/daemon/runner-recovery.js.map +1 -1
- package/dist/runtime/daemon/runner-startup.d.ts.map +1 -1
- package/dist/runtime/daemon/runner-startup.js +18 -1
- package/dist/runtime/daemon/runner-startup.js.map +1 -1
- package/dist/runtime/daemon/runner.d.ts.map +1 -1
- package/dist/runtime/daemon/runner.js +3 -2
- package/dist/runtime/daemon/runner.js.map +1 -1
- package/dist/runtime/daemon/runtime-ownership.d.ts +0 -1
- package/dist/runtime/daemon/runtime-ownership.d.ts.map +1 -1
- package/dist/runtime/daemon/runtime-ownership.js +18 -18
- package/dist/runtime/daemon/runtime-ownership.js.map +1 -1
- package/dist/runtime/daemon/wait-deadline-resolver.d.ts.map +1 -1
- package/dist/runtime/daemon/wait-deadline-resolver.js +2 -0
- package/dist/runtime/daemon/wait-deadline-resolver.js.map +1 -1
- package/dist/runtime/evidence-answer.d.ts.map +1 -1
- package/dist/runtime/evidence-answer.js +34 -7
- package/dist/runtime/evidence-answer.js.map +1 -1
- package/dist/runtime/executor/goal-worker.d.ts +6 -1
- package/dist/runtime/executor/goal-worker.d.ts.map +1 -1
- package/dist/runtime/executor/goal-worker.js +18 -1
- package/dist/runtime/executor/goal-worker.js.map +1 -1
- package/dist/runtime/executor/loop-supervisor.d.ts +1 -0
- package/dist/runtime/executor/loop-supervisor.d.ts.map +1 -1
- package/dist/runtime/executor/loop-supervisor.js +58 -6
- package/dist/runtime/executor/loop-supervisor.js.map +1 -1
- package/dist/runtime/gateway/channel-adapter.d.ts +3 -0
- package/dist/runtime/gateway/channel-adapter.d.ts.map +1 -1
- package/dist/runtime/gateway/channel-display-policy.d.ts +42 -0
- package/dist/runtime/gateway/channel-display-policy.d.ts.map +1 -0
- package/dist/runtime/gateway/channel-display-policy.js +85 -0
- package/dist/runtime/gateway/channel-display-policy.js.map +1 -0
- package/dist/runtime/gateway/chat-event-rendering.d.ts +2 -1
- package/dist/runtime/gateway/chat-event-rendering.d.ts.map +1 -1
- package/dist/runtime/gateway/chat-event-rendering.js +2 -0
- package/dist/runtime/gateway/chat-event-rendering.js.map +1 -1
- package/dist/runtime/gateway/chat-session-dispatch.d.ts.map +1 -1
- package/dist/runtime/gateway/chat-session-dispatch.js +4 -9
- package/dist/runtime/gateway/chat-session-dispatch.js.map +1 -1
- package/dist/runtime/gateway/chat-session-port.d.ts +2 -0
- package/dist/runtime/gateway/chat-session-port.d.ts.map +1 -1
- package/dist/runtime/gateway/chat-session-port.js.map +1 -1
- package/dist/runtime/gateway/discord-gateway-adapter.d.ts +4 -0
- package/dist/runtime/gateway/discord-gateway-adapter.d.ts.map +1 -1
- package/dist/runtime/gateway/discord-gateway-adapter.js +100 -31
- package/dist/runtime/gateway/discord-gateway-adapter.js.map +1 -1
- package/dist/runtime/gateway/index.d.ts +4 -0
- package/dist/runtime/gateway/index.d.ts.map +1 -1
- package/dist/runtime/gateway/index.js +2 -0
- package/dist/runtime/gateway/index.js.map +1 -1
- package/dist/runtime/gateway/non-tui-display-projector.d.ts +40 -0
- package/dist/runtime/gateway/non-tui-display-projector.d.ts.map +1 -0
- package/dist/runtime/gateway/non-tui-display-projector.js +166 -0
- package/dist/runtime/gateway/non-tui-display-projector.js.map +1 -0
- package/dist/runtime/gateway/signal-gateway-adapter.d.ts +1 -0
- package/dist/runtime/gateway/signal-gateway-adapter.d.ts.map +1 -1
- package/dist/runtime/gateway/signal-gateway-adapter.js +47 -4
- package/dist/runtime/gateway/signal-gateway-adapter.js.map +1 -1
- package/dist/runtime/gateway/slack-channel-adapter.d.ts +1 -0
- package/dist/runtime/gateway/slack-channel-adapter.d.ts.map +1 -1
- package/dist/runtime/gateway/slack-channel-adapter.js +93 -18
- package/dist/runtime/gateway/slack-channel-adapter.js.map +1 -1
- package/dist/runtime/gateway/telegram-gateway-adapter.d.ts +2 -0
- package/dist/runtime/gateway/telegram-gateway-adapter.d.ts.map +1 -1
- package/dist/runtime/gateway/telegram-gateway-adapter.js +61 -113
- package/dist/runtime/gateway/telegram-gateway-adapter.js.map +1 -1
- package/dist/runtime/gateway/whatsapp-gateway-adapter.d.ts +1 -0
- package/dist/runtime/gateway/whatsapp-gateway-adapter.d.ts.map +1 -1
- package/dist/runtime/gateway/whatsapp-gateway-adapter.js +49 -4
- package/dist/runtime/gateway/whatsapp-gateway-adapter.js.map +1 -1
- package/dist/runtime/permission-dialogue.d.ts +113 -0
- package/dist/runtime/permission-dialogue.d.ts.map +1 -0
- package/dist/runtime/permission-dialogue.js +82 -0
- package/dist/runtime/permission-dialogue.js.map +1 -0
- package/dist/runtime/run-spec/derive.d.ts +14 -14
- package/dist/runtime/run-spec/handoff.js +2 -0
- package/dist/runtime/run-spec/handoff.js.map +1 -1
- package/dist/runtime/run-spec/types.d.ts +16 -16
- package/dist/runtime/session-registry/types.d.ts +12 -12
- package/dist/runtime/store/artifact-retention.d.ts +2 -0
- package/dist/runtime/store/artifact-retention.d.ts.map +1 -1
- package/dist/runtime/store/artifact-retention.js +24 -21
- package/dist/runtime/store/artifact-retention.js.map +1 -1
- package/dist/runtime/store/budget-store.d.ts +8 -8
- package/dist/runtime/store/evidence-ledger.d.ts.map +1 -1
- package/dist/runtime/store/evidence-ledger.js +39 -1
- package/dist/runtime/store/evidence-ledger.js.map +1 -1
- package/dist/runtime/store/evidence-types.d.ts +118 -118
- package/dist/runtime/store/experiment-queue-store.d.ts +20 -20
- package/dist/runtime/store/postmortem-report.d.ts +2 -2
- package/dist/runtime/store/reproducibility-manifest.d.ts +20 -20
- package/dist/runtime/store/runtime-operation-schemas.d.ts +18 -18
- package/dist/runtime/store/runtime-operation-schemas.d.ts.map +1 -1
- package/dist/runtime/store/runtime-operation-schemas.js +1 -0
- package/dist/runtime/store/runtime-operation-schemas.js.map +1 -1
- package/dist/runtime/store/runtime-schemas.d.ts +58 -28
- package/dist/runtime/store/runtime-schemas.d.ts.map +1 -1
- package/dist/runtime/store/runtime-schemas.js +1 -0
- package/dist/runtime/store/runtime-schemas.js.map +1 -1
- package/dist/tools/execution/MemorySaveTool/MemorySaveTool.d.ts +8 -8
- package/dist/tools/execution/RunAdapterTool/RunAdapterTool.d.ts +6 -0
- package/dist/tools/execution/RunAdapterTool/RunAdapterTool.d.ts.map +1 -1
- package/dist/tools/execution/RunAdapterTool/RunAdapterTool.js +2 -0
- package/dist/tools/execution/RunAdapterTool/RunAdapterTool.js.map +1 -1
- package/dist/tools/execution-orchestrator.d.ts +29 -0
- package/dist/tools/execution-orchestrator.d.ts.map +1 -0
- package/dist/tools/execution-orchestrator.js +153 -0
- package/dist/tools/execution-orchestrator.js.map +1 -0
- package/dist/tools/executor.d.ts +6 -0
- package/dist/tools/executor.d.ts.map +1 -1
- package/dist/tools/executor.js +48 -11
- package/dist/tools/executor.js.map +1 -1
- package/dist/tools/fs/ApplyPatchTool/ApplyPatchTool.d.ts.map +1 -1
- package/dist/tools/fs/ApplyPatchTool/ApplyPatchTool.js +130 -17
- package/dist/tools/fs/ApplyPatchTool/ApplyPatchTool.js.map +1 -1
- package/dist/tools/mutation/TaskStopTool/TaskStopTool.d.ts.map +1 -1
- package/dist/tools/mutation/TaskStopTool/TaskStopTool.js +8 -0
- package/dist/tools/mutation/TaskStopTool/TaskStopTool.js.map +1 -1
- package/dist/tools/mutation/TaskUpdateTool/TaskUpdateTool.d.ts +6 -6
- package/dist/tools/network/GitHubCliTool/GitHubCliTool.d.ts +4 -4
- package/dist/tools/network/McpStdioTool/McpStdioTool.d.ts +4 -4
- package/dist/tools/permission.d.ts +0 -1
- package/dist/tools/permission.d.ts.map +1 -1
- package/dist/tools/permission.js +9 -33
- package/dist/tools/permission.js.map +1 -1
- package/dist/tools/query/CodeReadContextTool/CodeReadContextTool.d.ts +4 -4
- package/dist/tools/query/CodeSearchRepairTool/CodeSearchRepairTool.d.ts +8 -8
- package/dist/tools/query/CodeSearchTool/CodeSearchTool.d.ts +4 -4
- package/dist/tools/query/ConfigTool/ConfigTool.d.ts.map +1 -1
- package/dist/tools/query/ConfigTool/ConfigTool.js +1 -0
- package/dist/tools/query/ConfigTool/ConfigTool.js.map +1 -1
- package/dist/tools/query/MemoryRecallTool/MemoryRecallTool.d.ts +4 -4
- package/dist/tools/query/runtime-session-tools.d.ts +73 -5
- package/dist/tools/query/runtime-session-tools.d.ts.map +1 -1
- package/dist/tools/query/runtime-session-tools.js +114 -0
- package/dist/tools/query/runtime-session-tools.js.map +1 -1
- package/dist/tools/runtime/LongRunningRuntimeTools.d.ts +60 -42
- package/dist/tools/runtime/LongRunningRuntimeTools.d.ts.map +1 -1
- package/dist/tools/runtime/LongRunningRuntimeTools.js +4 -1
- package/dist/tools/runtime/LongRunningRuntimeTools.js.map +1 -1
- package/dist/tools/runtime/RunSpecHandoffTools.d.ts.map +1 -1
- package/dist/tools/runtime/RunSpecHandoffTools.js +162 -2
- package/dist/tools/runtime/RunSpecHandoffTools.js.map +1 -1
- package/dist/tools/runtime/SetupRuntimeControlTools.d.ts.map +1 -1
- package/dist/tools/runtime/SetupRuntimeControlTools.js +169 -17
- package/dist/tools/runtime/SetupRuntimeControlTools.js.map +1 -1
- package/dist/tools/system/GitDiffTool/GitDiffTool.d.ts +4 -4
- package/dist/tools/system/ShellCommandTool/ShellCommandTool.d.ts.map +1 -1
- package/dist/tools/system/ShellCommandTool/ShellCommandTool.js +7 -1
- package/dist/tools/system/ShellCommandTool/ShellCommandTool.js.map +1 -1
- package/dist/tools/system/ShellTool/ShellTool.d.ts.map +1 -1
- package/dist/tools/system/ShellTool/ShellTool.js +25 -11
- package/dist/tools/system/ShellTool/ShellTool.js.map +1 -1
- package/dist/tools/system/ShellTool/command-policy.d.ts +11 -8
- package/dist/tools/system/ShellTool/command-policy.d.ts.map +1 -1
- package/dist/tools/system/ShellTool/command-policy.js +402 -98
- package/dist/tools/system/ShellTool/command-policy.js.map +1 -1
- package/dist/tools/system/TestRunnerTool/TestRunnerTool.d.ts +1 -1
- package/dist/tools/system/TestRunnerTool/TestRunnerTool.d.ts.map +1 -1
- package/dist/tools/system/TestRunnerTool/TestRunnerTool.js +153 -9
- package/dist/tools/system/TestRunnerTool/TestRunnerTool.js.map +1 -1
- package/dist/tools/system/UpdatePlanTool/UpdatePlanTool.js +1 -1
- package/dist/tools/system/UpdatePlanTool/UpdatePlanTool.js.map +1 -1
- package/dist/tools/types.d.ts +34 -12
- package/dist/tools/types.d.ts.map +1 -1
- package/dist/tools/types.js +26 -3
- package/dist/tools/types.js.map +1 -1
- package/dist/tools/workspace-scope.d.ts +11 -0
- package/dist/tools/workspace-scope.d.ts.map +1 -0
- package/dist/tools/workspace-scope.js +77 -0
- package/dist/tools/workspace-scope.js.map +1 -0
- package/package.json +1 -1
|
@@ -16,7 +16,7 @@ export declare const RuntimeEvidenceArtifactRefSchema: z.ZodObject<{
|
|
|
16
16
|
source: z.ZodOptional<z.ZodString>;
|
|
17
17
|
dependency_refs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
18
18
|
}, "strict", z.ZodTypeAny, {
|
|
19
|
-
kind: "url" | "
|
|
19
|
+
kind: "url" | "log" | "diff" | "other" | "metrics" | "report";
|
|
20
20
|
label: string;
|
|
21
21
|
path?: string | undefined;
|
|
22
22
|
source?: string | undefined;
|
|
@@ -29,7 +29,7 @@ export declare const RuntimeEvidenceArtifactRefSchema: z.ZodObject<{
|
|
|
29
29
|
label: string;
|
|
30
30
|
path?: string | undefined;
|
|
31
31
|
source?: string | undefined;
|
|
32
|
-
kind?: "url" | "
|
|
32
|
+
kind?: "url" | "log" | "diff" | "other" | "metrics" | "report" | undefined;
|
|
33
33
|
url?: string | undefined;
|
|
34
34
|
state_relative_path?: string | undefined;
|
|
35
35
|
retention_class?: "other" | "final_deliverable" | "best_candidate" | "robust_candidate" | "near_miss" | "reproducibility_critical" | "evidence_report" | "low_value_smoke" | "cache_intermediate" | "duplicate_superseded" | undefined;
|
|
@@ -264,7 +264,7 @@ export declare const RuntimeEvidenceCandidateRecordSchema: z.ZodObject<{
|
|
|
264
264
|
source: z.ZodOptional<z.ZodString>;
|
|
265
265
|
dependency_refs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
266
266
|
}, "strict", z.ZodTypeAny, {
|
|
267
|
-
kind: "url" | "
|
|
267
|
+
kind: "url" | "log" | "diff" | "other" | "metrics" | "report";
|
|
268
268
|
label: string;
|
|
269
269
|
path?: string | undefined;
|
|
270
270
|
source?: string | undefined;
|
|
@@ -277,7 +277,7 @@ export declare const RuntimeEvidenceCandidateRecordSchema: z.ZodObject<{
|
|
|
277
277
|
label: string;
|
|
278
278
|
path?: string | undefined;
|
|
279
279
|
source?: string | undefined;
|
|
280
|
-
kind?: "url" | "
|
|
280
|
+
kind?: "url" | "log" | "diff" | "other" | "metrics" | "report" | undefined;
|
|
281
281
|
url?: string | undefined;
|
|
282
282
|
state_relative_path?: string | undefined;
|
|
283
283
|
retention_class?: "other" | "final_deliverable" | "best_candidate" | "robust_candidate" | "near_miss" | "reproducibility_critical" | "evidence_report" | "low_value_smoke" | "cache_intermediate" | "duplicate_superseded" | undefined;
|
|
@@ -425,7 +425,7 @@ export declare const RuntimeEvidenceCandidateRecordSchema: z.ZodObject<{
|
|
|
425
425
|
summary?: string | undefined;
|
|
426
426
|
}[];
|
|
427
427
|
artifacts: {
|
|
428
|
-
kind: "url" | "
|
|
428
|
+
kind: "url" | "log" | "diff" | "other" | "metrics" | "report";
|
|
429
429
|
label: string;
|
|
430
430
|
path?: string | undefined;
|
|
431
431
|
source?: string | undefined;
|
|
@@ -507,7 +507,7 @@ export declare const RuntimeEvidenceCandidateRecordSchema: z.ZodObject<{
|
|
|
507
507
|
label: string;
|
|
508
508
|
path?: string | undefined;
|
|
509
509
|
source?: string | undefined;
|
|
510
|
-
kind?: "url" | "
|
|
510
|
+
kind?: "url" | "log" | "diff" | "other" | "metrics" | "report" | undefined;
|
|
511
511
|
url?: string | undefined;
|
|
512
512
|
state_relative_path?: string | undefined;
|
|
513
513
|
retention_class?: "other" | "final_deliverable" | "best_candidate" | "robust_candidate" | "near_miss" | "reproducibility_critical" | "evidence_report" | "low_value_smoke" | "cache_intermediate" | "duplicate_superseded" | undefined;
|
|
@@ -575,13 +575,13 @@ export declare const RuntimeEvidenceEvaluatorPublishActionSchema: z.ZodObject<{
|
|
|
575
575
|
label: string;
|
|
576
576
|
id: string;
|
|
577
577
|
approval_required: true;
|
|
578
|
-
status?: "completed" | "
|
|
578
|
+
status?: "completed" | "blocked" | "approval_required" | "approved" | "submitted" | undefined;
|
|
579
579
|
tool_name?: string | undefined;
|
|
580
580
|
payload_ref?: string | undefined;
|
|
581
581
|
}, {
|
|
582
582
|
label: string;
|
|
583
583
|
id: string;
|
|
584
|
-
status?: "completed" | "
|
|
584
|
+
status?: "completed" | "blocked" | "approval_required" | "approved" | "submitted" | undefined;
|
|
585
585
|
tool_name?: string | undefined;
|
|
586
586
|
payload_ref?: string | undefined;
|
|
587
587
|
approval_required?: true | undefined;
|
|
@@ -592,11 +592,11 @@ export declare const RuntimeEvidenceEvaluatorValidationSchema: z.ZodObject<{
|
|
|
592
592
|
command: z.ZodOptional<z.ZodString>;
|
|
593
593
|
summary: z.ZodOptional<z.ZodString>;
|
|
594
594
|
}, "strict", z.ZodTypeAny, {
|
|
595
|
-
status: "unknown" | "pending" | "
|
|
595
|
+
status: "unknown" | "pending" | "blocked" | "failed" | "passed";
|
|
596
596
|
summary?: string | undefined;
|
|
597
597
|
command?: string | undefined;
|
|
598
598
|
}, {
|
|
599
|
-
status?: "unknown" | "pending" | "
|
|
599
|
+
status?: "unknown" | "pending" | "blocked" | "failed" | "passed" | undefined;
|
|
600
600
|
summary?: string | undefined;
|
|
601
601
|
command?: string | undefined;
|
|
602
602
|
}>;
|
|
@@ -816,11 +816,11 @@ export declare const RuntimeEvidenceEvaluatorObservationSchema: z.ZodObject<{
|
|
|
816
816
|
command: z.ZodOptional<z.ZodString>;
|
|
817
817
|
summary: z.ZodOptional<z.ZodString>;
|
|
818
818
|
}, "strict", z.ZodTypeAny, {
|
|
819
|
-
status: "unknown" | "pending" | "
|
|
819
|
+
status: "unknown" | "pending" | "blocked" | "failed" | "passed";
|
|
820
820
|
summary?: string | undefined;
|
|
821
821
|
command?: string | undefined;
|
|
822
822
|
}, {
|
|
823
|
-
status?: "unknown" | "pending" | "
|
|
823
|
+
status?: "unknown" | "pending" | "blocked" | "failed" | "passed" | undefined;
|
|
824
824
|
summary?: string | undefined;
|
|
825
825
|
command?: string | undefined;
|
|
826
826
|
}>>;
|
|
@@ -835,13 +835,13 @@ export declare const RuntimeEvidenceEvaluatorObservationSchema: z.ZodObject<{
|
|
|
835
835
|
label: string;
|
|
836
836
|
id: string;
|
|
837
837
|
approval_required: true;
|
|
838
|
-
status?: "completed" | "
|
|
838
|
+
status?: "completed" | "blocked" | "approval_required" | "approved" | "submitted" | undefined;
|
|
839
839
|
tool_name?: string | undefined;
|
|
840
840
|
payload_ref?: string | undefined;
|
|
841
841
|
}, {
|
|
842
842
|
label: string;
|
|
843
843
|
id: string;
|
|
844
|
-
status?: "completed" | "
|
|
844
|
+
status?: "completed" | "blocked" | "approval_required" | "approved" | "submitted" | undefined;
|
|
845
845
|
tool_name?: string | undefined;
|
|
846
846
|
payload_ref?: string | undefined;
|
|
847
847
|
approval_required?: true | undefined;
|
|
@@ -1039,13 +1039,13 @@ export declare const RuntimeEvidenceEvaluatorObservationSchema: z.ZodObject<{
|
|
|
1039
1039
|
}>>;
|
|
1040
1040
|
summary: z.ZodOptional<z.ZodString>;
|
|
1041
1041
|
}, "strict", z.ZodTypeAny, {
|
|
1042
|
-
status: "unknown" | "pending" | "completed" | "
|
|
1042
|
+
status: "unknown" | "pending" | "completed" | "blocked" | "approval_required" | "failed" | "regressed" | "passed" | "ready" | "submitted" | "succeeded";
|
|
1043
1043
|
source: string;
|
|
1044
1044
|
candidate_id: string;
|
|
1045
1045
|
signal: "external" | "local";
|
|
1046
1046
|
evaluator_id: string;
|
|
1047
1047
|
validation?: {
|
|
1048
|
-
status: "unknown" | "pending" | "
|
|
1048
|
+
status: "unknown" | "pending" | "blocked" | "failed" | "passed";
|
|
1049
1049
|
summary?: string | undefined;
|
|
1050
1050
|
command?: string | undefined;
|
|
1051
1051
|
} | undefined;
|
|
@@ -1080,13 +1080,13 @@ export declare const RuntimeEvidenceEvaluatorObservationSchema: z.ZodObject<{
|
|
|
1080
1080
|
artifact_labels?: string[] | undefined;
|
|
1081
1081
|
score_label?: string | undefined;
|
|
1082
1082
|
expected_score?: string | number | boolean | null | undefined;
|
|
1083
|
-
expected_status?: "unknown" | "pending" | "completed" | "
|
|
1083
|
+
expected_status?: "unknown" | "pending" | "completed" | "blocked" | "approval_required" | "failed" | "regressed" | "passed" | "ready" | "submitted" | "succeeded" | undefined;
|
|
1084
1084
|
expectation_source?: string | undefined;
|
|
1085
1085
|
publish_action?: {
|
|
1086
1086
|
label: string;
|
|
1087
1087
|
id: string;
|
|
1088
1088
|
approval_required: true;
|
|
1089
|
-
status?: "completed" | "
|
|
1089
|
+
status?: "completed" | "blocked" | "approval_required" | "approved" | "submitted" | undefined;
|
|
1090
1090
|
tool_name?: string | undefined;
|
|
1091
1091
|
payload_ref?: string | undefined;
|
|
1092
1092
|
} | undefined;
|
|
@@ -1126,11 +1126,11 @@ export declare const RuntimeEvidenceEvaluatorObservationSchema: z.ZodObject<{
|
|
|
1126
1126
|
signal: "external" | "local";
|
|
1127
1127
|
evaluator_id: string;
|
|
1128
1128
|
validation?: {
|
|
1129
|
-
status?: "unknown" | "pending" | "
|
|
1129
|
+
status?: "unknown" | "pending" | "blocked" | "failed" | "passed" | undefined;
|
|
1130
1130
|
summary?: string | undefined;
|
|
1131
1131
|
command?: string | undefined;
|
|
1132
1132
|
} | undefined;
|
|
1133
|
-
status?: "unknown" | "pending" | "completed" | "
|
|
1133
|
+
status?: "unknown" | "pending" | "completed" | "blocked" | "approval_required" | "failed" | "regressed" | "passed" | "ready" | "submitted" | "succeeded" | undefined;
|
|
1134
1134
|
direction?: "neutral" | "maximize" | "minimize" | undefined;
|
|
1135
1135
|
summary?: string | undefined;
|
|
1136
1136
|
score?: string | number | boolean | null | undefined;
|
|
@@ -1162,12 +1162,12 @@ export declare const RuntimeEvidenceEvaluatorObservationSchema: z.ZodObject<{
|
|
|
1162
1162
|
artifact_labels?: string[] | undefined;
|
|
1163
1163
|
score_label?: string | undefined;
|
|
1164
1164
|
expected_score?: string | number | boolean | null | undefined;
|
|
1165
|
-
expected_status?: "unknown" | "pending" | "completed" | "
|
|
1165
|
+
expected_status?: "unknown" | "pending" | "completed" | "blocked" | "approval_required" | "failed" | "regressed" | "passed" | "ready" | "submitted" | "succeeded" | undefined;
|
|
1166
1166
|
expectation_source?: string | undefined;
|
|
1167
1167
|
publish_action?: {
|
|
1168
1168
|
label: string;
|
|
1169
1169
|
id: string;
|
|
1170
|
-
status?: "completed" | "
|
|
1170
|
+
status?: "completed" | "blocked" | "approval_required" | "approved" | "submitted" | undefined;
|
|
1171
1171
|
tool_name?: string | undefined;
|
|
1172
1172
|
payload_ref?: string | undefined;
|
|
1173
1173
|
approval_required?: true | undefined;
|
|
@@ -2540,11 +2540,11 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
2540
2540
|
command: z.ZodOptional<z.ZodString>;
|
|
2541
2541
|
summary: z.ZodOptional<z.ZodString>;
|
|
2542
2542
|
}, "strict", z.ZodTypeAny, {
|
|
2543
|
-
status: "unknown" | "pending" | "
|
|
2543
|
+
status: "unknown" | "pending" | "blocked" | "failed" | "passed";
|
|
2544
2544
|
summary?: string | undefined;
|
|
2545
2545
|
command?: string | undefined;
|
|
2546
2546
|
}, {
|
|
2547
|
-
status?: "unknown" | "pending" | "
|
|
2547
|
+
status?: "unknown" | "pending" | "blocked" | "failed" | "passed" | undefined;
|
|
2548
2548
|
summary?: string | undefined;
|
|
2549
2549
|
command?: string | undefined;
|
|
2550
2550
|
}>>;
|
|
@@ -2559,13 +2559,13 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
2559
2559
|
label: string;
|
|
2560
2560
|
id: string;
|
|
2561
2561
|
approval_required: true;
|
|
2562
|
-
status?: "completed" | "
|
|
2562
|
+
status?: "completed" | "blocked" | "approval_required" | "approved" | "submitted" | undefined;
|
|
2563
2563
|
tool_name?: string | undefined;
|
|
2564
2564
|
payload_ref?: string | undefined;
|
|
2565
2565
|
}, {
|
|
2566
2566
|
label: string;
|
|
2567
2567
|
id: string;
|
|
2568
|
-
status?: "completed" | "
|
|
2568
|
+
status?: "completed" | "blocked" | "approval_required" | "approved" | "submitted" | undefined;
|
|
2569
2569
|
tool_name?: string | undefined;
|
|
2570
2570
|
payload_ref?: string | undefined;
|
|
2571
2571
|
approval_required?: true | undefined;
|
|
@@ -2763,13 +2763,13 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
2763
2763
|
}>>;
|
|
2764
2764
|
summary: z.ZodOptional<z.ZodString>;
|
|
2765
2765
|
}, "strict", z.ZodTypeAny, {
|
|
2766
|
-
status: "unknown" | "pending" | "completed" | "
|
|
2766
|
+
status: "unknown" | "pending" | "completed" | "blocked" | "approval_required" | "failed" | "regressed" | "passed" | "ready" | "submitted" | "succeeded";
|
|
2767
2767
|
source: string;
|
|
2768
2768
|
candidate_id: string;
|
|
2769
2769
|
signal: "external" | "local";
|
|
2770
2770
|
evaluator_id: string;
|
|
2771
2771
|
validation?: {
|
|
2772
|
-
status: "unknown" | "pending" | "
|
|
2772
|
+
status: "unknown" | "pending" | "blocked" | "failed" | "passed";
|
|
2773
2773
|
summary?: string | undefined;
|
|
2774
2774
|
command?: string | undefined;
|
|
2775
2775
|
} | undefined;
|
|
@@ -2804,13 +2804,13 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
2804
2804
|
artifact_labels?: string[] | undefined;
|
|
2805
2805
|
score_label?: string | undefined;
|
|
2806
2806
|
expected_score?: string | number | boolean | null | undefined;
|
|
2807
|
-
expected_status?: "unknown" | "pending" | "completed" | "
|
|
2807
|
+
expected_status?: "unknown" | "pending" | "completed" | "blocked" | "approval_required" | "failed" | "regressed" | "passed" | "ready" | "submitted" | "succeeded" | undefined;
|
|
2808
2808
|
expectation_source?: string | undefined;
|
|
2809
2809
|
publish_action?: {
|
|
2810
2810
|
label: string;
|
|
2811
2811
|
id: string;
|
|
2812
2812
|
approval_required: true;
|
|
2813
|
-
status?: "completed" | "
|
|
2813
|
+
status?: "completed" | "blocked" | "approval_required" | "approved" | "submitted" | undefined;
|
|
2814
2814
|
tool_name?: string | undefined;
|
|
2815
2815
|
payload_ref?: string | undefined;
|
|
2816
2816
|
} | undefined;
|
|
@@ -2850,11 +2850,11 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
2850
2850
|
signal: "external" | "local";
|
|
2851
2851
|
evaluator_id: string;
|
|
2852
2852
|
validation?: {
|
|
2853
|
-
status?: "unknown" | "pending" | "
|
|
2853
|
+
status?: "unknown" | "pending" | "blocked" | "failed" | "passed" | undefined;
|
|
2854
2854
|
summary?: string | undefined;
|
|
2855
2855
|
command?: string | undefined;
|
|
2856
2856
|
} | undefined;
|
|
2857
|
-
status?: "unknown" | "pending" | "completed" | "
|
|
2857
|
+
status?: "unknown" | "pending" | "completed" | "blocked" | "approval_required" | "failed" | "regressed" | "passed" | "ready" | "submitted" | "succeeded" | undefined;
|
|
2858
2858
|
direction?: "neutral" | "maximize" | "minimize" | undefined;
|
|
2859
2859
|
summary?: string | undefined;
|
|
2860
2860
|
score?: string | number | boolean | null | undefined;
|
|
@@ -2886,12 +2886,12 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
2886
2886
|
artifact_labels?: string[] | undefined;
|
|
2887
2887
|
score_label?: string | undefined;
|
|
2888
2888
|
expected_score?: string | number | boolean | null | undefined;
|
|
2889
|
-
expected_status?: "unknown" | "pending" | "completed" | "
|
|
2889
|
+
expected_status?: "unknown" | "pending" | "completed" | "blocked" | "approval_required" | "failed" | "regressed" | "passed" | "ready" | "submitted" | "succeeded" | undefined;
|
|
2890
2890
|
expectation_source?: string | undefined;
|
|
2891
2891
|
publish_action?: {
|
|
2892
2892
|
label: string;
|
|
2893
2893
|
id: string;
|
|
2894
|
-
status?: "completed" | "
|
|
2894
|
+
status?: "completed" | "blocked" | "approval_required" | "approved" | "submitted" | undefined;
|
|
2895
2895
|
tool_name?: string | undefined;
|
|
2896
2896
|
payload_ref?: string | undefined;
|
|
2897
2897
|
approval_required?: true | undefined;
|
|
@@ -3817,6 +3817,11 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
3817
3817
|
created_at: string;
|
|
3818
3818
|
reason: string;
|
|
3819
3819
|
schema_version: "memory-correction-entry-v1";
|
|
3820
|
+
audit: {
|
|
3821
|
+
status: "active" | "superseded" | "disputed" | "destructive_delete_requested";
|
|
3822
|
+
retained_for_audit: boolean;
|
|
3823
|
+
destructive_delete_approved_at: string | null;
|
|
3824
|
+
};
|
|
3820
3825
|
provenance: {
|
|
3821
3826
|
source: "user" | "dream_lint" | "runtime_verification" | "manual_tool";
|
|
3822
3827
|
confidence: number | null;
|
|
@@ -3845,11 +3850,6 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
3845
3850
|
} | undefined;
|
|
3846
3851
|
} | null;
|
|
3847
3852
|
actor: "user" | "dream_lint" | "runtime_verification" | "manual_tool";
|
|
3848
|
-
audit: {
|
|
3849
|
-
status: "active" | "superseded" | "disputed" | "destructive_delete_requested";
|
|
3850
|
-
retained_for_audit: boolean;
|
|
3851
|
-
destructive_delete_approved_at: string | null;
|
|
3852
|
-
};
|
|
3853
3853
|
}, {
|
|
3854
3854
|
created_at: string;
|
|
3855
3855
|
reason: string;
|
|
@@ -3873,6 +3873,11 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
3873
3873
|
correction_kind: "superseded" | "corrected" | "retracted" | "forgotten" | "quarantined";
|
|
3874
3874
|
actor: "user" | "dream_lint" | "runtime_verification" | "manual_tool";
|
|
3875
3875
|
schema_version?: "memory-correction-entry-v1" | undefined;
|
|
3876
|
+
audit?: {
|
|
3877
|
+
status?: "active" | "superseded" | "disputed" | "destructive_delete_requested" | undefined;
|
|
3878
|
+
retained_for_audit?: boolean | undefined;
|
|
3879
|
+
destructive_delete_approved_at?: string | null | undefined;
|
|
3880
|
+
} | undefined;
|
|
3876
3881
|
replacement_ref?: {
|
|
3877
3882
|
kind: "runtime_evidence" | "agent_memory" | "soil_record" | "dream_checkpoint";
|
|
3878
3883
|
id: string;
|
|
@@ -3882,11 +3887,6 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
3882
3887
|
run_id?: string | undefined;
|
|
3883
3888
|
} | undefined;
|
|
3884
3889
|
} | null | undefined;
|
|
3885
|
-
audit?: {
|
|
3886
|
-
status?: "active" | "superseded" | "disputed" | "destructive_delete_requested" | undefined;
|
|
3887
|
-
retained_for_audit?: boolean | undefined;
|
|
3888
|
-
destructive_delete_approved_at?: string | null | undefined;
|
|
3889
|
-
} | undefined;
|
|
3890
3890
|
}>>;
|
|
3891
3891
|
correction_state: z.ZodOptional<z.ZodObject<{
|
|
3892
3892
|
target_ref: z.ZodObject<{
|
|
@@ -4142,7 +4142,7 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
4142
4142
|
source: z.ZodOptional<z.ZodString>;
|
|
4143
4143
|
dependency_refs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4144
4144
|
}, "strict", z.ZodTypeAny, {
|
|
4145
|
-
kind: "url" | "
|
|
4145
|
+
kind: "url" | "log" | "diff" | "other" | "metrics" | "report";
|
|
4146
4146
|
label: string;
|
|
4147
4147
|
path?: string | undefined;
|
|
4148
4148
|
source?: string | undefined;
|
|
@@ -4155,7 +4155,7 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
4155
4155
|
label: string;
|
|
4156
4156
|
path?: string | undefined;
|
|
4157
4157
|
source?: string | undefined;
|
|
4158
|
-
kind?: "url" | "
|
|
4158
|
+
kind?: "url" | "log" | "diff" | "other" | "metrics" | "report" | undefined;
|
|
4159
4159
|
url?: string | undefined;
|
|
4160
4160
|
state_relative_path?: string | undefined;
|
|
4161
4161
|
retention_class?: "other" | "final_deliverable" | "best_candidate" | "robust_candidate" | "near_miss" | "reproducibility_critical" | "evidence_report" | "low_value_smoke" | "cache_intermediate" | "duplicate_superseded" | undefined;
|
|
@@ -4303,7 +4303,7 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
4303
4303
|
summary?: string | undefined;
|
|
4304
4304
|
}[];
|
|
4305
4305
|
artifacts: {
|
|
4306
|
-
kind: "url" | "
|
|
4306
|
+
kind: "url" | "log" | "diff" | "other" | "metrics" | "report";
|
|
4307
4307
|
label: string;
|
|
4308
4308
|
path?: string | undefined;
|
|
4309
4309
|
source?: string | undefined;
|
|
@@ -4385,7 +4385,7 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
4385
4385
|
label: string;
|
|
4386
4386
|
path?: string | undefined;
|
|
4387
4387
|
source?: string | undefined;
|
|
4388
|
-
kind?: "url" | "
|
|
4388
|
+
kind?: "url" | "log" | "diff" | "other" | "metrics" | "report" | undefined;
|
|
4389
4389
|
url?: string | undefined;
|
|
4390
4390
|
state_relative_path?: string | undefined;
|
|
4391
4391
|
retention_class?: "other" | "final_deliverable" | "best_candidate" | "robust_candidate" | "near_miss" | "reproducibility_critical" | "evidence_report" | "low_value_smoke" | "cache_intermediate" | "duplicate_superseded" | undefined;
|
|
@@ -4448,7 +4448,7 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
4448
4448
|
source: z.ZodOptional<z.ZodString>;
|
|
4449
4449
|
dependency_refs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4450
4450
|
}, "strict", z.ZodTypeAny, {
|
|
4451
|
-
kind: "url" | "
|
|
4451
|
+
kind: "url" | "log" | "diff" | "other" | "metrics" | "report";
|
|
4452
4452
|
label: string;
|
|
4453
4453
|
path?: string | undefined;
|
|
4454
4454
|
source?: string | undefined;
|
|
@@ -4461,7 +4461,7 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
4461
4461
|
label: string;
|
|
4462
4462
|
path?: string | undefined;
|
|
4463
4463
|
source?: string | undefined;
|
|
4464
|
-
kind?: "url" | "
|
|
4464
|
+
kind?: "url" | "log" | "diff" | "other" | "metrics" | "report" | undefined;
|
|
4465
4465
|
url?: string | undefined;
|
|
4466
4466
|
state_relative_path?: string | undefined;
|
|
4467
4467
|
retention_class?: "other" | "final_deliverable" | "best_candidate" | "robust_candidate" | "near_miss" | "reproducibility_critical" | "evidence_report" | "low_value_smoke" | "cache_intermediate" | "duplicate_superseded" | undefined;
|
|
@@ -4508,7 +4508,7 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
4508
4508
|
id: string;
|
|
4509
4509
|
schema_version: "runtime-evidence-entry-v1";
|
|
4510
4510
|
artifacts: {
|
|
4511
|
-
kind: "url" | "
|
|
4511
|
+
kind: "url" | "log" | "diff" | "other" | "metrics" | "report";
|
|
4512
4512
|
label: string;
|
|
4513
4513
|
path?: string | undefined;
|
|
4514
4514
|
source?: string | undefined;
|
|
@@ -4573,7 +4573,7 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
4573
4573
|
primary_dimension?: string | undefined;
|
|
4574
4574
|
action?: string | undefined;
|
|
4575
4575
|
} | undefined;
|
|
4576
|
-
outcome?: "
|
|
4576
|
+
outcome?: "blocked" | "failed" | "improved" | "regressed" | "inconclusive" | "continued" | undefined;
|
|
4577
4577
|
strategy?: string | undefined;
|
|
4578
4578
|
research?: {
|
|
4579
4579
|
confidence: number;
|
|
@@ -4611,6 +4611,11 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
4611
4611
|
source_urls: string[];
|
|
4612
4612
|
} | undefined;
|
|
4613
4613
|
}[] | undefined;
|
|
4614
|
+
result?: {
|
|
4615
|
+
status?: string | undefined;
|
|
4616
|
+
error?: string | undefined;
|
|
4617
|
+
summary?: string | undefined;
|
|
4618
|
+
} | undefined;
|
|
4614
4619
|
candidates?: {
|
|
4615
4620
|
lineage: {
|
|
4616
4621
|
strategy_family: string;
|
|
@@ -4634,7 +4639,7 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
4634
4639
|
summary?: string | undefined;
|
|
4635
4640
|
}[];
|
|
4636
4641
|
artifacts: {
|
|
4637
|
-
kind: "url" | "
|
|
4642
|
+
kind: "url" | "log" | "diff" | "other" | "metrics" | "report";
|
|
4638
4643
|
label: string;
|
|
4639
4644
|
path?: string | undefined;
|
|
4640
4645
|
source?: string | undefined;
|
|
@@ -4703,6 +4708,11 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
4703
4708
|
created_at: string;
|
|
4704
4709
|
reason: string;
|
|
4705
4710
|
schema_version: "memory-correction-entry-v1";
|
|
4711
|
+
audit: {
|
|
4712
|
+
status: "active" | "superseded" | "disputed" | "destructive_delete_requested";
|
|
4713
|
+
retained_for_audit: boolean;
|
|
4714
|
+
destructive_delete_approved_at: string | null;
|
|
4715
|
+
};
|
|
4706
4716
|
provenance: {
|
|
4707
4717
|
source: "user" | "dream_lint" | "runtime_verification" | "manual_tool";
|
|
4708
4718
|
confidence: number | null;
|
|
@@ -4731,11 +4741,6 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
4731
4741
|
} | undefined;
|
|
4732
4742
|
} | null;
|
|
4733
4743
|
actor: "user" | "dream_lint" | "runtime_verification" | "manual_tool";
|
|
4734
|
-
audit: {
|
|
4735
|
-
status: "active" | "superseded" | "disputed" | "destructive_delete_requested";
|
|
4736
|
-
retained_for_audit: boolean;
|
|
4737
|
-
destructive_delete_approved_at: string | null;
|
|
4738
|
-
};
|
|
4739
4744
|
} | undefined;
|
|
4740
4745
|
quarantine_state?: {
|
|
4741
4746
|
status: "quarantined";
|
|
@@ -4747,13 +4752,13 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
4747
4752
|
inspection_refs: string[];
|
|
4748
4753
|
} | undefined;
|
|
4749
4754
|
evaluators?: {
|
|
4750
|
-
status: "unknown" | "pending" | "completed" | "
|
|
4755
|
+
status: "unknown" | "pending" | "completed" | "blocked" | "approval_required" | "failed" | "regressed" | "passed" | "ready" | "submitted" | "succeeded";
|
|
4751
4756
|
source: string;
|
|
4752
4757
|
candidate_id: string;
|
|
4753
4758
|
signal: "external" | "local";
|
|
4754
4759
|
evaluator_id: string;
|
|
4755
4760
|
validation?: {
|
|
4756
|
-
status: "unknown" | "pending" | "
|
|
4761
|
+
status: "unknown" | "pending" | "blocked" | "failed" | "passed";
|
|
4757
4762
|
summary?: string | undefined;
|
|
4758
4763
|
command?: string | undefined;
|
|
4759
4764
|
} | undefined;
|
|
@@ -4788,13 +4793,13 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
4788
4793
|
artifact_labels?: string[] | undefined;
|
|
4789
4794
|
score_label?: string | undefined;
|
|
4790
4795
|
expected_score?: string | number | boolean | null | undefined;
|
|
4791
|
-
expected_status?: "unknown" | "pending" | "completed" | "
|
|
4796
|
+
expected_status?: "unknown" | "pending" | "completed" | "blocked" | "approval_required" | "failed" | "regressed" | "passed" | "ready" | "submitted" | "succeeded" | undefined;
|
|
4792
4797
|
expectation_source?: string | undefined;
|
|
4793
4798
|
publish_action?: {
|
|
4794
4799
|
label: string;
|
|
4795
4800
|
id: string;
|
|
4796
4801
|
approval_required: true;
|
|
4797
|
-
status?: "completed" | "
|
|
4802
|
+
status?: "completed" | "blocked" | "approval_required" | "approved" | "submitted" | undefined;
|
|
4798
4803
|
tool_name?: string | undefined;
|
|
4799
4804
|
payload_ref?: string | undefined;
|
|
4800
4805
|
} | undefined;
|
|
@@ -4962,11 +4967,6 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
4962
4967
|
} | null;
|
|
4963
4968
|
latest_correction_id: string | null;
|
|
4964
4969
|
} | undefined;
|
|
4965
|
-
result?: {
|
|
4966
|
-
status?: string | undefined;
|
|
4967
|
-
error?: string | undefined;
|
|
4968
|
-
summary?: string | undefined;
|
|
4969
|
-
} | undefined;
|
|
4970
4970
|
decision_reason?: string | undefined;
|
|
4971
4971
|
}, {
|
|
4972
4972
|
kind: "verification" | "observation" | "metric" | "decision" | "failure" | "strategy" | "task_generation" | "research" | "execution" | "other" | "artifact" | "dream_checkpoint" | "evaluator" | "correction";
|
|
@@ -5010,7 +5010,7 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
5010
5010
|
primary_dimension?: string | undefined;
|
|
5011
5011
|
action?: string | undefined;
|
|
5012
5012
|
} | undefined;
|
|
5013
|
-
outcome?: "
|
|
5013
|
+
outcome?: "blocked" | "failed" | "improved" | "regressed" | "inconclusive" | "continued" | undefined;
|
|
5014
5014
|
strategy?: string | undefined;
|
|
5015
5015
|
research?: {
|
|
5016
5016
|
trigger: "plateau" | "uncertainty" | "knowledge_gap";
|
|
@@ -5052,13 +5052,18 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
5052
5052
|
label: string;
|
|
5053
5053
|
path?: string | undefined;
|
|
5054
5054
|
source?: string | undefined;
|
|
5055
|
-
kind?: "url" | "
|
|
5055
|
+
kind?: "url" | "log" | "diff" | "other" | "metrics" | "report" | undefined;
|
|
5056
5056
|
url?: string | undefined;
|
|
5057
5057
|
state_relative_path?: string | undefined;
|
|
5058
5058
|
retention_class?: "other" | "final_deliverable" | "best_candidate" | "robust_candidate" | "near_miss" | "reproducibility_critical" | "evidence_report" | "low_value_smoke" | "cache_intermediate" | "duplicate_superseded" | undefined;
|
|
5059
5059
|
size_bytes?: number | undefined;
|
|
5060
5060
|
dependency_refs?: string[] | undefined;
|
|
5061
5061
|
}[] | undefined;
|
|
5062
|
+
result?: {
|
|
5063
|
+
status?: string | undefined;
|
|
5064
|
+
error?: string | undefined;
|
|
5065
|
+
summary?: string | undefined;
|
|
5066
|
+
} | undefined;
|
|
5062
5067
|
candidates?: {
|
|
5063
5068
|
lineage: {
|
|
5064
5069
|
strategy_family: string;
|
|
@@ -5086,7 +5091,7 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
5086
5091
|
label: string;
|
|
5087
5092
|
path?: string | undefined;
|
|
5088
5093
|
source?: string | undefined;
|
|
5089
|
-
kind?: "url" | "
|
|
5094
|
+
kind?: "url" | "log" | "diff" | "other" | "metrics" | "report" | undefined;
|
|
5090
5095
|
url?: string | undefined;
|
|
5091
5096
|
state_relative_path?: string | undefined;
|
|
5092
5097
|
retention_class?: "other" | "final_deliverable" | "best_candidate" | "robust_candidate" | "near_miss" | "reproducibility_critical" | "evidence_report" | "low_value_smoke" | "cache_intermediate" | "duplicate_superseded" | undefined;
|
|
@@ -5177,6 +5182,11 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
5177
5182
|
correction_kind: "superseded" | "corrected" | "retracted" | "forgotten" | "quarantined";
|
|
5178
5183
|
actor: "user" | "dream_lint" | "runtime_verification" | "manual_tool";
|
|
5179
5184
|
schema_version?: "memory-correction-entry-v1" | undefined;
|
|
5185
|
+
audit?: {
|
|
5186
|
+
status?: "active" | "superseded" | "disputed" | "destructive_delete_requested" | undefined;
|
|
5187
|
+
retained_for_audit?: boolean | undefined;
|
|
5188
|
+
destructive_delete_approved_at?: string | null | undefined;
|
|
5189
|
+
} | undefined;
|
|
5180
5190
|
replacement_ref?: {
|
|
5181
5191
|
kind: "runtime_evidence" | "agent_memory" | "soil_record" | "dream_checkpoint";
|
|
5182
5192
|
id: string;
|
|
@@ -5186,11 +5196,6 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
5186
5196
|
run_id?: string | undefined;
|
|
5187
5197
|
} | undefined;
|
|
5188
5198
|
} | null | undefined;
|
|
5189
|
-
audit?: {
|
|
5190
|
-
status?: "active" | "superseded" | "disputed" | "destructive_delete_requested" | undefined;
|
|
5191
|
-
retained_for_audit?: boolean | undefined;
|
|
5192
|
-
destructive_delete_approved_at?: string | null | undefined;
|
|
5193
|
-
} | undefined;
|
|
5194
5199
|
} | undefined;
|
|
5195
5200
|
metrics?: {
|
|
5196
5201
|
label: string;
|
|
@@ -5217,11 +5222,11 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
5217
5222
|
signal: "external" | "local";
|
|
5218
5223
|
evaluator_id: string;
|
|
5219
5224
|
validation?: {
|
|
5220
|
-
status?: "unknown" | "pending" | "
|
|
5225
|
+
status?: "unknown" | "pending" | "blocked" | "failed" | "passed" | undefined;
|
|
5221
5226
|
summary?: string | undefined;
|
|
5222
5227
|
command?: string | undefined;
|
|
5223
5228
|
} | undefined;
|
|
5224
|
-
status?: "unknown" | "pending" | "completed" | "
|
|
5229
|
+
status?: "unknown" | "pending" | "completed" | "blocked" | "approval_required" | "failed" | "regressed" | "passed" | "ready" | "submitted" | "succeeded" | undefined;
|
|
5225
5230
|
direction?: "neutral" | "maximize" | "minimize" | undefined;
|
|
5226
5231
|
summary?: string | undefined;
|
|
5227
5232
|
score?: string | number | boolean | null | undefined;
|
|
@@ -5253,12 +5258,12 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
5253
5258
|
artifact_labels?: string[] | undefined;
|
|
5254
5259
|
score_label?: string | undefined;
|
|
5255
5260
|
expected_score?: string | number | boolean | null | undefined;
|
|
5256
|
-
expected_status?: "unknown" | "pending" | "completed" | "
|
|
5261
|
+
expected_status?: "unknown" | "pending" | "completed" | "blocked" | "approval_required" | "failed" | "regressed" | "passed" | "ready" | "submitted" | "succeeded" | undefined;
|
|
5257
5262
|
expectation_source?: string | undefined;
|
|
5258
5263
|
publish_action?: {
|
|
5259
5264
|
label: string;
|
|
5260
5265
|
id: string;
|
|
5261
|
-
status?: "completed" | "
|
|
5266
|
+
status?: "completed" | "blocked" | "approval_required" | "approved" | "submitted" | undefined;
|
|
5262
5267
|
tool_name?: string | undefined;
|
|
5263
5268
|
payload_ref?: string | undefined;
|
|
5264
5269
|
approval_required?: true | undefined;
|
|
@@ -5427,18 +5432,13 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
5427
5432
|
} | null | undefined;
|
|
5428
5433
|
latest_correction_id?: string | null | undefined;
|
|
5429
5434
|
} | undefined;
|
|
5430
|
-
result?: {
|
|
5431
|
-
status?: string | undefined;
|
|
5432
|
-
error?: string | undefined;
|
|
5433
|
-
summary?: string | undefined;
|
|
5434
|
-
} | undefined;
|
|
5435
5435
|
decision_reason?: string | undefined;
|
|
5436
5436
|
}>, {
|
|
5437
5437
|
kind: "verification" | "observation" | "metric" | "decision" | "failure" | "strategy" | "task_generation" | "research" | "execution" | "other" | "artifact" | "dream_checkpoint" | "evaluator" | "correction";
|
|
5438
5438
|
id: string;
|
|
5439
5439
|
schema_version: "runtime-evidence-entry-v1";
|
|
5440
5440
|
artifacts: {
|
|
5441
|
-
kind: "url" | "
|
|
5441
|
+
kind: "url" | "log" | "diff" | "other" | "metrics" | "report";
|
|
5442
5442
|
label: string;
|
|
5443
5443
|
path?: string | undefined;
|
|
5444
5444
|
source?: string | undefined;
|
|
@@ -5503,7 +5503,7 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
5503
5503
|
primary_dimension?: string | undefined;
|
|
5504
5504
|
action?: string | undefined;
|
|
5505
5505
|
} | undefined;
|
|
5506
|
-
outcome?: "
|
|
5506
|
+
outcome?: "blocked" | "failed" | "improved" | "regressed" | "inconclusive" | "continued" | undefined;
|
|
5507
5507
|
strategy?: string | undefined;
|
|
5508
5508
|
research?: {
|
|
5509
5509
|
confidence: number;
|
|
@@ -5541,6 +5541,11 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
5541
5541
|
source_urls: string[];
|
|
5542
5542
|
} | undefined;
|
|
5543
5543
|
}[] | undefined;
|
|
5544
|
+
result?: {
|
|
5545
|
+
status?: string | undefined;
|
|
5546
|
+
error?: string | undefined;
|
|
5547
|
+
summary?: string | undefined;
|
|
5548
|
+
} | undefined;
|
|
5544
5549
|
candidates?: {
|
|
5545
5550
|
lineage: {
|
|
5546
5551
|
strategy_family: string;
|
|
@@ -5564,7 +5569,7 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
5564
5569
|
summary?: string | undefined;
|
|
5565
5570
|
}[];
|
|
5566
5571
|
artifacts: {
|
|
5567
|
-
kind: "url" | "
|
|
5572
|
+
kind: "url" | "log" | "diff" | "other" | "metrics" | "report";
|
|
5568
5573
|
label: string;
|
|
5569
5574
|
path?: string | undefined;
|
|
5570
5575
|
source?: string | undefined;
|
|
@@ -5633,6 +5638,11 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
5633
5638
|
created_at: string;
|
|
5634
5639
|
reason: string;
|
|
5635
5640
|
schema_version: "memory-correction-entry-v1";
|
|
5641
|
+
audit: {
|
|
5642
|
+
status: "active" | "superseded" | "disputed" | "destructive_delete_requested";
|
|
5643
|
+
retained_for_audit: boolean;
|
|
5644
|
+
destructive_delete_approved_at: string | null;
|
|
5645
|
+
};
|
|
5636
5646
|
provenance: {
|
|
5637
5647
|
source: "user" | "dream_lint" | "runtime_verification" | "manual_tool";
|
|
5638
5648
|
confidence: number | null;
|
|
@@ -5661,11 +5671,6 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
5661
5671
|
} | undefined;
|
|
5662
5672
|
} | null;
|
|
5663
5673
|
actor: "user" | "dream_lint" | "runtime_verification" | "manual_tool";
|
|
5664
|
-
audit: {
|
|
5665
|
-
status: "active" | "superseded" | "disputed" | "destructive_delete_requested";
|
|
5666
|
-
retained_for_audit: boolean;
|
|
5667
|
-
destructive_delete_approved_at: string | null;
|
|
5668
|
-
};
|
|
5669
5674
|
} | undefined;
|
|
5670
5675
|
quarantine_state?: {
|
|
5671
5676
|
status: "quarantined";
|
|
@@ -5677,13 +5682,13 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
5677
5682
|
inspection_refs: string[];
|
|
5678
5683
|
} | undefined;
|
|
5679
5684
|
evaluators?: {
|
|
5680
|
-
status: "unknown" | "pending" | "completed" | "
|
|
5685
|
+
status: "unknown" | "pending" | "completed" | "blocked" | "approval_required" | "failed" | "regressed" | "passed" | "ready" | "submitted" | "succeeded";
|
|
5681
5686
|
source: string;
|
|
5682
5687
|
candidate_id: string;
|
|
5683
5688
|
signal: "external" | "local";
|
|
5684
5689
|
evaluator_id: string;
|
|
5685
5690
|
validation?: {
|
|
5686
|
-
status: "unknown" | "pending" | "
|
|
5691
|
+
status: "unknown" | "pending" | "blocked" | "failed" | "passed";
|
|
5687
5692
|
summary?: string | undefined;
|
|
5688
5693
|
command?: string | undefined;
|
|
5689
5694
|
} | undefined;
|
|
@@ -5718,13 +5723,13 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
5718
5723
|
artifact_labels?: string[] | undefined;
|
|
5719
5724
|
score_label?: string | undefined;
|
|
5720
5725
|
expected_score?: string | number | boolean | null | undefined;
|
|
5721
|
-
expected_status?: "unknown" | "pending" | "completed" | "
|
|
5726
|
+
expected_status?: "unknown" | "pending" | "completed" | "blocked" | "approval_required" | "failed" | "regressed" | "passed" | "ready" | "submitted" | "succeeded" | undefined;
|
|
5722
5727
|
expectation_source?: string | undefined;
|
|
5723
5728
|
publish_action?: {
|
|
5724
5729
|
label: string;
|
|
5725
5730
|
id: string;
|
|
5726
5731
|
approval_required: true;
|
|
5727
|
-
status?: "completed" | "
|
|
5732
|
+
status?: "completed" | "blocked" | "approval_required" | "approved" | "submitted" | undefined;
|
|
5728
5733
|
tool_name?: string | undefined;
|
|
5729
5734
|
payload_ref?: string | undefined;
|
|
5730
5735
|
} | undefined;
|
|
@@ -5892,11 +5897,6 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
5892
5897
|
} | null;
|
|
5893
5898
|
latest_correction_id: string | null;
|
|
5894
5899
|
} | undefined;
|
|
5895
|
-
result?: {
|
|
5896
|
-
status?: string | undefined;
|
|
5897
|
-
error?: string | undefined;
|
|
5898
|
-
summary?: string | undefined;
|
|
5899
|
-
} | undefined;
|
|
5900
5900
|
decision_reason?: string | undefined;
|
|
5901
5901
|
}, {
|
|
5902
5902
|
kind: "verification" | "observation" | "metric" | "decision" | "failure" | "strategy" | "task_generation" | "research" | "execution" | "other" | "artifact" | "dream_checkpoint" | "evaluator" | "correction";
|
|
@@ -5940,7 +5940,7 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
5940
5940
|
primary_dimension?: string | undefined;
|
|
5941
5941
|
action?: string | undefined;
|
|
5942
5942
|
} | undefined;
|
|
5943
|
-
outcome?: "
|
|
5943
|
+
outcome?: "blocked" | "failed" | "improved" | "regressed" | "inconclusive" | "continued" | undefined;
|
|
5944
5944
|
strategy?: string | undefined;
|
|
5945
5945
|
research?: {
|
|
5946
5946
|
trigger: "plateau" | "uncertainty" | "knowledge_gap";
|
|
@@ -5982,13 +5982,18 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
5982
5982
|
label: string;
|
|
5983
5983
|
path?: string | undefined;
|
|
5984
5984
|
source?: string | undefined;
|
|
5985
|
-
kind?: "url" | "
|
|
5985
|
+
kind?: "url" | "log" | "diff" | "other" | "metrics" | "report" | undefined;
|
|
5986
5986
|
url?: string | undefined;
|
|
5987
5987
|
state_relative_path?: string | undefined;
|
|
5988
5988
|
retention_class?: "other" | "final_deliverable" | "best_candidate" | "robust_candidate" | "near_miss" | "reproducibility_critical" | "evidence_report" | "low_value_smoke" | "cache_intermediate" | "duplicate_superseded" | undefined;
|
|
5989
5989
|
size_bytes?: number | undefined;
|
|
5990
5990
|
dependency_refs?: string[] | undefined;
|
|
5991
5991
|
}[] | undefined;
|
|
5992
|
+
result?: {
|
|
5993
|
+
status?: string | undefined;
|
|
5994
|
+
error?: string | undefined;
|
|
5995
|
+
summary?: string | undefined;
|
|
5996
|
+
} | undefined;
|
|
5992
5997
|
candidates?: {
|
|
5993
5998
|
lineage: {
|
|
5994
5999
|
strategy_family: string;
|
|
@@ -6016,7 +6021,7 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
6016
6021
|
label: string;
|
|
6017
6022
|
path?: string | undefined;
|
|
6018
6023
|
source?: string | undefined;
|
|
6019
|
-
kind?: "url" | "
|
|
6024
|
+
kind?: "url" | "log" | "diff" | "other" | "metrics" | "report" | undefined;
|
|
6020
6025
|
url?: string | undefined;
|
|
6021
6026
|
state_relative_path?: string | undefined;
|
|
6022
6027
|
retention_class?: "other" | "final_deliverable" | "best_candidate" | "robust_candidate" | "near_miss" | "reproducibility_critical" | "evidence_report" | "low_value_smoke" | "cache_intermediate" | "duplicate_superseded" | undefined;
|
|
@@ -6107,6 +6112,11 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
6107
6112
|
correction_kind: "superseded" | "corrected" | "retracted" | "forgotten" | "quarantined";
|
|
6108
6113
|
actor: "user" | "dream_lint" | "runtime_verification" | "manual_tool";
|
|
6109
6114
|
schema_version?: "memory-correction-entry-v1" | undefined;
|
|
6115
|
+
audit?: {
|
|
6116
|
+
status?: "active" | "superseded" | "disputed" | "destructive_delete_requested" | undefined;
|
|
6117
|
+
retained_for_audit?: boolean | undefined;
|
|
6118
|
+
destructive_delete_approved_at?: string | null | undefined;
|
|
6119
|
+
} | undefined;
|
|
6110
6120
|
replacement_ref?: {
|
|
6111
6121
|
kind: "runtime_evidence" | "agent_memory" | "soil_record" | "dream_checkpoint";
|
|
6112
6122
|
id: string;
|
|
@@ -6116,11 +6126,6 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
6116
6126
|
run_id?: string | undefined;
|
|
6117
6127
|
} | undefined;
|
|
6118
6128
|
} | null | undefined;
|
|
6119
|
-
audit?: {
|
|
6120
|
-
status?: "active" | "superseded" | "disputed" | "destructive_delete_requested" | undefined;
|
|
6121
|
-
retained_for_audit?: boolean | undefined;
|
|
6122
|
-
destructive_delete_approved_at?: string | null | undefined;
|
|
6123
|
-
} | undefined;
|
|
6124
6129
|
} | undefined;
|
|
6125
6130
|
metrics?: {
|
|
6126
6131
|
label: string;
|
|
@@ -6147,11 +6152,11 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
6147
6152
|
signal: "external" | "local";
|
|
6148
6153
|
evaluator_id: string;
|
|
6149
6154
|
validation?: {
|
|
6150
|
-
status?: "unknown" | "pending" | "
|
|
6155
|
+
status?: "unknown" | "pending" | "blocked" | "failed" | "passed" | undefined;
|
|
6151
6156
|
summary?: string | undefined;
|
|
6152
6157
|
command?: string | undefined;
|
|
6153
6158
|
} | undefined;
|
|
6154
|
-
status?: "unknown" | "pending" | "completed" | "
|
|
6159
|
+
status?: "unknown" | "pending" | "completed" | "blocked" | "approval_required" | "failed" | "regressed" | "passed" | "ready" | "submitted" | "succeeded" | undefined;
|
|
6155
6160
|
direction?: "neutral" | "maximize" | "minimize" | undefined;
|
|
6156
6161
|
summary?: string | undefined;
|
|
6157
6162
|
score?: string | number | boolean | null | undefined;
|
|
@@ -6183,12 +6188,12 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
6183
6188
|
artifact_labels?: string[] | undefined;
|
|
6184
6189
|
score_label?: string | undefined;
|
|
6185
6190
|
expected_score?: string | number | boolean | null | undefined;
|
|
6186
|
-
expected_status?: "unknown" | "pending" | "completed" | "
|
|
6191
|
+
expected_status?: "unknown" | "pending" | "completed" | "blocked" | "approval_required" | "failed" | "regressed" | "passed" | "ready" | "submitted" | "succeeded" | undefined;
|
|
6187
6192
|
expectation_source?: string | undefined;
|
|
6188
6193
|
publish_action?: {
|
|
6189
6194
|
label: string;
|
|
6190
6195
|
id: string;
|
|
6191
|
-
status?: "completed" | "
|
|
6196
|
+
status?: "completed" | "blocked" | "approval_required" | "approved" | "submitted" | undefined;
|
|
6192
6197
|
tool_name?: string | undefined;
|
|
6193
6198
|
payload_ref?: string | undefined;
|
|
6194
6199
|
approval_required?: true | undefined;
|
|
@@ -6357,11 +6362,6 @@ export declare const RuntimeEvidenceEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
6357
6362
|
} | null | undefined;
|
|
6358
6363
|
latest_correction_id?: string | null | undefined;
|
|
6359
6364
|
} | undefined;
|
|
6360
|
-
result?: {
|
|
6361
|
-
status?: string | undefined;
|
|
6362
|
-
error?: string | undefined;
|
|
6363
|
-
summary?: string | undefined;
|
|
6364
|
-
} | undefined;
|
|
6365
6365
|
decision_reason?: string | undefined;
|
|
6366
6366
|
}>;
|
|
6367
6367
|
export type RuntimeEvidenceEntry = z.infer<typeof RuntimeEvidenceEntrySchema>;
|