@abot-ai/runtime 1.2.0 → 1.3.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 +14 -0
- package/dist/src/bridge/request-steering.d.ts +2 -1
- package/dist/src/bridge/request-steering.js +4 -2
- package/dist/src/bridge/runtime-replay.js +2 -19
- package/dist/src/bridge/start-agent-bridge.js +1 -1
- package/dist/src/capabilities/normal-invocation/validator.js +1 -1
- package/dist/src/capabilities/tool-definition-validator/event-presentation.js +3 -0
- package/dist/src/capabilities/tool-definition-validator/event-result-metadata.d.ts +2 -0
- package/dist/src/capabilities/tool-definition-validator/event-result-metadata.js +74 -0
- package/dist/src/capabilities/tool-event-metadata.js +3 -0
- package/dist/src/capabilities/tool-result-event-projection.d.ts +3 -0
- package/dist/src/capabilities/tool-result-event-projection.js +82 -0
- package/dist/src/capabilities/tool-types.d.ts +5 -0
- package/dist/src/cli/abot.js +2 -11
- package/dist/src/runtime/adapters/in-memory-session-store.js +1 -0
- package/dist/src/runtime/adapters/long-term-memory/file-lock/acquisition.js +11 -2
- package/dist/src/runtime/adapters/long-term-memory/file-lock/contracts.d.ts +2 -0
- package/dist/src/runtime/adapters/long-term-memory/file-lock/synchronous-release.d.ts +2 -0
- package/dist/src/runtime/adapters/long-term-memory/file-lock/synchronous-release.js +40 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/execution/approval.d.ts +3 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/execution/approval.js +9 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/execution/rejection-event.d.ts +13 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/execution/rejection-event.js +25 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/execution/run.js +18 -2
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/executor.js +8 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/payload/lifecycle.js +7 -3
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/shared/contracts.d.ts +17 -2
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/shared/event-metadata.d.ts +9 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/shared/event-metadata.js +8 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/execution.js +16 -1
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-observability.js +2 -2
- package/dist/src/runtime/adapters/scheduled-request-outcome.d.ts +11 -0
- package/dist/src/runtime/adapters/scheduled-request-outcome.js +41 -0
- package/dist/src/runtime/adapters/scheduler-runtime.d.ts +19 -0
- package/dist/src/runtime/adapters/scheduler-runtime.js +138 -0
- package/dist/src/runtime/capabilities/scheduling/create-operations.d.ts +55 -0
- package/dist/src/runtime/capabilities/scheduling/create-operations.js +30 -0
- package/dist/src/runtime/capabilities/scheduling/create-time-zone.d.ts +1 -0
- package/dist/src/runtime/capabilities/scheduling/create-time-zone.js +11 -0
- package/dist/src/runtime/capabilities/scheduling/job-list-page.d.ts +25 -0
- package/dist/src/runtime/capabilities/scheduling/job-list-page.js +40 -0
- package/dist/src/runtime/capabilities/scheduling/model-validation.d.ts +2 -0
- package/dist/src/runtime/capabilities/scheduling/model-validation.js +15 -0
- package/dist/src/runtime/capabilities/scheduling/tool-contract.d.ts +2 -0
- package/dist/src/runtime/capabilities/scheduling/tool-contract.js +35 -0
- package/dist/src/runtime/capabilities/scheduling/tool-input-properties.d.ts +43 -0
- package/dist/src/runtime/capabilities/scheduling/tool-input-properties.js +27 -0
- package/dist/src/runtime/capabilities/scheduling/tool-module.d.ts +4 -0
- package/dist/src/runtime/capabilities/scheduling/tool-module.js +158 -0
- package/dist/src/runtime/capabilities/scheduling/update-operations.d.ts +2 -0
- package/dist/src/runtime/capabilities/scheduling/update-operations.js +49 -0
- package/dist/src/runtime/composition.d.ts +23 -3
- package/dist/src/runtime/composition.js +12 -17
- package/dist/src/runtime/config/environment-paths.d.ts +10 -0
- package/dist/src/runtime/config/environment-paths.js +31 -0
- package/dist/src/runtime/config/environment-storage.d.ts +9 -0
- package/dist/src/runtime/config/environment-storage.js +65 -0
- package/dist/src/runtime/config/fields.js +7 -0
- package/dist/src/runtime/config/long-term-memory.js +15 -0
- package/dist/src/runtime/config/schema.js +8 -0
- package/dist/src/runtime/config.js +9 -5
- package/dist/src/runtime/context/scheduled-execution-context.d.ts +10 -0
- package/dist/src/runtime/context/scheduled-execution-context.js +52 -0
- package/dist/src/runtime/default-adapters.d.ts +3 -32
- package/dist/src/runtime/default-adapters.js +3 -270
- package/dist/src/runtime/default-environment-adapters.d.ts +19 -0
- package/dist/src/runtime/default-environment-adapters.js +144 -0
- package/dist/src/runtime/index.d.ts +5 -0
- package/dist/src/runtime/index.js +4 -0
- package/dist/src/runtime/local-application.d.ts +22 -0
- package/dist/src/runtime/local-application.js +81 -0
- package/dist/src/runtime/local-host/app-memory-dispatch.d.ts +11 -0
- package/dist/src/runtime/local-host/app-memory-dispatch.js +103 -0
- package/dist/src/runtime/local-host/app-owner.d.ts +4 -0
- package/dist/src/runtime/local-host/app-owner.js +119 -0
- package/dist/src/runtime/local-host/app-request-control.d.ts +24 -0
- package/dist/src/runtime/local-host/app-request-control.js +135 -0
- package/dist/src/runtime/local-host/app-service-dispatch.d.ts +5 -0
- package/dist/src/runtime/local-host/app-service-dispatch.js +64 -0
- package/dist/src/runtime/local-host/client-identity.d.ts +3 -0
- package/dist/src/runtime/local-host/client-identity.js +17 -0
- package/dist/src/runtime/local-host/client-memory.d.ts +7 -0
- package/dist/src/runtime/local-host/client-memory.js +54 -0
- package/dist/src/runtime/local-host/client-requests.d.ts +19 -0
- package/dist/src/runtime/local-host/client-requests.js +145 -0
- package/dist/src/runtime/local-host/client-services.d.ts +10 -0
- package/dist/src/runtime/local-host/client-services.js +14 -0
- package/dist/src/runtime/local-host/contracts.d.ts +36 -0
- package/dist/src/runtime/local-host/contracts.js +1 -0
- package/dist/src/runtime/local-host/endpoint.d.ts +7 -0
- package/dist/src/runtime/local-host/endpoint.js +79 -0
- package/dist/src/runtime/local-host/owner-activity.d.ts +10 -0
- package/dist/src/runtime/local-host/owner-activity.js +30 -0
- package/dist/src/runtime/local-host/owner-retirement.d.ts +3 -0
- package/dist/src/runtime/local-host/owner-retirement.js +15 -0
- package/dist/src/runtime/local-host/owner-server.d.ts +6 -0
- package/dist/src/runtime/local-host/owner-server.js +88 -0
- package/dist/src/runtime/local-host/private-access.d.ts +2 -0
- package/dist/src/runtime/local-host/private-access.js +16 -0
- package/dist/src/runtime/local-host/private-directory.d.ts +1 -0
- package/dist/src/runtime/local-host/private-directory.js +57 -0
- package/dist/src/runtime/local-host/rpc-peer.d.ts +22 -0
- package/dist/src/runtime/local-host/rpc-peer.js +168 -0
- package/dist/src/runtime/local-host/rpc-protocol.d.ts +21 -0
- package/dist/src/runtime/local-host/rpc-protocol.js +46 -0
- package/dist/src/runtime/local-host/startup-connection.d.ts +5 -0
- package/dist/src/runtime/local-host/startup-connection.js +72 -0
- package/dist/src/runtime/local-host/transport.d.ts +3 -0
- package/dist/src/runtime/local-host/transport.js +88 -0
- package/dist/src/runtime/local-host/windows-private-access.d.ts +1 -0
- package/dist/src/runtime/local-host/windows-private-access.js +51 -0
- package/dist/src/runtime/long-term-memory/onboarding/configuration.js +6 -0
- package/dist/src/runtime/long-term-memory/recall-binding.d.ts +3 -0
- package/dist/src/runtime/long-term-memory/recall-binding.js +27 -0
- package/dist/src/runtime/long-term-memory/recall-context.d.ts +20 -0
- package/dist/src/runtime/long-term-memory/recall-context.js +101 -0
- package/dist/src/runtime/long-term-memory/recall-continuation.d.ts +8 -0
- package/dist/src/runtime/long-term-memory/recall-continuation.js +36 -0
- package/dist/src/runtime/long-term-memory/recall-policy.d.ts +7 -0
- package/dist/src/runtime/long-term-memory/recall-policy.js +14 -0
- package/dist/src/runtime/long-term-memory/recall-result.d.ts +5 -0
- package/dist/src/runtime/long-term-memory/recall-result.js +54 -0
- package/dist/src/runtime/long-term-memory/repository-state.d.ts +2 -1
- package/dist/src/runtime/long-term-memory/repository-state.js +2 -2
- package/dist/src/runtime/model/invoke-raw-step.d.ts +1 -0
- package/dist/src/runtime/model/invoke-raw-step.js +1 -0
- package/dist/src/runtime/model/invoke-step.js +6 -0
- package/dist/src/runtime/model/invoke-structured-step.d.ts +1 -0
- package/dist/src/runtime/model/invoke-structured-step.js +1 -0
- package/dist/src/runtime/model/model-step-port.d.ts +2 -0
- package/dist/src/runtime/model/model-step-steering.d.ts +8 -0
- package/dist/src/runtime/model/model-step-steering.js +19 -0
- package/dist/src/runtime/orchestration/final-response/authoring-contract.js +1 -1
- package/dist/src/runtime/orchestration/final-response/invoke.d.ts +1 -0
- package/dist/src/runtime/orchestration/final-response/invoke.js +1 -0
- package/dist/src/runtime/orchestration/role-calls/activation-budget.js +1 -0
- package/dist/src/runtime/orchestration/role-calls/candidate-validation.js +9 -49
- package/dist/src/runtime/orchestration/role-calls/capability-selection-reconsideration.d.ts +9 -0
- package/dist/src/runtime/orchestration/role-calls/capability-selection-reconsideration.js +17 -8
- package/dist/src/runtime/orchestration/role-calls/capability-selection-supervision-validation.d.ts +2 -0
- package/dist/src/runtime/orchestration/role-calls/capability-selection-supervision-validation.js +62 -0
- package/dist/src/runtime/orchestration/role-calls/command-decoder.js +4 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/memory-recall-transitions.d.ts +4 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/memory-recall-transitions.js +89 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch.js +5 -0
- package/dist/src/runtime/orchestration/role-calls/contracts.d.ts +9 -7
- package/dist/src/runtime/orchestration/role-calls/contracts.js +2 -2
- package/dist/src/runtime/orchestration/role-calls/diagnostics.js +3 -0
- package/dist/src/runtime/orchestration/role-calls/index.d.ts +1 -0
- package/dist/src/runtime/orchestration/role-calls/index.js +1 -0
- package/dist/src/runtime/orchestration/role-calls/memory-recall-contract.d.ts +51 -0
- package/dist/src/runtime/orchestration/role-calls/memory-recall-contract.js +4 -0
- package/dist/src/runtime/orchestration/role-calls/memory-recall-decoder.d.ts +6 -0
- package/dist/src/runtime/orchestration/role-calls/memory-recall-decoder.js +147 -0
- package/dist/src/runtime/orchestration/role-calls/memory-recall-diagnostics.d.ts +5 -0
- package/dist/src/runtime/orchestration/role-calls/memory-recall-diagnostics.js +27 -0
- package/dist/src/runtime/orchestration/role-calls/memory-recall-state-validation.d.ts +3 -0
- package/dist/src/runtime/orchestration/role-calls/memory-recall-state-validation.js +121 -0
- package/dist/src/runtime/orchestration/role-calls/memory-recall-transactions.d.ts +3 -0
- package/dist/src/runtime/orchestration/role-calls/memory-recall-transactions.js +44 -0
- package/dist/src/runtime/orchestration/role-calls/reducer.js +1 -0
- package/dist/src/runtime/orchestration/role-calls/transaction-effect.d.ts +5 -0
- package/dist/src/runtime/orchestration/role-calls/transaction-effect.js +14 -0
- package/dist/src/runtime/orchestration/role-calls/transactions.js +3 -24
- package/dist/src/runtime/plugins/manifest-validator.js +4 -1
- package/dist/src/runtime/ports.d.ts +4 -0
- package/dist/src/runtime/request/bound-runtime-handler.d.ts +2 -0
- package/dist/src/runtime/request/bound-runtime-handler.js +25 -0
- package/dist/src/runtime/request/contracts.d.ts +6 -0
- package/dist/src/runtime/request/execution-agent-root-execution.js +12 -0
- package/dist/src/runtime/request/execution-facets.js +6 -0
- package/dist/src/runtime/request/execution-scope-surfaces.js +10 -0
- package/dist/src/runtime/request/execution-scope.d.ts +1 -1
- package/dist/src/runtime/request/handler.js +6 -0
- package/dist/src/runtime/request/root-contract.d.ts +7 -1
- package/dist/src/runtime/request/root-execution-kernel.js +33 -37
- package/dist/src/runtime/request/root-memory-recall.d.ts +11 -0
- package/dist/src/runtime/request/root-memory-recall.js +71 -0
- package/dist/src/runtime/request/root-observation-handoff.d.ts +17 -0
- package/dist/src/runtime/request/root-observation-handoff.js +44 -0
- package/dist/src/runtime/request/scheduled-execution.d.ts +9 -0
- package/dist/src/runtime/request/scheduled-execution.js +32 -0
- package/dist/src/runtime/request/session-admission.d.ts +17 -0
- package/dist/src/runtime/request/session-admission.js +88 -0
- package/dist/src/runtime/request/supervisor-root-execution-diagnostics.d.ts +1 -1
- package/dist/src/runtime/request/supervisor-root-execution.js +8 -0
- package/dist/src/runtime/runtime-environment.d.ts +31 -0
- package/dist/src/runtime/runtime-environment.js +102 -0
- package/dist/src/runtime/runtime-host-environment.d.ts +8 -0
- package/dist/src/runtime/runtime-host-environment.js +57 -0
- package/dist/src/runtime/runtime-host-lifecycle.d.ts +4 -0
- package/dist/src/runtime/runtime-host-lifecycle.js +64 -0
- package/dist/src/runtime/runtime-host-scheduler-ownership.d.ts +5 -0
- package/dist/src/runtime/runtime-host-scheduler-ownership.js +67 -0
- package/dist/src/runtime/runtime-host.d.ts +19 -0
- package/dist/src/runtime/runtime-host.js +63 -0
- package/dist/src/runtime/scheduler/calendar-time.d.ts +10 -0
- package/dist/src/runtime/scheduler/calendar-time.js +58 -0
- package/dist/src/runtime/scheduler/contracts.d.ts +143 -0
- package/dist/src/runtime/scheduler/contracts.js +1 -0
- package/dist/src/runtime/scheduler/file-store.d.ts +2 -0
- package/dist/src/runtime/scheduler/file-store.js +76 -0
- package/dist/src/runtime/scheduler/instant-validation.d.ts +4 -0
- package/dist/src/runtime/scheduler/instant-validation.js +69 -0
- package/dist/src/runtime/scheduler/interval-range.d.ts +8 -0
- package/dist/src/runtime/scheduler/interval-range.js +24 -0
- package/dist/src/runtime/scheduler/job-management.d.ts +8 -0
- package/dist/src/runtime/scheduler/job-management.js +212 -0
- package/dist/src/runtime/scheduler/journal-checkpoint.d.ts +9 -0
- package/dist/src/runtime/scheduler/journal-checkpoint.js +45 -0
- package/dist/src/runtime/scheduler/journal-durability.d.ts +8 -0
- package/dist/src/runtime/scheduler/journal-durability.js +59 -0
- package/dist/src/runtime/scheduler/journal-files.d.ts +14 -0
- package/dist/src/runtime/scheduler/journal-files.js +59 -0
- package/dist/src/runtime/scheduler/journal-head.d.ts +21 -0
- package/dist/src/runtime/scheduler/journal-head.js +81 -0
- package/dist/src/runtime/scheduler/journal-index-state.d.ts +31 -0
- package/dist/src/runtime/scheduler/journal-index-state.js +137 -0
- package/dist/src/runtime/scheduler/journal-index.d.ts +22 -0
- package/dist/src/runtime/scheduler/journal-index.js +195 -0
- package/dist/src/runtime/scheduler/journal-store.d.ts +21 -0
- package/dist/src/runtime/scheduler/journal-store.js +184 -0
- package/dist/src/runtime/scheduler/journal-transaction.d.ts +14 -0
- package/dist/src/runtime/scheduler/journal-transaction.js +104 -0
- package/dist/src/runtime/scheduler/next-occurrence.d.ts +3 -0
- package/dist/src/runtime/scheduler/next-occurrence.js +39 -0
- package/dist/src/runtime/scheduler/run-completion.d.ts +12 -0
- package/dist/src/runtime/scheduler/run-completion.js +77 -0
- package/dist/src/runtime/scheduler/run-list-query.d.ts +5 -0
- package/dist/src/runtime/scheduler/run-list-query.js +38 -0
- package/dist/src/runtime/scheduler/run-records.d.ts +6 -0
- package/dist/src/runtime/scheduler/run-records.js +41 -0
- package/dist/src/runtime/scheduler/schedule-update.d.ts +3 -0
- package/dist/src/runtime/scheduler/schedule-update.js +22 -0
- package/dist/src/runtime/scheduler/schedule-validation.d.ts +10 -0
- package/dist/src/runtime/scheduler/schedule-validation.js +132 -0
- package/dist/src/runtime/scheduler/scheduler-engine.d.ts +2 -0
- package/dist/src/runtime/scheduler/scheduler-engine.js +174 -0
- package/dist/src/runtime/scheduler/scheduler-service.d.ts +10 -0
- package/dist/src/runtime/scheduler/scheduler-service.js +115 -0
- package/dist/src/runtime/scheduler/service-context.d.ts +21 -0
- package/dist/src/runtime/scheduler/service-context.js +26 -0
- package/dist/src/runtime/scheduler/session-deletion-state.d.ts +9 -0
- package/dist/src/runtime/scheduler/session-deletion-state.js +30 -0
- package/dist/src/runtime/scheduler/snapshot-validation.d.ts +4 -0
- package/dist/src/runtime/scheduler/snapshot-validation.js +112 -0
- package/dist/src/runtime/scheduler/startup-recovery.d.ts +2 -0
- package/dist/src/runtime/scheduler/startup-recovery.js +38 -0
- package/dist/src/runtime/scheduler/validation-error.d.ts +4 -0
- package/dist/src/runtime/scheduler/validation-error.js +8 -0
- package/dist/src/runtime/scheduler/working-store.d.ts +3 -0
- package/dist/src/runtime/scheduler/working-store.js +8 -0
- package/dist/src/runtime/session/request-session.d.ts +1 -0
- package/dist/src/runtime/session/request-session.js +14 -1
- package/dist/src/runtime/session/session-attachment-deletion.d.ts +8 -0
- package/dist/src/runtime/session/session-attachment-deletion.js +87 -0
- package/dist/src/runtime/session/session-deletion-boundary.d.ts +10 -0
- package/dist/src/runtime/session/session-deletion-boundary.js +39 -0
- package/dist/src/runtime/session/session-deletion-cleanup.d.ts +7 -0
- package/dist/src/runtime/session/session-deletion-cleanup.js +62 -0
- package/dist/src/runtime/session/session-deletion-finalization.d.ts +7 -0
- package/dist/src/runtime/session/session-deletion-finalization.js +34 -0
- package/dist/src/runtime/session/session-deletion-receipts.d.ts +7 -0
- package/dist/src/runtime/session/session-deletion-receipts.js +18 -0
- package/dist/src/runtime/session/session-lifecycle-store.d.ts +21 -0
- package/dist/src/runtime/session/session-lifecycle-store.js +72 -0
- package/dist/src/runtime/session/session-mutation-queue.d.ts +3 -0
- package/dist/src/runtime/session/session-mutation-queue.js +15 -0
- package/dist/src/runtime/steps/execution-agent/capability-decision-parsing.d.ts +16 -0
- package/dist/src/runtime/steps/execution-agent/capability-decision-parsing.js +165 -0
- package/dist/src/runtime/steps/execution-agent/contracts.d.ts +3 -1
- package/dist/src/runtime/steps/execution-agent/decision-parsing.d.ts +2 -0
- package/dist/src/runtime/steps/execution-agent/decision-parsing.js +195 -0
- package/dist/src/runtime/steps/execution-agent/decision-validation.d.ts +30 -0
- package/dist/src/runtime/steps/execution-agent/decision-validation.js +127 -0
- package/dist/src/runtime/steps/execution-agent/format.d.ts +1 -0
- package/dist/src/runtime/steps/execution-agent/format.js +12 -0
- package/dist/src/runtime/steps/execution-agent/input.d.ts +2 -1
- package/dist/src/runtime/steps/execution-agent/input.js +17 -2
- package/dist/src/runtime/steps/execution-agent/parser.d.ts +1 -2
- package/dist/src/runtime/steps/execution-agent/parser.js +1 -472
- package/dist/src/runtime/steps/execution-agent/prompt.d.ts +2 -0
- package/dist/src/runtime/steps/execution-agent/prompt.js +2 -0
- package/dist/src/runtime/steps/execution-agent/reconsideration-context.js +4 -3
- package/dist/src/runtime/steps/execution-agent/response-input.js +5 -4
- package/dist/src/runtime/steps/execution-agent/response-run.d.ts +3 -0
- package/dist/src/runtime/steps/execution-agent/response-run.js +7 -3
- package/dist/src/runtime/steps/execution-agent/run.d.ts +2 -0
- package/dist/src/runtime/steps/execution-agent/run.js +2 -0
- package/dist/src/runtime/steps/execution-agent/state-context.d.ts +2 -1
- package/dist/src/runtime/steps/execution-agent/state-context.js +13 -5
- package/dist/src/runtime/steps/memory-recall-decision.d.ts +30 -0
- package/dist/src/runtime/steps/memory-recall-decision.js +101 -0
- package/dist/src/runtime/steps/memory-recall-prompt.d.ts +1 -0
- package/dist/src/runtime/steps/memory-recall-prompt.js +15 -0
- package/dist/src/runtime/steps/supervisor-decision/contracts.d.ts +4 -2
- package/dist/src/runtime/steps/supervisor-decision/diagnostics.d.ts +2 -0
- package/dist/src/runtime/steps/supervisor-decision/diagnostics.js +13 -6
- package/dist/src/runtime/steps/supervisor-decision/format.d.ts +2 -0
- package/dist/src/runtime/steps/supervisor-decision/format.js +41 -2
- package/dist/src/runtime/steps/supervisor-decision/input.d.ts +5 -1
- package/dist/src/runtime/steps/supervisor-decision/input.js +25 -5
- package/dist/src/runtime/steps/supervisor-decision/memory-recall-continuation.d.ts +10 -0
- package/dist/src/runtime/steps/supervisor-decision/memory-recall-continuation.js +32 -0
- package/dist/src/runtime/steps/supervisor-decision/parser.d.ts +2 -0
- package/dist/src/runtime/steps/supervisor-decision/parser.js +36 -1
- package/dist/src/runtime/steps/supervisor-decision/prompt.d.ts +3 -0
- package/dist/src/runtime/steps/supervisor-decision/prompt.js +16 -8
- package/dist/src/runtime/steps/supervisor-decision/response-recommendation.d.ts +13 -0
- package/dist/src/runtime/steps/supervisor-decision/response-recommendation.js +32 -0
- package/dist/src/runtime/steps/supervisor-decision/resume.d.ts +2 -0
- package/dist/src/runtime/steps/supervisor-decision/resume.js +13 -0
- package/dist/src/runtime/steps/supervisor-decision/run.d.ts +3 -0
- package/dist/src/runtime/steps/supervisor-decision/run.js +19 -0
- package/dist/src/runtime/steps/supervisor-decision/working-directory.js +7 -1
- package/dist/src/runtime/steps/supervisor-response/diagnostics.d.ts +1 -0
- package/dist/src/runtime/steps/supervisor-response/diagnostics.js +1 -0
- package/dist/src/runtime/steps/supervisor-response/input.d.ts +2 -1
- package/dist/src/runtime/steps/supervisor-response/input.js +17 -4
- package/dist/src/runtime/steps/supervisor-response/memory-authoring.d.ts +1 -0
- package/dist/src/runtime/steps/supervisor-response/memory-authoring.js +4 -0
- package/dist/src/runtime/steps/supervisor-response/prompt.d.ts +1 -0
- package/dist/src/runtime/steps/supervisor-response/prompt.js +8 -2
- package/dist/src/runtime/steps/supervisor-response/response-recommendation.d.ts +10 -0
- package/dist/src/runtime/steps/supervisor-response/response-recommendation.js +25 -0
- package/dist/src/runtime/steps/supervisor-response/run.d.ts +6 -1
- package/dist/src/runtime/steps/supervisor-response/run.js +26 -7
- package/dist/src/sessions/record/projection.js +1 -0
- package/dist/src/sessions/schedule-metadata.d.ts +8 -0
- package/dist/src/sessions/schedule-metadata.js +1 -0
- package/dist/src/sessions/session-service.d.ts +1 -0
- package/dist/src/sessions/session-service.js +1 -0
- package/dist/src/sessions/types.d.ts +2 -0
- package/dist/src/shared/http-server-shutdown.d.ts +4 -0
- package/dist/src/shared/http-server-shutdown.js +17 -0
- package/dist/src/shared/public-http/aggregate-gate.d.ts +3 -0
- package/dist/src/shared/public-http/aggregate-gate.js +87 -0
- package/dist/src/shared/public-http/deadline.d.ts +2 -0
- package/dist/src/shared/public-http/deadline.js +29 -0
- package/dist/src/shared/public-http/errors.d.ts +6 -0
- package/dist/src/shared/public-http/errors.js +11 -0
- package/dist/src/shared/public-http/limits.d.ts +8 -0
- package/dist/src/shared/public-http/limits.js +8 -0
- package/dist/src/shared/public-http/network-policy.d.ts +11 -0
- package/dist/src/shared/public-http/network-policy.js +178 -0
- package/dist/src/shared/public-http/public-http.d.ts +24 -0
- package/dist/src/shared/public-http/public-http.js +85 -0
- package/dist/src/shared/public-http/request-hop.d.ts +18 -0
- package/dist/src/shared/public-http/request-hop.js +140 -0
- package/dist/src/web-ui/app/ARCHITECTURE.md +66 -4
- package/dist/src/web-ui/app/app-bootstrap.js +53 -0
- package/dist/src/web-ui/app/app-dom.js +80 -0
- package/dist/src/web-ui/app/app.js +195 -212
- package/dist/src/web-ui/app/components/conversation-activity.d.ts +2 -0
- package/dist/src/web-ui/app/components/conversation-activity.js +34 -7
- package/dist/src/web-ui/app/components/conversation-role-cards.d.ts +1 -0
- package/dist/src/web-ui/app/components/conversation-role-cards.js +61 -5
- package/dist/src/web-ui/app/components/conversation-schedule.js +71 -0
- package/dist/src/web-ui/app/components/conversation-status.js +65 -0
- package/dist/src/web-ui/app/components/conversation-tools.d.ts +13 -0
- package/dist/src/web-ui/app/components/conversation-tools.js +284 -0
- package/dist/src/web-ui/app/components/conversation-view.js +39 -11
- package/dist/src/web-ui/app/components/dashboard/activity.js +61 -0
- package/dist/src/web-ui/app/components/dashboard/icons.js +23 -0
- package/dist/src/web-ui/app/components/dashboard/recent-conversations.js +64 -0
- package/dist/src/web-ui/app/components/dashboard/workspace.js +107 -0
- package/dist/src/web-ui/app/components/message-link-previews.d.ts +16 -0
- package/dist/src/web-ui/app/components/message-link-previews.js +179 -0
- package/dist/src/web-ui/app/components/schedules/details.js +101 -0
- package/dist/src/web-ui/app/components/schedules/form.d.ts +13 -0
- package/dist/src/web-ui/app/components/schedules/form.js +246 -0
- package/dist/src/web-ui/app/components/schedules/workspace-state.js +59 -0
- package/dist/src/web-ui/app/components/schedules/workspace.js +165 -0
- package/dist/src/web-ui/app/components/workspace-shell.js +48 -2
- package/dist/src/web-ui/app/configuration-feature.js +72 -0
- package/dist/src/web-ui/app/controllers/composer-attachments-controller.d.ts +1 -0
- package/dist/src/web-ui/app/controllers/composer-attachments-controller.js +17 -6
- package/dist/src/web-ui/app/controllers/composer-submit-controller.d.ts +2 -0
- package/dist/src/web-ui/app/controllers/composer-submit-controller.js +15 -1
- package/dist/src/web-ui/app/controllers/composer-surface-controller.js +58 -0
- package/dist/src/web-ui/app/controllers/composer-workspace-controller.d.ts +53 -0
- package/dist/src/web-ui/app/controllers/composer-workspace-controller.js +180 -0
- package/dist/src/web-ui/app/controllers/conversation-read-state-controller.d.ts +23 -0
- package/dist/src/web-ui/app/controllers/conversation-read-state-controller.js +82 -0
- package/dist/src/web-ui/app/controllers/conversation-session-controller.d.ts +8 -0
- package/dist/src/web-ui/app/controllers/conversation-session-controller.js +28 -39
- package/dist/src/web-ui/app/controllers/dashboard-controller.js +127 -0
- package/dist/src/web-ui/app/controllers/home-composer-feature.d.ts +40 -0
- package/dist/src/web-ui/app/controllers/home-composer-feature.js +119 -0
- package/dist/src/web-ui/app/controllers/home-conversation-activation.js +37 -0
- package/dist/src/web-ui/app/controllers/realtime-event-controller.d.ts +1 -0
- package/dist/src/web-ui/app/controllers/realtime-event-controller.js +74 -3
- package/dist/src/web-ui/app/controllers/runtime-selection-controller.d.ts +2 -1
- package/dist/src/web-ui/app/controllers/runtime-selection-controller.js +15 -14
- package/dist/src/web-ui/app/controllers/schedule-realtime.js +118 -0
- package/dist/src/web-ui/app/controllers/schedules-controller.js +421 -0
- package/dist/src/web-ui/app/controllers/session-controller.js +30 -3
- package/dist/src/web-ui/app/dashboard-feature.js +44 -0
- package/dist/src/web-ui/app/index.html +53 -1
- package/dist/src/web-ui/app/lib/composer-submission-scope.d.ts +21 -0
- package/dist/src/web-ui/app/lib/composer-submission-scope.js +13 -0
- package/dist/src/web-ui/app/lib/context-window-snapshot-order.d.ts +15 -0
- package/dist/src/web-ui/app/lib/context-window-snapshot-order.js +31 -0
- package/dist/src/web-ui/app/lib/conversation-role-model.d.ts +10 -1
- package/dist/src/web-ui/app/lib/conversation-role-model.js +97 -15
- package/dist/src/web-ui/app/lib/conversation-status-model.d.ts +12 -0
- package/dist/src/web-ui/app/lib/conversation-status-model.js +116 -0
- package/dist/src/web-ui/app/lib/dashboard-job-templates.js +41 -0
- package/dist/src/web-ui/app/lib/dashboard-presentation.js +126 -0
- package/dist/src/web-ui/app/lib/message-markdown.d.ts +5 -0
- package/dist/src/web-ui/app/lib/message-markdown.js +99 -0
- package/dist/src/web-ui/app/lib/message-url-policy.d.ts +1 -0
- package/dist/src/web-ui/app/lib/message-url-policy.js +13 -0
- package/dist/src/web-ui/app/lib/schedule-errors.js +29 -0
- package/dist/src/web-ui/app/lib/schedule-message.js +30 -0
- package/dist/src/web-ui/app/lib/schedule-presentation.js +81 -0
- package/dist/src/web-ui/app/lib/session-read-state.d.ts +22 -0
- package/dist/src/web-ui/app/lib/session-read-state.js +63 -0
- package/dist/src/web-ui/app/lib/text-format.js +2 -143
- package/dist/src/web-ui/app/lib/tool-activity-event.d.ts +26 -0
- package/dist/src/web-ui/app/lib/tool-activity-event.js +228 -0
- package/dist/src/web-ui/app/lib/tool-activity-model.d.ts +41 -0
- package/dist/src/web-ui/app/lib/tool-activity-model.js +255 -0
- package/dist/src/web-ui/app/lib/tool-timeline.d.ts +3 -0
- package/dist/src/web-ui/app/lib/tool-timeline.js +18 -0
- package/dist/src/web-ui/app/schedules-feature.js +87 -0
- package/dist/src/web-ui/app/services/message-link-preview-client.d.ts +14 -0
- package/dist/src/web-ui/app/services/message-link-preview-client.js +96 -0
- package/dist/src/web-ui/app/services/runtime-web-client/schedules.js +51 -0
- package/dist/src/web-ui/app/services/runtime-web-client.d.ts +37 -0
- package/dist/src/web-ui/app/services/runtime-web-client.js +13 -8
- package/dist/src/web-ui/app/styles/00-tokens-base.css +11 -11
- package/dist/src/web-ui/app/styles/18-dashboard.css +384 -0
- package/dist/src/web-ui/app/styles/20-chat-composer.css +1 -130
- package/dist/src/web-ui/app/styles/26-message-content.css +295 -0
- package/dist/src/web-ui/app/styles/27-conversation-tools.css +266 -0
- package/dist/src/web-ui/app/styles/28-conversation-status.css +52 -0
- package/dist/src/web-ui/app/styles/38-schedule-workspace.css +263 -0
- package/dist/src/web-ui/app/styles/38-schedules.css +352 -0
- package/dist/src/web-ui/app/styles/90-responsive.css +14 -0
- package/dist/src/web-ui/app/styles/91-schedules-responsive.css +72 -0
- package/dist/src/web-ui/app/styles/92-dashboard-responsive.css +88 -0
- package/dist/src/web-ui/app/styles.css +8 -0
- package/dist/src/web-ui/app/ui-behavior.d.ts +1 -1
- package/dist/src/web-ui/app/ui-behavior.js +3 -1
- package/dist/src/web-ui/app/vendor/README.md +15 -0
- package/dist/src/web-ui/app/vendor/markdown-it.LICENSE +22 -0
- package/dist/src/web-ui/app/vendor/markdown-it.js +3003 -0
- package/dist/src/web-ui/link-preview/metadata.d.ts +9 -0
- package/dist/src/web-ui/link-preview/metadata.js +97 -0
- package/dist/src/web-ui/link-preview/preview-cache.d.ts +4 -0
- package/dist/src/web-ui/link-preview/preview-cache.js +23 -0
- package/dist/src/web-ui/link-preview/raster-response.d.ts +9 -0
- package/dist/src/web-ui/link-preview/raster-response.js +49 -0
- package/dist/src/web-ui/link-preview/routes.d.ts +3 -0
- package/dist/src/web-ui/link-preview/routes.js +97 -0
- package/dist/src/web-ui/link-preview/service.d.ts +11 -0
- package/dist/src/web-ui/link-preview/service.js +117 -0
- package/dist/src/web-ui/local-runtime/api-router.d.ts +4 -1
- package/dist/src/web-ui/local-runtime/api-router.js +42 -73
- package/dist/src/web-ui/local-runtime/contracts.d.ts +2 -2
- package/dist/src/web-ui/local-runtime/environment-registry.d.ts +12 -1
- package/dist/src/web-ui/local-runtime/environment-registry.js +38 -3
- package/dist/src/web-ui/local-runtime/realtime-controller.js +3 -1
- package/dist/src/web-ui/local-runtime/request-execution.d.ts +5 -1
- package/dist/src/web-ui/local-runtime/request-execution.js +38 -2
- package/dist/src/web-ui/local-runtime/schedule-job-creation.d.ts +7 -0
- package/dist/src/web-ui/local-runtime/schedule-job-creation.js +62 -0
- package/dist/src/web-ui/local-runtime/schedule-management-routes.d.ts +30 -0
- package/dist/src/web-ui/local-runtime/schedule-management-routes.js +134 -0
- package/dist/src/web-ui/local-runtime/schedule-run-page.d.ts +5 -0
- package/dist/src/web-ui/local-runtime/schedule-run-page.js +23 -0
- package/dist/src/web-ui/local-runtime/session-routes.d.ts +17 -0
- package/dist/src/web-ui/local-runtime/session-routes.js +74 -0
- package/dist/src/web-ui/local-runtime-backend.d.ts +2 -0
- package/dist/src/web-ui/local-runtime-backend.js +11 -1
- package/dist/src/web-ui/schedule-creation-contract.d.ts +7 -0
- package/dist/src/web-ui/schedule-creation-contract.js +1 -0
- package/dist/src/web-ui/server-shutdown.d.ts +4 -0
- package/dist/src/web-ui/server-shutdown.js +32 -0
- package/dist/src/web-ui/server.js +13 -10
- package/dist/src/web-ui/session-read-state/availability.d.ts +16 -0
- package/dist/src/web-ui/session-read-state/availability.js +20 -0
- package/dist/src/web-ui/session-read-state/projection.d.ts +17 -0
- package/dist/src/web-ui/session-read-state/projection.js +71 -0
- package/dist/src/web-ui/session-read-state/service.d.ts +86 -0
- package/dist/src/web-ui/session-read-state/service.js +89 -0
- package/dist/src/web-ui/session-read-state/store.d.ts +22 -0
- package/dist/src/web-ui/session-read-state/store.js +110 -0
- package/docs/configuration.md +41 -1
- package/docs/long-term-memory.md +46 -5
- package/docs/runtime-invariant-coverage.md +1 -1
- package/docs/runtime-library.md +23 -0
- package/docs/runtime-public-contracts.md +32 -1
- package/package.json +3 -1
- package/plugins/code-outline/plugin.json +15 -0
- package/plugins/document-reader/plugin.json +17 -0
- package/plugins/filesystem/plugin.json +17 -2
- package/plugins/json-inspector/plugin.json +12 -0
- package/plugins/local-search/plugin.json +12 -0
- package/plugins/memory/plugin.json +26 -1
- package/plugins/memory/source/index.ts +10 -6
- package/plugins/memory/src/index.cjs +11 -7
- package/plugins/project-orientation/plugin.json +14 -0
- package/plugins/web/source/aggregate-gate.ts +8 -130
- package/plugins/web/source/deadline.ts +14 -50
- package/plugins/web/source/errors.ts +17 -11
- package/plugins/web/source/limits.ts +3 -6
- package/plugins/web/source/network-policy.ts +28 -226
- package/plugins/web/source/public-http.ts +17 -142
- package/plugins/web/source/request-hop.ts +11 -191
- package/plugins/web/src/index.cjs +119 -59
- package/runtime.config.schema.json +7 -0
- package/src/runtime/README.md +105 -1
- package/src/runtime/local-host/README.md +86 -0
- package/src/runtime/scheduler/README.md +166 -0
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import { escapeHtml } from "../../lib/text-format.js";
|
|
2
|
+
import { scheduleTimeLabel } from "../../lib/schedule-message.js";
|
|
3
|
+
import { scheduleErrorMessage } from "../../lib/schedule-errors.js";
|
|
4
|
+
import {
|
|
5
|
+
canManageSchedule,
|
|
6
|
+
canRunScheduleNow,
|
|
7
|
+
scheduleDescription,
|
|
8
|
+
} from "../../lib/schedule-presentation.js";
|
|
9
|
+
|
|
10
|
+
function fact(label, value) {
|
|
11
|
+
return `<div><dt>${escapeHtml(label)}</dt><dd dir="auto">${escapeHtml(value || "—")}</dd></div>`;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
function actionsMarkup(job, busy) {
|
|
15
|
+
const disabled = busy ? "disabled" : "";
|
|
16
|
+
const action = (name, label) =>
|
|
17
|
+
`<button type="button" data-job-action="${name}" ${disabled}>${label}</button>`;
|
|
18
|
+
const controls = [];
|
|
19
|
+
if (canManageSchedule(job)) controls.push(action("edit", "Edit"));
|
|
20
|
+
if (canRunScheduleNow(job)) controls.push(action("run-now", "Run now"));
|
|
21
|
+
if (job.state === "active") controls.push(action("pause", "Pause"));
|
|
22
|
+
if (job.state === "paused") controls.push(action("resume", "Resume"));
|
|
23
|
+
if (canManageSchedule(job))
|
|
24
|
+
controls.push(action("cancel", "Cancel schedule"));
|
|
25
|
+
return controls.join("");
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
function runMarkup(run) {
|
|
29
|
+
const timeZone = run.timeZone;
|
|
30
|
+
return `<article class="schedule-run" data-run-id="${escapeHtml(run.id)}">
|
|
31
|
+
<div class="schedule-run-heading"><strong>${scheduleTimeLabel(run.scheduledAt, timeZone)}</strong><span class="schedule-badge" data-state="${escapeHtml(run.status)}">${escapeHtml(run.status)}</span></div>
|
|
32
|
+
<div class="schedule-run-meta">${run.trigger === "manual" ? "Manual run" : "Scheduled run"}${run.startedAt ? ` · Started ${scheduleTimeLabel(run.startedAt, timeZone)}` : ""}${run.finishedAt ? ` · Finished ${scheduleTimeLabel(run.finishedAt, timeZone)}` : ""}</div>
|
|
33
|
+
<dl class="schedule-run-settings">${fact("Model", run.modelProfileId)}${fact("Mode", run.agentMode)}${fact("Time zone", run.timeZone)}${fact("Job revision", String(run.jobRevision ?? "—"))}</dl>
|
|
34
|
+
${run.error ? `<p class="schedule-error" dir="auto">${escapeHtml(run.error)}</p>` : ""}
|
|
35
|
+
${run.resultText ? `<details class="schedule-result" data-disclosure-id="result:${escapeHtml(run.id)}"><summary>View result</summary><pre dir="auto">${escapeHtml(run.resultText)}</pre></details>` : ""}
|
|
36
|
+
<details class="schedule-prompt-disclosure" data-disclosure-id="run:${escapeHtml(run.id)}"><summary>View invocation prompt</summary><pre dir="auto">${escapeHtml(run.prompt)}</pre></details>
|
|
37
|
+
${run.requestId ? `<button type="button" class="schedule-text-button" data-open-request="${escapeHtml(run.requestId)}">Open in conversation ↗</button>` : ""}
|
|
38
|
+
<small class="schedule-id">Run ${escapeHtml(run.id)}${run.requestId ? ` · Request ${escapeHtml(run.requestId)}` : ""}</small>
|
|
39
|
+
</article>`;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
function historyNavigation(snapshot) {
|
|
43
|
+
const latest = snapshot.loadingRuns || !snapshot.runsCursor;
|
|
44
|
+
const newer = snapshot.loadingRuns || !snapshot.runsPreviousCursors?.length;
|
|
45
|
+
const older = snapshot.loadingRuns || !snapshot.runsNextCursor;
|
|
46
|
+
const button = (name, label, disabled) =>
|
|
47
|
+
`<button type="button" data-run-page="${name}" ${disabled ? "disabled" : ""}>${label}</button>`;
|
|
48
|
+
return `<nav class="schedule-action-row" aria-label="Run history pages">
|
|
49
|
+
${button("latest", "Newest", latest)}${button("newer", "Newer", newer)}${button("older", "Older", older)}
|
|
50
|
+
</nav>`;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export function renderScheduleDetails({ root, snapshot, actions }) {
|
|
54
|
+
const job = snapshot.jobs.find((item) => item.id === snapshot.selectedId);
|
|
55
|
+
if (!job) {
|
|
56
|
+
root.classList.add("schedule-details-placeholder");
|
|
57
|
+
root.innerHTML = `<div class="schedule-detail-empty"><span aria-hidden="true">◷</span><h3>${snapshot.selectedId ? "Schedule unavailable" : "Select a schedule"}</h3><p>${snapshot.selectedId ? "This schedule may have been removed with its conversation." : "See when it runs, manage its settings and follow its results here."}</p></div>`;
|
|
58
|
+
return;
|
|
59
|
+
}
|
|
60
|
+
root.classList.remove("schedule-details-placeholder");
|
|
61
|
+
const session = snapshot.sessions.find((item) => item.id === job.sessionId);
|
|
62
|
+
root.innerHTML = `<div class="schedule-detail-heading"><span class="schedule-eyebrow">Scheduled task</span><h3 dir="auto">${escapeHtml(job.title)}</h3><span class="schedule-badge" data-state="${job.state}">${job.state}</span></div>
|
|
63
|
+
<div class="schedule-action-row">${actionsMarkup(job, snapshot.mutation)}</div>
|
|
64
|
+
<dl class="schedule-facts">${fact("Schedule", scheduleDescription(job))}${fact("Next run", scheduleTimeLabel(job.nextRunAt, job.timeZone))}${fact("Time zone", job.timeZone)}${fact("Model", job.modelProfileId)}${fact("Mode", job.agentMode)}${fact("Tool access", "Full")}${fact("Created", scheduleTimeLabel(job.createdAt, job.timeZone))}${fact("Updated", scheduleTimeLabel(job.updatedAt, job.timeZone))}</dl>
|
|
65
|
+
<button type="button" class="schedule-conversation-link" data-open-conversation>↗ <span dir="auto">${escapeHtml(session?.title || job.sessionId)}</span></button>
|
|
66
|
+
<details class="schedule-prompt-disclosure" data-disclosure-id="job:${escapeHtml(job.id)}"><summary>View task prompt</summary><pre dir="auto">${escapeHtml(job.prompt)}</pre></details>
|
|
67
|
+
<small class="schedule-id">Job ${escapeHtml(job.id)} · Revision ${job.revision}</small>
|
|
68
|
+
<section class="schedule-history"><div class="schedule-section-heading"><h3>Run history</h3><span>${snapshot.runs.length} runs on this page</span></div>
|
|
69
|
+
${historyNavigation(snapshot)}
|
|
70
|
+
${snapshot.loadingRuns ? '<p role="status">Loading runs…</p>' : ""}
|
|
71
|
+
${snapshot.detailError ? `<p role="alert" class="schedule-error">${escapeHtml(scheduleErrorMessage(snapshot.detailError))}</p>` : ""}
|
|
72
|
+
${snapshot.runs.map((run) => runMarkup(run)).join("") || (!snapshot.loadingRuns && !snapshot.detailError ? '<p class="schedule-muted">No recorded runs yet.</p>' : "")}</section>`;
|
|
73
|
+
for (const button of root.querySelectorAll("[data-job-action]")) {
|
|
74
|
+
button.addEventListener("click", () => {
|
|
75
|
+
if (button.dataset.jobAction === "edit") {
|
|
76
|
+
actions.beginEdit(job.id);
|
|
77
|
+
return;
|
|
78
|
+
}
|
|
79
|
+
void actions.action(job.id, button.dataset.jobAction);
|
|
80
|
+
});
|
|
81
|
+
}
|
|
82
|
+
root
|
|
83
|
+
.querySelector("[data-open-conversation]")
|
|
84
|
+
.addEventListener("click", () => actions.openConversation(job.sessionId));
|
|
85
|
+
for (const button of root.querySelectorAll("[data-open-request]")) {
|
|
86
|
+
button.addEventListener("click", () =>
|
|
87
|
+
actions.openConversation(job.sessionId, button.dataset.openRequest),
|
|
88
|
+
);
|
|
89
|
+
}
|
|
90
|
+
const runPageActions = {
|
|
91
|
+
latest: actions.latestRuns,
|
|
92
|
+
newer: actions.newerRuns,
|
|
93
|
+
older: actions.olderRuns,
|
|
94
|
+
};
|
|
95
|
+
for (const button of root.querySelectorAll("[data-run-page]")) {
|
|
96
|
+
button.addEventListener(
|
|
97
|
+
"click",
|
|
98
|
+
() => void runPageActions[button.dataset.runPage](),
|
|
99
|
+
);
|
|
100
|
+
}
|
|
101
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
SchedulerSchedule,
|
|
3
|
+
} from "../../../../runtime/scheduler/contracts.js";
|
|
4
|
+
import type { CreateWebScheduleJobInput } from "../../../schedule-creation-contract.js";
|
|
5
|
+
|
|
6
|
+
export declare function scheduleFormInput(
|
|
7
|
+
data: FormData,
|
|
8
|
+
originalSchedule?: SchedulerSchedule,
|
|
9
|
+
): CreateWebScheduleJobInput;
|
|
10
|
+
export declare function scheduleUpdateInput(
|
|
11
|
+
current: Record<string, unknown>,
|
|
12
|
+
initial: Record<string, unknown>,
|
|
13
|
+
): Record<string, unknown>;
|
|
@@ -0,0 +1,246 @@
|
|
|
1
|
+
import { escapeHtml } from "../../lib/text-format.js";
|
|
2
|
+
import { SCHEDULE_WEEKDAYS } from "../../lib/schedule-presentation.js";
|
|
3
|
+
import { scheduleErrorMessage } from "../../lib/schedule-errors.js";
|
|
4
|
+
|
|
5
|
+
function deviceDateTime(instant) {
|
|
6
|
+
if (!instant) return "";
|
|
7
|
+
const date = new Date(instant);
|
|
8
|
+
if (!Number.isFinite(date.getTime())) return "";
|
|
9
|
+
const local = new Date(date.getTime() - date.getTimezoneOffset() * 60000);
|
|
10
|
+
return local.toISOString().slice(0, 16);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
function options(items, selected) {
|
|
14
|
+
return items
|
|
15
|
+
.map(
|
|
16
|
+
({ value, label }) =>
|
|
17
|
+
`<option value="${escapeHtml(value)}" ${value === selected ? "selected" : ""}>${escapeHtml(label)}</option>`,
|
|
18
|
+
)
|
|
19
|
+
.join("");
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
function scheduleFields(job = {}) {
|
|
23
|
+
const schedule = job.schedule || { kind: "once" };
|
|
24
|
+
const zone = Intl.DateTimeFormat().resolvedOptions().timeZone;
|
|
25
|
+
const seconds = formatDurationSeconds(
|
|
26
|
+
schedule.everyMs ?? schedule.delayMs ?? 3600000,
|
|
27
|
+
);
|
|
28
|
+
return `
|
|
29
|
+
<label>Repeat<select name="kind">${options(
|
|
30
|
+
[
|
|
31
|
+
{ value: "once", label: "Once" },
|
|
32
|
+
{ value: "timer", label: "After a delay" },
|
|
33
|
+
{ value: "interval", label: "At a fixed interval" },
|
|
34
|
+
{ value: "daily", label: "Every day" },
|
|
35
|
+
{ value: "weekly", label: "Selected weekdays" },
|
|
36
|
+
{ value: "monthly", label: "Every month" },
|
|
37
|
+
],
|
|
38
|
+
schedule.kind,
|
|
39
|
+
)}</select></label>
|
|
40
|
+
<label data-schedule-kind="once">Date and time (${escapeHtml(zone)})<input name="onceAt" type="datetime-local" value="${deviceDateTime(schedule.at)}"></label>
|
|
41
|
+
<label data-schedule-kind="timer interval">Duration in seconds<input name="seconds" type="number" min="1" step="0.001" required value="${seconds}"><small>At least 1 second. Decimal values support milliseconds.</small></label>
|
|
42
|
+
<label data-schedule-kind="interval">First run (${escapeHtml(zone)})<input name="anchorAt" type="datetime-local" value="${deviceDateTime(schedule.anchorAt)}"><small>Leave empty to start one interval after saving.</small></label>
|
|
43
|
+
<label data-schedule-kind="daily weekly monthly">Time<input name="time" type="time" value="${escapeHtml(schedule.at?.slice(0, 5) || "09:00")}"></label>
|
|
44
|
+
<fieldset data-schedule-kind="weekly" class="schedule-weekdays"><legend>Weekdays</legend>${SCHEDULE_WEEKDAYS.map((day, index) => `<label><input name="weekdays" type="checkbox" value="${index}" ${schedule.weekdays?.includes(index) ? "checked" : ""}><span title="${day}">${day.slice(0, 3)}</span></label>`).join("")}</fieldset>
|
|
45
|
+
<label data-schedule-kind="monthly">Day of month<input name="dayOfMonth" type="number" min="1" max="31" value="${schedule.dayOfMonth || 1}"></label>
|
|
46
|
+
<label>Schedule time zone<input name="timeZone" required value="${escapeHtml(job.timeZone || zone)}" placeholder="Asia/Jerusalem"><small>Daily, weekly and monthly times use this zone.</small></label>`;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export function createScheduleForm({
|
|
50
|
+
documentRoot,
|
|
51
|
+
job,
|
|
52
|
+
initialValues,
|
|
53
|
+
sessions,
|
|
54
|
+
models,
|
|
55
|
+
modes,
|
|
56
|
+
currentSessionId,
|
|
57
|
+
onSave,
|
|
58
|
+
onCancel,
|
|
59
|
+
}) {
|
|
60
|
+
const form = documentRoot.createElement("form");
|
|
61
|
+
form.className = "schedule-editor";
|
|
62
|
+
const values = job || initialValues || {};
|
|
63
|
+
const createsConversation = !job && values.newConversation === true;
|
|
64
|
+
const sessionOptions = sessions.map((session) => ({
|
|
65
|
+
value: session.id,
|
|
66
|
+
label: session.title || session.id,
|
|
67
|
+
}));
|
|
68
|
+
const modelOptions = models.map((model) => ({
|
|
69
|
+
value: model.id,
|
|
70
|
+
label: model.label || model.name || model.id,
|
|
71
|
+
}));
|
|
72
|
+
if (createsConversation) {
|
|
73
|
+
sessionOptions.unshift({ value: "__new_conversation__", label: "New dedicated conversation" });
|
|
74
|
+
}
|
|
75
|
+
if (
|
|
76
|
+
job?.modelProfileId &&
|
|
77
|
+
!modelOptions.some((model) => model.value === job.modelProfileId)
|
|
78
|
+
) {
|
|
79
|
+
modelOptions.unshift({
|
|
80
|
+
value: job.modelProfileId,
|
|
81
|
+
label: `${job.modelProfileId} (unavailable)`,
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
form.innerHTML = `
|
|
85
|
+
<div class="schedule-section-heading"><h3>${job ? "Edit schedule" : "New schedule"}</h3></div>
|
|
86
|
+
<label>Title<input name="title" required maxlength="200" value="${escapeHtml(values.title || "")}" placeholder="Give this task a name" dir="auto"></label>
|
|
87
|
+
<label>Conversation<select name="sessionId" required ${job ? "disabled" : ""}><option value="">Choose a conversation</option>${options(sessionOptions, createsConversation ? "__new_conversation__" : values.sessionId || currentSessionId)}</select></label>
|
|
88
|
+
<label>Task prompt<textarea name="prompt" rows="5" required dir="auto" placeholder="What should ABot do when this schedule runs?">${escapeHtml(values.prompt || "")}</textarea></label>
|
|
89
|
+
<div class="schedule-form-grid">${scheduleFields(values)}</div>
|
|
90
|
+
<div class="schedule-form-grid"><label>Model<select name="modelProfileId" required><option value="">Choose a model</option>${options(modelOptions, values.modelProfileId)}</select></label>
|
|
91
|
+
<label>Mode<select name="agentMode">${options(
|
|
92
|
+
modes
|
|
93
|
+
.filter((mode) => mode !== "auto")
|
|
94
|
+
.map((mode) => ({ value: mode, label: mode })),
|
|
95
|
+
values.agentMode || "reasoning",
|
|
96
|
+
)}</select></label></div>
|
|
97
|
+
<p class="schedule-permission-note"><strong>Full tool access</strong> · This task runs in its conversation using the saved model and mode.</p>
|
|
98
|
+
<p class="schedule-form-feedback" role="alert" hidden></p>
|
|
99
|
+
<div class="schedule-action-row"><button type="submit" class="primary-button">${job ? "Save changes" : "Create schedule"}</button><button type="button" data-cancel>Cancel</button></div>`;
|
|
100
|
+
const fields = form.elements;
|
|
101
|
+
const feedback = form.querySelector(".schedule-form-feedback");
|
|
102
|
+
|
|
103
|
+
function syncKind() {
|
|
104
|
+
const kind = fields.namedItem("kind").value;
|
|
105
|
+
for (const group of form.querySelectorAll("[data-schedule-kind]")) {
|
|
106
|
+
group.hidden = !group.dataset.scheduleKind.split(" ").includes(kind);
|
|
107
|
+
for (const field of group.querySelectorAll("input"))
|
|
108
|
+
field.disabled = group.hidden;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
let initialInput;
|
|
113
|
+
form.querySelector("[data-cancel]").addEventListener("click", onCancel);
|
|
114
|
+
fields.namedItem("kind").addEventListener("change", syncKind);
|
|
115
|
+
form.addEventListener("submit", async (event) => {
|
|
116
|
+
event.preventDefault();
|
|
117
|
+
const submit = form.querySelector('[type="submit"]');
|
|
118
|
+
submit.disabled = true;
|
|
119
|
+
feedback.hidden = true;
|
|
120
|
+
try {
|
|
121
|
+
const currentInput = scheduleFormInput(new FormData(form), job?.schedule);
|
|
122
|
+
const input = job
|
|
123
|
+
? scheduleUpdateInput(currentInput, initialInput)
|
|
124
|
+
: currentInput;
|
|
125
|
+
await onSave(input);
|
|
126
|
+
} catch (error) {
|
|
127
|
+
feedback.textContent = scheduleErrorMessage(error);
|
|
128
|
+
feedback.hidden = false;
|
|
129
|
+
submit.disabled = false;
|
|
130
|
+
}
|
|
131
|
+
});
|
|
132
|
+
syncKind();
|
|
133
|
+
if (job) initialInput = scheduleFormInput(new FormData(form), job.schedule);
|
|
134
|
+
const initialFields = JSON.stringify([...new FormData(form)]);
|
|
135
|
+
function trackScheduleDraft() {
|
|
136
|
+
form.dataset.dirty = String(
|
|
137
|
+
JSON.stringify([...new FormData(form)]) !== initialFields,
|
|
138
|
+
);
|
|
139
|
+
}
|
|
140
|
+
form.addEventListener("input", trackScheduleDraft);
|
|
141
|
+
form.addEventListener("change", trackScheduleDraft);
|
|
142
|
+
trackScheduleDraft();
|
|
143
|
+
return form;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
export function scheduleFormInput(data, originalSchedule) {
|
|
147
|
+
const value = (key) => String(data.get(key) || "").trim();
|
|
148
|
+
const kind = value("kind");
|
|
149
|
+
const schedule = { kind };
|
|
150
|
+
if (kind === "once") {
|
|
151
|
+
if (!value("onceAt")) throw new Error("Choose an exact date and time.");
|
|
152
|
+
schedule.at = parseDeviceScheduleInstant(value("onceAt"));
|
|
153
|
+
}
|
|
154
|
+
if (kind === "timer")
|
|
155
|
+
schedule.delayMs = parseDurationMilliseconds(value("seconds"));
|
|
156
|
+
if (kind === "interval") {
|
|
157
|
+
schedule.everyMs = parseDurationMilliseconds(value("seconds"));
|
|
158
|
+
if (value("anchorAt"))
|
|
159
|
+
schedule.anchorAt = intervalAnchorInput(
|
|
160
|
+
value("anchorAt"),
|
|
161
|
+
originalSchedule,
|
|
162
|
+
);
|
|
163
|
+
}
|
|
164
|
+
if (["daily", "weekly", "monthly"].includes(kind)) {
|
|
165
|
+
if (!value("time")) throw new Error("Choose an exact time.");
|
|
166
|
+
schedule.at = value("time");
|
|
167
|
+
}
|
|
168
|
+
if (kind === "weekly") {
|
|
169
|
+
schedule.weekdays = data.getAll("weekdays").map(Number);
|
|
170
|
+
if (!schedule.weekdays.length)
|
|
171
|
+
throw new Error("Choose at least one weekday.");
|
|
172
|
+
}
|
|
173
|
+
if (kind === "monthly") schedule.dayOfMonth = Number(value("dayOfMonth"));
|
|
174
|
+
const target = value("sessionId") === "__new_conversation__"
|
|
175
|
+
? { newConversation: true }
|
|
176
|
+
: { sessionId: value("sessionId") };
|
|
177
|
+
return {
|
|
178
|
+
...target,
|
|
179
|
+
title: value("title"),
|
|
180
|
+
prompt: value("prompt"),
|
|
181
|
+
modelProfileId: value("modelProfileId"),
|
|
182
|
+
agentMode: value("agentMode"),
|
|
183
|
+
timeZone: value("timeZone"),
|
|
184
|
+
schedule,
|
|
185
|
+
};
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
function intervalAnchorInput(wallTime, originalSchedule) {
|
|
189
|
+
if (hasUnchangedIntervalAnchor(wallTime, originalSchedule))
|
|
190
|
+
return originalSchedule.anchorAt;
|
|
191
|
+
return parseDeviceScheduleInstant(wallTime);
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
function hasUnchangedIntervalAnchor(wallTime, schedule) {
|
|
195
|
+
if (schedule?.kind !== "interval") return false;
|
|
196
|
+
if (!schedule.anchorAt) return false;
|
|
197
|
+
return deviceDateTime(schedule.anchorAt) === wallTime;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
function formatDurationSeconds(milliseconds) {
|
|
201
|
+
const duration = BigInt(milliseconds);
|
|
202
|
+
const whole = String(duration / 1000n);
|
|
203
|
+
const fraction = String(duration % 1000n)
|
|
204
|
+
.padStart(3, "0")
|
|
205
|
+
.replace(/0+$/, "");
|
|
206
|
+
if (!fraction) return whole;
|
|
207
|
+
return `${whole}.${fraction}`;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
function parseDurationMilliseconds(seconds) {
|
|
211
|
+
const decimal = /^(\d+)(?:\.(\d+))?$/.exec(seconds);
|
|
212
|
+
if (!decimal)
|
|
213
|
+
throw new Error("Enter at least 1 second, in whole milliseconds.");
|
|
214
|
+
const fraction = decimal[2] || "";
|
|
215
|
+
if (/[1-9]/.test(fraction.slice(3)))
|
|
216
|
+
throw new Error("Enter at least 1 second, in whole milliseconds.");
|
|
217
|
+
const milliseconds =
|
|
218
|
+
BigInt(decimal[1]) * 1000n + BigInt(fraction.slice(0, 3).padEnd(3, "0"));
|
|
219
|
+
if (milliseconds < 1000n)
|
|
220
|
+
throw new Error("Enter at least 1 second, in whole milliseconds.");
|
|
221
|
+
if (milliseconds > BigInt(Number.MAX_SAFE_INTEGER))
|
|
222
|
+
throw new Error("Enter at least 1 second, in whole milliseconds.");
|
|
223
|
+
return Number(milliseconds);
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
function parseDeviceScheduleInstant(value) {
|
|
227
|
+
const date = new Date(value);
|
|
228
|
+
if (!Number.isFinite(date.getTime()))
|
|
229
|
+
throw new Error("Choose a valid exact date and time.");
|
|
230
|
+
const instant = date.toISOString();
|
|
231
|
+
if (deviceDateTime(instant) !== value)
|
|
232
|
+
throw new Error(
|
|
233
|
+
"This local time does not exist in your device time zone. Choose another time.",
|
|
234
|
+
);
|
|
235
|
+
return instant;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
export function scheduleUpdateInput(current, initial) {
|
|
239
|
+
const patch = {};
|
|
240
|
+
for (const [key, value] of Object.entries(current)) {
|
|
241
|
+
if (key === "sessionId") continue;
|
|
242
|
+
if (JSON.stringify(value) === JSON.stringify(initial[key])) continue;
|
|
243
|
+
patch[key] = value;
|
|
244
|
+
}
|
|
245
|
+
return patch;
|
|
246
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { escapeHtml } from "../../lib/text-format.js";
|
|
2
|
+
import { scheduleErrorMessage } from "../../lib/schedule-errors.js";
|
|
3
|
+
|
|
4
|
+
export function scheduleWorkspaceState(snapshot) {
|
|
5
|
+
if (snapshot.editor || snapshot.jobs.length) return null;
|
|
6
|
+
if (snapshot.loading)
|
|
7
|
+
return {
|
|
8
|
+
kind: "loading",
|
|
9
|
+
title: "Loading schedules",
|
|
10
|
+
description: "Getting your tasks and conversations…",
|
|
11
|
+
};
|
|
12
|
+
if (snapshot.error)
|
|
13
|
+
return {
|
|
14
|
+
kind: "error",
|
|
15
|
+
title: "Schedules are unavailable",
|
|
16
|
+
description: scheduleErrorMessage(snapshot.error),
|
|
17
|
+
action: "refresh",
|
|
18
|
+
actionLabel: "Refresh schedules",
|
|
19
|
+
};
|
|
20
|
+
if (snapshot.selectedId)
|
|
21
|
+
return {
|
|
22
|
+
kind: "missing",
|
|
23
|
+
title: "Schedule no longer available",
|
|
24
|
+
description:
|
|
25
|
+
"It may have been removed with its conversation. Retained conversation messages keep their original invocation details.",
|
|
26
|
+
action: "refresh",
|
|
27
|
+
actionLabel: "Refresh schedules",
|
|
28
|
+
};
|
|
29
|
+
if (!snapshot.sessions.length)
|
|
30
|
+
return {
|
|
31
|
+
kind: "empty",
|
|
32
|
+
title: "Start with a conversation",
|
|
33
|
+
description:
|
|
34
|
+
"Every schedule belongs to a conversation. Start one, then choose what ABot should do and when it should return.",
|
|
35
|
+
action: "chat",
|
|
36
|
+
actionLabel: "Go to chat",
|
|
37
|
+
};
|
|
38
|
+
return {
|
|
39
|
+
kind: "empty",
|
|
40
|
+
title: "Your next task, right on time",
|
|
41
|
+
description:
|
|
42
|
+
"Create a schedule for a reminder, a recurring check or a task. ABot will run it and reply in its conversation.",
|
|
43
|
+
action: "create",
|
|
44
|
+
actionLabel: "Create your first schedule",
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export function renderScheduleWorkspaceState({ root, state, actions }) {
|
|
49
|
+
root.hidden = !state;
|
|
50
|
+
if (!state) return;
|
|
51
|
+
root.dataset.state = state.kind;
|
|
52
|
+
root.setAttribute("role", state.kind === "error" ? "alert" : "status");
|
|
53
|
+
root.innerHTML = `<div class="schedule-state-icon" aria-hidden="true"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"><circle cx="12" cy="12" r="8.5"/><path d="M12 6.5V12l3.5 2"/></svg></div>
|
|
54
|
+
<div class="schedule-state-copy"><h3>${escapeHtml(state.title)}</h3><p>${escapeHtml(state.description)}</p>
|
|
55
|
+
${state.action ? `<button type="button" class="${state.action === "create" ? "primary-button" : ""}" data-state-action>${escapeHtml(state.actionLabel)}</button>` : ""}</div>`;
|
|
56
|
+
root
|
|
57
|
+
.querySelector("[data-state-action]")
|
|
58
|
+
?.addEventListener("click", () => actions[state.action]());
|
|
59
|
+
}
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
import { escapeHtml } from "../../lib/text-format.js";
|
|
2
|
+
import { scheduleTimeLabel } from "../../lib/schedule-message.js";
|
|
3
|
+
import {
|
|
4
|
+
emptyScheduleListMessage,
|
|
5
|
+
matchesScheduleFilter,
|
|
6
|
+
scheduleDescription,
|
|
7
|
+
} from "../../lib/schedule-presentation.js";
|
|
8
|
+
import { createScheduleForm } from "./form.js";
|
|
9
|
+
import { renderScheduleDetails } from "./details.js";
|
|
10
|
+
import { scheduleErrorMessage } from "../../lib/schedule-errors.js";
|
|
11
|
+
import {
|
|
12
|
+
scheduleWorkspaceState,
|
|
13
|
+
renderScheduleWorkspaceState,
|
|
14
|
+
} from "./workspace-state.js";
|
|
15
|
+
|
|
16
|
+
export function createSchedulesWorkspace({
|
|
17
|
+
root,
|
|
18
|
+
actions,
|
|
19
|
+
getCurrentSessionId,
|
|
20
|
+
getAgentModes,
|
|
21
|
+
documentRoot = document,
|
|
22
|
+
confirmDiscard = (message) => window.confirm(message),
|
|
23
|
+
}) {
|
|
24
|
+
let editorIdentity = null;
|
|
25
|
+
root.innerHTML = `<div class="schedules-toolbar"><label class="schedule-search"><svg aria-hidden="true" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.7"><circle cx="10.5" cy="10.5" r="6.5"/><path d="m16 16 4.5 4.5"/></svg><input type="search" placeholder="Search schedules…" aria-label="Search schedules"></label>
|
|
26
|
+
<select aria-label="Filter schedule status"><option value="current">Active & paused</option><option value="active">Active</option><option value="paused">Paused</option><option value="completed">Completed</option><option value="cancelled">Cancelled</option><option value="all">All statuses</option></select>
|
|
27
|
+
<button type="button" data-refresh>Refresh</button><button type="button" class="primary-button" data-create>New schedule</button></div>
|
|
28
|
+
<p class="schedules-feedback" role="status" aria-live="polite"></p>
|
|
29
|
+
<section class="schedule-workspace-state" aria-live="polite" hidden></section>
|
|
30
|
+
<div class="schedules-layout"><div class="schedules-list" aria-label="Schedules"></div><section class="schedule-details" aria-label="Schedule details"></section></div>`;
|
|
31
|
+
const list = root.querySelector(".schedules-list");
|
|
32
|
+
const details = root.querySelector(".schedule-details");
|
|
33
|
+
const search = root.querySelector('[type="search"]');
|
|
34
|
+
const filter = root.querySelector("select");
|
|
35
|
+
const feedback = root.querySelector(".schedules-feedback");
|
|
36
|
+
const createButton = root.querySelector("[data-create]");
|
|
37
|
+
const toolbar = root.querySelector(".schedules-toolbar");
|
|
38
|
+
const layout = root.querySelector(".schedules-layout");
|
|
39
|
+
const workspaceState = root.querySelector(".schedule-workspace-state");
|
|
40
|
+
search.addEventListener("input", applyFilter);
|
|
41
|
+
filter.addEventListener("change", applyFilter);
|
|
42
|
+
root.querySelector("[data-refresh]").addEventListener("click", () => {
|
|
43
|
+
if (prepareLeave()) void actions.load();
|
|
44
|
+
});
|
|
45
|
+
createButton.addEventListener("click", () => {
|
|
46
|
+
if (prepareLeave()) actions.beginEdit();
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
function prepareLeave() {
|
|
50
|
+
if (!actions.snapshot().editor) return true;
|
|
51
|
+
if (!canDiscardScheduleDraft()) return false;
|
|
52
|
+
actions.cancelEdit();
|
|
53
|
+
return true;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
function canDiscardScheduleDraft() {
|
|
57
|
+
const form = details.querySelector(".schedule-editor");
|
|
58
|
+
if (form?.dataset.dirty !== "true") return true;
|
|
59
|
+
return confirmDiscard("Discard this unsaved schedule?");
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
function applyFilter() {
|
|
63
|
+
const query = search.value;
|
|
64
|
+
const status = filter.value;
|
|
65
|
+
if (!prepareLeave()) {
|
|
66
|
+
const snapshot = actions.snapshot();
|
|
67
|
+
search.value = snapshot.query;
|
|
68
|
+
filter.value = snapshot.filter;
|
|
69
|
+
return;
|
|
70
|
+
}
|
|
71
|
+
void actions.filter(query, status);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
function render(snapshot) {
|
|
75
|
+
search.value = snapshot.query;
|
|
76
|
+
filter.value = snapshot.filter;
|
|
77
|
+
const visible = snapshot.jobs.filter((job) =>
|
|
78
|
+
matchesScheduleFilter(
|
|
79
|
+
job,
|
|
80
|
+
snapshot.query,
|
|
81
|
+
snapshot.filter,
|
|
82
|
+
snapshot.sessions,
|
|
83
|
+
),
|
|
84
|
+
);
|
|
85
|
+
const pageState = scheduleWorkspaceState(snapshot);
|
|
86
|
+
const firstScheduleEditor =
|
|
87
|
+
Boolean(snapshot.editor) && snapshot.jobs.length === 0;
|
|
88
|
+
toolbar.hidden = Boolean(pageState) || firstScheduleEditor;
|
|
89
|
+
layout.hidden = Boolean(pageState);
|
|
90
|
+
feedback.hidden = Boolean(pageState) || firstScheduleEditor;
|
|
91
|
+
renderScheduleWorkspaceState({
|
|
92
|
+
root: workspaceState,
|
|
93
|
+
state: pageState,
|
|
94
|
+
actions: {
|
|
95
|
+
refresh: () => void actions.load(),
|
|
96
|
+
create: () => actions.beginEdit(),
|
|
97
|
+
chat: () => actions.openConversation(getCurrentSessionId()),
|
|
98
|
+
},
|
|
99
|
+
});
|
|
100
|
+
feedback.textContent =
|
|
101
|
+
(snapshot.error ? scheduleErrorMessage(snapshot.error) : "") ||
|
|
102
|
+
(snapshot.loading
|
|
103
|
+
? "Loading schedules…"
|
|
104
|
+
: `${visible.length} shown · ${snapshot.jobs.length} schedules`);
|
|
105
|
+
feedback.classList.toggle("schedule-error", Boolean(snapshot.error));
|
|
106
|
+
root.setAttribute("aria-busy", String(snapshot.loading));
|
|
107
|
+
createButton.disabled = snapshot.loading || snapshot.sessions.length === 0;
|
|
108
|
+
createButton.title = snapshot.sessions.length
|
|
109
|
+
? "Create a schedule"
|
|
110
|
+
: "Start a conversation before creating a schedule";
|
|
111
|
+
if (pageState) return;
|
|
112
|
+
layout.classList.toggle("schedule-editor-only", snapshot.jobs.length === 0);
|
|
113
|
+
list.hidden = snapshot.jobs.length === 0;
|
|
114
|
+
list.innerHTML =
|
|
115
|
+
visible
|
|
116
|
+
.map(
|
|
117
|
+
(
|
|
118
|
+
job,
|
|
119
|
+
) => `<button type="button" class="schedule-list-item${job.id === snapshot.selectedId ? " selected" : ""}" data-job-id="${escapeHtml(job.id)}" aria-pressed="${job.id === snapshot.selectedId}">
|
|
120
|
+
<span class="schedule-list-top"><strong dir="auto" title="${escapeHtml(job.title)}">${escapeHtml(job.title)}</strong><span class="schedule-badge" data-state="${job.state}">${job.state}</span></span>
|
|
121
|
+
<span class="schedule-list-meta"><span class="schedule-list-description" title="${escapeHtml(scheduleDescription(job))}">${escapeHtml(scheduleDescription(job))}</span>${job.nextRunAt ? `<span class="schedule-next-run" title="Next run · ${scheduleTimeLabel(job.nextRunAt, job.timeZone)}">${scheduleTimeLabel(job.nextRunAt, job.timeZone)}</span>` : ""}</span></button>`,
|
|
122
|
+
)
|
|
123
|
+
.join("") ||
|
|
124
|
+
`<div class="schedule-list-empty">${escapeHtml(emptyScheduleListMessage(snapshot))}</div>`;
|
|
125
|
+
for (const button of list.querySelectorAll("[data-job-id]")) {
|
|
126
|
+
button.addEventListener("click", () => {
|
|
127
|
+
if (button.dataset.jobId === actions.snapshot().selectedId) return;
|
|
128
|
+
if (prepareLeave()) void actions.select(button.dataset.jobId);
|
|
129
|
+
});
|
|
130
|
+
}
|
|
131
|
+
if (snapshot.editor) {
|
|
132
|
+
details.classList.remove("schedule-details-placeholder");
|
|
133
|
+
if (editorIdentity === snapshot.editor) return;
|
|
134
|
+
editorIdentity = snapshot.editor;
|
|
135
|
+
details.replaceChildren(
|
|
136
|
+
createScheduleForm({
|
|
137
|
+
documentRoot,
|
|
138
|
+
job: snapshot.editor.job,
|
|
139
|
+
initialValues: snapshot.editor.initialValues,
|
|
140
|
+
sessions: snapshot.sessions,
|
|
141
|
+
models: snapshot.models,
|
|
142
|
+
modes: getAgentModes(),
|
|
143
|
+
currentSessionId: getCurrentSessionId(),
|
|
144
|
+
onSave: actions.save,
|
|
145
|
+
onCancel: actions.cancelEdit,
|
|
146
|
+
}),
|
|
147
|
+
);
|
|
148
|
+
details.querySelector('[name="title"]').focus();
|
|
149
|
+
return;
|
|
150
|
+
}
|
|
151
|
+
editorIdentity = null;
|
|
152
|
+
const openDetails = new Set(
|
|
153
|
+
[...details.querySelectorAll("details[data-disclosure-id]")]
|
|
154
|
+
.filter((node) => node.open)
|
|
155
|
+
.map((node) => node.dataset.disclosureId),
|
|
156
|
+
);
|
|
157
|
+
renderScheduleDetails({ root: details, snapshot, actions });
|
|
158
|
+
for (const node of details.querySelectorAll(
|
|
159
|
+
"details[data-disclosure-id]",
|
|
160
|
+
)) {
|
|
161
|
+
node.open = openDetails.has(node.dataset.disclosureId);
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
return { render, prepareLeave };
|
|
165
|
+
}
|