@theokit/sdk 1.6.2 → 1.8.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/CHANGELOG.md +193 -0
- package/bin/init-claude.mjs +34 -0
- package/claude-template/AGENTS.md +139 -0
- package/claude-template/CLAUDE.md +51 -0
- package/claude-template/dot-claude/rules/theokit-conventions.md +33 -0
- package/claude-template/dot-claude/settings.json +16 -0
- package/claude-template/dot-claude/skills/theokit-agent-core/SKILL.md +209 -0
- package/claude-template/dot-claude/skills/theokit-budget/SKILL.md +176 -0
- package/claude-template/dot-claude/skills/theokit-config/SKILL.md +139 -0
- package/claude-template/dot-claude/skills/theokit-cron/SKILL.md +148 -0
- package/claude-template/dot-claude/skills/theokit-di/SKILL.md +233 -0
- package/claude-template/dot-claude/skills/theokit-di-agent/SKILL.md +294 -0
- package/claude-template/dot-claude/skills/theokit-errors/SKILL.md +172 -0
- package/claude-template/dot-claude/skills/theokit-eval/SKILL.md +144 -0
- package/claude-template/dot-claude/skills/theokit-gateways/SKILL.md +209 -0
- package/claude-template/dot-claude/skills/theokit-memory/SKILL.md +176 -0
- package/claude-template/dot-claude/skills/theokit-rag/SKILL.md +226 -0
- package/claude-template/dot-claude/skills/theokit-streaming/SKILL.md +156 -0
- package/claude-template/dot-claude/skills/theokit-subscriptions/SKILL.md +148 -0
- package/claude-template/dot-claude/skills/theokit-tools/SKILL.md +170 -0
- package/claude-template/dot-claude/skills/theokit-workflows/SKILL.md +218 -0
- package/dist/a2a/agent-mailbox.d.cts +27 -0
- package/dist/a2a/agent-mailbox.d.ts +27 -0
- package/dist/a2a/index.cjs +16850 -0
- package/dist/a2a/index.cjs.map +1 -0
- package/dist/a2a/index.d.cts +9 -0
- package/dist/a2a/index.d.ts +9 -0
- package/dist/a2a/index.js +16844 -0
- package/dist/a2a/index.js.map +1 -0
- package/dist/a2a/message-bus.d.cts +27 -0
- package/dist/a2a/message-bus.d.ts +27 -0
- package/dist/a2a/subagent.d.cts +25 -0
- package/dist/a2a/subagent.d.ts +25 -0
- package/dist/a2a/types.d.cts +12 -0
- package/dist/a2a/types.d.ts +12 -0
- package/dist/agent.d.ts +1 -1
- package/dist/client/index.cjs +73 -0
- package/dist/client/index.cjs.map +1 -0
- package/dist/client/index.d.cts +7 -0
- package/dist/client/index.d.ts +7 -0
- package/dist/client/index.js +71 -0
- package/dist/client/index.js.map +1 -0
- package/dist/client/theokit-client.d.cts +18 -0
- package/dist/client/theokit-client.d.ts +18 -0
- package/dist/client/types.d.cts +19 -0
- package/dist/client/types.d.ts +19 -0
- package/dist/{run-DkCD5DeO.d.cts → cron-BnywDYLq.d.cts} +496 -910
- package/dist/{run-DkCD5DeO.d.ts → cron-CtZvJD9J.d.ts} +496 -910
- package/dist/cron.cjs +4285 -2893
- package/dist/cron.cjs.map +1 -1
- package/dist/cron.d.cts +2 -3
- package/dist/cron.d.ts +2 -71
- package/dist/cron.js +4289 -2897
- package/dist/cron.js.map +1 -1
- package/dist/{errors-CvAeEWgE.d.ts → errors-ChqOmFH1.d.cts} +52 -6
- package/dist/{errors-CK8brCJ1.d.cts → errors-DV9e0rcp.d.ts} +52 -6
- package/dist/errors.cjs +218 -3
- package/dist/errors.cjs.map +1 -1
- package/dist/errors.d.cts +2 -3
- package/dist/errors.d.ts +50 -4
- package/dist/errors.js +217 -4
- package/dist/errors.js.map +1 -1
- package/dist/eval.cjs +4285 -2893
- package/dist/eval.cjs.map +1 -1
- package/dist/eval.d.cts +35 -0
- package/dist/eval.js +4289 -2897
- package/dist/eval.js.map +1 -1
- package/dist/event-bus.d.ts +23 -0
- package/dist/index.cjs +5132 -4200
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +298 -278
- package/dist/index.d.ts +1898 -24
- package/dist/index.js +6441 -5509
- package/dist/index.js.map +1 -1
- package/dist/internal/agent-loop/loop-context-init.d.ts +2 -0
- package/dist/internal/agent-loop/tool-dispatch.d.ts +22 -1
- package/dist/internal/auth/api-key-validator.d.ts +46 -0
- package/dist/internal/llm/anthropic-shared.d.ts +8 -1
- package/dist/internal/llm/retry.d.ts +22 -0
- package/dist/internal/llm/types.d.ts +47 -1
- package/dist/internal/memory/active-memory-cache.d.ts +3 -3
- package/dist/internal/memory/active-memory-types.d.ts +8 -0
- package/dist/internal/memory/active-memory.d.ts +24 -20
- package/dist/internal/memory/adapters/azure-openai-embedding.d.ts +2 -0
- package/dist/internal/memory/adapters/cohere-embedding.d.ts +2 -0
- package/dist/internal/memory/adapters/gemini-embedding.d.ts +2 -0
- package/dist/internal/memory/adapters/jina-embedding.d.ts +2 -0
- package/dist/internal/memory/index-manager-contract.d.ts +26 -0
- package/dist/internal/memory/index-manager-dispatch.d.ts +1 -1
- package/dist/internal/memory/index-manager.d.ts +8 -26
- package/dist/internal/memory/{chunk-markdown.d.ts → storage/chunk-markdown.d.ts} +1 -1
- package/dist/internal/memory/{markdown-store.d.ts → storage/markdown-store.d.ts} +1 -1
- package/dist/internal/memory/{reader.d.ts → storage/reader.d.ts} +1 -1
- package/dist/internal/observability/context.d.cts +23 -0
- package/dist/internal/observability/context.d.ts +23 -0
- package/dist/internal/observability/index.cjs +38 -0
- package/dist/internal/observability/index.cjs.map +1 -0
- package/dist/internal/observability/index.d.cts +8 -0
- package/dist/internal/observability/index.d.ts +8 -0
- package/dist/internal/observability/index.js +33 -0
- package/dist/internal/observability/index.js.map +1 -0
- package/dist/internal/observability/tracer-loader.d.cts +20 -0
- package/dist/internal/persistence/conversation-storage-fs.d.cts +37 -0
- package/dist/internal/persistence/conversation-storage-memory.d.cts +24 -0
- package/dist/internal/persistence/credential-pool-store.d.cts +32 -0
- package/dist/internal/persistence/credential-pool-store.d.ts +32 -0
- package/dist/internal/persistence/cwd-mutex.d.cts +1 -0
- package/dist/internal/persistence/exclusive-create.d.cts +22 -0
- package/dist/internal/persistence/exclusive-create.d.ts +22 -0
- package/dist/internal/persistence/file-lock.d.cts +14 -0
- package/dist/internal/persistence/fts5-sanitize.d.cts +16 -0
- package/dist/internal/persistence/index.cjs +359 -0
- package/dist/internal/persistence/index.cjs.map +1 -0
- package/dist/internal/persistence/index.d.cts +20 -0
- package/dist/internal/persistence/index.d.ts +20 -0
- package/dist/internal/persistence/index.js +341 -0
- package/dist/internal/persistence/index.js.map +1 -0
- package/dist/internal/persistence/markdown-config-loader.d.cts +35 -0
- package/dist/internal/persistence/paths.d.cts +19 -0
- package/dist/internal/persistence/persistence-schema.d.cts +21 -0
- package/dist/internal/persistence/persistence-schema.d.ts +4 -0
- package/dist/internal/persistence/schema-version.d.cts +13 -0
- package/dist/internal/persistence/sqlite-cas.d.cts +25 -0
- package/dist/internal/persistence/sqlite-cas.d.ts +25 -0
- package/dist/internal/persistence/sqlite-wal.d.cts +10 -0
- package/dist/internal/plugins/context.d.cts +31 -0
- package/dist/internal/plugins/index.cjs +228 -0
- package/dist/internal/plugins/index.cjs.map +1 -0
- package/dist/internal/plugins/index.d.cts +8 -0
- package/dist/internal/plugins/index.d.ts +8 -0
- package/dist/internal/plugins/index.js +222 -0
- package/dist/internal/plugins/index.js.map +1 -0
- package/dist/internal/plugins/lifecycle.d.cts +14 -0
- package/dist/internal/plugins/lifecycle.d.ts +14 -0
- package/dist/internal/plugins/manager.d.cts +37 -0
- package/dist/internal/plugins/types.d.cts +102 -0
- package/dist/internal/providers/catalog-loader.d.ts +39 -0
- package/dist/internal/runtime/agent-session-store.d.ts +1 -1
- package/dist/internal/runtime/agent-session.d.ts +1 -0
- package/dist/internal/runtime/budget-tracker.d.ts +73 -0
- package/dist/internal/runtime/{context-manager.d.ts → context/context-manager.d.ts} +1 -1
- package/dist/internal/runtime/{fixture-events.d.ts → fixtures/fixture-events.d.ts} +1 -1
- package/dist/internal/runtime/{fixture-run-base.d.ts → fixtures/fixture-run-base.d.ts} +4 -4
- package/dist/internal/runtime/{fixture-scripts.d.ts → fixtures/fixture-scripts.d.ts} +1 -1
- package/dist/internal/runtime/local-agent-bootstrap.d.ts +2 -2
- package/dist/internal/runtime/local-agent-memory-provider.d.ts +57 -0
- package/dist/internal/runtime/memory-path-selector.d.ts +73 -0
- package/dist/internal/runtime/memory-provider.d.ts +165 -0
- package/dist/internal/runtime/{agent-registry.d.ts → registry/agent-registry-contract.d.ts} +15 -9
- package/dist/internal/runtime/registry/agent-registry.d.ts +7 -0
- package/dist/internal/runtime/{live-agent-registry.d.ts → registry/live-agent-registry.d.ts} +1 -1
- package/dist/internal/runtime/{run-registry.d.ts → registry/run-registry.d.ts} +1 -1
- package/dist/internal/runtime/session-types.d.ts +35 -0
- package/dist/internal/runtime/system-prompt/sources/skills-provider.d.ts +1 -0
- package/dist/internal/runtime/validate-response.d.ts +18 -0
- package/dist/internal/security/index.cjs +361 -0
- package/dist/internal/security/index.cjs.map +1 -0
- package/dist/internal/security/index.d.cts +11 -0
- package/dist/internal/security/index.js +350 -0
- package/dist/internal/security/index.js.map +1 -0
- package/dist/internal/security/path-guard.d.cts +59 -0
- package/dist/internal/security/path-guard.d.ts +3 -0
- package/dist/internal/security/redact.d.cts +21 -0
- package/dist/internal/security/secret-redactor.d.cts +1 -0
- package/dist/internal/security/secret-redactor.d.ts +1 -0
- package/dist/internal/security/test-reset.d.cts +10 -0
- package/dist/internal/security/test-reset.d.ts +10 -0
- package/dist/internal/telemetry/adapters/arize.d.ts +2 -0
- package/dist/internal/telemetry/adapters/braintrust.d.ts +2 -0
- package/dist/internal/telemetry/adapters/datadog.d.ts +2 -0
- package/dist/internal/telemetry/adapters/langsmith.d.ts +2 -0
- package/dist/internal/telemetry/span-names.d.ts +6 -0
- package/dist/internal/telemetry/tracer.d.ts +1 -0
- package/dist/internal/workflow/evented-executor.d.ts +42 -0
- package/dist/internal/workflow/scheduler.d.ts +23 -0
- package/dist/internal/zod/to-json-schema.d.ts +5 -15
- package/dist/job-queue.d.ts +28 -0
- package/dist/path-safety.cjs +67 -6
- package/dist/path-safety.cjs.map +1 -1
- package/dist/path-safety.d.cts +15 -0
- package/dist/path-safety.d.ts +1 -1
- package/dist/path-safety.js +67 -7
- package/dist/path-safety.js.map +1 -1
- package/dist/permission-engine.d.ts +21 -0
- package/dist/provider-catalog.json +702 -0
- package/dist/rag/index.cjs +136 -0
- package/dist/rag/index.cjs.map +1 -0
- package/dist/rag/index.d.cts +11 -0
- package/dist/rag/index.d.ts +11 -0
- package/dist/rag/index.js +129 -0
- package/dist/rag/index.js.map +1 -0
- package/dist/rag/reranker.d.cts +26 -0
- package/dist/rag/reranker.d.ts +26 -0
- package/dist/rag/retriever.d.cts +25 -0
- package/dist/rag/retriever.d.ts +25 -0
- package/dist/rag/text-splitter.d.cts +12 -0
- package/dist/rag/text-splitter.d.ts +12 -0
- package/dist/rag/types.d.cts +37 -0
- package/dist/rag/types.d.ts +37 -0
- package/dist/run-DrwUpFxZ.d.cts +823 -0
- package/dist/run-DrwUpFxZ.d.ts +823 -0
- package/dist/sandbox/index.cjs +133 -0
- package/dist/sandbox/index.cjs.map +1 -0
- package/dist/sandbox/index.d.cts +2 -0
- package/dist/sandbox/index.d.ts +2 -0
- package/dist/sandbox/index.js +128 -0
- package/dist/sandbox/index.js.map +1 -0
- package/dist/sandbox/local-sandbox.d.cts +17 -0
- package/dist/sandbox/local-sandbox.d.ts +17 -0
- package/dist/sandbox/types.d.cts +44 -0
- package/dist/sandbox/types.d.ts +44 -0
- package/dist/server/adapter/express.d.cts +9 -0
- package/dist/server/adapter/express.d.ts +9 -0
- package/dist/server/adapter/fastify.d.cts +9 -0
- package/dist/server/adapter/fastify.d.ts +9 -0
- package/dist/server/adapter/hono.d.cts +9 -0
- package/dist/server/adapter/hono.d.ts +9 -0
- package/dist/server/adapter/index.d.cts +8 -0
- package/dist/server/adapter/index.d.ts +8 -0
- package/dist/server/adapter/shared-handler.d.cts +9 -0
- package/dist/server/adapter/shared-handler.d.ts +9 -0
- package/dist/server/adapter/types.d.cts +33 -0
- package/dist/server/adapter/types.d.ts +33 -0
- package/dist/server/auth/errors.d.cts +53 -0
- package/dist/server/auth/errors.d.ts +53 -0
- package/dist/server/auth/index.cjs +38 -41
- package/dist/server/auth/index.cjs.map +1 -1
- package/dist/server/auth/index.d.cts +11 -172
- package/dist/server/auth/index.d.ts +11 -172
- package/dist/server/auth/index.js +39 -42
- package/dist/server/auth/index.js.map +1 -1
- package/dist/server/auth/oauth-transaction-store.d.cts +39 -0
- package/dist/server/auth/oauth-transaction-store.d.ts +39 -0
- package/dist/server/auth/orchestrator.d.cts +8 -0
- package/dist/server/auth/orchestrator.d.ts +8 -0
- package/dist/server/auth/types.d.cts +91 -0
- package/dist/server/auth/types.d.ts +91 -0
- package/dist/server/auth/validate-return-to.d.cts +17 -0
- package/dist/server/auth/validate-return-to.d.ts +17 -0
- package/dist/server/errors-envelope.cjs +409 -0
- package/dist/server/errors-envelope.cjs.map +1 -0
- package/dist/server/errors-envelope.d.cts +61 -0
- package/dist/server/errors-envelope.d.ts +61 -0
- package/dist/server/errors-envelope.js +405 -0
- package/dist/server/errors-envelope.js.map +1 -0
- package/dist/subscription/define-subscription.d.cts +63 -0
- package/dist/subscription/define-subscription.d.ts +63 -0
- package/dist/subscription/index.cjs +402 -0
- package/dist/subscription/index.cjs.map +1 -0
- package/dist/subscription/index.d.cts +18 -0
- package/dist/subscription/index.d.ts +18 -0
- package/dist/subscription/index.js +394 -0
- package/dist/subscription/index.js.map +1 -0
- package/dist/subscription/internal/adapter-types.d.cts +11 -0
- package/dist/subscription/internal/adapter-types.d.ts +11 -0
- package/dist/subscription/internal/backpressure.d.cts +24 -0
- package/dist/subscription/internal/backpressure.d.ts +24 -0
- package/dist/subscription/internal/server-integration.d.cts +17 -0
- package/dist/subscription/internal/server-integration.d.ts +17 -0
- package/dist/subscription/internal/sse-encoder.d.cts +13 -0
- package/dist/subscription/internal/sse-encoder.d.ts +13 -0
- package/dist/subscription/internal/sse-parser.d.cts +15 -0
- package/dist/subscription/internal/sse-parser.d.ts +15 -0
- package/dist/subscription/internal/subscription-runtime.d.cts +9 -0
- package/dist/subscription/internal/subscription-runtime.d.ts +9 -0
- package/dist/subscription/internal/ws-adapter-node.d.cts +10 -0
- package/dist/subscription/internal/ws-adapter-node.d.ts +10 -0
- package/dist/subscription/theokit-subscribe.d.cts +41 -0
- package/dist/subscription/theokit-subscribe.d.ts +41 -0
- package/dist/subscription/types.d.cts +140 -0
- package/dist/subscription/types.d.ts +140 -0
- package/dist/task-store.cjs +30 -2
- package/dist/task-store.cjs.map +1 -1
- package/dist/task-store.d.cts +8 -0
- package/dist/task-store.js +31 -3
- package/dist/task-store.js.map +1 -1
- package/dist/types/agent-prims.d.ts +61 -0
- package/dist/types/agent.d.ts +48 -53
- package/dist/types/conversation.d.ts +20 -8
- package/dist/types/index.d.ts +0 -2
- package/dist/types/messages-base.d.ts +20 -0
- package/dist/types/messages.d.ts +1 -1
- package/dist/types/run.d.ts +1 -1
- package/dist/types/updates.d.ts +1 -1
- package/dist/voice/index.d.ts +7 -0
- package/dist/voice/openai-realtime.d.ts +21 -0
- package/dist/voice/types.d.ts +35 -0
- package/dist/workflow.cjs +179 -88
- package/dist/workflow.cjs.map +1 -1
- package/dist/workflow.d.cts +97 -0
- package/dist/workflow.js +180 -89
- package/dist/workflow.js.map +1 -1
- package/package.json +128 -25
- package/dist/budget.d.ts +0 -48
- package/dist/cache.d.ts +0 -74
- package/dist/cron-1yxL3K2S.d.cts +0 -221
- package/dist/cron-BYVdYzob.d.ts +0 -221
- package/dist/handoff.d.ts +0 -55
- package/dist/internal/budget/calendar-window.d.ts +0 -19
- package/dist/internal/budget/enforcement.d.ts +0 -32
- package/dist/internal/budget/ledger.d.ts +0 -25
- package/dist/internal/budget/normalize-usage.d.ts +0 -27
- package/dist/internal/budget/registry.d.ts +0 -16
- package/dist/internal/cache/cosine.d.ts +0 -14
- package/dist/internal/cache/embed-helper.d.ts +0 -15
- package/dist/internal/cache/key.d.ts +0 -15
- package/dist/internal/cache/lookup.d.ts +0 -28
- package/dist/internal/cache/store-handler.d.ts +0 -24
- package/dist/internal/cache/store-json.d.ts +0 -48
- package/dist/internal/cache/store.d.ts +0 -54
- package/dist/internal/cache/telemetry.d.ts +0 -20
- package/dist/internal/cache/ttl.d.ts +0 -11
- package/dist/internal/catalog/fixtures.d.ts +0 -16
- package/dist/internal/catalog/local-models.d.ts +0 -24
- package/dist/internal/handoff/dispatcher.d.ts +0 -29
- package/dist/internal/handoff/registry.d.ts +0 -23
- package/dist/internal/handoff/telemetry.d.ts +0 -18
- package/dist/internal/handoff/tool-injector.d.ts +0 -34
- package/dist/internal/memory/atomic-write.d.ts +0 -7
- package/dist/internal/memory/dreaming/diary.d.ts +0 -4
- package/dist/internal/memory/dreaming/phases.d.ts +0 -15
- package/dist/internal/memory/dreaming/run.d.ts +0 -10
- package/dist/internal/memory/migrate-sqlite-to-lance.d.ts +0 -15
- package/dist/memory-adapter-helpers.d.ts +0 -28
- package/dist/memory.d.ts +0 -123
- package/dist/migrate.d.ts +0 -33
- package/dist/security.d.ts +0 -67
- package/dist/task.d.ts +0 -87
- package/dist/theokit.d.ts +0 -84
- package/dist/tools/_path-scope.d.ts +0 -8
- package/dist/tools/_subprocess.d.ts +0 -28
- package/dist/tools/git-diff.d.ts +0 -22
- package/dist/tools/index.d.ts +0 -29
- package/dist/tools/list-dir.d.ts +0 -26
- package/dist/tools/read-file.d.ts +0 -31
- package/dist/tools/run-vitest.d.ts +0 -46
- package/dist/tools/search-text.d.ts +0 -32
- package/dist/tools.cjs +0 -690
- package/dist/tools.cjs.map +0 -1
- package/dist/tools.js +0 -683
- package/dist/tools.js.map +0 -1
- package/dist/trajectory-helpers.d.ts +0 -31
- package/dist/types/cache.d.ts +0 -76
- package/dist/types/handoff.d.ts +0 -135
- /package/dist/{internal/cron/run-job.d.ts → agent-helpers.d.ts} +0 -0
- /package/dist/internal/{cron/scheduler.d.ts → agent-loop/loop-llm-stream.d.ts} +0 -0
- /package/dist/internal/{cron/store.d.ts → agent-loop/tool-executors.d.ts} +0 -0
- /package/dist/internal/{cron/validate.d.ts → memory/index-manager-helpers.d.ts} +0 -0
- /package/dist/internal/memory/{session-loader.d.ts → storage/session-loader.d.ts} +0 -0
- /package/dist/internal/memory/{session-summary-writer.d.ts → storage/session-summary-writer.d.ts} +0 -0
- /package/dist/internal/memory/{transcript-store.d.ts → storage/transcript-store.d.ts} +0 -0
- /package/dist/internal/memory/{wiki-loader.d.ts → storage/wiki-loader.d.ts} +0 -0
- /package/dist/internal/{memory/cwd-mutex.d.ts → persistence/atomic-write.d.cts} +0 -0
- /package/dist/internal/runtime/{context-aggregator.d.ts → context/context-aggregator.d.ts} +0 -0
- /package/dist/internal/runtime/{context-discovery-runner.d.ts → context/context-discovery-runner.d.ts} +0 -0
- /package/dist/internal/runtime/{context-discovery.d.ts → context/context-discovery.d.ts} +0 -0
- /package/dist/internal/runtime/{context-frontmatter.d.ts → context/context-frontmatter.d.ts} +0 -0
- /package/dist/internal/runtime/{context-import-resolver.d.ts → context/context-import-resolver.d.ts} +0 -0
- /package/dist/internal/runtime/{context-loaders.d.ts → context/context-loaders.d.ts} +0 -0
- /package/dist/internal/runtime/{context-mdc-parser.d.ts → context/context-mdc-parser.d.ts} +0 -0
- /package/dist/internal/runtime/{fixture-responder.d.ts → fixtures/fixture-responder.d.ts} +0 -0
- /package/dist/internal/runtime/{fixture-types.d.ts → fixtures/fixture-types.d.ts} +0 -0
- /package/dist/internal/runtime/{plugins-manager.d.ts → local-agent-send.d.ts} +0 -0
- /package/dist/internal/runtime/{plugin-frontmatter.d.ts → plugins/plugin-frontmatter.d.ts} +0 -0
- /package/dist/internal/runtime/{system-prompt/providers/active-memory-provider.d.ts → plugins/plugins-manager.d.ts} +0 -0
- /package/dist/internal/runtime/{agent-factory-registry.d.ts → registry/agent-factory-registry.d.ts} +0 -0
- /package/dist/internal/runtime/{agent-registry-store.d.ts → registry/agent-registry-store.d.ts} +0 -0
- /package/dist/internal/runtime/system-prompt/{providers/base-provider.d.ts → sources/active-memory-provider.d.ts} +0 -0
- /package/dist/internal/runtime/system-prompt/{providers/context-provider.d.ts → sources/base-provider.d.ts} +0 -0
- /package/dist/internal/runtime/system-prompt/{providers/memory-provider.d.ts → sources/context-provider.d.ts} +0 -0
- /package/dist/internal/runtime/system-prompt/{providers/skills-provider.d.ts → sources/memory-provider.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theokit/sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0",
|
|
4
4
|
"description": "TypeScript SDK for the Theo agent harness — same surface, local or cloud.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/usetheo/theokit-sdk#readme",
|
|
@@ -48,16 +48,6 @@
|
|
|
48
48
|
"default": "./dist/errors.cjs"
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
|
-
"./tools": {
|
|
52
|
-
"import": {
|
|
53
|
-
"types": "./dist/tools/index.d.ts",
|
|
54
|
-
"default": "./dist/tools.js"
|
|
55
|
-
},
|
|
56
|
-
"require": {
|
|
57
|
-
"types": "./dist/tools/index.d.cts",
|
|
58
|
-
"default": "./dist/tools.cjs"
|
|
59
|
-
}
|
|
60
|
-
},
|
|
61
51
|
"./path-safety": {
|
|
62
52
|
"import": {
|
|
63
53
|
"types": "./dist/path-safety.d.ts",
|
|
@@ -108,32 +98,147 @@
|
|
|
108
98
|
"default": "./dist/server/auth/index.cjs"
|
|
109
99
|
}
|
|
110
100
|
},
|
|
101
|
+
"./server/errors-envelope": {
|
|
102
|
+
"import": {
|
|
103
|
+
"types": "./dist/server/errors-envelope.d.ts",
|
|
104
|
+
"default": "./dist/server/errors-envelope.js"
|
|
105
|
+
},
|
|
106
|
+
"require": {
|
|
107
|
+
"types": "./dist/server/errors-envelope.d.cts",
|
|
108
|
+
"default": "./dist/server/errors-envelope.cjs"
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"./subscription": {
|
|
112
|
+
"import": {
|
|
113
|
+
"types": "./dist/subscription/index.d.ts",
|
|
114
|
+
"default": "./dist/subscription/index.js"
|
|
115
|
+
},
|
|
116
|
+
"require": {
|
|
117
|
+
"types": "./dist/subscription/index.d.cts",
|
|
118
|
+
"default": "./dist/subscription/index.cjs"
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"./internal/persistence": {
|
|
122
|
+
"import": {
|
|
123
|
+
"types": "./dist/internal/persistence/index.d.ts",
|
|
124
|
+
"default": "./dist/internal/persistence/index.js"
|
|
125
|
+
},
|
|
126
|
+
"require": {
|
|
127
|
+
"types": "./dist/internal/persistence/index.d.cts",
|
|
128
|
+
"default": "./dist/internal/persistence/index.cjs"
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
"./internal/plugins": {
|
|
132
|
+
"import": {
|
|
133
|
+
"types": "./dist/internal/plugins/index.d.ts",
|
|
134
|
+
"default": "./dist/internal/plugins/index.js"
|
|
135
|
+
},
|
|
136
|
+
"require": {
|
|
137
|
+
"types": "./dist/internal/plugins/index.d.cts",
|
|
138
|
+
"default": "./dist/internal/plugins/index.cjs"
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
"./internal/observability": {
|
|
142
|
+
"import": {
|
|
143
|
+
"types": "./dist/internal/observability/index.d.ts",
|
|
144
|
+
"default": "./dist/internal/observability/index.js"
|
|
145
|
+
},
|
|
146
|
+
"require": {
|
|
147
|
+
"types": "./dist/internal/observability/index.d.cts",
|
|
148
|
+
"default": "./dist/internal/observability/index.cjs"
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
"./internal/security": {
|
|
152
|
+
"import": {
|
|
153
|
+
"types": "./dist/internal/security/index.d.ts",
|
|
154
|
+
"default": "./dist/internal/security/index.js"
|
|
155
|
+
},
|
|
156
|
+
"require": {
|
|
157
|
+
"types": "./dist/internal/security/index.d.cts",
|
|
158
|
+
"default": "./dist/internal/security/index.cjs"
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
"./rag": {
|
|
162
|
+
"import": {
|
|
163
|
+
"types": "./dist/rag/index.d.ts",
|
|
164
|
+
"default": "./dist/rag/index.js"
|
|
165
|
+
},
|
|
166
|
+
"require": {
|
|
167
|
+
"types": "./dist/rag/index.d.cts",
|
|
168
|
+
"default": "./dist/rag/index.cjs"
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
"./a2a": {
|
|
172
|
+
"import": {
|
|
173
|
+
"types": "./dist/a2a/index.d.ts",
|
|
174
|
+
"default": "./dist/a2a/index.js"
|
|
175
|
+
},
|
|
176
|
+
"require": {
|
|
177
|
+
"types": "./dist/a2a/index.d.cts",
|
|
178
|
+
"default": "./dist/a2a/index.cjs"
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
"./client": {
|
|
182
|
+
"import": {
|
|
183
|
+
"types": "./dist/client/index.d.ts",
|
|
184
|
+
"default": "./dist/client/index.js"
|
|
185
|
+
},
|
|
186
|
+
"require": {
|
|
187
|
+
"types": "./dist/client/index.d.cts",
|
|
188
|
+
"default": "./dist/client/index.cjs"
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
"./sandbox": {
|
|
192
|
+
"import": {
|
|
193
|
+
"types": "./dist/sandbox/index.d.ts",
|
|
194
|
+
"default": "./dist/sandbox/index.js"
|
|
195
|
+
},
|
|
196
|
+
"require": {
|
|
197
|
+
"types": "./dist/sandbox/index.d.cts",
|
|
198
|
+
"default": "./dist/sandbox/index.cjs"
|
|
199
|
+
}
|
|
200
|
+
},
|
|
111
201
|
"./package.json": "./package.json"
|
|
112
202
|
},
|
|
113
203
|
"files": [
|
|
114
204
|
"dist",
|
|
115
205
|
"bin",
|
|
206
|
+
"claude-template",
|
|
116
207
|
"README.md",
|
|
117
208
|
"CHANGELOG.md",
|
|
118
209
|
"LICENSE"
|
|
119
210
|
],
|
|
120
211
|
"bin": {
|
|
212
|
+
"theokit-init-claude": "./bin/init-claude.mjs",
|
|
121
213
|
"theokit-migrate-config": "./bin/theokit-migrate-config.mjs",
|
|
122
214
|
"theokit-migrate-memory": "./bin/theokit-migrate-memory.mjs"
|
|
123
215
|
},
|
|
124
216
|
"sideEffects": false,
|
|
217
|
+
"scripts": {
|
|
218
|
+
"build": "tsup && cp src/internal/providers/provider-catalog.json dist/provider-catalog.json",
|
|
219
|
+
"test": "vitest run --no-file-parallelism",
|
|
220
|
+
"test:watch": "vitest",
|
|
221
|
+
"typecheck": "tsc --noEmit",
|
|
222
|
+
"clean": "rm -rf dist",
|
|
223
|
+
"docs:json": "typedoc --options typedoc.json",
|
|
224
|
+
"docs:drift": "tsx scripts/check-docs-drift.ts"
|
|
225
|
+
},
|
|
125
226
|
"peerDependencies": {
|
|
126
227
|
"@lancedb/lancedb": "^0.30.0",
|
|
228
|
+
"@types/ws": ">=8.0.0",
|
|
127
229
|
"better-sqlite3": "^12.0.0",
|
|
128
230
|
"proper-lockfile": "^4.1.2",
|
|
129
231
|
"sqlite-vec": "^0.1.0",
|
|
130
|
-
"
|
|
131
|
-
"zod
|
|
232
|
+
"ws": ">=8.0.0",
|
|
233
|
+
"zod": "^4.0.0"
|
|
132
234
|
},
|
|
133
235
|
"peerDependenciesMeta": {
|
|
134
236
|
"@lancedb/lancedb": {
|
|
135
237
|
"optional": true
|
|
136
238
|
},
|
|
239
|
+
"@types/ws": {
|
|
240
|
+
"optional": true
|
|
241
|
+
},
|
|
137
242
|
"better-sqlite3": {
|
|
138
243
|
"optional": true
|
|
139
244
|
},
|
|
@@ -143,7 +248,7 @@
|
|
|
143
248
|
"sqlite-vec": {
|
|
144
249
|
"optional": true
|
|
145
250
|
},
|
|
146
|
-
"
|
|
251
|
+
"ws": {
|
|
147
252
|
"optional": true
|
|
148
253
|
},
|
|
149
254
|
"zod": {
|
|
@@ -151,7 +256,8 @@
|
|
|
151
256
|
}
|
|
152
257
|
},
|
|
153
258
|
"publishConfig": {
|
|
154
|
-
"access": "public"
|
|
259
|
+
"access": "public",
|
|
260
|
+
"provenance": true
|
|
155
261
|
},
|
|
156
262
|
"keywords": [
|
|
157
263
|
"agent",
|
|
@@ -172,22 +278,19 @@
|
|
|
172
278
|
"croner": "^9.0.0"
|
|
173
279
|
},
|
|
174
280
|
"devDependencies": {
|
|
281
|
+
"@opentelemetry/api": "^1.9.1",
|
|
282
|
+
"@opentelemetry/sdk-trace-base": "^1.30.1",
|
|
283
|
+
"@theokit/sdk-handoff": "workspace:*",
|
|
284
|
+
"@theokit/sdk-memory": "workspace:*",
|
|
175
285
|
"@types/better-sqlite3": "^7.6.13",
|
|
176
286
|
"@types/proper-lockfile": "^4.1.4",
|
|
287
|
+
"@types/ws": "^8.18.0",
|
|
177
288
|
"better-sqlite3": "^12.10.0",
|
|
178
289
|
"fast-check": "^4.8.0",
|
|
179
290
|
"proper-lockfile": "^4.1.2",
|
|
180
291
|
"sqlite-vec": "^0.1.9",
|
|
181
292
|
"typedoc": "^0.28.19",
|
|
293
|
+
"ws": "^8.18.0",
|
|
182
294
|
"zod": "^4.0.0"
|
|
183
|
-
},
|
|
184
|
-
"scripts": {
|
|
185
|
-
"build": "tsup",
|
|
186
|
-
"test": "vitest run --no-file-parallelism",
|
|
187
|
-
"test:watch": "vitest",
|
|
188
|
-
"typecheck": "tsc --noEmit",
|
|
189
|
-
"clean": "rm -rf dist",
|
|
190
|
-
"docs:json": "typedoc --options typedoc.json",
|
|
191
|
-
"docs:drift": "tsx scripts/check-docs-drift.ts"
|
|
192
295
|
}
|
|
193
|
-
}
|
|
296
|
+
}
|
package/dist/budget.d.ts
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* `Budget` — token cost enforcement primitive (Adoption Roadmap #1
|
|
3
|
-
* post-Tasks, ADRs D375-D388).
|
|
4
|
-
*
|
|
5
|
-
* Static facade delegating to the in-process registry + ledger.
|
|
6
|
-
* 3 modes: `audit` (log-only), `warn` (callbacks + log), `block`
|
|
7
|
-
* (preflight throw before LLM call).
|
|
8
|
-
*
|
|
9
|
-
* @public
|
|
10
|
-
*/
|
|
11
|
-
import { computeCost } from "./internal/budget/compute-cost.js";
|
|
12
|
-
import { chargeAndCheckThresholds, preflightCheck } from "./internal/budget/enforcement.js";
|
|
13
|
-
import { inferApiMode, normalizeUsage } from "./internal/budget/normalize-usage.js";
|
|
14
|
-
import { getPricingEntry } from "./internal/budget/pricing-registry.js";
|
|
15
|
-
import { UsageAccumulator } from "./internal/budget/usage-accumulator.js";
|
|
16
|
-
import type { BudgetHandle, BudgetOptions, BudgetSnapshot } from "./types/budget.js";
|
|
17
|
-
export { chargeAndCheckThresholds, computeCost, getPricingEntry, inferApiMode, normalizeUsage, preflightCheck, UsageAccumulator, };
|
|
18
|
-
export declare class Budget {
|
|
19
|
-
private constructor();
|
|
20
|
-
/**
|
|
21
|
-
* Create a budget. `name` must match `^[a-z0-9][a-z0-9_-]*$` (EC-7).
|
|
22
|
-
* Throws `ConfigurationError` if name is invalid OR already exists
|
|
23
|
-
* (EC-16: duplicate surface caller bug).
|
|
24
|
-
*
|
|
25
|
-
* `limits` is stacked (D384) — ANY exceeded triggers enforcement.
|
|
26
|
-
* Empty `limits[]` is valid: pure tracking, no thresholds/exceed
|
|
27
|
-
* callbacks fire (EC-19).
|
|
28
|
-
*
|
|
29
|
-
* Default `mode` is `"warn"` (D383). For emergency stop, use
|
|
30
|
-
* `mode: "block", limits: [{ window: "1d", limitUsd: 0 }]` (EC-18).
|
|
31
|
-
*/
|
|
32
|
-
static create(options: BudgetOptions): BudgetHandle;
|
|
33
|
-
/** Returns the handle for an active budget, or `undefined`. */
|
|
34
|
-
static get(name: string): BudgetHandle | undefined;
|
|
35
|
-
/** Returns all active budgets. */
|
|
36
|
-
static list(): readonly BudgetHandle[];
|
|
37
|
-
/**
|
|
38
|
-
* Deletes a budget from the registry. Returns `true` if it existed.
|
|
39
|
-
* In-flight `agent.send` calls referencing the name treat the
|
|
40
|
-
* subsequent charge as a silent no-op + stderr warn (EC-20).
|
|
41
|
-
*/
|
|
42
|
-
static delete(name: string): boolean;
|
|
43
|
-
/**
|
|
44
|
-
* Returns per-window spend snapshot for all active budgets. Each
|
|
45
|
-
* entry has `{ name, window, spentUsd, limitUsd, ratio }`.
|
|
46
|
-
*/
|
|
47
|
-
static snapshot(): readonly BudgetSnapshot[];
|
|
48
|
-
}
|
package/dist/cache.d.ts
DELETED
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Public `Cache` class — semantic LLM response cache (Adoption Roadmap #6;
|
|
3
|
-
* ADRs D249-D266).
|
|
4
|
-
*
|
|
5
|
-
* Usage:
|
|
6
|
-
*
|
|
7
|
-
* import { Agent, Cache, definePlugin } from "@theokit/sdk";
|
|
8
|
-
*
|
|
9
|
-
* const cache = Cache.semantic({
|
|
10
|
-
* embedder: myEmbedderRuntime, // EmbeddingRuntime (D11)
|
|
11
|
-
* threshold: 0.85,
|
|
12
|
-
* ttl: { default: "1h", exclude: /weather|today|now/i },
|
|
13
|
-
* namespace: "my-app",
|
|
14
|
-
* modelId: "openai/gpt-4o-mini",
|
|
15
|
-
* });
|
|
16
|
-
*
|
|
17
|
-
* const agent = await Agent.create({
|
|
18
|
-
* model: { id: "openai/gpt-4o-mini" },
|
|
19
|
-
* plugins: [cache.asPlugin()],
|
|
20
|
-
* // ...
|
|
21
|
-
* });
|
|
22
|
-
*
|
|
23
|
-
* await agent.send("What is the capital of France?"); // miss → LLM
|
|
24
|
-
* await agent.send("Tell me the capital of France"); // semantic hit
|
|
25
|
-
*
|
|
26
|
-
* @public
|
|
27
|
-
*/
|
|
28
|
-
import type { Plugin } from "./internal/plugins/types.js";
|
|
29
|
-
import type { CacheSemanticOptions, CacheStats } from "./types/cache.js";
|
|
30
|
-
export declare class Cache {
|
|
31
|
-
private readonly embedder;
|
|
32
|
-
private readonly threshold;
|
|
33
|
-
private readonly ttl;
|
|
34
|
-
private readonly namespace;
|
|
35
|
-
private readonly modelId;
|
|
36
|
-
private readonly store;
|
|
37
|
-
private _plugin?;
|
|
38
|
-
private constructor();
|
|
39
|
-
static semantic(options: CacheSemanticOptions): Cache;
|
|
40
|
-
/**
|
|
41
|
-
* EC-4 absorbed: memoized so repeated `asPlugin()` calls return the SAME
|
|
42
|
-
* plugin descriptor — no duplicate hook registration.
|
|
43
|
-
*/
|
|
44
|
-
asPlugin(): Plugin;
|
|
45
|
-
/**
|
|
46
|
-
* Explicit cache lookup — callers that want true LLM short-circuit
|
|
47
|
-
* call this BEFORE `agent.send()`, then dispatch to the LLM only on miss.
|
|
48
|
-
*
|
|
49
|
-
* v1 plugin mode provides recall + context-inject (LLM still called).
|
|
50
|
-
* v1.x will add transparent short-circuit via an agent-loop refactor.
|
|
51
|
-
*/
|
|
52
|
-
consult(prompt: string): Promise<{
|
|
53
|
-
hit: false;
|
|
54
|
-
} | {
|
|
55
|
-
hit: true;
|
|
56
|
-
response: string;
|
|
57
|
-
source: "kv" | "semantic";
|
|
58
|
-
distance?: number;
|
|
59
|
-
}>;
|
|
60
|
-
/**
|
|
61
|
-
* Explicit cache store — pair with `consult()` to manually feed the
|
|
62
|
-
* cache after dispatching the LLM call yourself.
|
|
63
|
-
*/
|
|
64
|
-
remember(prompt: string, response: string, opts?: {
|
|
65
|
-
usedTools?: boolean;
|
|
66
|
-
}): Promise<void>;
|
|
67
|
-
/** Stats snapshot — primary observable for dogfood verification. */
|
|
68
|
-
stats(): CacheStats;
|
|
69
|
-
/** Clear all entries (and flush to disk if JSON backend). */
|
|
70
|
-
clear(): Promise<void>;
|
|
71
|
-
/** Force-evict expired entries. Returns count removed. */
|
|
72
|
-
evictExpired(now?: number): number;
|
|
73
|
-
}
|
|
74
|
-
export { CacheEmbedderError, CacheInvalidTtlError } from "./types/cache.js";
|
package/dist/cron-1yxL3K2S.d.cts
DELETED
|
@@ -1,221 +0,0 @@
|
|
|
1
|
-
import { aG as SDKUserMessage, A as AgentOptions, j as ListResult, m as Run } from './run-DkCD5DeO.cjs';
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* Runtime hosting a cron job. Mirrors the agent runtime split.
|
|
5
|
-
*
|
|
6
|
-
* - `local` — the in-process scheduler activated via `Cron.start()` fires the
|
|
7
|
-
* job while the host process is alive.
|
|
8
|
-
* - `cloud` — Theo PaaS schedules the job server-side; fires independent of
|
|
9
|
-
* any SDK process.
|
|
10
|
-
*
|
|
11
|
-
* @public
|
|
12
|
-
*/
|
|
13
|
-
type CronRuntime = "local" | "cloud";
|
|
14
|
-
/**
|
|
15
|
-
* Lifecycle state reported by `Cron.list()` / `Cron.get()`.
|
|
16
|
-
*
|
|
17
|
-
* @public
|
|
18
|
-
*/
|
|
19
|
-
type CronJobStatus = "scheduled" | "running" | "paused" | "errored";
|
|
20
|
-
/**
|
|
21
|
-
* Persistent cron-scheduled invocation of the Theo agent.
|
|
22
|
-
*
|
|
23
|
-
* Exactly one of {@link CronJob.agent} (ephemeral agent created on each fire)
|
|
24
|
-
* or {@link CronJob.agentId} (bound to an existing agent for context
|
|
25
|
-
* continuity) is set.
|
|
26
|
-
*
|
|
27
|
-
* @public
|
|
28
|
-
*/
|
|
29
|
-
interface CronJob {
|
|
30
|
-
id: string;
|
|
31
|
-
name?: string;
|
|
32
|
-
/** Standard 5-field POSIX cron expression or shorthand (`@hourly`, `@daily`, ...). */
|
|
33
|
-
cron: string;
|
|
34
|
-
/** IANA timezone identifier. Defaults to `"UTC"`. */
|
|
35
|
-
timezone?: string;
|
|
36
|
-
/** Message sent to the agent on each fire. */
|
|
37
|
-
message: string | SDKUserMessage;
|
|
38
|
-
/** Ephemeral agent options. Mutually exclusive with `agentId`. */
|
|
39
|
-
agent?: AgentOptions;
|
|
40
|
-
/** ID of an existing agent to reuse for context continuity. Mutually exclusive with `agent`. */
|
|
41
|
-
agentId?: string;
|
|
42
|
-
/** Whether the scheduler will fire this job on schedule. */
|
|
43
|
-
enabled: boolean;
|
|
44
|
-
/** Current status. */
|
|
45
|
-
status: CronJobStatus;
|
|
46
|
-
/** Runtime that hosts this job. Inferred from `agent`/`agentId` at create time. */
|
|
47
|
-
runtime: CronRuntime;
|
|
48
|
-
/** Unix ms of the last successful fire, if any. */
|
|
49
|
-
lastRunAt?: number;
|
|
50
|
-
/** Unix ms of the next scheduled fire, computed by the scheduler. */
|
|
51
|
-
nextRunAt?: number;
|
|
52
|
-
/** Unix ms when the job was created. */
|
|
53
|
-
createdAt: number;
|
|
54
|
-
}
|
|
55
|
-
/**
|
|
56
|
-
* Options for `Cron.create()`.
|
|
57
|
-
*
|
|
58
|
-
* Pass `agent` for an ephemeral agent created fresh on each fire, OR
|
|
59
|
-
* `agentId` to reuse an existing agent (preserves conversation context across
|
|
60
|
-
* fires). Setting both is a `ConfigurationError`.
|
|
61
|
-
*
|
|
62
|
-
* @public
|
|
63
|
-
*/
|
|
64
|
-
interface CronCreateOptions {
|
|
65
|
-
cron: string;
|
|
66
|
-
message: string | SDKUserMessage;
|
|
67
|
-
agent?: AgentOptions;
|
|
68
|
-
agentId?: string;
|
|
69
|
-
name?: string;
|
|
70
|
-
timezone?: string;
|
|
71
|
-
/** Defaults to `true`. */
|
|
72
|
-
enabled?: boolean;
|
|
73
|
-
/** Falls back to `THEOKIT_API_KEY`. */
|
|
74
|
-
apiKey?: string;
|
|
75
|
-
}
|
|
76
|
-
/**
|
|
77
|
-
* Options for `Cron.list()`.
|
|
78
|
-
*
|
|
79
|
-
* @public
|
|
80
|
-
*/
|
|
81
|
-
type CronListOptions = {
|
|
82
|
-
limit?: number;
|
|
83
|
-
cursor?: string;
|
|
84
|
-
} & ({
|
|
85
|
-
runtime?: undefined;
|
|
86
|
-
} | {
|
|
87
|
-
runtime: "local";
|
|
88
|
-
cwd?: string;
|
|
89
|
-
} | {
|
|
90
|
-
runtime: "cloud";
|
|
91
|
-
apiKey?: string;
|
|
92
|
-
});
|
|
93
|
-
/**
|
|
94
|
-
* Options for `Cron.get()`.
|
|
95
|
-
*
|
|
96
|
-
* @public
|
|
97
|
-
*/
|
|
98
|
-
interface CronGetOptions {
|
|
99
|
-
cwd?: string;
|
|
100
|
-
apiKey?: string;
|
|
101
|
-
}
|
|
102
|
-
/**
|
|
103
|
-
* Options for `Cron.delete()` / `Cron.enable()` / `Cron.disable()`.
|
|
104
|
-
*
|
|
105
|
-
* @public
|
|
106
|
-
*/
|
|
107
|
-
interface CronOperationOptions {
|
|
108
|
-
cwd?: string;
|
|
109
|
-
apiKey?: string;
|
|
110
|
-
}
|
|
111
|
-
/**
|
|
112
|
-
* Options for `Cron.run()` — manually trigger a job off-schedule.
|
|
113
|
-
*
|
|
114
|
-
* @public
|
|
115
|
-
*/
|
|
116
|
-
interface CronRunOptions {
|
|
117
|
-
cwd?: string;
|
|
118
|
-
apiKey?: string;
|
|
119
|
-
}
|
|
120
|
-
/**
|
|
121
|
-
* Options for `Cron.start()` — activates the in-process scheduler for local
|
|
122
|
-
* jobs.
|
|
123
|
-
*
|
|
124
|
-
* @public
|
|
125
|
-
*/
|
|
126
|
-
interface CronStartOptions {
|
|
127
|
-
/** Local workspace whose `.theokit/cron/jobs.json` to load. Defaults to `process.cwd()`. */
|
|
128
|
-
cwd?: string;
|
|
129
|
-
/** Override the env API key. */
|
|
130
|
-
apiKey?: string;
|
|
131
|
-
}
|
|
132
|
-
/**
|
|
133
|
-
* Snapshot of the local scheduler returned by `Cron.status()`.
|
|
134
|
-
*
|
|
135
|
-
* @public
|
|
136
|
-
*/
|
|
137
|
-
interface CronSchedulerStatus {
|
|
138
|
-
/** Whether the in-process scheduler is currently running. */
|
|
139
|
-
running: boolean;
|
|
140
|
-
/** Number of jobs loaded into the scheduler. */
|
|
141
|
-
jobCount: number;
|
|
142
|
-
/** Unix ms of the next scheduled fire across all jobs, if any. */
|
|
143
|
-
nextFireAt?: number;
|
|
144
|
-
/** Last error observed in the scheduler, if any. */
|
|
145
|
-
lastError?: {
|
|
146
|
-
jobId: string;
|
|
147
|
-
message: string;
|
|
148
|
-
at: number;
|
|
149
|
-
};
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
/**
|
|
153
|
-
* Static façade for scheduling Theo agent runs on a cron expression.
|
|
154
|
-
*
|
|
155
|
-
* @public
|
|
156
|
-
*/
|
|
157
|
-
declare class Cron {
|
|
158
|
-
private constructor();
|
|
159
|
-
/**
|
|
160
|
-
* Create and persist a cron job.
|
|
161
|
-
*
|
|
162
|
-
* @public
|
|
163
|
-
*/
|
|
164
|
-
static create(options: CronCreateOptions): Promise<CronJob>;
|
|
165
|
-
/**
|
|
166
|
-
* List cron jobs (local, cloud, or both).
|
|
167
|
-
*
|
|
168
|
-
* @public
|
|
169
|
-
*/
|
|
170
|
-
static list(options?: CronListOptions): Promise<ListResult<CronJob>>;
|
|
171
|
-
/**
|
|
172
|
-
* Get a single cron job by ID.
|
|
173
|
-
*
|
|
174
|
-
* @public
|
|
175
|
-
*/
|
|
176
|
-
static get(jobId: string, _options?: CronGetOptions): Promise<CronJob>;
|
|
177
|
-
/**
|
|
178
|
-
* Delete a cron job permanently.
|
|
179
|
-
*
|
|
180
|
-
* @public
|
|
181
|
-
*/
|
|
182
|
-
static delete(jobId: string, _options?: CronOperationOptions): Promise<void>;
|
|
183
|
-
/**
|
|
184
|
-
* Re-enable a paused cron job.
|
|
185
|
-
*
|
|
186
|
-
* @public
|
|
187
|
-
*/
|
|
188
|
-
static enable(jobId: string, _options?: CronOperationOptions): Promise<CronJob>;
|
|
189
|
-
/**
|
|
190
|
-
* Pause a cron job without deleting it.
|
|
191
|
-
*
|
|
192
|
-
* @public
|
|
193
|
-
*/
|
|
194
|
-
static disable(jobId: string, _options?: CronOperationOptions): Promise<CronJob>;
|
|
195
|
-
/**
|
|
196
|
-
* Manually trigger a cron job off-schedule. Returns the resulting `Run`.
|
|
197
|
-
*
|
|
198
|
-
* @public
|
|
199
|
-
*/
|
|
200
|
-
static run(jobId: string, _options?: CronRunOptions): Promise<Run>;
|
|
201
|
-
/**
|
|
202
|
-
* Activate the in-process scheduler for local cron jobs.
|
|
203
|
-
*
|
|
204
|
-
* @public
|
|
205
|
-
*/
|
|
206
|
-
static start(options?: CronStartOptions): Promise<void>;
|
|
207
|
-
/**
|
|
208
|
-
* Stop the in-process scheduler. Jobs are preserved.
|
|
209
|
-
*
|
|
210
|
-
* @public
|
|
211
|
-
*/
|
|
212
|
-
static stop(): Promise<void>;
|
|
213
|
-
/**
|
|
214
|
-
* Snapshot of the local scheduler.
|
|
215
|
-
*
|
|
216
|
-
* @public
|
|
217
|
-
*/
|
|
218
|
-
static status(_options?: CronStartOptions): Promise<CronSchedulerStatus>;
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
export { Cron as C, type CronCreateOptions as a, type CronGetOptions as b, type CronJob as c, type CronJobStatus as d, type CronListOptions as e, type CronOperationOptions as f, type CronRunOptions as g, type CronRuntime as h, type CronSchedulerStatus as i, type CronStartOptions as j };
|