@roj-ai/sdk 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bootstrap.d.ts +453 -0
- package/dist/bootstrap.d.ts.map +1 -0
- package/dist/builtin-events.d.ts +16 -0
- package/dist/builtin-events.d.ts.map +1 -0
- package/dist/bun-platform/fs.d.ts +9 -0
- package/dist/bun-platform/fs.d.ts.map +1 -0
- package/dist/bun-platform/index.d.ts +12 -0
- package/dist/bun-platform/index.d.ts.map +1 -0
- package/dist/bun-platform/process.d.ts +6 -0
- package/dist/bun-platform/process.d.ts.map +1 -0
- package/dist/config.d.ts +38 -0
- package/dist/config.d.ts.map +1 -0
- package/dist/config.test.d.ts +2 -0
- package/dist/config.test.d.ts.map +1 -0
- package/dist/core/agent-loop.integration.test.d.ts +2 -0
- package/dist/core/agent-loop.integration.test.d.ts.map +1 -0
- package/dist/core/agents/agent-config.test.d.ts +2 -0
- package/dist/core/agents/agent-config.test.d.ts.map +1 -0
- package/dist/core/agents/agent-roles.d.ts +33 -0
- package/dist/core/agents/agent-roles.d.ts.map +1 -0
- package/dist/core/agents/agent-shutdown.test.d.ts +6 -0
- package/dist/core/agents/agent-shutdown.test.d.ts.map +1 -0
- package/dist/core/agents/agent.d.ts +234 -0
- package/dist/core/agents/agent.d.ts.map +1 -0
- package/dist/core/agents/agent.test.d.ts +2 -0
- package/dist/core/agents/agent.test.d.ts.map +1 -0
- package/dist/core/agents/communicator.d.ts +3 -0
- package/dist/core/agents/communicator.d.ts.map +1 -0
- package/dist/core/agents/config.d.ts +84 -0
- package/dist/core/agents/config.d.ts.map +1 -0
- package/dist/core/agents/context.d.ts +16 -0
- package/dist/core/agents/context.d.ts.map +1 -0
- package/dist/core/agents/debounce.d.ts +52 -0
- package/dist/core/agents/debounce.d.ts.map +1 -0
- package/dist/core/agents/handler-events.test.d.ts +5 -0
- package/dist/core/agents/handler-events.test.d.ts.map +1 -0
- package/dist/core/agents/index.d.ts +2 -0
- package/dist/core/agents/index.d.ts.map +1 -0
- package/dist/core/agents/response-sanitizer.d.ts +25 -0
- package/dist/core/agents/response-sanitizer.d.ts.map +1 -0
- package/dist/core/agents/response-sanitizer.test.d.ts +2 -0
- package/dist/core/agents/response-sanitizer.test.d.ts.map +1 -0
- package/dist/core/agents/retry.d.ts +40 -0
- package/dist/core/agents/retry.d.ts.map +1 -0
- package/dist/core/agents/schema.d.ts +57 -0
- package/dist/core/agents/schema.d.ts.map +1 -0
- package/dist/core/agents/state.d.ts +255 -0
- package/dist/core/agents/state.d.ts.map +1 -0
- package/dist/core/context/state.d.ts +28 -0
- package/dist/core/context/state.d.ts.map +1 -0
- package/dist/core/errors.d.ts +29 -0
- package/dist/core/errors.d.ts.map +1 -0
- package/dist/core/event-sourcing.integration.test.d.ts +2 -0
- package/dist/core/event-sourcing.integration.test.d.ts.map +1 -0
- package/dist/core/events/base-event-store.d.ts +55 -0
- package/dist/core/events/base-event-store.d.ts.map +1 -0
- package/dist/core/events/event-store.d.ts +108 -0
- package/dist/core/events/event-store.d.ts.map +1 -0
- package/dist/core/events/file.d.ts +50 -0
- package/dist/core/events/file.d.ts.map +1 -0
- package/dist/core/events/file.test.d.ts +2 -0
- package/dist/core/events/file.test.d.ts.map +1 -0
- package/dist/core/events/index.d.ts +4 -0
- package/dist/core/events/index.d.ts.map +1 -0
- package/dist/core/events/memory.d.ts +43 -0
- package/dist/core/events/memory.d.ts.map +1 -0
- package/dist/core/events/memory.test.d.ts +2 -0
- package/dist/core/events/memory.test.d.ts.map +1 -0
- package/dist/core/events/metadata-utils.d.ts +27 -0
- package/dist/core/events/metadata-utils.d.ts.map +1 -0
- package/dist/core/events/test-helpers.d.ts +28 -0
- package/dist/core/events/test-helpers.d.ts.map +1 -0
- package/dist/core/events/types.d.ts +46 -0
- package/dist/core/events/types.d.ts.map +1 -0
- package/dist/core/file-store/file-store.d.ts +56 -0
- package/dist/core/file-store/file-store.d.ts.map +1 -0
- package/dist/core/file-store/types.d.ts +50 -0
- package/dist/core/file-store/types.d.ts.map +1 -0
- package/dist/core/image/image-processor.d.ts +15 -0
- package/dist/core/image/image-processor.d.ts.map +1 -0
- package/dist/core/image/image-processor.test.d.ts +2 -0
- package/dist/core/image/image-processor.test.d.ts.map +1 -0
- package/dist/core/image/index.d.ts +5 -0
- package/dist/core/image/index.d.ts.map +1 -0
- package/dist/core/image/noop-resizer.d.ts +5 -0
- package/dist/core/image/noop-resizer.d.ts.map +1 -0
- package/dist/core/image/types.d.ts +20 -0
- package/dist/core/image/types.d.ts.map +1 -0
- package/dist/core/image/vips-resizer.d.ts +21 -0
- package/dist/core/image/vips-resizer.d.ts.map +1 -0
- package/dist/core/image/vips-resizer.test.d.ts +2 -0
- package/dist/core/image/vips-resizer.test.d.ts.map +1 -0
- package/dist/core/llm/anthropic.d.ts +51 -0
- package/dist/core/llm/anthropic.d.ts.map +1 -0
- package/dist/core/llm/anthropic.test.d.ts +2 -0
- package/dist/core/llm/anthropic.test.d.ts.map +1 -0
- package/dist/core/llm/cache-breakpoints.d.ts +17 -0
- package/dist/core/llm/cache-breakpoints.d.ts.map +1 -0
- package/dist/core/llm/cache-live.test.d.ts +16 -0
- package/dist/core/llm/cache-live.test.d.ts.map +1 -0
- package/dist/core/llm/index.d.ts +16 -0
- package/dist/core/llm/index.d.ts.map +1 -0
- package/dist/core/llm/llm-log-types.d.ts +148 -0
- package/dist/core/llm/llm-log-types.d.ts.map +1 -0
- package/dist/core/llm/logger.d.ts +74 -0
- package/dist/core/llm/logger.d.ts.map +1 -0
- package/dist/core/llm/logger.test.d.ts +7 -0
- package/dist/core/llm/logger.test.d.ts.map +1 -0
- package/dist/core/llm/logging-provider.d.ts +20 -0
- package/dist/core/llm/logging-provider.d.ts.map +1 -0
- package/dist/core/llm/middleware.d.ts +79 -0
- package/dist/core/llm/middleware.d.ts.map +1 -0
- package/dist/core/llm/mock.d.ts +79 -0
- package/dist/core/llm/mock.d.ts.map +1 -0
- package/dist/core/llm/mock.test.d.ts +2 -0
- package/dist/core/llm/mock.test.d.ts.map +1 -0
- package/dist/core/llm/openrouter-mapping.test.d.ts +2 -0
- package/dist/core/llm/openrouter-mapping.test.d.ts.map +1 -0
- package/dist/core/llm/openrouter.d.ts +37 -0
- package/dist/core/llm/openrouter.d.ts.map +1 -0
- package/dist/core/llm/openrouter.test.d.ts +2 -0
- package/dist/core/llm/openrouter.test.d.ts.map +1 -0
- package/dist/core/llm/provider-integration.test.d.ts +12 -0
- package/dist/core/llm/provider-integration.test.d.ts.map +1 -0
- package/dist/core/llm/provider.d.ts +175 -0
- package/dist/core/llm/provider.d.ts.map +1 -0
- package/dist/core/llm/routing-provider.d.ts +31 -0
- package/dist/core/llm/routing-provider.d.ts.map +1 -0
- package/dist/core/llm/routing-provider.test.d.ts +2 -0
- package/dist/core/llm/routing-provider.test.d.ts.map +1 -0
- package/dist/core/llm/schema.d.ts +24 -0
- package/dist/core/llm/schema.d.ts.map +1 -0
- package/dist/core/llm/snapshot-fetch.d.ts +21 -0
- package/dist/core/llm/snapshot-fetch.d.ts.map +1 -0
- package/dist/core/llm/snapshot-middleware.d.ts +71 -0
- package/dist/core/llm/snapshot-middleware.d.ts.map +1 -0
- package/dist/core/llm/snapshot-middleware.test.d.ts +2 -0
- package/dist/core/llm/snapshot-middleware.test.d.ts.map +1 -0
- package/dist/core/llm/state.d.ts +73 -0
- package/dist/core/llm/state.d.ts.map +1 -0
- package/dist/core/llm/tokens.d.ts +36 -0
- package/dist/core/llm/tokens.d.ts.map +1 -0
- package/dist/core/multi-agent.integration.test.d.ts +2 -0
- package/dist/core/multi-agent.integration.test.d.ts.map +1 -0
- package/dist/core/plugin-hooks.integration.test.d.ts +2 -0
- package/dist/core/plugin-hooks.integration.test.d.ts.map +1 -0
- package/dist/core/plugins/hook-types.d.ts +55 -0
- package/dist/core/plugins/hook-types.d.ts.map +1 -0
- package/dist/core/plugins/index.d.ts +23 -0
- package/dist/core/plugins/index.d.ts.map +1 -0
- package/dist/core/plugins/plugin-builder.d.ts +474 -0
- package/dist/core/plugins/plugin-builder.d.ts.map +1 -0
- package/dist/core/preset/config.d.ts +55 -0
- package/dist/core/preset/config.d.ts.map +1 -0
- package/dist/core/preset/index.d.ts +8 -0
- package/dist/core/preset/index.d.ts.map +1 -0
- package/dist/core/preset/preset-builder.d.ts +44 -0
- package/dist/core/preset/preset-builder.d.ts.map +1 -0
- package/dist/core/session-lifecycle.integration.test.d.ts +2 -0
- package/dist/core/session-lifecycle.integration.test.d.ts.map +1 -0
- package/dist/core/sessions/apply-event.d.ts +19 -0
- package/dist/core/sessions/apply-event.d.ts.map +1 -0
- package/dist/core/sessions/context.d.ts +34 -0
- package/dist/core/sessions/context.d.ts.map +1 -0
- package/dist/core/sessions/fork-utils.d.ts +20 -0
- package/dist/core/sessions/fork-utils.d.ts.map +1 -0
- package/dist/core/sessions/fork-utils.test.d.ts +2 -0
- package/dist/core/sessions/fork-utils.test.d.ts.map +1 -0
- package/dist/core/sessions/reducer.d.ts +50 -0
- package/dist/core/sessions/reducer.d.ts.map +1 -0
- package/dist/core/sessions/schema.d.ts +82 -0
- package/dist/core/sessions/schema.d.ts.map +1 -0
- package/dist/core/sessions/session-environment.d.ts +13 -0
- package/dist/core/sessions/session-environment.d.ts.map +1 -0
- package/dist/core/sessions/session-manager.d.ts +183 -0
- package/dist/core/sessions/session-manager.d.ts.map +1 -0
- package/dist/core/sessions/session-store.d.ts +69 -0
- package/dist/core/sessions/session-store.d.ts.map +1 -0
- package/dist/core/sessions/session.d.ts +212 -0
- package/dist/core/sessions/session.d.ts.map +1 -0
- package/dist/core/sessions/session.test.d.ts +2 -0
- package/dist/core/sessions/session.test.d.ts.map +1 -0
- package/dist/core/sessions/state.d.ts +110 -0
- package/dist/core/sessions/state.d.ts.map +1 -0
- package/dist/core/system.d.ts +97 -0
- package/dist/core/system.d.ts.map +1 -0
- package/dist/core/tools/context.d.ts +3 -0
- package/dist/core/tools/context.d.ts.map +1 -0
- package/dist/core/tools/definition.d.ts +10 -0
- package/dist/core/tools/definition.d.ts.map +1 -0
- package/dist/core/tools/executor.d.ts +28 -0
- package/dist/core/tools/executor.d.ts.map +1 -0
- package/dist/core/tools/executor.test.d.ts +2 -0
- package/dist/core/tools/executor.test.d.ts.map +1 -0
- package/dist/core/tools/index.d.ts +4 -0
- package/dist/core/tools/index.d.ts.map +1 -0
- package/dist/core/tools/schema.d.ts +61 -0
- package/dist/core/tools/schema.d.ts.map +1 -0
- package/dist/core/tools/state.d.ts +28 -0
- package/dist/core/tools/state.d.ts.map +1 -0
- package/dist/index.d.ts +111 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/lib/json/index.d.ts +17 -0
- package/dist/lib/json/index.d.ts.map +1 -0
- package/dist/lib/logger/console.d.ts +35 -0
- package/dist/lib/logger/console.d.ts.map +1 -0
- package/dist/lib/logger/console.test.d.ts +2 -0
- package/dist/lib/logger/console.test.d.ts.map +1 -0
- package/dist/lib/logger/file.d.ts +20 -0
- package/dist/lib/logger/file.d.ts.map +1 -0
- package/dist/lib/logger/index.d.ts +5 -0
- package/dist/lib/logger/index.d.ts.map +1 -0
- package/dist/lib/logger/logger.d.ts +87 -0
- package/dist/lib/logger/logger.d.ts.map +1 -0
- package/dist/lib/logger/ring-buffer.d.ts +33 -0
- package/dist/lib/logger/ring-buffer.d.ts.map +1 -0
- package/dist/lib/logger/tee.d.ts +15 -0
- package/dist/lib/logger/tee.d.ts.map +1 -0
- package/dist/lib/mime.d.ts +9 -0
- package/dist/lib/mime.d.ts.map +1 -0
- package/dist/lib/never.d.ts +2 -0
- package/dist/lib/never.d.ts.map +1 -0
- package/dist/lib/utils/hash.d.ts +19 -0
- package/dist/lib/utils/hash.d.ts.map +1 -0
- package/dist/lib/utils/result.d.ts +26 -0
- package/dist/lib/utils/result.d.ts.map +1 -0
- package/dist/platform/fs.d.ts +39 -0
- package/dist/platform/fs.d.ts.map +1 -0
- package/dist/platform/index.d.ts +21 -0
- package/dist/platform/index.d.ts.map +1 -0
- package/dist/platform/process.d.ts +24 -0
- package/dist/platform/process.d.ts.map +1 -0
- package/dist/plugins/agent-status/plugin.d.ts +8 -0
- package/dist/plugins/agent-status/plugin.d.ts.map +1 -0
- package/dist/plugins/agents/agents.integration.test.d.ts +2 -0
- package/dist/plugins/agents/agents.integration.test.d.ts.map +1 -0
- package/dist/plugins/agents/index.d.ts +3 -0
- package/dist/plugins/agents/index.d.ts.map +1 -0
- package/dist/plugins/agents/plugin.d.ts +57 -0
- package/dist/plugins/agents/plugin.d.ts.map +1 -0
- package/dist/plugins/context-compact/context-compact.integration.test.d.ts +2 -0
- package/dist/plugins/context-compact/context-compact.integration.test.d.ts.map +1 -0
- package/dist/plugins/context-compact/context-compactor.d.ts +88 -0
- package/dist/plugins/context-compact/context-compactor.d.ts.map +1 -0
- package/dist/plugins/context-compact/context-compactor.test.d.ts +2 -0
- package/dist/plugins/context-compact/context-compactor.test.d.ts.map +1 -0
- package/dist/plugins/context-compact/history-offloader.d.ts +17 -0
- package/dist/plugins/context-compact/history-offloader.d.ts.map +1 -0
- package/dist/plugins/context-compact/history-offloader.test.d.ts +2 -0
- package/dist/plugins/context-compact/history-offloader.test.d.ts.map +1 -0
- package/dist/plugins/context-compact/index.d.ts +4 -0
- package/dist/plugins/context-compact/index.d.ts.map +1 -0
- package/dist/plugins/context-compact/plugin.d.ts +15 -0
- package/dist/plugins/context-compact/plugin.d.ts.map +1 -0
- package/dist/plugins/filesystem/filesystem.integration.test.d.ts +2 -0
- package/dist/plugins/filesystem/filesystem.integration.test.d.ts.map +1 -0
- package/dist/plugins/filesystem/helpers.d.ts +34 -0
- package/dist/plugins/filesystem/helpers.d.ts.map +1 -0
- package/dist/plugins/filesystem/index.d.ts +5 -0
- package/dist/plugins/filesystem/index.d.ts.map +1 -0
- package/dist/plugins/filesystem/listing.d.ts +38 -0
- package/dist/plugins/filesystem/listing.d.ts.map +1 -0
- package/dist/plugins/filesystem/plugin.d.ts +53 -0
- package/dist/plugins/filesystem/plugin.d.ts.map +1 -0
- package/dist/plugins/filesystem/schema.d.ts +7 -0
- package/dist/plugins/filesystem/schema.d.ts.map +1 -0
- package/dist/plugins/git-status/index.d.ts +2 -0
- package/dist/plugins/git-status/index.d.ts.map +1 -0
- package/dist/plugins/git-status/plugin.d.ts +12 -0
- package/dist/plugins/git-status/plugin.d.ts.map +1 -0
- package/dist/plugins/limits-guard/config.d.ts +23 -0
- package/dist/plugins/limits-guard/config.d.ts.map +1 -0
- package/dist/plugins/limits-guard/index.d.ts +5 -0
- package/dist/plugins/limits-guard/index.d.ts.map +1 -0
- package/dist/plugins/limits-guard/limit-guard.d.ts +40 -0
- package/dist/plugins/limits-guard/limit-guard.d.ts.map +1 -0
- package/dist/plugins/limits-guard/limit-guard.test.d.ts +2 -0
- package/dist/plugins/limits-guard/limit-guard.test.d.ts.map +1 -0
- package/dist/plugins/limits-guard/limits-guard.integration.test.d.ts +2 -0
- package/dist/plugins/limits-guard/limits-guard.integration.test.d.ts.map +1 -0
- package/dist/plugins/limits-guard/plugin.d.ts +39 -0
- package/dist/plugins/limits-guard/plugin.d.ts.map +1 -0
- package/dist/plugins/llm-debug/index.d.ts +2 -0
- package/dist/plugins/llm-debug/index.d.ts.map +1 -0
- package/dist/plugins/llm-debug/llm-debug.integration.test.d.ts +2 -0
- package/dist/plugins/llm-debug/llm-debug.integration.test.d.ts.map +1 -0
- package/dist/plugins/llm-debug/plugin.d.ts +31 -0
- package/dist/plugins/llm-debug/plugin.d.ts.map +1 -0
- package/dist/plugins/logs/index.d.ts +2 -0
- package/dist/plugins/logs/index.d.ts.map +1 -0
- package/dist/plugins/logs/plugin.d.ts +10 -0
- package/dist/plugins/logs/plugin.d.ts.map +1 -0
- package/dist/plugins/mailbox/helpers.d.ts +20 -0
- package/dist/plugins/mailbox/helpers.d.ts.map +1 -0
- package/dist/plugins/mailbox/index.d.ts +9 -0
- package/dist/plugins/mailbox/index.d.ts.map +1 -0
- package/dist/plugins/mailbox/mailbox.integration.test.d.ts +2 -0
- package/dist/plugins/mailbox/mailbox.integration.test.d.ts.map +1 -0
- package/dist/plugins/mailbox/plugin.d.ts +31 -0
- package/dist/plugins/mailbox/plugin.d.ts.map +1 -0
- package/dist/plugins/mailbox/prompts.d.ts +21 -0
- package/dist/plugins/mailbox/prompts.d.ts.map +1 -0
- package/dist/plugins/mailbox/query.d.ts +33 -0
- package/dist/plugins/mailbox/query.d.ts.map +1 -0
- package/dist/plugins/mailbox/schema.d.ts +54 -0
- package/dist/plugins/mailbox/schema.d.ts.map +1 -0
- package/dist/plugins/mailbox/state.d.ts +40 -0
- package/dist/plugins/mailbox/state.d.ts.map +1 -0
- package/dist/plugins/resources/index.d.ts +7 -0
- package/dist/plugins/resources/index.d.ts.map +1 -0
- package/dist/plugins/resources/manifest.d.ts +23 -0
- package/dist/plugins/resources/manifest.d.ts.map +1 -0
- package/dist/plugins/resources/plugin.d.ts +28 -0
- package/dist/plugins/resources/plugin.d.ts.map +1 -0
- package/dist/plugins/resources/post-inject.d.ts +39 -0
- package/dist/plugins/resources/post-inject.d.ts.map +1 -0
- package/dist/plugins/resources/state.d.ts +25 -0
- package/dist/plugins/resources/state.d.ts.map +1 -0
- package/dist/plugins/result-eviction/index.d.ts +3 -0
- package/dist/plugins/result-eviction/index.d.ts.map +1 -0
- package/dist/plugins/result-eviction/plugin.d.ts +19 -0
- package/dist/plugins/result-eviction/plugin.d.ts.map +1 -0
- package/dist/plugins/result-eviction/result-eviction.integration.test.d.ts +2 -0
- package/dist/plugins/result-eviction/result-eviction.integration.test.d.ts.map +1 -0
- package/dist/plugins/services/plugin.d.ts +85 -0
- package/dist/plugins/services/plugin.d.ts.map +1 -0
- package/dist/plugins/services/port-pool.d.ts +32 -0
- package/dist/plugins/services/port-pool.d.ts.map +1 -0
- package/dist/plugins/services/prompt.d.ts +13 -0
- package/dist/plugins/services/prompt.d.ts.map +1 -0
- package/dist/plugins/services/schema.d.ts +70 -0
- package/dist/plugins/services/schema.d.ts.map +1 -0
- package/dist/plugins/services/service.d.ts +86 -0
- package/dist/plugins/services/service.d.ts.map +1 -0
- package/dist/plugins/services/services.integration.test.d.ts +2 -0
- package/dist/plugins/services/services.integration.test.d.ts.map +1 -0
- package/dist/plugins/session-lifecycle/index.d.ts +2 -0
- package/dist/plugins/session-lifecycle/index.d.ts.map +1 -0
- package/dist/plugins/session-lifecycle/plugin.d.ts +97 -0
- package/dist/plugins/session-lifecycle/plugin.d.ts.map +1 -0
- package/dist/plugins/session-lifecycle/session-lifecycle.integration.test.d.ts +2 -0
- package/dist/plugins/session-lifecycle/session-lifecycle.integration.test.d.ts.map +1 -0
- package/dist/plugins/session-state/plugin.d.ts +48 -0
- package/dist/plugins/session-state/plugin.d.ts.map +1 -0
- package/dist/plugins/session-stats/index.d.ts +4 -0
- package/dist/plugins/session-stats/index.d.ts.map +1 -0
- package/dist/plugins/session-stats/plugin.d.ts +29 -0
- package/dist/plugins/session-stats/plugin.d.ts.map +1 -0
- package/dist/plugins/shell/executor.d.ts +78 -0
- package/dist/plugins/shell/executor.d.ts.map +1 -0
- package/dist/plugins/shell/index.d.ts +6 -0
- package/dist/plugins/shell/index.d.ts.map +1 -0
- package/dist/plugins/shell/plugin.d.ts +51 -0
- package/dist/plugins/shell/plugin.d.ts.map +1 -0
- package/dist/plugins/shell/shell.integration.test.d.ts +2 -0
- package/dist/plugins/shell/shell.integration.test.d.ts.map +1 -0
- package/dist/plugins/shell/shell.test.d.ts +2 -0
- package/dist/plugins/shell/shell.test.d.ts.map +1 -0
- package/dist/plugins/skills/discovery.d.ts +69 -0
- package/dist/plugins/skills/discovery.d.ts.map +1 -0
- package/dist/plugins/skills/discovery.test.d.ts +2 -0
- package/dist/plugins/skills/discovery.test.d.ts.map +1 -0
- package/dist/plugins/skills/index.d.ts +11 -0
- package/dist/plugins/skills/index.d.ts.map +1 -0
- package/dist/plugins/skills/plugin.d.ts +94 -0
- package/dist/plugins/skills/plugin.d.ts.map +1 -0
- package/dist/plugins/skills/prompts.d.ts +29 -0
- package/dist/plugins/skills/prompts.d.ts.map +1 -0
- package/dist/plugins/skills/schema.d.ts +64 -0
- package/dist/plugins/skills/schema.d.ts.map +1 -0
- package/dist/plugins/skills/skills.integration.test.d.ts +2 -0
- package/dist/plugins/skills/skills.integration.test.d.ts.map +1 -0
- package/dist/plugins/snapshotting/index.d.ts +4 -0
- package/dist/plugins/snapshotting/index.d.ts.map +1 -0
- package/dist/plugins/snapshotting/jj-snapshotter.d.ts +27 -0
- package/dist/plugins/snapshotting/jj-snapshotter.d.ts.map +1 -0
- package/dist/plugins/snapshotting/plugin.d.ts +15 -0
- package/dist/plugins/snapshotting/plugin.d.ts.map +1 -0
- package/dist/plugins/snapshotting/snapshotter.d.ts +19 -0
- package/dist/plugins/snapshotting/snapshotter.d.ts.map +1 -0
- package/dist/plugins/todo/index.d.ts +7 -0
- package/dist/plugins/todo/index.d.ts.map +1 -0
- package/dist/plugins/todo/plugin.d.ts +95 -0
- package/dist/plugins/todo/plugin.d.ts.map +1 -0
- package/dist/plugins/todo/prompts.d.ts +13 -0
- package/dist/plugins/todo/prompts.d.ts.map +1 -0
- package/dist/plugins/todo/schema.d.ts +44 -0
- package/dist/plugins/todo/schema.d.ts.map +1 -0
- package/dist/plugins/todo/todo.integration.test.d.ts +2 -0
- package/dist/plugins/todo/todo.integration.test.d.ts.map +1 -0
- package/dist/plugins/uploads/index.d.ts +9 -0
- package/dist/plugins/uploads/index.d.ts.map +1 -0
- package/dist/plugins/uploads/plugin.d.ts +56 -0
- package/dist/plugins/uploads/plugin.d.ts.map +1 -0
- package/dist/plugins/uploads/preprocessor.d.ts +70 -0
- package/dist/plugins/uploads/preprocessor.d.ts.map +1 -0
- package/dist/plugins/uploads/preprocessors/image-classifier.d.ts +49 -0
- package/dist/plugins/uploads/preprocessors/image-classifier.d.ts.map +1 -0
- package/dist/plugins/uploads/preprocessors/index.d.ts +7 -0
- package/dist/plugins/uploads/preprocessors/index.d.ts.map +1 -0
- package/dist/plugins/uploads/preprocessors/markitdown-preprocessor.d.ts +43 -0
- package/dist/plugins/uploads/preprocessors/markitdown-preprocessor.d.ts.map +1 -0
- package/dist/plugins/uploads/preprocessors/zip-preprocessor.d.ts +30 -0
- package/dist/plugins/uploads/preprocessors/zip-preprocessor.d.ts.map +1 -0
- package/dist/plugins/uploads/schema.d.ts +72 -0
- package/dist/plugins/uploads/schema.d.ts.map +1 -0
- package/dist/plugins/uploads/state.d.ts +38 -0
- package/dist/plugins/uploads/state.d.ts.map +1 -0
- package/dist/plugins/uploads/uploads.integration.test.d.ts +2 -0
- package/dist/plugins/uploads/uploads.integration.test.d.ts.map +1 -0
- package/dist/plugins/user-chat/index.d.ts +7 -0
- package/dist/plugins/user-chat/index.d.ts.map +1 -0
- package/dist/plugins/user-chat/plugin.d.ts +221 -0
- package/dist/plugins/user-chat/plugin.d.ts.map +1 -0
- package/dist/plugins/user-chat/prompts.d.ts +13 -0
- package/dist/plugins/user-chat/prompts.d.ts.map +1 -0
- package/dist/plugins/user-chat/schema.d.ts +82 -0
- package/dist/plugins/user-chat/schema.d.ts.map +1 -0
- package/dist/plugins/user-chat/user-chat.integration.test.d.ts +2 -0
- package/dist/plugins/user-chat/user-chat.integration.test.d.ts.map +1 -0
- package/dist/plugins/workers/context.d.ts +159 -0
- package/dist/plugins/workers/context.d.ts.map +1 -0
- package/dist/plugins/workers/definition.d.ts +118 -0
- package/dist/plugins/workers/definition.d.ts.map +1 -0
- package/dist/plugins/workers/index.d.ts +11 -0
- package/dist/plugins/workers/index.d.ts.map +1 -0
- package/dist/plugins/workers/plugin.d.ts +125 -0
- package/dist/plugins/workers/plugin.d.ts.map +1 -0
- package/dist/plugins/workers/worker.d.ts +76 -0
- package/dist/plugins/workers/worker.d.ts.map +1 -0
- package/dist/plugins/workers/workers.integration.test.d.ts +2 -0
- package/dist/plugins/workers/workers.integration.test.d.ts.map +1 -0
- package/dist/prompts/base.d.ts +75 -0
- package/dist/prompts/base.d.ts.map +1 -0
- package/dist/prompts/builder.d.ts +73 -0
- package/dist/prompts/builder.d.ts.map +1 -0
- package/dist/prompts/index.d.ts +10 -0
- package/dist/prompts/index.d.ts.map +1 -0
- package/dist/prompts/macros.d.ts +15 -0
- package/dist/prompts/macros.d.ts.map +1 -0
- package/dist/prompts/macros.test.d.ts +2 -0
- package/dist/prompts/macros.test.d.ts.map +1 -0
- package/dist/testing/bootstrap-for-testing.d.ts +12 -0
- package/dist/testing/bootstrap-for-testing.d.ts.map +1 -0
- package/dist/testing/index.d.ts +8 -0
- package/dist/testing/index.d.ts.map +1 -0
- package/dist/testing/node-platform.d.ts +12 -0
- package/dist/testing/node-platform.d.ts.map +1 -0
- package/dist/testing/notification-collector.d.ts +46 -0
- package/dist/testing/notification-collector.d.ts.map +1 -0
- package/dist/testing/preset-helpers.d.ts +28 -0
- package/dist/testing/preset-helpers.d.ts.map +1 -0
- package/dist/testing/test-harness.d.ts +117 -0
- package/dist/testing/test-harness.d.ts.map +1 -0
- package/dist/testing/test-harness.test.d.ts +2 -0
- package/dist/testing/test-harness.test.d.ts.map +1 -0
- package/dist/testing/wait-helpers.d.ts +17 -0
- package/dist/testing/wait-helpers.d.ts.map +1 -0
- package/dist/transport/adapter/client-adapter.d.ts +32 -0
- package/dist/transport/adapter/client-adapter.d.ts.map +1 -0
- package/dist/transport/adapter/index.d.ts +23 -0
- package/dist/transport/adapter/index.d.ts.map +1 -0
- package/dist/transport/adapter/server-adapter.d.ts +29 -0
- package/dist/transport/adapter/server-adapter.d.ts.map +1 -0
- package/dist/transport/adapter/types.d.ts +14 -0
- package/dist/transport/adapter/types.d.ts.map +1 -0
- package/dist/transport/http/app.d.ts +41 -0
- package/dist/transport/http/app.d.ts.map +1 -0
- package/dist/transport/http/index.d.ts +7 -0
- package/dist/transport/http/index.d.ts.map +1 -0
- package/dist/transport/http/middleware/bearer-auth.d.ts +16 -0
- package/dist/transport/http/middleware/bearer-auth.d.ts.map +1 -0
- package/dist/transport/http/middleware/error-handler.d.ts +21 -0
- package/dist/transport/http/middleware/error-handler.d.ts.map +1 -0
- package/dist/transport/http/routes/files.d.ts +16 -0
- package/dist/transport/http/routes/files.d.ts.map +1 -0
- package/dist/transport/http/routes/resources.d.ts +12 -0
- package/dist/transport/http/routes/resources.d.ts.map +1 -0
- package/dist/transport/http/routes/rpc.d.ts +22 -0
- package/dist/transport/http/routes/rpc.d.ts.map +1 -0
- package/dist/transport/http/routes/rpc.integration.test.d.ts +2 -0
- package/dist/transport/http/routes/rpc.integration.test.d.ts.map +1 -0
- package/dist/transport/http/routes/rpc.test.d.ts +2 -0
- package/dist/transport/http/routes/rpc.test.d.ts.map +1 -0
- package/dist/transport/http/routes/upload.d.ts +14 -0
- package/dist/transport/http/routes/upload.d.ts.map +1 -0
- package/dist/transport/rpc/index.d.ts +8 -0
- package/dist/transport/rpc/index.d.ts.map +1 -0
- package/dist/transport/rpc/methods.d.ts +25 -0
- package/dist/transport/rpc/methods.d.ts.map +1 -0
- package/dist/user-config.d.ts +29 -0
- package/dist/user-config.d.ts.map +1 -0
- package/package.json +154 -0
- package/src/bootstrap.ts +268 -0
- package/src/builtin-events.ts +25 -0
- package/src/bun-platform/fs.ts +50 -0
- package/src/bun-platform/index.ts +21 -0
- package/src/bun-platform/process.ts +25 -0
- package/src/config.test.ts +174 -0
- package/src/config.ts +103 -0
- package/src/core/agent-loop.integration.test.ts +503 -0
- package/src/core/agents/agent-config.test.ts +240 -0
- package/src/core/agents/agent-roles.ts +41 -0
- package/src/core/agents/agent-shutdown.test.ts +236 -0
- package/src/core/agents/agent.test.ts +387 -0
- package/src/core/agents/agent.ts +1472 -0
- package/src/core/agents/communicator.ts +16 -0
- package/src/core/agents/config.ts +98 -0
- package/src/core/agents/context.ts +19 -0
- package/src/core/agents/debounce.ts +116 -0
- package/src/core/agents/handler-events.test.ts +167 -0
- package/src/core/agents/index.ts +1 -0
- package/src/core/agents/response-sanitizer.test.ts +137 -0
- package/src/core/agents/response-sanitizer.ts +67 -0
- package/src/core/agents/retry.ts +164 -0
- package/src/core/agents/schema.ts +75 -0
- package/src/core/agents/state.ts +272 -0
- package/src/core/context/state.ts +38 -0
- package/src/core/errors.ts +55 -0
- package/src/core/event-sourcing.integration.test.ts +191 -0
- package/src/core/events/base-event-store.ts +264 -0
- package/src/core/events/event-store.ts +143 -0
- package/src/core/events/file.test.ts +436 -0
- package/src/core/events/file.ts +372 -0
- package/src/core/events/index.ts +3 -0
- package/src/core/events/memory.test.ts +741 -0
- package/src/core/events/memory.ts +131 -0
- package/src/core/events/metadata-utils.ts +133 -0
- package/src/core/events/test-helpers.ts +31 -0
- package/src/core/events/types.ts +64 -0
- package/src/core/file-store/file-store.ts +275 -0
- package/src/core/file-store/types.ts +52 -0
- package/src/core/image/image-processor.test.ts +218 -0
- package/src/core/image/image-processor.ts +127 -0
- package/src/core/image/index.ts +4 -0
- package/src/core/image/noop-resizer.ts +7 -0
- package/src/core/image/types.ts +24 -0
- package/src/core/image/vips-resizer.test.ts +377 -0
- package/src/core/image/vips-resizer.ts +124 -0
- package/src/core/llm/__snapshots__/anthropic-assistant-text-with-tool-calls.json +156 -0
- package/src/core/llm/__snapshots__/anthropic-consecutive-tool-results.json +152 -0
- package/src/core/llm/__snapshots__/anthropic-image-data-url.json +105 -0
- package/src/core/llm/__snapshots__/anthropic-image-http-url.json +104 -0
- package/src/core/llm/__snapshots__/anthropic-multiple-images.json +113 -0
- package/src/core/llm/__snapshots__/anthropic-multiple-tool-calls-requested.json +151 -0
- package/src/core/llm/__snapshots__/anthropic-simple-user-message.json +97 -0
- package/src/core/llm/__snapshots__/anthropic-system-message-in-conversation.json +119 -0
- package/src/core/llm/__snapshots__/anthropic-tool-call.json +123 -0
- package/src/core/llm/__snapshots__/anthropic-tool-error-result.json +139 -0
- package/src/core/llm/__snapshots__/anthropic-tool-result-with-image.json +152 -0
- package/src/core/llm/__snapshots__/anthropic-tool-roundtrip.json +139 -0
- package/src/core/llm/__snapshots__/openrouter-assistant-text-with-tool-calls.json +150 -0
- package/src/core/llm/__snapshots__/openrouter-consecutive-tool-results.json +150 -0
- package/src/core/llm/__snapshots__/openrouter-image-data-url.json +107 -0
- package/src/core/llm/__snapshots__/openrouter-image-http-url.json +107 -0
- package/src/core/llm/__snapshots__/openrouter-multiple-images.json +113 -0
- package/src/core/llm/__snapshots__/openrouter-multiple-tool-calls-requested.json +158 -0
- package/src/core/llm/__snapshots__/openrouter-simple-user-message.json +96 -0
- package/src/core/llm/__snapshots__/openrouter-system-message-in-conversation.json +108 -0
- package/src/core/llm/__snapshots__/openrouter-tool-call.json +129 -0
- package/src/core/llm/__snapshots__/openrouter-tool-error-result.json +137 -0
- package/src/core/llm/__snapshots__/openrouter-tool-result-with-image.json +148 -0
- package/src/core/llm/__snapshots__/openrouter-tool-roundtrip.json +137 -0
- package/src/core/llm/anthropic.test.ts +509 -0
- package/src/core/llm/anthropic.ts +578 -0
- package/src/core/llm/cache-breakpoints.ts +38 -0
- package/src/core/llm/cache-live.test.ts +155 -0
- package/src/core/llm/index.ts +30 -0
- package/src/core/llm/llm-log-types.ts +167 -0
- package/src/core/llm/logger.test.ts +270 -0
- package/src/core/llm/logger.ts +306 -0
- package/src/core/llm/logging-provider.ts +73 -0
- package/src/core/llm/middleware.ts +172 -0
- package/src/core/llm/mock.test.ts +402 -0
- package/src/core/llm/mock.ts +234 -0
- package/src/core/llm/openrouter-mapping.test.ts +153 -0
- package/src/core/llm/openrouter.test.ts +499 -0
- package/src/core/llm/openrouter.ts +458 -0
- package/src/core/llm/provider-integration.test.ts +408 -0
- package/src/core/llm/provider.ts +238 -0
- package/src/core/llm/routing-provider.test.ts +113 -0
- package/src/core/llm/routing-provider.ts +86 -0
- package/src/core/llm/schema.ts +47 -0
- package/src/core/llm/snapshot-fetch.ts +158 -0
- package/src/core/llm/snapshot-middleware.test.ts +168 -0
- package/src/core/llm/snapshot-middleware.ts +185 -0
- package/src/core/llm/state.ts +92 -0
- package/src/core/llm/tokens.ts +61 -0
- package/src/core/multi-agent.integration.test.ts +340 -0
- package/src/core/plugin-hooks.integration.test.ts +428 -0
- package/src/core/plugins/hook-types.ts +49 -0
- package/src/core/plugins/index.ts +52 -0
- package/src/core/plugins/plugin-builder.ts +967 -0
- package/src/core/preset/config.ts +110 -0
- package/src/core/preset/index.ts +11 -0
- package/src/core/preset/preset-builder.ts +111 -0
- package/src/core/session-lifecycle.integration.test.ts +202 -0
- package/src/core/sessions/apply-event.ts +46 -0
- package/src/core/sessions/context.ts +36 -0
- package/src/core/sessions/fork-utils.test.ts +158 -0
- package/src/core/sessions/fork-utils.ts +71 -0
- package/src/core/sessions/reducer.ts +95 -0
- package/src/core/sessions/schema.ts +91 -0
- package/src/core/sessions/session-environment.ts +12 -0
- package/src/core/sessions/session-manager.ts +883 -0
- package/src/core/sessions/session-store.ts +141 -0
- package/src/core/sessions/session.test.ts +1730 -0
- package/src/core/sessions/session.ts +833 -0
- package/src/core/sessions/state.ts +520 -0
- package/src/core/system.ts +206 -0
- package/src/core/tools/context.ts +3 -0
- package/src/core/tools/definition.ts +15 -0
- package/src/core/tools/executor.test.ts +160 -0
- package/src/core/tools/executor.ts +117 -0
- package/src/core/tools/index.ts +3 -0
- package/src/core/tools/schema.ts +80 -0
- package/src/core/tools/state.ts +34 -0
- package/src/index.ts +165 -0
- package/src/lib/json/index.ts +20 -0
- package/src/lib/logger/console.test.ts +348 -0
- package/src/lib/logger/console.ts +185 -0
- package/src/lib/logger/file.ts +65 -0
- package/src/lib/logger/index.ts +4 -0
- package/src/lib/logger/logger.ts +114 -0
- package/src/lib/logger/ring-buffer.ts +65 -0
- package/src/lib/logger/tee.ts +51 -0
- package/src/lib/mime.ts +23 -0
- package/src/lib/never.ts +3 -0
- package/src/lib/utils/hash.ts +38 -0
- package/src/lib/utils/result.ts +35 -0
- package/src/platform/fs.ts +38 -0
- package/src/platform/index.ts +23 -0
- package/src/platform/process.ts +28 -0
- package/src/plugins/agent-status/plugin.ts +77 -0
- package/src/plugins/agents/agents.integration.test.ts +808 -0
- package/src/plugins/agents/index.ts +2 -0
- package/src/plugins/agents/plugin.ts +242 -0
- package/src/plugins/context-compact/context-compact.integration.test.ts +207 -0
- package/src/plugins/context-compact/context-compactor.test.ts +923 -0
- package/src/plugins/context-compact/context-compactor.ts +343 -0
- package/src/plugins/context-compact/history-offloader.test.ts +100 -0
- package/src/plugins/context-compact/history-offloader.ts +47 -0
- package/src/plugins/context-compact/index.ts +3 -0
- package/src/plugins/context-compact/plugin.ts +62 -0
- package/src/plugins/filesystem/filesystem.integration.test.ts +485 -0
- package/src/plugins/filesystem/helpers.ts +216 -0
- package/src/plugins/filesystem/index.ts +4 -0
- package/src/plugins/filesystem/listing.ts +276 -0
- package/src/plugins/filesystem/plugin.ts +468 -0
- package/src/plugins/filesystem/schema.ts +6 -0
- package/src/plugins/git-status/index.ts +1 -0
- package/src/plugins/git-status/plugin.ts +166 -0
- package/src/plugins/limits-guard/config.ts +26 -0
- package/src/plugins/limits-guard/index.ts +4 -0
- package/src/plugins/limits-guard/limit-guard.test.ts +161 -0
- package/src/plugins/limits-guard/limit-guard.ts +164 -0
- package/src/plugins/limits-guard/limits-guard.integration.test.ts +437 -0
- package/src/plugins/limits-guard/plugin.ts +306 -0
- package/src/plugins/llm-debug/index.ts +1 -0
- package/src/plugins/llm-debug/llm-debug.integration.test.ts +192 -0
- package/src/plugins/llm-debug/plugin.ts +172 -0
- package/src/plugins/logs/index.ts +1 -0
- package/src/plugins/logs/plugin.ts +39 -0
- package/src/plugins/mailbox/helpers.ts +83 -0
- package/src/plugins/mailbox/index.ts +13 -0
- package/src/plugins/mailbox/mailbox.integration.test.ts +705 -0
- package/src/plugins/mailbox/plugin.ts +270 -0
- package/src/plugins/mailbox/prompts.ts +104 -0
- package/src/plugins/mailbox/query.ts +53 -0
- package/src/plugins/mailbox/schema.ts +81 -0
- package/src/plugins/mailbox/state.ts +52 -0
- package/src/plugins/resources/index.ts +11 -0
- package/src/plugins/resources/manifest.ts +25 -0
- package/src/plugins/resources/plugin.ts +201 -0
- package/src/plugins/resources/post-inject.ts +74 -0
- package/src/plugins/resources/state.ts +30 -0
- package/src/plugins/result-eviction/index.ts +2 -0
- package/src/plugins/result-eviction/plugin.ts +65 -0
- package/src/plugins/result-eviction/result-eviction.integration.test.ts +244 -0
- package/src/plugins/services/plugin.ts +485 -0
- package/src/plugins/services/port-pool.ts +73 -0
- package/src/plugins/services/prompt.ts +53 -0
- package/src/plugins/services/schema.ts +83 -0
- package/src/plugins/services/service.ts +578 -0
- package/src/plugins/services/services.integration.test.ts +595 -0
- package/src/plugins/session-lifecycle/index.ts +1 -0
- package/src/plugins/session-lifecycle/plugin.ts +302 -0
- package/src/plugins/session-lifecycle/session-lifecycle.integration.test.ts +639 -0
- package/src/plugins/session-state/plugin.ts +179 -0
- package/src/plugins/session-stats/index.ts +3 -0
- package/src/plugins/session-stats/plugin.ts +120 -0
- package/src/plugins/shell/executor.ts +462 -0
- package/src/plugins/shell/index.ts +23 -0
- package/src/plugins/shell/plugin.ts +118 -0
- package/src/plugins/shell/shell.integration.test.ts +273 -0
- package/src/plugins/shell/shell.test.ts +314 -0
- package/src/plugins/skills/discovery.test.ts +395 -0
- package/src/plugins/skills/discovery.ts +276 -0
- package/src/plugins/skills/index.ts +32 -0
- package/src/plugins/skills/plugin.ts +381 -0
- package/src/plugins/skills/prompts.ts +84 -0
- package/src/plugins/skills/schema.ts +88 -0
- package/src/plugins/skills/skills.integration.test.ts +580 -0
- package/src/plugins/snapshotting/index.ts +3 -0
- package/src/plugins/snapshotting/jj-snapshotter.ts +122 -0
- package/src/plugins/snapshotting/plugin.ts +36 -0
- package/src/plugins/snapshotting/snapshotter.ts +20 -0
- package/src/plugins/todo/index.ts +11 -0
- package/src/plugins/todo/plugin.ts +363 -0
- package/src/plugins/todo/prompts.ts +63 -0
- package/src/plugins/todo/schema.ts +71 -0
- package/src/plugins/todo/todo.integration.test.ts +687 -0
- package/src/plugins/uploads/index.ts +13 -0
- package/src/plugins/uploads/plugin.ts +406 -0
- package/src/plugins/uploads/preprocessor.ts +111 -0
- package/src/plugins/uploads/preprocessors/image-classifier.ts +176 -0
- package/src/plugins/uploads/preprocessors/index.ts +7 -0
- package/src/plugins/uploads/preprocessors/markitdown-preprocessor.ts +262 -0
- package/src/plugins/uploads/preprocessors/zip-preprocessor.ts +210 -0
- package/src/plugins/uploads/schema.ts +92 -0
- package/src/plugins/uploads/state.ts +42 -0
- package/src/plugins/uploads/uploads.integration.test.ts +654 -0
- package/src/plugins/user-chat/index.ts +17 -0
- package/src/plugins/user-chat/plugin.ts +728 -0
- package/src/plugins/user-chat/prompts.ts +30 -0
- package/src/plugins/user-chat/schema.ts +80 -0
- package/src/plugins/user-chat/user-chat.integration.test.ts +794 -0
- package/src/plugins/workers/context.ts +251 -0
- package/src/plugins/workers/definition.ts +169 -0
- package/src/plugins/workers/index.ts +21 -0
- package/src/plugins/workers/plugin.ts +722 -0
- package/src/plugins/workers/worker.ts +115 -0
- package/src/plugins/workers/workers.integration.test.ts +778 -0
- package/src/prompts/base.ts +266 -0
- package/src/prompts/builder.ts +194 -0
- package/src/prompts/index.ts +36 -0
- package/src/prompts/macros.test.ts +107 -0
- package/src/prompts/macros.ts +27 -0
- package/src/testing/bootstrap-for-testing.ts +39 -0
- package/src/testing/index.ts +7 -0
- package/src/testing/node-platform.ts +80 -0
- package/src/testing/notification-collector.ts +100 -0
- package/src/testing/preset-helpers.ts +57 -0
- package/src/testing/test-harness.test.ts +63 -0
- package/src/testing/test-harness.ts +279 -0
- package/src/testing/wait-helpers.ts +84 -0
- package/src/transport/adapter/client-adapter.ts +81 -0
- package/src/transport/adapter/index.ts +42 -0
- package/src/transport/adapter/server-adapter.ts +93 -0
- package/src/transport/adapter/types.ts +20 -0
- package/src/transport/http/app.ts +129 -0
- package/src/transport/http/index.ts +7 -0
- package/src/transport/http/middleware/bearer-auth.ts +40 -0
- package/src/transport/http/middleware/error-handler.ts +76 -0
- package/src/transport/http/routes/files.ts +274 -0
- package/src/transport/http/routes/resources.ts +115 -0
- package/src/transport/http/routes/rpc.integration.test.ts +243 -0
- package/src/transport/http/routes/rpc.test.ts +372 -0
- package/src/transport/http/routes/rpc.ts +156 -0
- package/src/transport/http/routes/upload.ts +286 -0
- package/src/transport/rpc/index.ts +11 -0
- package/src/transport/rpc/methods.ts +38 -0
- package/src/user-config.ts +33 -0
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Snapshot-caching LLM middleware for e2e tests.
|
|
3
|
+
*
|
|
4
|
+
* Works at the InferenceRequest/InferenceResponse boundary (not HTTP). On a
|
|
5
|
+
* request hit, returns the cached response without calling the downstream
|
|
6
|
+
* provider. On a miss, forwards the request, records the response, writes
|
|
7
|
+
* one snapshot file per request hash.
|
|
8
|
+
*
|
|
9
|
+
* Unlike the lower-level `snapshot-fetch` (which writes one file per testName
|
|
10
|
+
* and overwrites on each call), this middleware keys by request hash — so a
|
|
11
|
+
* single multi-turn test records N independent snapshots.
|
|
12
|
+
*
|
|
13
|
+
* Usage:
|
|
14
|
+
* startStandaloneServer({
|
|
15
|
+
* presets: [myPreset],
|
|
16
|
+
* llmMiddleware: [createSnapshotLLMMiddleware({ snapshotsDir: '...' })],
|
|
17
|
+
* })
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
import { createHash } from 'node:crypto'
|
|
21
|
+
import { existsSync, mkdirSync, readFileSync, writeFileSync } from 'node:fs'
|
|
22
|
+
import { join } from 'node:path'
|
|
23
|
+
import { Err, Ok } from '~/lib/utils/result.js'
|
|
24
|
+
import type { LLMMiddleware } from './middleware.js'
|
|
25
|
+
import type { InferenceRequest, InferenceResponse } from './provider.js'
|
|
26
|
+
|
|
27
|
+
export interface SnapshotLLMMiddlewareOptions {
|
|
28
|
+
/** Directory where per-request snapshot files are stored. */
|
|
29
|
+
snapshotsDir: string
|
|
30
|
+
/**
|
|
31
|
+
* - `auto` (default) — replay if snapshot exists, otherwise record.
|
|
32
|
+
* - `replay` — fail on miss. Use in CI to catch accidental live calls.
|
|
33
|
+
* - `record` — always call next and (over)write the snapshot.
|
|
34
|
+
*/
|
|
35
|
+
mode?: 'auto' | 'replay' | 'record'
|
|
36
|
+
/**
|
|
37
|
+
* Transform the request before hashing. Returns a request used only for
|
|
38
|
+
* key computation — the original is still sent downstream on cache miss.
|
|
39
|
+
*
|
|
40
|
+
* Use this to strip run-local data (session IDs, timestamps, random
|
|
41
|
+
* workspace paths) that would otherwise prevent snapshots from matching
|
|
42
|
+
* across runs. See `stripUuids` for a common default.
|
|
43
|
+
*/
|
|
44
|
+
normalize?: (request: InferenceRequest) => InferenceRequest
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Replace all UUIDs in a string with a `__UUID__` placeholder.
|
|
49
|
+
*/
|
|
50
|
+
export function stripUuids(text: string): string {
|
|
51
|
+
return text.replace(/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/g, '__UUID__')
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Replace dynamically assigned TCP ports (e.g. `port 46140`, `:46140`) with
|
|
56
|
+
* a `__PORT__` placeholder. Dev services in roj pick free ports at runtime,
|
|
57
|
+
* which otherwise bust the snapshot key on every run.
|
|
58
|
+
*/
|
|
59
|
+
export function stripEphemeralPorts(text: string): string {
|
|
60
|
+
return text
|
|
61
|
+
.replace(/port\s+(\d{4,5})\b/gi, 'port __PORT__')
|
|
62
|
+
.replace(/:(1[0-9]{4}|[2-6][0-9]{4})\b/g, ':__PORT__')
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Compose multiple text stripping functions.
|
|
67
|
+
*/
|
|
68
|
+
export function composeStrippers(...fns: Array<(text: string) => string>): (text: string) => string {
|
|
69
|
+
return (text) => fns.reduce((acc, fn) => fn(acc), text)
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* Build a `normalize` hook that applies a text-level stripper to the system
|
|
74
|
+
* prompt and all string-form message content / text parts.
|
|
75
|
+
*/
|
|
76
|
+
export function normalizeWith(stripper: (text: string) => string): (request: InferenceRequest) => InferenceRequest {
|
|
77
|
+
return (request) => ({
|
|
78
|
+
...request,
|
|
79
|
+
systemPrompt: stripper(request.systemPrompt),
|
|
80
|
+
messages: request.messages.map((m) => {
|
|
81
|
+
if (typeof m.content === 'string') {
|
|
82
|
+
return { ...m, content: stripper(m.content) }
|
|
83
|
+
}
|
|
84
|
+
if (Array.isArray(m.content)) {
|
|
85
|
+
return {
|
|
86
|
+
...m,
|
|
87
|
+
content: m.content.map((part) =>
|
|
88
|
+
part.type === 'text' ? { ...part, text: stripper(part.text) } : part,
|
|
89
|
+
),
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
return m
|
|
93
|
+
}) as InferenceRequest['messages'],
|
|
94
|
+
})
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* A `normalize` implementation that strips UUIDs from the request text.
|
|
99
|
+
* Use `normalizeStripRuntime` if dev service ports also leak into prompts.
|
|
100
|
+
*/
|
|
101
|
+
export const normalizeStripUuids = normalizeWith(stripUuids)
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* `normalize` implementation for typical e2e runs: strips UUIDs and
|
|
105
|
+
* dynamically-assigned ports. Covers the usual suspects; add your own with
|
|
106
|
+
* `normalizeWith(composeStrippers(...))` for more.
|
|
107
|
+
*/
|
|
108
|
+
export const normalizeStripRuntime = normalizeWith(composeStrippers(stripUuids, stripEphemeralPorts))
|
|
109
|
+
|
|
110
|
+
interface SnapshotEntry {
|
|
111
|
+
request: unknown
|
|
112
|
+
response: InferenceResponse
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
function stableStringify(value: unknown): string {
|
|
116
|
+
return JSON.stringify(value, (_key, val) => {
|
|
117
|
+
if (val && typeof val === 'object' && !Array.isArray(val)) {
|
|
118
|
+
return Object.fromEntries(Object.entries(val as Record<string, unknown>).sort(([a], [b]) => a.localeCompare(b)))
|
|
119
|
+
}
|
|
120
|
+
return val
|
|
121
|
+
})
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* Build a stable digest of the request. Strips:
|
|
126
|
+
* - tool `input`/`execute` functions + Zod schemas (reduced to name/description)
|
|
127
|
+
* - conversation-metadata fields on messages (`timestamp`, `isError`,
|
|
128
|
+
* `toolName`, `sourceMessageIds`) — not forwarded to the LLM, so they
|
|
129
|
+
* shouldn't bust the snapshot key either.
|
|
130
|
+
*/
|
|
131
|
+
function stripMessageMetadata(message: unknown): unknown {
|
|
132
|
+
if (!message || typeof message !== 'object') return message
|
|
133
|
+
const { timestamp: _t, isError: _e, toolName: _n, sourceMessageIds: _s, ...rest } = message as Record<string, unknown>
|
|
134
|
+
return rest
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
function buildDigest(request: InferenceRequest): Record<string, unknown> {
|
|
138
|
+
return {
|
|
139
|
+
model: String(request.model),
|
|
140
|
+
systemPrompt: request.systemPrompt,
|
|
141
|
+
messages: request.messages.map(stripMessageMetadata),
|
|
142
|
+
tools: request.tools?.map((t) => ({ name: t.name, description: t.description })),
|
|
143
|
+
maxTokens: request.maxTokens,
|
|
144
|
+
temperature: request.temperature,
|
|
145
|
+
stopSequences: request.stopSequences,
|
|
146
|
+
openrouter: request.openrouter,
|
|
147
|
+
anthropic: request.anthropic,
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
function hashDigest(digest: unknown): string {
|
|
152
|
+
return createHash('sha256').update(stableStringify(digest)).digest('hex').slice(0, 16)
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
export function createSnapshotLLMMiddleware(options: SnapshotLLMMiddlewareOptions): LLMMiddleware {
|
|
156
|
+
const mode = options.mode ?? 'auto'
|
|
157
|
+
mkdirSync(options.snapshotsDir, { recursive: true })
|
|
158
|
+
|
|
159
|
+
return async (request, context, next) => {
|
|
160
|
+
const forHashing = options.normalize ? options.normalize(request) : request
|
|
161
|
+
const digest = buildDigest(forHashing)
|
|
162
|
+
const hash = hashDigest(digest)
|
|
163
|
+
const filePath = join(options.snapshotsDir, `${hash}.json`)
|
|
164
|
+
const hasSnapshot = existsSync(filePath)
|
|
165
|
+
|
|
166
|
+
if (mode !== 'record' && hasSnapshot) {
|
|
167
|
+
const entry = JSON.parse(readFileSync(filePath, 'utf-8')) as SnapshotEntry
|
|
168
|
+
return Ok(entry.response)
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
if (mode === 'replay') {
|
|
172
|
+
return Err({
|
|
173
|
+
type: 'invalid_request',
|
|
174
|
+
message: `Snapshot not found (replay mode): ${hash}. Set mode to 'auto' or 'record' and provide API keys to record.`,
|
|
175
|
+
})
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
const result = await next(request, context)
|
|
179
|
+
if (result.ok) {
|
|
180
|
+
const entry: SnapshotEntry = { request: digest, response: result.value }
|
|
181
|
+
writeFileSync(filePath, JSON.stringify(entry, null, '\t'))
|
|
182
|
+
}
|
|
183
|
+
return result
|
|
184
|
+
}
|
|
185
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import z4 from 'zod/v4'
|
|
2
|
+
import { agentIdSchema } from '~/core/agents'
|
|
3
|
+
import type { LLMMessage } from '~/core/agents/state'
|
|
4
|
+
import { createEventsFactory } from '~/core/events/types'
|
|
5
|
+
import { toolCallIdSchema } from '~/core/tools/schema'
|
|
6
|
+
import { messageIdSchema } from '~/plugins/mailbox/schema'
|
|
7
|
+
import { llmCallIdSchema } from './schema'
|
|
8
|
+
|
|
9
|
+
// ============================================================================
|
|
10
|
+
// Supporting types for LLM events
|
|
11
|
+
// ============================================================================
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* LLM response content - can be text and/or tool calls.
|
|
15
|
+
*/
|
|
16
|
+
export type LLMResponse = {
|
|
17
|
+
content: string | null
|
|
18
|
+
toolCalls: LLMToolCall[]
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* A single tool call from the LLM.
|
|
23
|
+
*/
|
|
24
|
+
export type LLMToolCall = {
|
|
25
|
+
id: string // ToolCallId
|
|
26
|
+
name: string
|
|
27
|
+
input: unknown
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Metrics from an LLM inference call.
|
|
32
|
+
*/
|
|
33
|
+
export type LLMMetrics = {
|
|
34
|
+
promptTokens: number
|
|
35
|
+
completionTokens: number
|
|
36
|
+
totalTokens: number
|
|
37
|
+
latencyMs: number
|
|
38
|
+
model: string
|
|
39
|
+
provider?: string
|
|
40
|
+
cost?: number
|
|
41
|
+
/** Tokens served from prompt cache (cache read) */
|
|
42
|
+
cachedTokens?: number
|
|
43
|
+
/** Tokens written to prompt cache */
|
|
44
|
+
cacheWriteTokens?: number
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
// ============================================================================
|
|
48
|
+
// LLM events
|
|
49
|
+
// ============================================================================
|
|
50
|
+
|
|
51
|
+
export const llmEvents = createEventsFactory({
|
|
52
|
+
events: {
|
|
53
|
+
inference_started: z4.object({
|
|
54
|
+
agentId: agentIdSchema,
|
|
55
|
+
messages: z4.array(z4.custom<LLMMessage>()),
|
|
56
|
+
consumedMessageIds: z4.array(messageIdSchema),
|
|
57
|
+
}),
|
|
58
|
+
inference_completed: z4.object({
|
|
59
|
+
agentId: agentIdSchema,
|
|
60
|
+
consumedMessageIds: z4.array(messageIdSchema),
|
|
61
|
+
response: z4.object({
|
|
62
|
+
content: z4.string().nullable(),
|
|
63
|
+
toolCalls: z4.array(z4.object({
|
|
64
|
+
id: toolCallIdSchema,
|
|
65
|
+
name: z4.string(),
|
|
66
|
+
input: z4.unknown(),
|
|
67
|
+
})),
|
|
68
|
+
}),
|
|
69
|
+
metrics: z4.object({
|
|
70
|
+
promptTokens: z4.number(),
|
|
71
|
+
completionTokens: z4.number(),
|
|
72
|
+
totalTokens: z4.number(),
|
|
73
|
+
latencyMs: z4.number(),
|
|
74
|
+
model: z4.string(),
|
|
75
|
+
provider: z4.string().optional(),
|
|
76
|
+
cost: z4.number().optional(),
|
|
77
|
+
cachedTokens: z4.number().optional(),
|
|
78
|
+
cacheWriteTokens: z4.number().optional(),
|
|
79
|
+
}),
|
|
80
|
+
llmCallId: llmCallIdSchema.optional(),
|
|
81
|
+
}),
|
|
82
|
+
inference_failed: z4.object({
|
|
83
|
+
agentId: agentIdSchema,
|
|
84
|
+
error: z4.string(),
|
|
85
|
+
llmCallId: llmCallIdSchema.optional(),
|
|
86
|
+
}),
|
|
87
|
+
},
|
|
88
|
+
})
|
|
89
|
+
|
|
90
|
+
export type InferenceStartedEvent = (typeof llmEvents)['Events']['inference_started']
|
|
91
|
+
export type InferenceCompletedEvent = (typeof llmEvents)['Events']['inference_completed']
|
|
92
|
+
export type InferenceFailedEvent = (typeof llmEvents)['Events']['inference_failed']
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Token estimation utilities using tokenx library.
|
|
3
|
+
* Provides ~95-98% accuracy compared to full tokenizers.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import { estimateTokenCount, sliceByTokens } from 'tokenx'
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Estimate token count for a text string.
|
|
10
|
+
* Uses tokenx library for better accuracy than simple char/4 heuristic.
|
|
11
|
+
*/
|
|
12
|
+
export function estimateTokens(text: string): number {
|
|
13
|
+
return estimateTokenCount(text)
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Message structure for token estimation.
|
|
18
|
+
*/
|
|
19
|
+
export interface TokenEstimationMessage {
|
|
20
|
+
role: string
|
|
21
|
+
content: string | unknown
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* Estimate total tokens for an array of messages.
|
|
26
|
+
* Includes ~4 tokens overhead per message for role/formatting.
|
|
27
|
+
*/
|
|
28
|
+
export interface TruncationResult {
|
|
29
|
+
content: string
|
|
30
|
+
originalTokens: number
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Truncate text to fit within a token budget.
|
|
35
|
+
* Returns null if text is already within budget.
|
|
36
|
+
* Uses 80/20 head/tail split via sliceByTokens.
|
|
37
|
+
*/
|
|
38
|
+
export function truncateByTokens(text: string, maxTokens: number): TruncationResult | null {
|
|
39
|
+
const originalTokens = estimateTokenCount(text)
|
|
40
|
+
// 5% tolerance to avoid truncating near the boundary
|
|
41
|
+
if (originalTokens <= maxTokens * 1.05) return null
|
|
42
|
+
|
|
43
|
+
const headBudget = Math.floor(maxTokens * 0.8)
|
|
44
|
+
const tailBudget = maxTokens - headBudget
|
|
45
|
+
const head = sliceByTokens(text, 0, headBudget)
|
|
46
|
+
const tail = sliceByTokens(text, -tailBudget)
|
|
47
|
+
|
|
48
|
+
const content = `${head}\n\n[... truncated — ~${originalTokens} tokens total ...]\n\n${tail}`
|
|
49
|
+
return { content, originalTokens }
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* Estimate total tokens for an array of messages.
|
|
54
|
+
* Includes ~4 tokens overhead per message for role/formatting.
|
|
55
|
+
*/
|
|
56
|
+
export function estimateMessagesTokens(messages: TokenEstimationMessage[]): number {
|
|
57
|
+
return messages.reduce((sum, msg) => {
|
|
58
|
+
const content = typeof msg.content === 'string' ? msg.content : JSON.stringify(msg.content)
|
|
59
|
+
return sum + estimateTokens(content) + 4 // 4 tokens overhead per message
|
|
60
|
+
}, 0)
|
|
61
|
+
}
|
|
@@ -0,0 +1,340 @@
|
|
|
1
|
+
import { describe, expect, it } from 'bun:test'
|
|
2
|
+
import { AgentId } from '~/core/agents/schema.js'
|
|
3
|
+
import { agentEvents } from '~/core/agents/state.js'
|
|
4
|
+
import { MockLLMProvider } from '~/core/llm/mock.js'
|
|
5
|
+
import { ToolCallId } from '~/core/tools/schema.js'
|
|
6
|
+
import { createMultiAgentPreset, TestHarness } from '~/testing/index.js'
|
|
7
|
+
|
|
8
|
+
describe('core: multi-agent flows', () => {
|
|
9
|
+
it('orchestrator spawns worker → worker processes → sends result to orchestrator → orchestrator continues', async () => {
|
|
10
|
+
let orchestratorCalls = 0
|
|
11
|
+
let orchestratorSawResult = false
|
|
12
|
+
|
|
13
|
+
let workerCalls = 0
|
|
14
|
+
|
|
15
|
+
const harness = new TestHarness({
|
|
16
|
+
presets: [createMultiAgentPreset([
|
|
17
|
+
{ name: 'worker', system: 'Worker agent.', tools: [], agents: [] },
|
|
18
|
+
], { orchestratorSystem: 'Orchestrator agent.' })],
|
|
19
|
+
mockHandler: (request) => {
|
|
20
|
+
if (request.systemPrompt.includes('Orchestrator')) {
|
|
21
|
+
orchestratorCalls++
|
|
22
|
+
if (orchestratorCalls === 1) {
|
|
23
|
+
return {
|
|
24
|
+
content: null,
|
|
25
|
+
toolCalls: [{ id: ToolCallId('tc1'), name: 'start_worker', input: { message: 'Do work' } }],
|
|
26
|
+
finishReason: 'stop',
|
|
27
|
+
metrics: MockLLMProvider.defaultMetrics(),
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
// Check if orchestrator received the worker's report
|
|
31
|
+
const userMessages = request.messages.filter(m => m.role === 'user')
|
|
32
|
+
if (userMessages.some(m => typeof m.content === 'string' && m.content.includes('Work result: done'))) {
|
|
33
|
+
orchestratorSawResult = true
|
|
34
|
+
}
|
|
35
|
+
return { content: 'All done', toolCalls: [], finishReason: 'stop', metrics: MockLLMProvider.defaultMetrics() }
|
|
36
|
+
}
|
|
37
|
+
// Worker: send result to parent on first call, finish on second
|
|
38
|
+
workerCalls++
|
|
39
|
+
if (workerCalls === 1) {
|
|
40
|
+
return {
|
|
41
|
+
content: null,
|
|
42
|
+
toolCalls: [{ id: ToolCallId('tc2'), name: 'send_message', input: { to: 'parent', message: 'Work result: done' } }],
|
|
43
|
+
finishReason: 'stop',
|
|
44
|
+
metrics: MockLLMProvider.defaultMetrics(),
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return { content: 'Worker done', toolCalls: [], finishReason: 'stop', metrics: MockLLMProvider.defaultMetrics() }
|
|
48
|
+
},
|
|
49
|
+
})
|
|
50
|
+
|
|
51
|
+
const session = await harness.createSession('test')
|
|
52
|
+
await session.sendAndWaitForIdle('Start', { timeoutMs: 10000 })
|
|
53
|
+
|
|
54
|
+
expect(orchestratorSawResult).toBe(true)
|
|
55
|
+
|
|
56
|
+
// Both agents should be idle
|
|
57
|
+
const orchState = session.state.agents.get(session.getEntryAgentId()!)!
|
|
58
|
+
expect(orchState.status).toBe('pending')
|
|
59
|
+
const workerState = session.state.agents.get(AgentId('worker_1'))!
|
|
60
|
+
expect(workerState.status).toBe('pending')
|
|
61
|
+
|
|
62
|
+
await harness.shutdown()
|
|
63
|
+
})
|
|
64
|
+
|
|
65
|
+
it('orchestrator spawns multiple workers → all process concurrently', async () => {
|
|
66
|
+
let orchestratorCalls = 0
|
|
67
|
+
const workerCallCounts = new Map<string, number>()
|
|
68
|
+
|
|
69
|
+
const harness = new TestHarness({
|
|
70
|
+
presets: [createMultiAgentPreset([
|
|
71
|
+
{ name: 'worker', system: 'Worker agent.', tools: [], agents: [] },
|
|
72
|
+
], { orchestratorSystem: 'Orchestrator agent.' })],
|
|
73
|
+
mockHandler: (request) => {
|
|
74
|
+
if (request.systemPrompt.includes('Orchestrator')) {
|
|
75
|
+
orchestratorCalls++
|
|
76
|
+
if (orchestratorCalls === 1) {
|
|
77
|
+
return {
|
|
78
|
+
content: null,
|
|
79
|
+
toolCalls: [
|
|
80
|
+
{ id: ToolCallId('tc1'), name: 'start_worker', input: { message: 'Task A' } },
|
|
81
|
+
{ id: ToolCallId('tc2'), name: 'start_worker', input: { message: 'Task B' } },
|
|
82
|
+
{ id: ToolCallId('tc3'), name: 'start_worker', input: { message: 'Task C' } },
|
|
83
|
+
],
|
|
84
|
+
finishReason: 'stop',
|
|
85
|
+
metrics: MockLLMProvider.defaultMetrics(),
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
return { content: 'Done', toolCalls: [], finishReason: 'stop', metrics: MockLLMProvider.defaultMetrics() }
|
|
89
|
+
}
|
|
90
|
+
// Workers
|
|
91
|
+
const agentId = request.systemPrompt.includes('Worker') ? 'worker' : 'unknown'
|
|
92
|
+
workerCallCounts.set(agentId, (workerCallCounts.get(agentId) ?? 0) + 1)
|
|
93
|
+
return { content: 'Worker done', toolCalls: [], finishReason: 'stop', metrics: MockLLMProvider.defaultMetrics() }
|
|
94
|
+
},
|
|
95
|
+
})
|
|
96
|
+
|
|
97
|
+
const session = await harness.createSession('test')
|
|
98
|
+
await session.sendAndWaitForIdle('Start', { timeoutMs: 10000 })
|
|
99
|
+
|
|
100
|
+
// All three workers should exist
|
|
101
|
+
expect(session.state.agents.has(AgentId('worker_1'))).toBe(true)
|
|
102
|
+
expect(session.state.agents.has(AgentId('worker_2'))).toBe(true)
|
|
103
|
+
expect(session.state.agents.has(AgentId('worker_3'))).toBe(true)
|
|
104
|
+
|
|
105
|
+
// All workers should have been called
|
|
106
|
+
expect(workerCallCounts.get('worker')).toBeGreaterThanOrEqual(3)
|
|
107
|
+
|
|
108
|
+
// All workers should be idle
|
|
109
|
+
for (const id of [AgentId('worker_1'), AgentId('worker_2'), AgentId('worker_3')]) {
|
|
110
|
+
expect(session.state.agents.get(id)!.status).toBe('pending')
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
await harness.shutdown()
|
|
114
|
+
})
|
|
115
|
+
|
|
116
|
+
it('parent pauses child → child stops, parent notified', async () => {
|
|
117
|
+
let orchestratorCalls = 0
|
|
118
|
+
|
|
119
|
+
const harness = new TestHarness({
|
|
120
|
+
presets: [createMultiAgentPreset([
|
|
121
|
+
{ name: 'worker', system: 'Worker agent.', tools: [], agents: [] },
|
|
122
|
+
], { orchestratorSystem: 'Orchestrator agent.' })],
|
|
123
|
+
mockHandler: (request) => {
|
|
124
|
+
if (request.systemPrompt.includes('Orchestrator')) {
|
|
125
|
+
orchestratorCalls++
|
|
126
|
+
if (orchestratorCalls === 1) {
|
|
127
|
+
return {
|
|
128
|
+
content: null,
|
|
129
|
+
toolCalls: [{ id: ToolCallId('tc1'), name: 'start_worker', input: { message: 'Work' } }],
|
|
130
|
+
finishReason: 'stop',
|
|
131
|
+
metrics: MockLLMProvider.defaultMetrics(),
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
return { content: 'Done', toolCalls: [], finishReason: 'stop', metrics: MockLLMProvider.defaultMetrics() }
|
|
135
|
+
}
|
|
136
|
+
return { content: 'Worker done', toolCalls: [], finishReason: 'stop', metrics: MockLLMProvider.defaultMetrics() }
|
|
137
|
+
},
|
|
138
|
+
})
|
|
139
|
+
|
|
140
|
+
const session = await harness.createSession('test')
|
|
141
|
+
await session.sendAndWaitForIdle('Start')
|
|
142
|
+
|
|
143
|
+
// Pause the child
|
|
144
|
+
const pauseResult = await session.callPluginMethod('agents.pause', { agentId: 'worker_1' })
|
|
145
|
+
expect(pauseResult.ok).toBe(true)
|
|
146
|
+
|
|
147
|
+
// Child should be paused
|
|
148
|
+
expect(session.state.agents.get(AgentId('worker_1'))!.status).toBe('paused')
|
|
149
|
+
|
|
150
|
+
// agent_paused event emitted
|
|
151
|
+
const pausedEvents = await session.getEventsByType(agentEvents, 'agent_paused')
|
|
152
|
+
expect(pausedEvents.some(e => e.agentId === AgentId('worker_1'))).toBe(true)
|
|
153
|
+
|
|
154
|
+
await harness.shutdown()
|
|
155
|
+
})
|
|
156
|
+
|
|
157
|
+
it('parent resumes child → child continues', async () => {
|
|
158
|
+
let orchestratorCalls = 0
|
|
159
|
+
let workerCalls = 0
|
|
160
|
+
|
|
161
|
+
const harness = new TestHarness({
|
|
162
|
+
presets: [createMultiAgentPreset([
|
|
163
|
+
{ name: 'worker', system: 'Worker agent.', tools: [], agents: [] },
|
|
164
|
+
], { orchestratorSystem: 'Orchestrator agent.' })],
|
|
165
|
+
mockHandler: (request) => {
|
|
166
|
+
if (request.systemPrompt.includes('Orchestrator')) {
|
|
167
|
+
orchestratorCalls++
|
|
168
|
+
if (orchestratorCalls === 1) {
|
|
169
|
+
return {
|
|
170
|
+
content: null,
|
|
171
|
+
toolCalls: [{ id: ToolCallId('tc1'), name: 'start_worker', input: { message: 'Work' } }],
|
|
172
|
+
finishReason: 'stop',
|
|
173
|
+
metrics: MockLLMProvider.defaultMetrics(),
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
return { content: 'Done', toolCalls: [], finishReason: 'stop', metrics: MockLLMProvider.defaultMetrics() }
|
|
177
|
+
}
|
|
178
|
+
workerCalls++
|
|
179
|
+
return { content: 'Worker done', toolCalls: [], finishReason: 'stop', metrics: MockLLMProvider.defaultMetrics() }
|
|
180
|
+
},
|
|
181
|
+
})
|
|
182
|
+
|
|
183
|
+
const session = await harness.createSession('test')
|
|
184
|
+
await session.sendAndWaitForIdle('Start')
|
|
185
|
+
|
|
186
|
+
// Pause
|
|
187
|
+
const pauseResult = await session.callPluginMethod('agents.pause', { agentId: 'worker_1' })
|
|
188
|
+
expect(pauseResult.ok).toBe(true)
|
|
189
|
+
expect(session.state.agents.get(AgentId('worker_1'))!.status).toBe('paused')
|
|
190
|
+
|
|
191
|
+
// Resume
|
|
192
|
+
const resumeResult = await session.callPluginMethod('agents.resume', { agentId: 'worker_1' })
|
|
193
|
+
expect(resumeResult.ok).toBe(true)
|
|
194
|
+
|
|
195
|
+
await session.waitForIdle()
|
|
196
|
+
|
|
197
|
+
// Worker should have processed again after resume
|
|
198
|
+
expect(session.state.agents.get(AgentId('worker_1'))!.status).toBe('pending')
|
|
199
|
+
|
|
200
|
+
// agent_resumed event should exist
|
|
201
|
+
const resumedEvents = await session.getEventsByType(agentEvents, 'agent_resumed')
|
|
202
|
+
expect(resumedEvents.some(e => e.agentId === AgentId('worker_1'))).toBe(true)
|
|
203
|
+
|
|
204
|
+
await harness.shutdown()
|
|
205
|
+
})
|
|
206
|
+
|
|
207
|
+
it('child agent completes → parent receives completion message (if configured)', async () => {
|
|
208
|
+
let orchestratorCalls = 0
|
|
209
|
+
let orchestratorSawCompletion = false
|
|
210
|
+
|
|
211
|
+
const harness = new TestHarness({
|
|
212
|
+
presets: [createMultiAgentPreset([
|
|
213
|
+
{
|
|
214
|
+
name: 'worker',
|
|
215
|
+
system: 'Worker agent.',
|
|
216
|
+
tools: [],
|
|
217
|
+
agents: [],
|
|
218
|
+
plugins: [{ pluginName: 'mailbox', config: { sendCompletionMessage: true } }],
|
|
219
|
+
},
|
|
220
|
+
], { orchestratorSystem: 'Orchestrator agent.' })],
|
|
221
|
+
mockHandler: (request) => {
|
|
222
|
+
if (request.systemPrompt.includes('Orchestrator')) {
|
|
223
|
+
orchestratorCalls++
|
|
224
|
+
if (orchestratorCalls === 1) {
|
|
225
|
+
return {
|
|
226
|
+
content: null,
|
|
227
|
+
toolCalls: [{ id: ToolCallId('tc1'), name: 'start_worker', input: { message: 'Work' } }],
|
|
228
|
+
finishReason: 'stop',
|
|
229
|
+
metrics: MockLLMProvider.defaultMetrics(),
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
// Check if completion message arrived
|
|
233
|
+
const userMessages = request.messages.filter(m => m.role === 'user')
|
|
234
|
+
if (userMessages.some(m => typeof m.content === 'string' && m.content.includes('Task completed.'))) {
|
|
235
|
+
orchestratorSawCompletion = true
|
|
236
|
+
}
|
|
237
|
+
return { content: 'Done', toolCalls: [], finishReason: 'stop', metrics: MockLLMProvider.defaultMetrics() }
|
|
238
|
+
}
|
|
239
|
+
// Worker completes immediately
|
|
240
|
+
return { content: 'Worker done', toolCalls: [], finishReason: 'stop', metrics: MockLLMProvider.defaultMetrics() }
|
|
241
|
+
},
|
|
242
|
+
})
|
|
243
|
+
|
|
244
|
+
const session = await harness.createSession('test')
|
|
245
|
+
await session.sendAndWaitForIdle('Start', { timeoutMs: 10000 })
|
|
246
|
+
|
|
247
|
+
expect(orchestratorSawCompletion).toBe(true)
|
|
248
|
+
|
|
249
|
+
await harness.shutdown()
|
|
250
|
+
})
|
|
251
|
+
|
|
252
|
+
it('deeply nested agents: orch → A → B → B reports to A → A reports to orch', async () => {
|
|
253
|
+
let orchestratorCalls = 0
|
|
254
|
+
let workerACalls = 0
|
|
255
|
+
let workerBCalls = 0
|
|
256
|
+
let orchestratorSawFinalReport = false
|
|
257
|
+
|
|
258
|
+
const harness = new TestHarness({
|
|
259
|
+
presets: [createMultiAgentPreset([
|
|
260
|
+
{ name: 'worker_a', system: 'Worker A agent.', tools: [], agents: ['worker_b'] },
|
|
261
|
+
{ name: 'worker_b', system: 'Worker B agent.', tools: [], agents: [] },
|
|
262
|
+
], { orchestratorSystem: 'Orchestrator agent.' })],
|
|
263
|
+
mockHandler: (request) => {
|
|
264
|
+
if (request.systemPrompt.includes('Orchestrator')) {
|
|
265
|
+
orchestratorCalls++
|
|
266
|
+
if (orchestratorCalls === 1) {
|
|
267
|
+
return {
|
|
268
|
+
content: null,
|
|
269
|
+
toolCalls: [{ id: ToolCallId('tc1'), name: 'start_worker_a', input: { message: 'Coordinate' } }],
|
|
270
|
+
finishReason: 'stop',
|
|
271
|
+
metrics: MockLLMProvider.defaultMetrics(),
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
// Check for final report from A
|
|
275
|
+
const userMessages = request.messages.filter(m => m.role === 'user')
|
|
276
|
+
if (userMessages.some(m => typeof m.content === 'string' && m.content.includes('Final report from A'))) {
|
|
277
|
+
orchestratorSawFinalReport = true
|
|
278
|
+
}
|
|
279
|
+
return { content: 'All done', toolCalls: [], finishReason: 'stop', metrics: MockLLMProvider.defaultMetrics() }
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
if (request.systemPrompt.includes('Worker A')) {
|
|
283
|
+
workerACalls++
|
|
284
|
+
if (workerACalls === 1) {
|
|
285
|
+
// A spawns B
|
|
286
|
+
return {
|
|
287
|
+
content: null,
|
|
288
|
+
toolCalls: [{ id: ToolCallId('tc2'), name: 'start_worker_b', input: { message: 'Sub-task for B' } }],
|
|
289
|
+
finishReason: 'stop',
|
|
290
|
+
metrics: MockLLMProvider.defaultMetrics(),
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
// A received report from B, now report to orchestrator
|
|
294
|
+
const userMessages = request.messages.filter(m => m.role === 'user')
|
|
295
|
+
if (userMessages.some(m => typeof m.content === 'string' && m.content.includes('B result: success'))) {
|
|
296
|
+
// Check if we already sent the report (tool result in messages means we did)
|
|
297
|
+
const toolMessages = request.messages.filter(m => m.role === 'tool')
|
|
298
|
+
if (toolMessages.length > 0 && workerACalls > 3) {
|
|
299
|
+
return { content: 'A done', toolCalls: [], finishReason: 'stop', metrics: MockLLMProvider.defaultMetrics() }
|
|
300
|
+
}
|
|
301
|
+
return {
|
|
302
|
+
content: null,
|
|
303
|
+
toolCalls: [{ id: ToolCallId('tc4'), name: 'send_message', input: { to: 'parent', message: 'Final report from A' } }],
|
|
304
|
+
finishReason: 'stop',
|
|
305
|
+
metrics: MockLLMProvider.defaultMetrics(),
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
return { content: 'A waiting', toolCalls: [], finishReason: 'stop', metrics: MockLLMProvider.defaultMetrics() }
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
// Worker B
|
|
312
|
+
workerBCalls++
|
|
313
|
+
if (workerBCalls === 1) {
|
|
314
|
+
// B reports to A
|
|
315
|
+
return {
|
|
316
|
+
content: null,
|
|
317
|
+
toolCalls: [{ id: ToolCallId('tc3'), name: 'send_message', input: { to: 'parent', message: 'B result: success' } }],
|
|
318
|
+
finishReason: 'stop',
|
|
319
|
+
metrics: MockLLMProvider.defaultMetrics(),
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
return { content: 'B done', toolCalls: [], finishReason: 'stop', metrics: MockLLMProvider.defaultMetrics() }
|
|
323
|
+
},
|
|
324
|
+
})
|
|
325
|
+
|
|
326
|
+
const session = await harness.createSession('test')
|
|
327
|
+
await session.sendAndWaitForIdle('Start', { timeoutMs: 10000 })
|
|
328
|
+
|
|
329
|
+
// Verify hierarchy
|
|
330
|
+
expect(session.state.agents.has(AgentId('worker_a_1'))).toBe(true)
|
|
331
|
+
expect(session.state.agents.has(AgentId('worker_b_1'))).toBe(true)
|
|
332
|
+
expect(session.state.agents.get(AgentId('worker_a_1'))!.parentId).toBe(session.getEntryAgentId()!)
|
|
333
|
+
expect(session.state.agents.get(AgentId('worker_b_1'))!.parentId).toBe(AgentId('worker_a_1'))
|
|
334
|
+
|
|
335
|
+
// Orchestrator received final report from A
|
|
336
|
+
expect(orchestratorSawFinalReport).toBe(true)
|
|
337
|
+
|
|
338
|
+
await harness.shutdown()
|
|
339
|
+
})
|
|
340
|
+
})
|