@xfey/tutti 0.1.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 +50 -0
- package/dist/approvals/index.d.ts +3 -0
- package/dist/approvals/index.js +3 -0
- package/dist/approvals/manager.d.ts +47 -0
- package/dist/approvals/manager.js +180 -0
- package/dist/approvals/projections.d.ts +34 -0
- package/dist/approvals/projections.js +444 -0
- package/dist/artifacts/index.d.ts +4 -0
- package/dist/artifacts/index.js +4 -0
- package/dist/artifacts/manifest.d.ts +48 -0
- package/dist/artifacts/manifest.js +334 -0
- package/dist/artifacts/preview-runtime.d.ts +97 -0
- package/dist/artifacts/preview-runtime.js +585 -0
- package/dist/artifacts/static-preview.d.ts +17 -0
- package/dist/artifacts/static-preview.js +180 -0
- package/dist/chat-assistant/index.d.ts +66 -0
- package/dist/chat-assistant/index.js +268 -0
- package/dist/checks/index.d.ts +47 -0
- package/dist/checks/index.js +169 -0
- package/dist/collaboration-state/clarification-messages.d.ts +8 -0
- package/dist/collaboration-state/clarification-messages.js +180 -0
- package/dist/collaboration-state/clarification-records.d.ts +27 -0
- package/dist/collaboration-state/clarification-records.js +266 -0
- package/dist/collaboration-state/clarification-round-writes.d.ts +14 -0
- package/dist/collaboration-state/clarification-round-writes.js +58 -0
- package/dist/collaboration-state/clarification-rounds.d.ts +19 -0
- package/dist/collaboration-state/clarification-rounds.js +347 -0
- package/dist/collaboration-state/clarification-successors.d.ts +8 -0
- package/dist/collaboration-state/clarification-successors.js +318 -0
- package/dist/collaboration-state/execution-status.d.ts +3 -0
- package/dist/collaboration-state/execution-status.js +8 -0
- package/dist/collaboration-state/index.d.ts +17 -0
- package/dist/collaboration-state/index.js +16 -0
- package/dist/collaboration-state/messages.d.ts +25 -0
- package/dist/collaboration-state/messages.js +371 -0
- package/dist/collaboration-state/read-state.d.ts +7 -0
- package/dist/collaboration-state/read-state.js +136 -0
- package/dist/collaboration-state/recovery.d.ts +6 -0
- package/dist/collaboration-state/recovery.js +125 -0
- package/dist/collaboration-state/run-recording.d.ts +5 -0
- package/dist/collaboration-state/run-recording.js +216 -0
- package/dist/collaboration-state/run-results.d.ts +12 -0
- package/dist/collaboration-state/run-results.js +202 -0
- package/dist/collaboration-state/scratchpad-source-state.d.ts +46 -0
- package/dist/collaboration-state/scratchpad-source-state.js +207 -0
- package/dist/collaboration-state/scratchpad.d.ts +8 -0
- package/dist/collaboration-state/scratchpad.js +84 -0
- package/dist/collaboration-state/serialization.d.ts +16 -0
- package/dist/collaboration-state/serialization.js +71 -0
- package/dist/collaboration-state/storage-types.d.ts +136 -0
- package/dist/collaboration-state/storage-types.js +2 -0
- package/dist/collaboration-state/task-details.d.ts +5 -0
- package/dist/collaboration-state/task-details.js +25 -0
- package/dist/collaboration-state/types.d.ts +289 -0
- package/dist/collaboration-state/types.js +2 -0
- package/dist/collaboration-state/worklist.d.ts +11 -0
- package/dist/collaboration-state/worklist.js +286 -0
- package/dist/control-plane/clarification-commands.d.ts +34 -0
- package/dist/control-plane/clarification-commands.js +106 -0
- package/dist/control-plane/command-recovery.d.ts +3 -0
- package/dist/control-plane/command-recovery.js +79 -0
- package/dist/control-plane/context-sync.d.ts +47 -0
- package/dist/control-plane/context-sync.js +207 -0
- package/dist/control-plane/event-publishers.d.ts +24 -0
- package/dist/control-plane/event-publishers.js +192 -0
- package/dist/control-plane/execution-status.d.ts +13 -0
- package/dist/control-plane/execution-status.js +130 -0
- package/dist/control-plane/follow-up-context.d.ts +27 -0
- package/dist/control-plane/follow-up-context.js +93 -0
- package/dist/control-plane/follow-up-output.d.ts +53 -0
- package/dist/control-plane/follow-up-output.js +141 -0
- package/dist/control-plane/follow-up-run.d.ts +22 -0
- package/dist/control-plane/follow-up-run.js +90 -0
- package/dist/control-plane/follow-up-start.d.ts +26 -0
- package/dist/control-plane/follow-up-start.js +101 -0
- package/dist/control-plane/formatters.d.ts +12 -0
- package/dist/control-plane/formatters.js +47 -0
- package/dist/control-plane/index.d.ts +62 -0
- package/dist/control-plane/index.js +416 -0
- package/dist/control-plane/invalidations.d.ts +12 -0
- package/dist/control-plane/invalidations.js +67 -0
- package/dist/control-plane/procedure-logging.d.ts +11 -0
- package/dist/control-plane/procedure-logging.js +95 -0
- package/dist/control-plane/project-brief-refresh.d.ts +31 -0
- package/dist/control-plane/project-brief-refresh.js +105 -0
- package/dist/control-plane/project-context-bootstrap.d.ts +39 -0
- package/dist/control-plane/project-context-bootstrap.js +107 -0
- package/dist/control-plane/reference-summary-refresh.d.ts +22 -0
- package/dist/control-plane/reference-summary-refresh.js +344 -0
- package/dist/control-plane/run-lineage.d.ts +8 -0
- package/dist/control-plane/run-lineage.js +13 -0
- package/dist/control-plane/run-result-recording.d.ts +46 -0
- package/dist/control-plane/run-result-recording.js +81 -0
- package/dist/control-plane/run-scheduler.d.ts +35 -0
- package/dist/control-plane/run-scheduler.js +110 -0
- package/dist/control-plane/run-start.d.ts +30 -0
- package/dist/control-plane/run-start.js +167 -0
- package/dist/control-plane/scratchpad-auto-refresh.d.ts +32 -0
- package/dist/control-plane/scratchpad-auto-refresh.js +150 -0
- package/dist/control-plane/scratchpad-refresh-start.d.ts +60 -0
- package/dist/control-plane/scratchpad-refresh-start.js +240 -0
- package/dist/control-plane/scratchpad-refresh.d.ts +29 -0
- package/dist/control-plane/scratchpad-refresh.js +55 -0
- package/dist/control-plane/scratchpad-source-messages.d.ts +10 -0
- package/dist/control-plane/scratchpad-source-messages.js +131 -0
- package/dist/control-plane/startup-recovery.d.ts +19 -0
- package/dist/control-plane/startup-recovery.js +113 -0
- package/dist/control-plane/task-compile-continuation.d.ts +25 -0
- package/dist/control-plane/task-compile-continuation.js +127 -0
- package/dist/control-plane/task-compile-output.d.ts +29 -0
- package/dist/control-plane/task-compile-output.js +122 -0
- package/dist/control-plane/task-compile-start.d.ts +43 -0
- package/dist/control-plane/task-compile-start.js +280 -0
- package/dist/control-plane/task-proposal.d.ts +3 -0
- package/dist/control-plane/task-proposal.js +37 -0
- package/dist/control-plane/types.d.ts +155 -0
- package/dist/control-plane/types.js +2 -0
- package/dist/control-plane/workflows/index.d.ts +4 -0
- package/dist/control-plane/workflows/index.js +4 -0
- package/dist/control-plane/workflows/openai.d.ts +34 -0
- package/dist/control-plane/workflows/openai.js +411 -0
- package/dist/control-plane/workflows/structured-output-schemas.d.ts +9 -0
- package/dist/control-plane/workflows/structured-output-schemas.js +289 -0
- package/dist/control-plane/workflows/structured-output-validators.d.ts +15 -0
- package/dist/control-plane/workflows/structured-output-validators.js +295 -0
- package/dist/control-plane/workflows/structured-output.d.ts +3 -0
- package/dist/control-plane/workflows/structured-output.js +3 -0
- package/dist/control-plane/workflows/types.d.ts +274 -0
- package/dist/control-plane/workflows/types.js +2 -0
- package/dist/control-plane/worklist-terminal-feedback.d.ts +15 -0
- package/dist/control-plane/worklist-terminal-feedback.js +135 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +32 -0
- package/dist/procedure-engine/index.d.ts +56 -0
- package/dist/procedure-engine/index.js +163 -0
- package/dist/project-brief/index.d.ts +4 -0
- package/dist/project-brief/index.js +3 -0
- package/dist/project-brief/repository.d.ts +5 -0
- package/dist/project-brief/repository.js +97 -0
- package/dist/project-brief/source.d.ts +8 -0
- package/dist/project-brief/source.js +75 -0
- package/dist/project-brief/types.d.ts +40 -0
- package/dist/project-brief/types.js +2 -0
- package/dist/project-docs/context.d.ts +34 -0
- package/dist/project-docs/context.js +86 -0
- package/dist/project-timeline/index.d.ts +20 -0
- package/dist/project-timeline/index.js +100 -0
- package/dist/prompt-templates/index.d.ts +13 -0
- package/dist/prompt-templates/index.js +86 -0
- package/dist/provider-usage/index.d.ts +37 -0
- package/dist/provider-usage/index.js +227 -0
- package/dist/providers/index.d.ts +2 -0
- package/dist/providers/index.js +2 -0
- package/dist/providers/openai/app-server/json-rpc.d.ts +71 -0
- package/dist/providers/openai/app-server/json-rpc.js +298 -0
- package/dist/providers/openai/app-server/permission-profile.d.ts +64 -0
- package/dist/providers/openai/app-server/permission-profile.js +67 -0
- package/dist/providers/openai/app-server/provider-config.d.ts +10 -0
- package/dist/providers/openai/app-server/provider-config.js +39 -0
- package/dist/providers/openai/app-server/read-only-procedure.d.ts +68 -0
- package/dist/providers/openai/app-server/read-only-procedure.js +293 -0
- package/dist/providers/openai/app-server/runtime-helpers.d.ts +20 -0
- package/dist/providers/openai/app-server/runtime-helpers.js +151 -0
- package/dist/providers/openai/app-server/skills.d.ts +82 -0
- package/dist/providers/openai/app-server/skills.js +222 -0
- package/dist/providers/openai/app-server/smoke-cli.d.ts +2 -0
- package/dist/providers/openai/app-server/smoke-cli.js +42 -0
- package/dist/providers/openai/app-server/smoke-helpers.d.ts +19 -0
- package/dist/providers/openai/app-server/smoke-helpers.js +125 -0
- package/dist/providers/openai/app-server/smoke-provider-input.d.ts +6 -0
- package/dist/providers/openai/app-server/smoke-provider-input.js +20 -0
- package/dist/providers/openai/app-server/smoke-types.d.ts +49 -0
- package/dist/providers/openai/app-server/smoke-types.js +20 -0
- package/dist/providers/openai/app-server/smoke.d.ts +9 -0
- package/dist/providers/openai/app-server/smoke.js +157 -0
- package/dist/providers/openai/app-server/workspace-write-run.d.ts +87 -0
- package/dist/providers/openai/app-server/workspace-write-run.js +379 -0
- package/dist/providers/openai/chat-assistant.d.ts +34 -0
- package/dist/providers/openai/chat-assistant.js +72 -0
- package/dist/providers/openai/codex-app-server.d.ts +126 -0
- package/dist/providers/openai/codex-app-server.js +147 -0
- package/dist/providers/openai/credential-store.d.ts +31 -0
- package/dist/providers/openai/credential-store.js +143 -0
- package/dist/providers/openai/credential-validation.d.ts +45 -0
- package/dist/providers/openai/credential-validation.js +190 -0
- package/dist/providers/openai/index.d.ts +13 -0
- package/dist/providers/openai/index.js +13 -0
- package/dist/providers/openai/machine-local-files.d.ts +19 -0
- package/dist/providers/openai/machine-local-files.js +55 -0
- package/dist/providers/openai/model-config.d.ts +4 -0
- package/dist/providers/openai/model-config.js +4 -0
- package/dist/providers/openai/provider-config-errors.d.ts +6 -0
- package/dist/providers/openai/provider-config-errors.js +13 -0
- package/dist/providers/openai/provider-config-shape.d.ts +3 -0
- package/dist/providers/openai/provider-config-shape.js +108 -0
- package/dist/providers/openai/provider-config-toml.d.ts +13 -0
- package/dist/providers/openai/provider-config-toml.js +113 -0
- package/dist/providers/openai/provider-config.d.ts +73 -0
- package/dist/providers/openai/provider-config.js +117 -0
- package/dist/providers/openai/provider-setup.d.ts +31 -0
- package/dist/providers/openai/provider-setup.js +88 -0
- package/dist/providers/openai/sdk-procedure-runner.d.ts +70 -0
- package/dist/providers/openai/sdk-procedure-runner.js +123 -0
- package/dist/providers/openai/token-usage.d.ts +11 -0
- package/dist/providers/openai/token-usage.js +90 -0
- package/dist/run-engine/index.d.ts +61 -0
- package/dist/run-engine/index.js +140 -0
- package/dist/run-pipeline/candidate-diff.d.ts +3 -0
- package/dist/run-pipeline/candidate-diff.js +10 -0
- package/dist/run-pipeline/openai.d.ts +41 -0
- package/dist/run-pipeline/openai.js +548 -0
- package/dist/run-pipeline/promotion-reconcile.d.ts +13 -0
- package/dist/run-pipeline/promotion-reconcile.js +138 -0
- package/dist/run-pipeline/result-projections.d.ts +39 -0
- package/dist/run-pipeline/result-projections.js +115 -0
- package/dist/run-pipeline/task-run-invocation.d.ts +6 -0
- package/dist/run-pipeline/task-run-invocation.js +130 -0
- package/dist/run-pipeline/task-run-output.d.ts +38 -0
- package/dist/run-pipeline/task-run-output.js +146 -0
- package/dist/server-shell/cli/args.d.ts +7 -0
- package/dist/server-shell/cli/args.js +30 -0
- package/dist/server-shell/cli/cli.d.ts +3 -0
- package/dist/server-shell/cli/cli.js +57 -0
- package/dist/server-shell/cli/errors.d.ts +9 -0
- package/dist/server-shell/cli/errors.js +53 -0
- package/dist/server-shell/cli/git-bootstrap.d.ts +24 -0
- package/dist/server-shell/cli/git-bootstrap.js +246 -0
- package/dist/server-shell/cli/host-lifecycle.d.ts +45 -0
- package/dist/server-shell/cli/host-lifecycle.js +298 -0
- package/dist/server-shell/cli/host-relay-status.d.ts +6 -0
- package/dist/server-shell/cli/host-relay-status.js +43 -0
- package/dist/server-shell/cli/host-runtime-endpoint.d.ts +22 -0
- package/dist/server-shell/cli/host-runtime-endpoint.js +120 -0
- package/dist/server-shell/cli/host-server-runtime.d.ts +30 -0
- package/dist/server-shell/cli/host-server-runtime.js +432 -0
- package/dist/server-shell/cli/index.d.ts +8 -0
- package/dist/server-shell/cli/index.js +8 -0
- package/dist/server-shell/cli/launch.d.ts +45 -0
- package/dist/server-shell/cli/launch.js +115 -0
- package/dist/server-shell/cli/machine-local.d.ts +69 -0
- package/dist/server-shell/cli/machine-local.js +223 -0
- package/dist/server-shell/cli/project-identity.d.ts +20 -0
- package/dist/server-shell/cli/project-identity.js +87 -0
- package/dist/server-shell/cli/relay-registration.d.ts +31 -0
- package/dist/server-shell/cli/relay-registration.js +61 -0
- package/dist/server-shell/command-idempotency/index.d.ts +44 -0
- package/dist/server-shell/command-idempotency/index.js +155 -0
- package/dist/server-shell/dev-runner/cli.d.ts +2 -0
- package/dist/server-shell/dev-runner/cli.js +10 -0
- package/dist/server-shell/dev-runner/config.d.ts +38 -0
- package/dist/server-shell/dev-runner/config.js +277 -0
- package/dist/server-shell/dev-runner/host-cli.d.ts +2 -0
- package/dist/server-shell/dev-runner/host-cli.js +22 -0
- package/dist/server-shell/dev-runner/index.d.ts +3 -0
- package/dist/server-shell/dev-runner/index.js +3 -0
- package/dist/server-shell/dev-runner/runner.d.ts +30 -0
- package/dist/server-shell/dev-runner/runner.js +236 -0
- package/dist/server-shell/http/create-server.d.ts +18 -0
- package/dist/server-shell/http/create-server.js +51 -0
- package/dist/server-shell/http/host-tunnel.d.ts +15 -0
- package/dist/server-shell/http/host-tunnel.js +154 -0
- package/dist/server-shell/http/logger.d.ts +7 -0
- package/dist/server-shell/http/logger.js +19 -0
- package/dist/server-shell/http/routes/agent-context-auth.d.ts +41 -0
- package/dist/server-shell/http/routes/agent-context-auth.js +73 -0
- package/dist/server-shell/http/routes/agent-context-errors.d.ts +6 -0
- package/dist/server-shell/http/routes/agent-context-errors.js +9 -0
- package/dist/server-shell/http/routes/agent-context-messages-routes.d.ts +4 -0
- package/dist/server-shell/http/routes/agent-context-messages-routes.js +74 -0
- package/dist/server-shell/http/routes/agent-context-project-doc-routes.d.ts +4 -0
- package/dist/server-shell/http/routes/agent-context-project-doc-routes.js +86 -0
- package/dist/server-shell/http/routes/agent-context-project-docs.d.ts +40 -0
- package/dist/server-shell/http/routes/agent-context-project-docs.js +98 -0
- package/dist/server-shell/http/routes/agent-context-query.d.ts +31 -0
- package/dist/server-shell/http/routes/agent-context-query.js +72 -0
- package/dist/server-shell/http/routes/agent-context-reference-routes.d.ts +4 -0
- package/dist/server-shell/http/routes/agent-context-reference-routes.js +82 -0
- package/dist/server-shell/http/routes/agent-context-references.d.ts +21 -0
- package/dist/server-shell/http/routes/agent-context-references.js +85 -0
- package/dist/server-shell/http/routes/agent-context-shared.d.ts +34 -0
- package/dist/server-shell/http/routes/agent-context-shared.js +44 -0
- package/dist/server-shell/http/routes/agent-context-skills-routes.d.ts +4 -0
- package/dist/server-shell/http/routes/agent-context-skills-routes.js +85 -0
- package/dist/server-shell/http/routes/agent-context-workspace-routes.d.ts +4 -0
- package/dist/server-shell/http/routes/agent-context-workspace-routes.js +130 -0
- package/dist/server-shell/http/routes/agent-context.d.ts +8 -0
- package/dist/server-shell/http/routes/agent-context.js +16 -0
- package/dist/server-shell/http/routes/health.d.ts +7 -0
- package/dist/server-shell/http/routes/health.js +41 -0
- package/dist/server-shell/http/routes/local-control.d.ts +40 -0
- package/dist/server-shell/http/routes/local-control.js +260 -0
- package/dist/server-shell/http/routes/project-api/approval-routes.d.ts +4 -0
- package/dist/server-shell/http/routes/project-api/approval-routes.js +64 -0
- package/dist/server-shell/http/routes/project-api/artifacts-routes.d.ts +8 -0
- package/dist/server-shell/http/routes/project-api/artifacts-routes.js +166 -0
- package/dist/server-shell/http/routes/project-api/clarification-routes.d.ts +4 -0
- package/dist/server-shell/http/routes/project-api/clarification-routes.js +150 -0
- package/dist/server-shell/http/routes/project-api/constants.d.ts +3 -0
- package/dist/server-shell/http/routes/project-api/constants.js +3 -0
- package/dist/server-shell/http/routes/project-api/errors.d.ts +26 -0
- package/dist/server-shell/http/routes/project-api/errors.js +41 -0
- package/dist/server-shell/http/routes/project-api/events-stream.d.ts +11 -0
- package/dist/server-shell/http/routes/project-api/events-stream.js +55 -0
- package/dist/server-shell/http/routes/project-api/execution-routes.d.ts +4 -0
- package/dist/server-shell/http/routes/project-api/execution-routes.js +92 -0
- package/dist/server-shell/http/routes/project-api/headers.d.ts +2 -0
- package/dist/server-shell/http/routes/project-api/headers.js +7 -0
- package/dist/server-shell/http/routes/project-api/invalidations.d.ts +10 -0
- package/dist/server-shell/http/routes/project-api/invalidations.js +57 -0
- package/dist/server-shell/http/routes/project-api/messages-routes.d.ts +8 -0
- package/dist/server-shell/http/routes/project-api/messages-routes.js +80 -0
- package/dist/server-shell/http/routes/project-api/openapi-approval-routes.d.ts +128 -0
- package/dist/server-shell/http/routes/project-api/openapi-approval-routes.js +32 -0
- package/dist/server-shell/http/routes/project-api/openapi-artifacts-routes.d.ts +51 -0
- package/dist/server-shell/http/routes/project-api/openapi-artifacts-routes.js +56 -0
- package/dist/server-shell/http/routes/project-api/openapi-collaboration-routes.d.ts +466 -0
- package/dist/server-shell/http/routes/project-api/openapi-collaboration-routes.js +165 -0
- package/dist/server-shell/http/routes/project-api/openapi-diagnostic-routes.d.ts +16 -0
- package/dist/server-shell/http/routes/project-api/openapi-diagnostic-routes.js +17 -0
- package/dist/server-shell/http/routes/project-api/openapi-execution-routes.d.ts +215 -0
- package/dist/server-shell/http/routes/project-api/openapi-execution-routes.js +75 -0
- package/dist/server-shell/http/routes/project-api/openapi-path-parameters.d.ts +9 -0
- package/dist/server-shell/http/routes/project-api/openapi-path-parameters.js +18 -0
- package/dist/server-shell/http/routes/project-api/openapi-skills-routes.d.ts +60 -0
- package/dist/server-shell/http/routes/project-api/openapi-skills-routes.js +51 -0
- package/dist/server-shell/http/routes/project-api/openapi-timeline-routes.d.ts +115 -0
- package/dist/server-shell/http/routes/project-api/openapi-timeline-routes.js +17 -0
- package/dist/server-shell/http/routes/project-api/openapi-viewer-routes.d.ts +323 -0
- package/dist/server-shell/http/routes/project-api/openapi-viewer-routes.js +120 -0
- package/dist/server-shell/http/routes/project-api/openapi-workspace-routes.d.ts +1317 -0
- package/dist/server-shell/http/routes/project-api/openapi-workspace-routes.js +95 -0
- package/dist/server-shell/http/routes/project-api/openapi.d.ts +2457 -0
- package/dist/server-shell/http/routes/project-api/openapi.js +30 -0
- package/dist/server-shell/http/routes/project-api/payload-validation.d.ts +6 -0
- package/dist/server-shell/http/routes/project-api/payload-validation.js +36 -0
- package/dist/server-shell/http/routes/project-api/project-docs-helpers.d.ts +9 -0
- package/dist/server-shell/http/routes/project-api/project-docs-helpers.js +17 -0
- package/dist/server-shell/http/routes/project-api/project-docs-routes.d.ts +8 -0
- package/dist/server-shell/http/routes/project-api/project-docs-routes.js +151 -0
- package/dist/server-shell/http/routes/project-api/project-timeline-projection.d.ts +8 -0
- package/dist/server-shell/http/routes/project-api/project-timeline-projection.js +658 -0
- package/dist/server-shell/http/routes/project-api/project-timeline-routes.d.ts +4 -0
- package/dist/server-shell/http/routes/project-api/project-timeline-routes.js +23 -0
- package/dist/server-shell/http/routes/project-api/read-state-routes.d.ts +8 -0
- package/dist/server-shell/http/routes/project-api/read-state-routes.js +82 -0
- package/dist/server-shell/http/routes/project-api/reference-files-routes.d.ts +8 -0
- package/dist/server-shell/http/routes/project-api/reference-files-routes.js +184 -0
- package/dist/server-shell/http/routes/project-api/reference-files.d.ts +17 -0
- package/dist/server-shell/http/routes/project-api/reference-files.js +212 -0
- package/dist/server-shell/http/routes/project-api/repo-projection.d.ts +3 -0
- package/dist/server-shell/http/routes/project-api/repo-projection.js +58 -0
- package/dist/server-shell/http/routes/project-api/schemas.d.ts +1351 -0
- package/dist/server-shell/http/routes/project-api/schemas.js +441 -0
- package/dist/server-shell/http/routes/project-api/session-requirements.d.ts +10 -0
- package/dist/server-shell/http/routes/project-api/session-requirements.js +60 -0
- package/dist/server-shell/http/routes/project-api/skills-helpers.d.ts +7 -0
- package/dist/server-shell/http/routes/project-api/skills-helpers.js +48 -0
- package/dist/server-shell/http/routes/project-api/skills-routes.d.ts +8 -0
- package/dist/server-shell/http/routes/project-api/skills-routes.js +185 -0
- package/dist/server-shell/http/routes/project-api/staged-uploads.d.ts +14 -0
- package/dist/server-shell/http/routes/project-api/staged-uploads.js +149 -0
- package/dist/server-shell/http/routes/project-api/system-routes.d.ts +8 -0
- package/dist/server-shell/http/routes/project-api/system-routes.js +141 -0
- package/dist/server-shell/http/routes/project-api/types.d.ts +137 -0
- package/dist/server-shell/http/routes/project-api/types.js +2 -0
- package/dist/server-shell/http/routes/project-api/viewer-projections.d.ts +17 -0
- package/dist/server-shell/http/routes/project-api/viewer-projections.js +102 -0
- package/dist/server-shell/http/routes/project-api/viewer-routes.d.ts +4 -0
- package/dist/server-shell/http/routes/project-api/viewer-routes.js +100 -0
- package/dist/server-shell/http/routes/project-api/workflow-routes.d.ts +4 -0
- package/dist/server-shell/http/routes/project-api/workflow-routes.js +85 -0
- package/dist/server-shell/http/routes/project-api/workspace-projections.d.ts +5 -0
- package/dist/server-shell/http/routes/project-api/workspace-projections.js +103 -0
- package/dist/server-shell/http/routes/project-api.d.ts +8 -0
- package/dist/server-shell/http/routes/project-api.js +34 -0
- package/dist/server-shell/http/sse-replay-buffer.d.ts +54 -0
- package/dist/server-shell/http/sse-replay-buffer.js +110 -0
- package/dist/server-shell/http/sse.d.ts +12 -0
- package/dist/server-shell/http/sse.js +22 -0
- package/dist/server-shell/http/static-web.d.ts +6 -0
- package/dist/server-shell/http/static-web.js +52 -0
- package/dist/server-shell/http/validation.d.ts +13 -0
- package/dist/server-shell/http/validation.js +136 -0
- package/dist/server-shell/http/workspace-events.d.ts +38 -0
- package/dist/server-shell/http/workspace-events.js +98 -0
- package/dist/server-shell/session/relay-session-context.d.ts +25 -0
- package/dist/server-shell/session/relay-session-context.js +49 -0
- package/dist/server-shell/smoke/e2e-client.d.ts +59 -0
- package/dist/server-shell/smoke/e2e-client.js +304 -0
- package/dist/server-shell/smoke/index.d.ts +2 -0
- package/dist/server-shell/smoke/index.js +2 -0
- package/dist/skills/constants.d.ts +8 -0
- package/dist/skills/constants.js +9 -0
- package/dist/skills/errors.d.ts +6 -0
- package/dist/skills/errors.js +9 -0
- package/dist/skills/index.d.ts +41 -0
- package/dist/skills/index.js +171 -0
- package/dist/skills/metadata.d.ts +8 -0
- package/dist/skills/metadata.js +80 -0
- package/dist/skills/zip-import.d.ts +18 -0
- package/dist/skills/zip-import.js +241 -0
- package/dist/store/command-recovery.d.ts +26 -0
- package/dist/store/command-recovery.js +71 -0
- package/dist/store/index.d.ts +6 -0
- package/dist/store/index.js +6 -0
- package/dist/store/lifecycle.d.ts +23 -0
- package/dist/store/lifecycle.js +53 -0
- package/dist/store/metadata.d.ts +18 -0
- package/dist/store/metadata.js +30 -0
- package/dist/store/migrations.d.ts +20 -0
- package/dist/store/migrations.js +76 -0
- package/dist/store/sqlite.d.ts +11 -0
- package/dist/store/sqlite.js +21 -0
- package/dist/workspace-ops/constants.d.ts +15 -0
- package/dist/workspace-ops/constants.js +20 -0
- package/dist/workspace-ops/errors.d.ts +8 -0
- package/dist/workspace-ops/errors.js +33 -0
- package/dist/workspace-ops/git.d.ts +13 -0
- package/dist/workspace-ops/git.js +53 -0
- package/dist/workspace-ops/index.d.ts +11 -0
- package/dist/workspace-ops/index.js +9 -0
- package/dist/workspace-ops/mainline.d.ts +2 -0
- package/dist/workspace-ops/mainline.js +16 -0
- package/dist/workspace-ops/project-doc-templates.d.ts +12 -0
- package/dist/workspace-ops/project-doc-templates.js +180 -0
- package/dist/workspace-ops/project-docs.d.ts +7 -0
- package/dist/workspace-ops/project-docs.js +156 -0
- package/dist/workspace-ops/reference-files.d.ts +3 -0
- package/dist/workspace-ops/reference-files.js +137 -0
- package/dist/workspace-ops/reference-metadata.d.ts +13 -0
- package/dist/workspace-ops/reference-metadata.js +86 -0
- package/dist/workspace-ops/reference-summaries.d.ts +17 -0
- package/dist/workspace-ops/reference-summaries.js +298 -0
- package/dist/workspace-ops/run-workspaces.d.ts +18 -0
- package/dist/workspace-ops/run-workspaces.js +271 -0
- package/dist/workspace-ops/types.d.ts +219 -0
- package/dist/workspace-ops/types.js +2 -0
- package/dist/workspace-ops/viewer-file.d.ts +4 -0
- package/dist/workspace-ops/viewer-file.js +207 -0
- package/dist/workspace-ops/viewer-git.d.ts +20 -0
- package/dist/workspace-ops/viewer-git.js +111 -0
- package/dist/workspace-ops/viewer-paths.d.ts +3 -0
- package/dist/workspace-ops/viewer-paths.js +13 -0
- package/dist/workspace-ops/viewer-tree.d.ts +9 -0
- package/dist/workspace-ops/viewer-tree.js +144 -0
- package/dist/workspace-ops/viewer.d.ts +5 -0
- package/dist/workspace-ops/viewer.js +5 -0
- package/migrations/0001_init.sql +674 -0
- package/migrations/0002_allow_sealed_round_successor_note.sql +14 -0
- package/migrations/0003_drop_scratchpad_source_message_refs.sql +1 -0
- package/migrations/0004_read_state.sql +109 -0
- package/migrations/0005_provider_usage.sql +15 -0
- package/migrations/0006_scratchpad_source_state.sql +29 -0
- package/migrations/0007_workspace_signal_read_state_scopes.sql +74 -0
- package/migrations/0008_provider_usage_anchors.sql +32 -0
- package/migrations/0009_project_timeline_events.sql +33 -0
- package/migrations/0010_project_brief.sql +13 -0
- package/migrations/0011_message_author_avatar.sql +5 -0
- package/migrations/README.md +44 -0
- package/node_modules/@tutti/relay-client/dist/host-control.d.ts +164 -0
- package/node_modules/@tutti/relay-client/dist/host-control.js +284 -0
- package/node_modules/@tutti/relay-client/dist/index.d.ts +3 -0
- package/node_modules/@tutti/relay-client/dist/index.js +3 -0
- package/node_modules/@tutti/relay-client/dist/tunnel-frames.d.ts +8 -0
- package/node_modules/@tutti/relay-client/dist/tunnel-frames.js +124 -0
- package/node_modules/@tutti/relay-client/dist/tunnel-types.d.ts +61 -0
- package/node_modules/@tutti/relay-client/dist/tunnel-types.js +2 -0
- package/node_modules/@tutti/relay-client/dist/tunnel.d.ts +4 -0
- package/node_modules/@tutti/relay-client/dist/tunnel.js +144 -0
- package/node_modules/@tutti/relay-client/package.json +18 -0
- package/node_modules/@tutti/shared/dist/domain/index.d.ts +59 -0
- package/node_modules/@tutti/shared/dist/domain/index.js +37 -0
- package/node_modules/@tutti/shared/dist/ids/index.d.ts +85 -0
- package/node_modules/@tutti/shared/dist/ids/index.js +88 -0
- package/node_modules/@tutti/shared/dist/index.d.ts +6 -0
- package/node_modules/@tutti/shared/dist/index.js +6 -0
- package/node_modules/@tutti/shared/dist/schemas/api/approvals.d.ts +307 -0
- package/node_modules/@tutti/shared/dist/schemas/api/approvals.js +110 -0
- package/node_modules/@tutti/shared/dist/schemas/api/artifacts.d.ts +173 -0
- package/node_modules/@tutti/shared/dist/schemas/api/artifacts.js +107 -0
- package/node_modules/@tutti/shared/dist/schemas/api/clarifications.d.ts +704 -0
- package/node_modules/@tutti/shared/dist/schemas/api/clarifications.js +224 -0
- package/node_modules/@tutti/shared/dist/schemas/api/index.d.ts +18 -0
- package/node_modules/@tutti/shared/dist/schemas/api/index.js +17 -0
- package/node_modules/@tutti/shared/dist/schemas/api/messages.d.ts +370 -0
- package/node_modules/@tutti/shared/dist/schemas/api/messages.js +134 -0
- package/node_modules/@tutti/shared/dist/schemas/api/openapi.d.ts +32 -0
- package/node_modules/@tutti/shared/dist/schemas/api/openapi.js +100 -0
- package/node_modules/@tutti/shared/dist/schemas/api/primitives.d.ts +109 -0
- package/node_modules/@tutti/shared/dist/schemas/api/primitives.js +174 -0
- package/node_modules/@tutti/shared/dist/schemas/api/project-timeline.d.ts +149 -0
- package/node_modules/@tutti/shared/dist/schemas/api/project-timeline.js +44 -0
- package/node_modules/@tutti/shared/dist/schemas/api/provider-config.d.ts +21 -0
- package/node_modules/@tutti/shared/dist/schemas/api/provider-config.js +33 -0
- package/node_modules/@tutti/shared/dist/schemas/api/provider-usage.d.ts +87 -0
- package/node_modules/@tutti/shared/dist/schemas/api/provider-usage.js +48 -0
- package/node_modules/@tutti/shared/dist/schemas/api/read-state.d.ts +89 -0
- package/node_modules/@tutti/shared/dist/schemas/api/read-state.js +39 -0
- package/node_modules/@tutti/shared/dist/schemas/api/runtime-events.d.ts +484 -0
- package/node_modules/@tutti/shared/dist/schemas/api/runtime-events.js +185 -0
- package/node_modules/@tutti/shared/dist/schemas/api/skills.d.ts +88 -0
- package/node_modules/@tutti/shared/dist/schemas/api/skills.js +71 -0
- package/node_modules/@tutti/shared/dist/schemas/api/types.d.ts +253 -0
- package/node_modules/@tutti/shared/dist/schemas/api/types.js +2 -0
- package/node_modules/@tutti/shared/dist/schemas/api/uploads.d.ts +103 -0
- package/node_modules/@tutti/shared/dist/schemas/api/uploads.js +78 -0
- package/node_modules/@tutti/shared/dist/schemas/api/viewer-reference.d.ts +484 -0
- package/node_modules/@tutti/shared/dist/schemas/api/viewer-reference.js +267 -0
- package/node_modules/@tutti/shared/dist/schemas/api/work-items.d.ts +264 -0
- package/node_modules/@tutti/shared/dist/schemas/api/work-items.js +196 -0
- package/node_modules/@tutti/shared/dist/schemas/api/workspace-commands.d.ts +179 -0
- package/node_modules/@tutti/shared/dist/schemas/api/workspace-commands.js +137 -0
- package/node_modules/@tutti/shared/dist/schemas/domain/index.d.ts +31 -0
- package/node_modules/@tutti/shared/dist/schemas/domain/index.js +49 -0
- package/node_modules/@tutti/shared/dist/schemas/internal/index.d.ts +46 -0
- package/node_modules/@tutti/shared/dist/schemas/internal/index.js +46 -0
- package/node_modules/@tutti/shared/dist/utils/command-idempotency/index.d.ts +40 -0
- package/node_modules/@tutti/shared/dist/utils/command-idempotency/index.js +100 -0
- package/node_modules/@tutti/shared/dist/utils/index.d.ts +5 -0
- package/node_modules/@tutti/shared/dist/utils/index.js +5 -0
- package/node_modules/@tutti/shared/dist/utils/logging/index.d.ts +34 -0
- package/node_modules/@tutti/shared/dist/utils/logging/index.js +130 -0
- package/node_modules/@tutti/shared/dist/utils/path-policy/index.d.ts +13 -0
- package/node_modules/@tutti/shared/dist/utils/path-policy/index.js +80 -0
- package/node_modules/@tutti/shared/dist/utils/redaction/index.d.ts +19 -0
- package/node_modules/@tutti/shared/dist/utils/redaction/index.js +158 -0
- package/node_modules/@tutti/shared/package.json +63 -0
- package/package.json +47 -0
- package/prompts/README.md +36 -0
- package/prompts/chat-assistant.md +43 -0
- package/prompts/codex/README.md +13 -0
- package/prompts/codex/no-write-smoke.md +35 -0
- package/prompts/procedures/README.md +38 -0
- package/prompts/procedures/context-sync.md +66 -0
- package/prompts/procedures/follow-up-check.md +83 -0
- package/prompts/procedures/project-brief-refresh.md +79 -0
- package/prompts/procedures/project-context-bootstrap.md +58 -0
- package/prompts/procedures/reference-file-summary.md +49 -0
- package/prompts/procedures/scratchpad-refresh.md +83 -0
- package/prompts/procedures/task-compile.md +116 -0
- package/prompts/prompt-flow-experiment-plan.md +203 -0
- package/prompts/prompt-flow-map.md +478 -0
- package/prompts/runs/README.md +17 -0
- package/prompts/runs/task-continuation.md +148 -0
- package/prompts/runs/task-retry.md +153 -0
- package/prompts/runs/task-run.md +135 -0
- package/prompts/skills/README.md +25 -0
- package/prompts/skills/read-main-chat/README.md +8 -0
- package/prompts/skills/read-main-chat/SKILL.md +18 -0
- package/prompts/skills/read-project-docs/README.md +13 -0
- package/prompts/skills/read-project-docs/SKILL.md +42 -0
- package/prompts/skills/read-references/README.md +9 -0
- package/prompts/skills/read-references/SKILL.md +26 -0
- package/prompts/skills/read-scratchpad/README.md +8 -0
- package/prompts/skills/read-scratchpad/SKILL.md +16 -0
- package/prompts/skills/read-user-skills/README.md +7 -0
- package/prompts/skills/read-user-skills/SKILL.md +22 -0
- package/prompts/skills/read-worklist/README.md +9 -0
- package/prompts/skills/read-worklist/SKILL.md +20 -0
- package/web/assets/Tutti-B7gEyTp1.png +0 -0
- package/web/assets/Tutti-square-BqFU7F0D.png +0 -0
- package/web/assets/index-CWkBgHap.js +29 -0
- package/web/assets/index-D8xJY8Gr.css +1 -0
- package/web/index.html +13 -0
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
function isRecord(value) {
|
|
2
|
+
return typeof value === "object" && value !== null && !Array.isArray(value);
|
|
3
|
+
}
|
|
4
|
+
function schemaProperties(schema) {
|
|
5
|
+
if (!isRecord(schema) || !isRecord(schema.properties)) {
|
|
6
|
+
return {};
|
|
7
|
+
}
|
|
8
|
+
return schema.properties;
|
|
9
|
+
}
|
|
10
|
+
function schemaRequiredNames(schema) {
|
|
11
|
+
if (!isRecord(schema) || !Array.isArray(schema.required)) {
|
|
12
|
+
return new Set();
|
|
13
|
+
}
|
|
14
|
+
return new Set(schema.required.filter((entry) => typeof entry === "string"));
|
|
15
|
+
}
|
|
16
|
+
function queryParametersFromSchema(schema) {
|
|
17
|
+
const properties = schemaProperties(schema);
|
|
18
|
+
const required = schemaRequiredNames(schema);
|
|
19
|
+
return Object.entries(properties).map(([name, propertySchema]) => ({
|
|
20
|
+
name,
|
|
21
|
+
in: "query",
|
|
22
|
+
required: required.has(name),
|
|
23
|
+
schema: propertySchema,
|
|
24
|
+
}));
|
|
25
|
+
}
|
|
26
|
+
function toOpenApiParameter(parameter) {
|
|
27
|
+
const result = {
|
|
28
|
+
name: parameter.name,
|
|
29
|
+
in: parameter.in,
|
|
30
|
+
required: parameter.in === "path" ? true : parameter.required === true,
|
|
31
|
+
schema: parameter.schema,
|
|
32
|
+
};
|
|
33
|
+
if (parameter.description !== undefined) {
|
|
34
|
+
result.description = parameter.description;
|
|
35
|
+
}
|
|
36
|
+
return result;
|
|
37
|
+
}
|
|
38
|
+
function jsonContent(schema, contentType = "application/json") {
|
|
39
|
+
return {
|
|
40
|
+
[contentType]: {
|
|
41
|
+
schema,
|
|
42
|
+
},
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
function operationForRoute(route) {
|
|
46
|
+
const explicitParameters = route.parameters ?? [];
|
|
47
|
+
const queryParameters = route.querystring === undefined ? [] : queryParametersFromSchema(route.querystring);
|
|
48
|
+
const parameters = [...explicitParameters, ...queryParameters].map(toOpenApiParameter);
|
|
49
|
+
const responses = {};
|
|
50
|
+
for (const [statusCode, response] of Object.entries(route.responses)) {
|
|
51
|
+
const openApiResponse = {
|
|
52
|
+
description: response.description,
|
|
53
|
+
};
|
|
54
|
+
if (response.schema !== undefined) {
|
|
55
|
+
openApiResponse.content = jsonContent(response.schema, response.contentType);
|
|
56
|
+
}
|
|
57
|
+
responses[statusCode] = openApiResponse;
|
|
58
|
+
}
|
|
59
|
+
responses.default = {
|
|
60
|
+
description: "API error response",
|
|
61
|
+
content: jsonContent({ $ref: "#/components/schemas/ApiErrorResponse" }),
|
|
62
|
+
};
|
|
63
|
+
const operation = {
|
|
64
|
+
summary: route.summary,
|
|
65
|
+
tags: route.tags,
|
|
66
|
+
responses,
|
|
67
|
+
};
|
|
68
|
+
if (parameters.length !== 0) {
|
|
69
|
+
operation.parameters = parameters;
|
|
70
|
+
}
|
|
71
|
+
if (route.requestBody !== undefined) {
|
|
72
|
+
operation.requestBody = {
|
|
73
|
+
required: true,
|
|
74
|
+
content: jsonContent(route.requestBody),
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
return operation;
|
|
78
|
+
}
|
|
79
|
+
export function createBrowserFacingOpenApiDocument(options) {
|
|
80
|
+
const paths = {};
|
|
81
|
+
for (const route of options.routes) {
|
|
82
|
+
const pathItem = paths[route.path] ?? {};
|
|
83
|
+
pathItem[route.method] = operationForRoute(route);
|
|
84
|
+
paths[route.path] = pathItem;
|
|
85
|
+
}
|
|
86
|
+
return {
|
|
87
|
+
openapi: "3.1.0",
|
|
88
|
+
info: {
|
|
89
|
+
title: options.title,
|
|
90
|
+
version: options.version,
|
|
91
|
+
},
|
|
92
|
+
paths,
|
|
93
|
+
components: {
|
|
94
|
+
schemas: {
|
|
95
|
+
ApiErrorResponse: options.errorSchema,
|
|
96
|
+
},
|
|
97
|
+
},
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
|
+
//# sourceMappingURL=openapi.js.map
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import type { TSchema } from "@sinclair/typebox";
|
|
2
|
+
export declare const CursorPageRequestSchema: import("@sinclair/typebox").TObject<{
|
|
3
|
+
cursor: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
4
|
+
limit: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TInteger>;
|
|
5
|
+
}>;
|
|
6
|
+
export declare function cursorPageSchema<TItem extends TSchema>(item: TItem): TSchema;
|
|
7
|
+
export declare function timelineWindowSchema<TItem extends TSchema>(item: TItem): TSchema;
|
|
8
|
+
export declare const QueryInvalidationHintSchema: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
9
|
+
kind: import("@sinclair/typebox").TLiteral<"all">;
|
|
10
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
11
|
+
kind: import("@sinclair/typebox").TLiteral<"workspace">;
|
|
12
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
13
|
+
kind: import("@sinclair/typebox").TLiteral<"session">;
|
|
14
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
15
|
+
kind: import("@sinclair/typebox").TLiteral<"bootstrap">;
|
|
16
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
17
|
+
kind: import("@sinclair/typebox").TLiteral<"messages">;
|
|
18
|
+
scope: import("@sinclair/typebox").TLiteral<"main_chat">;
|
|
19
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
20
|
+
kind: import("@sinclair/typebox").TLiteral<"messages">;
|
|
21
|
+
scope: import("@sinclair/typebox").TLiteral<"clarification_round">;
|
|
22
|
+
round_id: import("@sinclair/typebox").TString;
|
|
23
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
24
|
+
kind: import("@sinclair/typebox").TLiteral<"scratchpad">;
|
|
25
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
26
|
+
kind: import("@sinclair/typebox").TLiteral<"worklist">;
|
|
27
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
28
|
+
kind: import("@sinclair/typebox").TLiteral<"read_state">;
|
|
29
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
30
|
+
kind: import("@sinclair/typebox").TLiteral<"task">;
|
|
31
|
+
task_id: import("@sinclair/typebox").TString;
|
|
32
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
33
|
+
kind: import("@sinclair/typebox").TLiteral<"task_detail">;
|
|
34
|
+
task_id: import("@sinclair/typebox").TString;
|
|
35
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
36
|
+
kind: import("@sinclair/typebox").TLiteral<"task_run_results">;
|
|
37
|
+
task_id: import("@sinclair/typebox").TString;
|
|
38
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
39
|
+
kind: import("@sinclair/typebox").TLiteral<"clarification">;
|
|
40
|
+
thread_id: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
41
|
+
round_id: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
42
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
43
|
+
kind: import("@sinclair/typebox").TLiteral<"execution_status">;
|
|
44
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
45
|
+
kind: import("@sinclair/typebox").TLiteral<"activity">;
|
|
46
|
+
activity_ref: import("@sinclair/typebox").TString;
|
|
47
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
48
|
+
kind: import("@sinclair/typebox").TLiteral<"provider_config">;
|
|
49
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
50
|
+
kind: import("@sinclair/typebox").TLiteral<"provider_usage">;
|
|
51
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
52
|
+
kind: import("@sinclair/typebox").TLiteral<"project_timeline">;
|
|
53
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
54
|
+
kind: import("@sinclair/typebox").TLiteral<"skills">;
|
|
55
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
56
|
+
kind: import("@sinclair/typebox").TLiteral<"artifacts">;
|
|
57
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
58
|
+
kind: import("@sinclair/typebox").TLiteral<"approval">;
|
|
59
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
60
|
+
kind: import("@sinclair/typebox").TLiteral<"viewer">;
|
|
61
|
+
path: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
62
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
63
|
+
kind: import("@sinclair/typebox").TLiteral<"recovery_summaries">;
|
|
64
|
+
}>]>;
|
|
65
|
+
export declare const CommandDispositionBaseSchema: import("@sinclair/typebox").TObject<{
|
|
66
|
+
kind: import("@sinclair/typebox").TString;
|
|
67
|
+
}>;
|
|
68
|
+
export declare const InterruptedCommandDispositionSchema: import("@sinclair/typebox").TObject<{
|
|
69
|
+
kind: import("@sinclair/typebox").TLiteral<"interrupted">;
|
|
70
|
+
retry_with_new_command_id: import("@sinclair/typebox").TLiteral<true>;
|
|
71
|
+
}>;
|
|
72
|
+
export declare function commandEnvelopeSchema<TPayload extends TSchema>(payload: TPayload): TSchema;
|
|
73
|
+
export declare function commandResponseSchema<TDisposition extends TSchema>(disposition: TDisposition): TSchema;
|
|
74
|
+
export declare function commandResponseWithResultSchema<TDisposition extends TSchema, TResult extends TSchema>(disposition: TDisposition, result: TResult): TSchema;
|
|
75
|
+
export declare const ApiErrorCodeSchema: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"bad_request">, import("@sinclair/typebox").TLiteral<"unauthorized">, import("@sinclair/typebox").TLiteral<"forbidden">, import("@sinclair/typebox").TLiteral<"not_found">, import("@sinclair/typebox").TLiteral<"conflict">, import("@sinclair/typebox").TLiteral<"validation_failed">, import("@sinclair/typebox").TLiteral<"provider_not_configured">, import("@sinclair/typebox").TLiteral<"provider_auth_invalid">, import("@sinclair/typebox").TLiteral<"provider_quota_or_billing_required">, import("@sinclair/typebox").TLiteral<"provider_rate_limited">, import("@sinclair/typebox").TLiteral<"provider_model_unavailable">, import("@sinclair/typebox").TLiteral<"provider_network_error">, import("@sinclair/typebox").TLiteral<"relay_session_invalid">, import("@sinclair/typebox").TLiteral<"command_replay_mismatch">, import("@sinclair/typebox").TLiteral<"repo_snapshot_unavailable">, import("@sinclair/typebox").TLiteral<"host_unavailable">, import("@sinclair/typebox").TLiteral<"internal_error">]>;
|
|
76
|
+
export declare const ApiErrorResponseSchema: import("@sinclair/typebox").TObject<{
|
|
77
|
+
error: import("@sinclair/typebox").TObject<{
|
|
78
|
+
code: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"bad_request">, import("@sinclair/typebox").TLiteral<"unauthorized">, import("@sinclair/typebox").TLiteral<"forbidden">, import("@sinclair/typebox").TLiteral<"not_found">, import("@sinclair/typebox").TLiteral<"conflict">, import("@sinclair/typebox").TLiteral<"validation_failed">, import("@sinclair/typebox").TLiteral<"provider_not_configured">, import("@sinclair/typebox").TLiteral<"provider_auth_invalid">, import("@sinclair/typebox").TLiteral<"provider_quota_or_billing_required">, import("@sinclair/typebox").TLiteral<"provider_rate_limited">, import("@sinclair/typebox").TLiteral<"provider_model_unavailable">, import("@sinclair/typebox").TLiteral<"provider_network_error">, import("@sinclair/typebox").TLiteral<"relay_session_invalid">, import("@sinclair/typebox").TLiteral<"command_replay_mismatch">, import("@sinclair/typebox").TLiteral<"repo_snapshot_unavailable">, import("@sinclair/typebox").TLiteral<"host_unavailable">, import("@sinclair/typebox").TLiteral<"internal_error">]>;
|
|
79
|
+
message: import("@sinclair/typebox").TString;
|
|
80
|
+
retryable: import("@sinclair/typebox").TBoolean;
|
|
81
|
+
details: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnknown>;
|
|
82
|
+
}>;
|
|
83
|
+
}>;
|
|
84
|
+
export declare const WorkspaceSseEventTypeSchema: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"connection.ready">, import("@sinclair/typebox").TLiteral<"message.created">, import("@sinclair/typebox").TLiteral<"scratchpad.updated">, import("@sinclair/typebox").TLiteral<"worklist.changed">, import("@sinclair/typebox").TLiteral<"task.updated">, import("@sinclair/typebox").TLiteral<"task_detail.updated">, import("@sinclair/typebox").TLiteral<"clarification.changed">, import("@sinclair/typebox").TLiteral<"approval.changed">, import("@sinclair/typebox").TLiteral<"activity.event">, import("@sinclair/typebox").TLiteral<"execution_status.changed">, import("@sinclair/typebox").TLiteral<"provider_config.changed">, import("@sinclair/typebox").TLiteral<"workspace.recovered">, import("@sinclair/typebox").TLiteral<"query.invalidate">]>;
|
|
85
|
+
export declare const RelayInvalidationHintSchema: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
86
|
+
kind: import("@sinclair/typebox").TLiteral<"all">;
|
|
87
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
88
|
+
kind: import("@sinclair/typebox").TLiteral<"me">;
|
|
89
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
90
|
+
kind: import("@sinclair/typebox").TLiteral<"recent_projects">;
|
|
91
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
92
|
+
kind: import("@sinclair/typebox").TLiteral<"join_entries">;
|
|
93
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
94
|
+
kind: import("@sinclair/typebox").TLiteral<"project_presence">;
|
|
95
|
+
relay_project_ref: import("@sinclair/typebox").TString;
|
|
96
|
+
}>]>;
|
|
97
|
+
export declare const RelaySseEventTypeSchema: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"connection.ready">, import("@sinclair/typebox").TLiteral<"query.invalidate">]>;
|
|
98
|
+
export declare function workspaceSseEventSchema<TPayload extends TSchema>(payload: TPayload): TSchema;
|
|
99
|
+
export declare function relaySseEventSchema<TPayload extends TSchema>(payload: TPayload): TSchema;
|
|
100
|
+
export declare const SseReplayWindowPolicySchema: import("@sinclair/typebox").TObject<{
|
|
101
|
+
retention_seconds: import("@sinclair/typebox").TLiteral<300>;
|
|
102
|
+
max_events: import("@sinclair/typebox").TLiteral<1000>;
|
|
103
|
+
}>;
|
|
104
|
+
export declare const DEFAULT_SSE_REPLAY_WINDOW_POLICY: {
|
|
105
|
+
readonly retention_seconds: 300;
|
|
106
|
+
readonly max_events: 1000;
|
|
107
|
+
};
|
|
108
|
+
export declare const NonEmptyStringSchema: import("@sinclair/typebox").TString;
|
|
109
|
+
//# sourceMappingURL=primitives.d.ts.map
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
import { Type } from "@sinclair/typebox";
|
|
2
|
+
import { ActivityRefSchema, ClarificationRoundRefSchema, ClarificationThreadRefSchema, CursorSchema, IdempotencyKeySchema, IsoDateTimeStringSchema, RelayProjectRefSchema, TaskIdSchema, } from "../domain/index.js";
|
|
3
|
+
export const CursorPageRequestSchema = Type.Object({
|
|
4
|
+
cursor: Type.Optional(CursorSchema),
|
|
5
|
+
limit: Type.Optional(Type.Integer({ minimum: 1, maximum: 200, default: 50 })),
|
|
6
|
+
}, { additionalProperties: false });
|
|
7
|
+
export function cursorPageSchema(item) {
|
|
8
|
+
return Type.Object({
|
|
9
|
+
items: Type.Array(item),
|
|
10
|
+
page: Type.Object({
|
|
11
|
+
next_cursor: Type.Optional(CursorSchema),
|
|
12
|
+
has_more: Type.Boolean(),
|
|
13
|
+
limit: Type.Integer({ minimum: 1, maximum: 200 }),
|
|
14
|
+
}, { additionalProperties: false }),
|
|
15
|
+
}, { additionalProperties: false });
|
|
16
|
+
}
|
|
17
|
+
export function timelineWindowSchema(item) {
|
|
18
|
+
return Type.Object({
|
|
19
|
+
items: Type.Array(item),
|
|
20
|
+
window: Type.Object({
|
|
21
|
+
older_cursor: Type.Optional(CursorSchema),
|
|
22
|
+
newer_cursor: Type.Optional(CursorSchema),
|
|
23
|
+
has_older: Type.Boolean(),
|
|
24
|
+
has_newer: Type.Boolean(),
|
|
25
|
+
limit: Type.Integer({ minimum: 1, maximum: 200 }),
|
|
26
|
+
}, { additionalProperties: false }),
|
|
27
|
+
}, { additionalProperties: false });
|
|
28
|
+
}
|
|
29
|
+
export const QueryInvalidationHintSchema = Type.Union([
|
|
30
|
+
Type.Object({ kind: Type.Literal("all") }, { additionalProperties: false }),
|
|
31
|
+
Type.Object({ kind: Type.Literal("workspace") }, { additionalProperties: false }),
|
|
32
|
+
Type.Object({ kind: Type.Literal("session") }, { additionalProperties: false }),
|
|
33
|
+
Type.Object({ kind: Type.Literal("bootstrap") }, { additionalProperties: false }),
|
|
34
|
+
Type.Object({ kind: Type.Literal("messages"), scope: Type.Literal("main_chat") }, { additionalProperties: false }),
|
|
35
|
+
Type.Object({
|
|
36
|
+
kind: Type.Literal("messages"),
|
|
37
|
+
scope: Type.Literal("clarification_round"),
|
|
38
|
+
round_id: ClarificationRoundRefSchema,
|
|
39
|
+
}, { additionalProperties: false }),
|
|
40
|
+
Type.Object({ kind: Type.Literal("scratchpad") }, { additionalProperties: false }),
|
|
41
|
+
Type.Object({ kind: Type.Literal("worklist") }, { additionalProperties: false }),
|
|
42
|
+
Type.Object({ kind: Type.Literal("read_state") }, { additionalProperties: false }),
|
|
43
|
+
Type.Object({ kind: Type.Literal("task"), task_id: TaskIdSchema }, { additionalProperties: false }),
|
|
44
|
+
Type.Object({ kind: Type.Literal("task_detail"), task_id: TaskIdSchema }, { additionalProperties: false }),
|
|
45
|
+
Type.Object({ kind: Type.Literal("task_run_results"), task_id: TaskIdSchema }, { additionalProperties: false }),
|
|
46
|
+
Type.Object({
|
|
47
|
+
kind: Type.Literal("clarification"),
|
|
48
|
+
thread_id: Type.Optional(ClarificationThreadRefSchema),
|
|
49
|
+
round_id: Type.Optional(ClarificationRoundRefSchema),
|
|
50
|
+
}, { additionalProperties: false }),
|
|
51
|
+
Type.Object({ kind: Type.Literal("execution_status") }, { additionalProperties: false }),
|
|
52
|
+
Type.Object({ kind: Type.Literal("activity"), activity_ref: ActivityRefSchema }, { additionalProperties: false }),
|
|
53
|
+
Type.Object({ kind: Type.Literal("provider_config") }, { additionalProperties: false }),
|
|
54
|
+
Type.Object({ kind: Type.Literal("provider_usage") }, { additionalProperties: false }),
|
|
55
|
+
Type.Object({ kind: Type.Literal("project_timeline") }, { additionalProperties: false }),
|
|
56
|
+
Type.Object({ kind: Type.Literal("skills") }, { additionalProperties: false }),
|
|
57
|
+
Type.Object({ kind: Type.Literal("artifacts") }, { additionalProperties: false }),
|
|
58
|
+
Type.Object({ kind: Type.Literal("approval") }, { additionalProperties: false }),
|
|
59
|
+
Type.Object({ kind: Type.Literal("viewer"), path: Type.Optional(Type.String({ minLength: 1 })) }, { additionalProperties: false }),
|
|
60
|
+
Type.Object({ kind: Type.Literal("recovery_summaries") }, { additionalProperties: false }),
|
|
61
|
+
]);
|
|
62
|
+
export const CommandDispositionBaseSchema = Type.Object({
|
|
63
|
+
kind: Type.String({ minLength: 1 }),
|
|
64
|
+
});
|
|
65
|
+
export const InterruptedCommandDispositionSchema = Type.Object({
|
|
66
|
+
kind: Type.Literal("interrupted"),
|
|
67
|
+
retry_with_new_command_id: Type.Literal(true),
|
|
68
|
+
}, { additionalProperties: false });
|
|
69
|
+
export function commandEnvelopeSchema(payload) {
|
|
70
|
+
return Type.Object({
|
|
71
|
+
command_id: IdempotencyKeySchema,
|
|
72
|
+
issued_at: IsoDateTimeStringSchema,
|
|
73
|
+
payload,
|
|
74
|
+
}, { additionalProperties: false });
|
|
75
|
+
}
|
|
76
|
+
export function commandResponseSchema(disposition) {
|
|
77
|
+
return Type.Object({
|
|
78
|
+
command_id: IdempotencyKeySchema,
|
|
79
|
+
disposition,
|
|
80
|
+
invalidates: Type.Optional(Type.Array(QueryInvalidationHintSchema)),
|
|
81
|
+
}, { additionalProperties: false });
|
|
82
|
+
}
|
|
83
|
+
export function commandResponseWithResultSchema(disposition, result) {
|
|
84
|
+
return Type.Object({
|
|
85
|
+
command_id: IdempotencyKeySchema,
|
|
86
|
+
disposition,
|
|
87
|
+
result: Type.Optional(result),
|
|
88
|
+
invalidates: Type.Optional(Type.Array(QueryInvalidationHintSchema)),
|
|
89
|
+
}, { additionalProperties: false });
|
|
90
|
+
}
|
|
91
|
+
export const ApiErrorCodeSchema = Type.Union([
|
|
92
|
+
Type.Literal("bad_request"),
|
|
93
|
+
Type.Literal("unauthorized"),
|
|
94
|
+
Type.Literal("forbidden"),
|
|
95
|
+
Type.Literal("not_found"),
|
|
96
|
+
Type.Literal("conflict"),
|
|
97
|
+
Type.Literal("validation_failed"),
|
|
98
|
+
Type.Literal("provider_not_configured"),
|
|
99
|
+
Type.Literal("provider_auth_invalid"),
|
|
100
|
+
Type.Literal("provider_quota_or_billing_required"),
|
|
101
|
+
Type.Literal("provider_rate_limited"),
|
|
102
|
+
Type.Literal("provider_model_unavailable"),
|
|
103
|
+
Type.Literal("provider_network_error"),
|
|
104
|
+
Type.Literal("relay_session_invalid"),
|
|
105
|
+
Type.Literal("command_replay_mismatch"),
|
|
106
|
+
Type.Literal("repo_snapshot_unavailable"),
|
|
107
|
+
Type.Literal("host_unavailable"),
|
|
108
|
+
Type.Literal("internal_error"),
|
|
109
|
+
]);
|
|
110
|
+
export const ApiErrorResponseSchema = Type.Object({
|
|
111
|
+
error: Type.Object({
|
|
112
|
+
code: ApiErrorCodeSchema,
|
|
113
|
+
message: Type.String({ minLength: 1 }),
|
|
114
|
+
retryable: Type.Boolean(),
|
|
115
|
+
details: Type.Optional(Type.Unknown()),
|
|
116
|
+
}, { additionalProperties: false }),
|
|
117
|
+
}, { additionalProperties: false });
|
|
118
|
+
export const WorkspaceSseEventTypeSchema = Type.Union([
|
|
119
|
+
Type.Literal("connection.ready"),
|
|
120
|
+
Type.Literal("message.created"),
|
|
121
|
+
Type.Literal("scratchpad.updated"),
|
|
122
|
+
Type.Literal("worklist.changed"),
|
|
123
|
+
Type.Literal("task.updated"),
|
|
124
|
+
Type.Literal("task_detail.updated"),
|
|
125
|
+
Type.Literal("clarification.changed"),
|
|
126
|
+
Type.Literal("approval.changed"),
|
|
127
|
+
Type.Literal("activity.event"),
|
|
128
|
+
Type.Literal("execution_status.changed"),
|
|
129
|
+
Type.Literal("provider_config.changed"),
|
|
130
|
+
Type.Literal("workspace.recovered"),
|
|
131
|
+
Type.Literal("query.invalidate"),
|
|
132
|
+
]);
|
|
133
|
+
export const RelayInvalidationHintSchema = Type.Union([
|
|
134
|
+
Type.Object({ kind: Type.Literal("all") }, { additionalProperties: false }),
|
|
135
|
+
Type.Object({ kind: Type.Literal("me") }, { additionalProperties: false }),
|
|
136
|
+
Type.Object({ kind: Type.Literal("recent_projects") }, { additionalProperties: false }),
|
|
137
|
+
Type.Object({ kind: Type.Literal("join_entries") }, { additionalProperties: false }),
|
|
138
|
+
Type.Object({
|
|
139
|
+
kind: Type.Literal("project_presence"),
|
|
140
|
+
relay_project_ref: RelayProjectRefSchema,
|
|
141
|
+
}, { additionalProperties: false }),
|
|
142
|
+
]);
|
|
143
|
+
export const RelaySseEventTypeSchema = Type.Union([
|
|
144
|
+
Type.Literal("connection.ready"),
|
|
145
|
+
Type.Literal("query.invalidate"),
|
|
146
|
+
]);
|
|
147
|
+
export function workspaceSseEventSchema(payload) {
|
|
148
|
+
return Type.Object({
|
|
149
|
+
event_id: Type.String({ minLength: 1 }),
|
|
150
|
+
event_type: WorkspaceSseEventTypeSchema,
|
|
151
|
+
occurred_at: IsoDateTimeStringSchema,
|
|
152
|
+
payload,
|
|
153
|
+
invalidates: Type.Optional(Type.Array(QueryInvalidationHintSchema)),
|
|
154
|
+
}, { additionalProperties: false });
|
|
155
|
+
}
|
|
156
|
+
export function relaySseEventSchema(payload) {
|
|
157
|
+
return Type.Object({
|
|
158
|
+
event_id: Type.String({ minLength: 1 }),
|
|
159
|
+
event_type: RelaySseEventTypeSchema,
|
|
160
|
+
occurred_at: IsoDateTimeStringSchema,
|
|
161
|
+
payload,
|
|
162
|
+
invalidates: Type.Optional(Type.Array(RelayInvalidationHintSchema)),
|
|
163
|
+
}, { additionalProperties: false });
|
|
164
|
+
}
|
|
165
|
+
export const SseReplayWindowPolicySchema = Type.Object({
|
|
166
|
+
retention_seconds: Type.Literal(300),
|
|
167
|
+
max_events: Type.Literal(1000),
|
|
168
|
+
}, { additionalProperties: false });
|
|
169
|
+
export const DEFAULT_SSE_REPLAY_WINDOW_POLICY = {
|
|
170
|
+
retention_seconds: 300,
|
|
171
|
+
max_events: 1000,
|
|
172
|
+
};
|
|
173
|
+
export const NonEmptyStringSchema = Type.String({ minLength: 1 });
|
|
174
|
+
//# sourceMappingURL=primitives.js.map
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
export declare const ProjectTimelineItemKindSchema: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"run">, import("@sinclair/typebox").TLiteral<"procedure">, import("@sinclair/typebox").TLiteral<"commit">, import("@sinclair/typebox").TLiteral<"usage">, import("@sinclair/typebox").TLiteral<"clarification">, import("@sinclair/typebox").TLiteral<"checks">, import("@sinclair/typebox").TLiteral<"promotion">, import("@sinclair/typebox").TLiteral<"recovery">]>;
|
|
2
|
+
export declare const ProjectTimelineItemStatusSchema: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"running">, import("@sinclair/typebox").TLiteral<"completed">, import("@sinclair/typebox").TLiteral<"failed">, import("@sinclair/typebox").TLiteral<"needs_human">, import("@sinclair/typebox").TLiteral<"skipped">]>;
|
|
3
|
+
export declare const ProjectTimelineItemSchema: import("@sinclair/typebox").TObject<{
|
|
4
|
+
id: import("@sinclair/typebox").TString;
|
|
5
|
+
kind: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"run">, import("@sinclair/typebox").TLiteral<"procedure">, import("@sinclair/typebox").TLiteral<"commit">, import("@sinclair/typebox").TLiteral<"usage">, import("@sinclair/typebox").TLiteral<"clarification">, import("@sinclair/typebox").TLiteral<"checks">, import("@sinclair/typebox").TLiteral<"promotion">, import("@sinclair/typebox").TLiteral<"recovery">]>;
|
|
6
|
+
occurred_at: import("@sinclair/typebox").TString;
|
|
7
|
+
title: import("@sinclair/typebox").TString;
|
|
8
|
+
summary: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
9
|
+
task_id: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
10
|
+
task_title: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
11
|
+
activity_ref: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
12
|
+
workflow_ref: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
13
|
+
commit_oid: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
14
|
+
commit_short_oid: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15
|
+
status: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"running">, import("@sinclair/typebox").TLiteral<"completed">, import("@sinclair/typebox").TLiteral<"failed">, import("@sinclair/typebox").TLiteral<"needs_human">, import("@sinclair/typebox").TLiteral<"skipped">]>>;
|
|
16
|
+
token_usage: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
17
|
+
input_tokens: import("@sinclair/typebox").TInteger;
|
|
18
|
+
cached_input_tokens: import("@sinclair/typebox").TInteger;
|
|
19
|
+
output_tokens: import("@sinclair/typebox").TInteger;
|
|
20
|
+
reasoning_output_tokens: import("@sinclair/typebox").TInteger;
|
|
21
|
+
total_tokens: import("@sinclair/typebox").TInteger;
|
|
22
|
+
event_count: import("@sinclair/typebox").TInteger;
|
|
23
|
+
}>>;
|
|
24
|
+
usage_sources: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
25
|
+
source: import("@sinclair/typebox").TString;
|
|
26
|
+
label: import("@sinclair/typebox").TString;
|
|
27
|
+
category: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"implementation">, import("@sinclair/typebox").TLiteral<"planning">, import("@sinclair/typebox").TLiteral<"context">, import("@sinclair/typebox").TLiteral<"qna">, import("@sinclair/typebox").TLiteral<"other">]>;
|
|
28
|
+
input_tokens: import("@sinclair/typebox").TInteger;
|
|
29
|
+
cached_input_tokens: import("@sinclair/typebox").TInteger;
|
|
30
|
+
output_tokens: import("@sinclair/typebox").TInteger;
|
|
31
|
+
reasoning_output_tokens: import("@sinclair/typebox").TInteger;
|
|
32
|
+
total_tokens: import("@sinclair/typebox").TInteger;
|
|
33
|
+
event_count: import("@sinclair/typebox").TInteger;
|
|
34
|
+
}>>>;
|
|
35
|
+
usage_models: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
36
|
+
model: import("@sinclair/typebox").TString;
|
|
37
|
+
input_tokens: import("@sinclair/typebox").TInteger;
|
|
38
|
+
cached_input_tokens: import("@sinclair/typebox").TInteger;
|
|
39
|
+
output_tokens: import("@sinclair/typebox").TInteger;
|
|
40
|
+
reasoning_output_tokens: import("@sinclair/typebox").TInteger;
|
|
41
|
+
total_tokens: import("@sinclair/typebox").TInteger;
|
|
42
|
+
event_count: import("@sinclair/typebox").TInteger;
|
|
43
|
+
}>>>;
|
|
44
|
+
meta: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>>;
|
|
45
|
+
}>;
|
|
46
|
+
export declare const ProjectTimelineResponseSchema: import("@sinclair/typebox").TObject<{
|
|
47
|
+
generated_at: import("@sinclair/typebox").TString;
|
|
48
|
+
usage_overview: import("@sinclair/typebox").TObject<{
|
|
49
|
+
total_tokens: import("@sinclair/typebox").TInteger;
|
|
50
|
+
totals: import("@sinclair/typebox").TObject<{
|
|
51
|
+
input_tokens: import("@sinclair/typebox").TInteger;
|
|
52
|
+
cached_input_tokens: import("@sinclair/typebox").TInteger;
|
|
53
|
+
output_tokens: import("@sinclair/typebox").TInteger;
|
|
54
|
+
reasoning_output_tokens: import("@sinclair/typebox").TInteger;
|
|
55
|
+
total_tokens: import("@sinclair/typebox").TInteger;
|
|
56
|
+
event_count: import("@sinclair/typebox").TInteger;
|
|
57
|
+
}>;
|
|
58
|
+
by_source: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
59
|
+
source: import("@sinclair/typebox").TString;
|
|
60
|
+
label: import("@sinclair/typebox").TString;
|
|
61
|
+
category: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"implementation">, import("@sinclair/typebox").TLiteral<"planning">, import("@sinclair/typebox").TLiteral<"context">, import("@sinclair/typebox").TLiteral<"qna">, import("@sinclair/typebox").TLiteral<"other">]>;
|
|
62
|
+
input_tokens: import("@sinclair/typebox").TInteger;
|
|
63
|
+
cached_input_tokens: import("@sinclair/typebox").TInteger;
|
|
64
|
+
output_tokens: import("@sinclair/typebox").TInteger;
|
|
65
|
+
reasoning_output_tokens: import("@sinclair/typebox").TInteger;
|
|
66
|
+
total_tokens: import("@sinclair/typebox").TInteger;
|
|
67
|
+
event_count: import("@sinclair/typebox").TInteger;
|
|
68
|
+
}>>;
|
|
69
|
+
by_model: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
70
|
+
model: import("@sinclair/typebox").TString;
|
|
71
|
+
input_tokens: import("@sinclair/typebox").TInteger;
|
|
72
|
+
cached_input_tokens: import("@sinclair/typebox").TInteger;
|
|
73
|
+
output_tokens: import("@sinclair/typebox").TInteger;
|
|
74
|
+
reasoning_output_tokens: import("@sinclair/typebox").TInteger;
|
|
75
|
+
total_tokens: import("@sinclair/typebox").TInteger;
|
|
76
|
+
event_count: import("@sinclair/typebox").TInteger;
|
|
77
|
+
}>>;
|
|
78
|
+
recent_windows: import("@sinclair/typebox").TObject<{
|
|
79
|
+
today: import("@sinclair/typebox").TObject<{
|
|
80
|
+
input_tokens: import("@sinclair/typebox").TInteger;
|
|
81
|
+
cached_input_tokens: import("@sinclair/typebox").TInteger;
|
|
82
|
+
output_tokens: import("@sinclair/typebox").TInteger;
|
|
83
|
+
reasoning_output_tokens: import("@sinclair/typebox").TInteger;
|
|
84
|
+
total_tokens: import("@sinclair/typebox").TInteger;
|
|
85
|
+
event_count: import("@sinclair/typebox").TInteger;
|
|
86
|
+
}>;
|
|
87
|
+
last_7_days: import("@sinclair/typebox").TObject<{
|
|
88
|
+
input_tokens: import("@sinclair/typebox").TInteger;
|
|
89
|
+
cached_input_tokens: import("@sinclair/typebox").TInteger;
|
|
90
|
+
output_tokens: import("@sinclair/typebox").TInteger;
|
|
91
|
+
reasoning_output_tokens: import("@sinclair/typebox").TInteger;
|
|
92
|
+
total_tokens: import("@sinclair/typebox").TInteger;
|
|
93
|
+
event_count: import("@sinclair/typebox").TInteger;
|
|
94
|
+
}>;
|
|
95
|
+
last_30_days: import("@sinclair/typebox").TObject<{
|
|
96
|
+
input_tokens: import("@sinclair/typebox").TInteger;
|
|
97
|
+
cached_input_tokens: import("@sinclair/typebox").TInteger;
|
|
98
|
+
output_tokens: import("@sinclair/typebox").TInteger;
|
|
99
|
+
reasoning_output_tokens: import("@sinclair/typebox").TInteger;
|
|
100
|
+
total_tokens: import("@sinclair/typebox").TInteger;
|
|
101
|
+
event_count: import("@sinclair/typebox").TInteger;
|
|
102
|
+
}>;
|
|
103
|
+
}>;
|
|
104
|
+
}>;
|
|
105
|
+
items: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
106
|
+
id: import("@sinclair/typebox").TString;
|
|
107
|
+
kind: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"run">, import("@sinclair/typebox").TLiteral<"procedure">, import("@sinclair/typebox").TLiteral<"commit">, import("@sinclair/typebox").TLiteral<"usage">, import("@sinclair/typebox").TLiteral<"clarification">, import("@sinclair/typebox").TLiteral<"checks">, import("@sinclair/typebox").TLiteral<"promotion">, import("@sinclair/typebox").TLiteral<"recovery">]>;
|
|
108
|
+
occurred_at: import("@sinclair/typebox").TString;
|
|
109
|
+
title: import("@sinclair/typebox").TString;
|
|
110
|
+
summary: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
111
|
+
task_id: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
112
|
+
task_title: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
113
|
+
activity_ref: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
114
|
+
workflow_ref: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
115
|
+
commit_oid: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
116
|
+
commit_short_oid: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
117
|
+
status: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"running">, import("@sinclair/typebox").TLiteral<"completed">, import("@sinclair/typebox").TLiteral<"failed">, import("@sinclair/typebox").TLiteral<"needs_human">, import("@sinclair/typebox").TLiteral<"skipped">]>>;
|
|
118
|
+
token_usage: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
119
|
+
input_tokens: import("@sinclair/typebox").TInteger;
|
|
120
|
+
cached_input_tokens: import("@sinclair/typebox").TInteger;
|
|
121
|
+
output_tokens: import("@sinclair/typebox").TInteger;
|
|
122
|
+
reasoning_output_tokens: import("@sinclair/typebox").TInteger;
|
|
123
|
+
total_tokens: import("@sinclair/typebox").TInteger;
|
|
124
|
+
event_count: import("@sinclair/typebox").TInteger;
|
|
125
|
+
}>>;
|
|
126
|
+
usage_sources: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
127
|
+
source: import("@sinclair/typebox").TString;
|
|
128
|
+
label: import("@sinclair/typebox").TString;
|
|
129
|
+
category: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"implementation">, import("@sinclair/typebox").TLiteral<"planning">, import("@sinclair/typebox").TLiteral<"context">, import("@sinclair/typebox").TLiteral<"qna">, import("@sinclair/typebox").TLiteral<"other">]>;
|
|
130
|
+
input_tokens: import("@sinclair/typebox").TInteger;
|
|
131
|
+
cached_input_tokens: import("@sinclair/typebox").TInteger;
|
|
132
|
+
output_tokens: import("@sinclair/typebox").TInteger;
|
|
133
|
+
reasoning_output_tokens: import("@sinclair/typebox").TInteger;
|
|
134
|
+
total_tokens: import("@sinclair/typebox").TInteger;
|
|
135
|
+
event_count: import("@sinclair/typebox").TInteger;
|
|
136
|
+
}>>>;
|
|
137
|
+
usage_models: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
138
|
+
model: import("@sinclair/typebox").TString;
|
|
139
|
+
input_tokens: import("@sinclair/typebox").TInteger;
|
|
140
|
+
cached_input_tokens: import("@sinclair/typebox").TInteger;
|
|
141
|
+
output_tokens: import("@sinclair/typebox").TInteger;
|
|
142
|
+
reasoning_output_tokens: import("@sinclair/typebox").TInteger;
|
|
143
|
+
total_tokens: import("@sinclair/typebox").TInteger;
|
|
144
|
+
event_count: import("@sinclair/typebox").TInteger;
|
|
145
|
+
}>>>;
|
|
146
|
+
meta: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>>;
|
|
147
|
+
}>>;
|
|
148
|
+
}>;
|
|
149
|
+
//# sourceMappingURL=project-timeline.d.ts.map
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { Type } from "@sinclair/typebox";
|
|
2
|
+
import { ActivityRefSchema, IsoDateTimeStringSchema, TaskIdSchema, WorkflowInvocationRefSchema, } from "../domain/index.js";
|
|
3
|
+
import { ProviderUsageBreakdownProjectionSchema, ProviderUsageModelSummaryProjectionSchema, ProviderUsageProjectionSchema, ProviderUsageSourceSummaryProjectionSchema, } from "./provider-usage.js";
|
|
4
|
+
export const ProjectTimelineItemKindSchema = Type.Union([
|
|
5
|
+
Type.Literal("run"),
|
|
6
|
+
Type.Literal("procedure"),
|
|
7
|
+
Type.Literal("commit"),
|
|
8
|
+
Type.Literal("usage"),
|
|
9
|
+
Type.Literal("clarification"),
|
|
10
|
+
Type.Literal("checks"),
|
|
11
|
+
Type.Literal("promotion"),
|
|
12
|
+
Type.Literal("recovery"),
|
|
13
|
+
]);
|
|
14
|
+
export const ProjectTimelineItemStatusSchema = Type.Union([
|
|
15
|
+
Type.Literal("running"),
|
|
16
|
+
Type.Literal("completed"),
|
|
17
|
+
Type.Literal("failed"),
|
|
18
|
+
Type.Literal("needs_human"),
|
|
19
|
+
Type.Literal("skipped"),
|
|
20
|
+
]);
|
|
21
|
+
export const ProjectTimelineItemSchema = Type.Object({
|
|
22
|
+
id: Type.String({ minLength: 1 }),
|
|
23
|
+
kind: ProjectTimelineItemKindSchema,
|
|
24
|
+
occurred_at: IsoDateTimeStringSchema,
|
|
25
|
+
title: Type.String({ minLength: 1 }),
|
|
26
|
+
summary: Type.Optional(Type.String()),
|
|
27
|
+
task_id: Type.Optional(TaskIdSchema),
|
|
28
|
+
task_title: Type.Optional(Type.String({ minLength: 1 })),
|
|
29
|
+
activity_ref: Type.Optional(ActivityRefSchema),
|
|
30
|
+
workflow_ref: Type.Optional(WorkflowInvocationRefSchema),
|
|
31
|
+
commit_oid: Type.Optional(Type.String({ minLength: 1 })),
|
|
32
|
+
commit_short_oid: Type.Optional(Type.String({ minLength: 1 })),
|
|
33
|
+
status: Type.Optional(ProjectTimelineItemStatusSchema),
|
|
34
|
+
token_usage: Type.Optional(ProviderUsageBreakdownProjectionSchema),
|
|
35
|
+
usage_sources: Type.Optional(Type.Array(ProviderUsageSourceSummaryProjectionSchema)),
|
|
36
|
+
usage_models: Type.Optional(Type.Array(ProviderUsageModelSummaryProjectionSchema)),
|
|
37
|
+
meta: Type.Optional(Type.Array(Type.String({ minLength: 1 }))),
|
|
38
|
+
}, { additionalProperties: false });
|
|
39
|
+
export const ProjectTimelineResponseSchema = Type.Object({
|
|
40
|
+
generated_at: IsoDateTimeStringSchema,
|
|
41
|
+
usage_overview: ProviderUsageProjectionSchema,
|
|
42
|
+
items: Type.Array(ProjectTimelineItemSchema),
|
|
43
|
+
}, { additionalProperties: false });
|
|
44
|
+
//# sourceMappingURL=project-timeline.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export declare const ProviderConfigInvalidReasonCodeSchema: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"provider_auth_invalid">, import("@sinclair/typebox").TLiteral<"provider_quota_or_billing_required">, import("@sinclair/typebox").TLiteral<"provider_rate_limited">, import("@sinclair/typebox").TLiteral<"provider_model_unavailable">, import("@sinclair/typebox").TLiteral<"provider_network_error">, import("@sinclair/typebox").TLiteral<"unknown">]>;
|
|
2
|
+
export declare const ProviderUnavailableReasonCodeSchema: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"provider_auth_invalid">, import("@sinclair/typebox").TLiteral<"provider_quota_or_billing_required">, import("@sinclair/typebox").TLiteral<"provider_rate_limited">, import("@sinclair/typebox").TLiteral<"provider_model_unavailable">, import("@sinclair/typebox").TLiteral<"provider_network_error">, import("@sinclair/typebox").TLiteral<"unknown">]>;
|
|
3
|
+
export declare const ProviderConfigProjectionSchema: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
4
|
+
status: import("@sinclair/typebox").TLiteral<"not_configured">;
|
|
5
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
6
|
+
status: import("@sinclair/typebox").TLiteral<"configured">;
|
|
7
|
+
provider: import("@sinclair/typebox").TLiteral<"openai">;
|
|
8
|
+
auth_kind: import("@sinclair/typebox").TLiteral<"api_key">;
|
|
9
|
+
redacted_key: import("@sinclair/typebox").TString;
|
|
10
|
+
default_model: import("@sinclair/typebox").TString;
|
|
11
|
+
validated_at: import("@sinclair/typebox").TString;
|
|
12
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
13
|
+
status: import("@sinclair/typebox").TLiteral<"invalid">;
|
|
14
|
+
provider: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TLiteral<"openai">>;
|
|
15
|
+
auth_kind: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TLiteral<"api_key">>;
|
|
16
|
+
redacted_key: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
17
|
+
default_model: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
18
|
+
validated_at: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
19
|
+
invalid_reason_code: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"provider_auth_invalid">, import("@sinclair/typebox").TLiteral<"provider_quota_or_billing_required">, import("@sinclair/typebox").TLiteral<"provider_rate_limited">, import("@sinclair/typebox").TLiteral<"provider_model_unavailable">, import("@sinclair/typebox").TLiteral<"provider_network_error">, import("@sinclair/typebox").TLiteral<"unknown">]>>;
|
|
20
|
+
}>]>;
|
|
21
|
+
//# sourceMappingURL=provider-config.d.ts.map
|