byterover-cli 1.6.0 → 1.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -10
- package/dist/agent/core/domain/agent/agent-registry.d.ts +90 -0
- package/dist/agent/core/domain/agent/agent-registry.js +152 -0
- package/dist/agent/core/domain/environment/types.d.ts +20 -0
- package/dist/agent/core/domain/folder-pack/index.d.ts +1 -0
- package/dist/agent/core/domain/folder-pack/types.d.ts +101 -0
- package/dist/agent/core/domain/sandbox/constants.d.ts +27 -0
- package/dist/agent/core/domain/sandbox/constants.js +134 -0
- package/dist/agent/core/domain/sandbox/index.d.ts +2 -0
- package/dist/agent/core/domain/sandbox/index.js +2 -0
- package/dist/agent/core/domain/sandbox/types.d.ts +30 -0
- package/dist/agent/core/domain/sandbox/types.js +5 -0
- package/dist/agent/core/domain/storage/history-types.d.ts +38 -0
- package/dist/agent/core/domain/storage/message-storage-types.d.ts +327 -0
- package/dist/agent/core/domain/streaming/types.d.ts +119 -0
- package/dist/agent/core/domain/system-prompt/types.d.ts +175 -0
- package/dist/agent/core/domain/tools/constants.d.ts +33 -0
- package/dist/agent/core/domain/tools/constants.js +29 -0
- package/dist/agent/core/interfaces/cipher-services.d.ts +82 -0
- package/dist/agent/core/interfaces/i-blob-storage.d.ts +84 -0
- package/dist/agent/core/interfaces/i-chat-session.d.ts +107 -0
- package/dist/agent/core/interfaces/i-cipher-agent.d.ts +125 -0
- package/dist/agent/core/interfaces/i-content-generator.d.ts +148 -0
- package/dist/agent/core/interfaces/i-curate-service.d.ts +185 -0
- package/dist/agent/core/interfaces/i-curate-service.js +5 -0
- package/dist/agent/core/interfaces/i-document-parser-service.d.ts +54 -0
- package/dist/agent/core/interfaces/i-file-system.d.ts +79 -0
- package/dist/agent/core/interfaces/i-folder-pack-service.d.ts +34 -0
- package/dist/agent/core/interfaces/i-history-storage.d.ts +53 -0
- package/dist/agent/core/interfaces/i-llm-service.d.ts +61 -0
- package/dist/agent/core/interfaces/i-process-service.d.ts +65 -0
- package/dist/agent/core/interfaces/i-sandbox-service.d.ts +58 -0
- package/dist/agent/core/interfaces/i-session-persistence.d.ts +133 -0
- package/dist/agent/core/interfaces/i-system-prompt-contributor.d.ts +25 -0
- package/dist/agent/core/interfaces/i-todo-storage.d.ts +24 -0
- package/dist/agent/core/interfaces/i-tool-plugin.d.ts +90 -0
- package/dist/agent/core/interfaces/i-tool-provider.d.ts +65 -0
- package/dist/agent/core/interfaces/index.d.ts +32 -0
- package/dist/agent/infra/agent/agent-error.d.ts +54 -0
- package/dist/agent/infra/agent/agent-error.js +79 -0
- package/dist/agent/infra/agent/agent-schemas.d.ts +264 -0
- package/dist/agent/infra/agent/agent-state-manager.d.ts +140 -0
- package/dist/agent/infra/agent/base-agent.d.ts +118 -0
- package/dist/agent/infra/agent/cipher-agent.d.ts +173 -0
- package/dist/agent/infra/agent/cipher-agent.js +564 -0
- package/dist/agent/infra/agent/interactive-commands.d.ts +16 -0
- package/dist/agent/infra/agent/interactive-loop.d.ts +24 -0
- package/dist/agent/infra/agent/service-initializer.d.ts +79 -0
- package/dist/agent/infra/agent/service-initializer.js +298 -0
- package/dist/agent/infra/agent/types.d.ts +35 -0
- package/dist/agent/infra/blob/blob-reference-resolver.d.ts +107 -0
- package/dist/agent/infra/blob/blob-storage-factory.d.ts +13 -0
- package/dist/agent/infra/blob/index.d.ts +10 -0
- package/dist/agent/infra/blob/index.js +12 -0
- package/dist/agent/infra/blob/migrations.d.ts +63 -0
- package/dist/agent/infra/blob/sqlite-blob-storage.d.ts +82 -0
- package/dist/agent/infra/blob/sqlite-blob-storage.js +304 -0
- package/dist/agent/infra/display/todo-display.d.ts +23 -0
- package/dist/agent/infra/document-parser/document-parser-service.d.ts +31 -0
- package/dist/agent/infra/document-parser/document-parser-service.js +68 -0
- package/dist/agent/infra/document-parser/index.d.ts +2 -0
- package/dist/agent/infra/document-parser/index.js +2 -0
- package/dist/agent/infra/document-parser/office-parser.d.ts +45 -0
- package/dist/agent/infra/document-parser/office-parser.js +108 -0
- package/dist/agent/infra/environment/environment-context-builder.d.ts +78 -0
- package/dist/agent/infra/environment/environment-context-builder.js +256 -0
- package/dist/agent/infra/events/event-emitter.d.ts +137 -0
- package/dist/agent/infra/file-system/binary-utils.d.ts +59 -0
- package/dist/agent/infra/file-system/binary-utils.js +225 -0
- package/dist/agent/infra/file-system/file-system-service.d.ts +134 -0
- package/dist/agent/infra/file-system/file-system-service.js +1021 -0
- package/dist/agent/infra/file-system/path-validator.d.ts +101 -0
- package/dist/agent/infra/file-system/path-validator.js +289 -0
- package/dist/agent/infra/file-system/pdf-extractor.d.ts +100 -0
- package/dist/agent/infra/file-system/pdf-extractor.js +226 -0
- package/dist/agent/infra/folder-pack/default-ignore.d.ts +11 -0
- package/dist/agent/infra/folder-pack/default-ignore.js +125 -0
- package/dist/agent/infra/folder-pack/folder-pack-service.d.ts +57 -0
- package/dist/agent/infra/folder-pack/folder-pack-service.js +372 -0
- package/dist/agent/infra/folder-pack/index.d.ts +3 -0
- package/dist/agent/infra/folder-pack/index.js +3 -0
- package/dist/agent/infra/folder-pack/output-generator.d.ts +17 -0
- package/dist/agent/infra/folder-pack/output-generator.js +156 -0
- package/dist/agent/infra/http/internal-llm-http-service.d.ts +133 -0
- package/dist/agent/infra/http/internal-llm-http-service.js +265 -0
- package/dist/agent/infra/llm/capability-cache.d.ts +87 -0
- package/dist/agent/infra/llm/capability-cache.js +125 -0
- package/dist/agent/infra/llm/context/compaction/compaction-service.d.ts +138 -0
- package/dist/agent/infra/llm/context/compression/enhanced-compaction.d.ts +112 -0
- package/dist/agent/infra/llm/context/compression/filter-compacted.d.ts +83 -0
- package/dist/agent/infra/llm/context/compression/middle-removal.d.ts +40 -0
- package/dist/agent/infra/llm/context/compression/middle-removal.js +75 -0
- package/dist/agent/infra/llm/context/compression/oldest-removal.d.ts +38 -0
- package/dist/agent/infra/llm/context/compression/oldest-removal.js +50 -0
- package/dist/agent/infra/llm/context/compression/reactive-overflow.d.ts +107 -0
- package/dist/agent/infra/llm/context/compression/reactive-overflow.js +272 -0
- package/dist/agent/infra/llm/context/compression/types.d.ts +36 -0
- package/dist/agent/infra/llm/context/context-manager.d.ts +332 -0
- package/dist/agent/infra/llm/context/context-manager.js +671 -0
- package/dist/agent/infra/llm/context/utils.d.ts +17 -0
- package/dist/agent/infra/llm/formatters/claude-formatter.d.ts +54 -0
- package/dist/agent/infra/llm/formatters/gemini-formatter.d.ts +82 -0
- package/dist/agent/infra/llm/formatters/openrouter-formatter.d.ts +47 -0
- package/dist/agent/infra/llm/formatters/openrouter-formatter.js +236 -0
- package/dist/agent/infra/llm/generators/byterover-content-generator.d.ts +91 -0
- package/dist/agent/infra/llm/generators/logging-content-generator.d.ts +88 -0
- package/dist/agent/infra/llm/generators/logging-content-generator.js +126 -0
- package/dist/agent/infra/llm/generators/openrouter-content-generator.d.ts +94 -0
- package/dist/agent/infra/llm/generators/retryable-content-generator.d.ts +90 -0
- package/dist/agent/infra/llm/generators/retryable-content-generator.js +154 -0
- package/dist/agent/infra/llm/index.d.ts +9 -0
- package/dist/agent/infra/llm/index.js +13 -0
- package/dist/agent/infra/llm/internal-llm-service.d.ts +362 -0
- package/dist/agent/infra/llm/internal-llm-service.js +1039 -0
- package/dist/agent/infra/llm/openrouter-llm-service.d.ts +215 -0
- package/dist/agent/infra/llm/openrouter-llm-service.js +572 -0
- package/dist/agent/infra/llm/response-validator.d.ts +89 -0
- package/dist/agent/infra/llm/sanitization/tool-sanitizer.d.ts +74 -0
- package/dist/agent/infra/llm/sanitization/tool-sanitizer.js +398 -0
- package/dist/agent/infra/llm/stream-processor.d.ts +178 -0
- package/dist/agent/infra/llm/thought-parser.js +217 -0
- package/dist/agent/infra/llm/tokenizers/claude-tokenizer.d.ts +40 -0
- package/dist/agent/infra/llm/tokenizers/claude-tokenizer.js +48 -0
- package/dist/agent/infra/llm/tokenizers/default-tokenizer.d.ts +31 -0
- package/dist/agent/infra/llm/tokenizers/gemini-tokenizer.d.ts +38 -0
- package/dist/agent/infra/llm/tokenizers/gemini-tokenizer.js +46 -0
- package/dist/agent/infra/llm/tokenizers/openrouter-tokenizer.d.ts +37 -0
- package/dist/agent/infra/llm/tokenizers/openrouter-tokenizer.js +49 -0
- package/dist/agent/infra/llm/tool-output-processor.d.ts +178 -0
- package/dist/agent/infra/llm/transformers/openrouter-stream-transformer.d.ts +49 -0
- package/dist/agent/infra/llm/transformers/openrouter-stream-transformer.js +270 -0
- package/dist/agent/infra/logger/console-logger.d.ts +42 -0
- package/dist/agent/infra/logger/event-based-logger.d.ts +54 -0
- package/dist/agent/infra/memory/index.d.ts +6 -0
- package/dist/agent/infra/memory/index.js +7 -0
- package/dist/agent/infra/memory/memory-manager.d.ts +136 -0
- package/dist/agent/infra/memory/memory-manager.js +523 -0
- package/dist/agent/infra/process/command-validator.d.ts +82 -0
- package/dist/agent/infra/process/process-service.d.ts +127 -0
- package/dist/agent/infra/process/process-service.js +528 -0
- package/dist/agent/infra/sandbox/curate-service.d.ts +33 -0
- package/dist/agent/infra/sandbox/curate-service.js +142 -0
- package/dist/agent/infra/sandbox/index.d.ts +2 -0
- package/dist/agent/infra/sandbox/index.js +2 -0
- package/dist/agent/infra/sandbox/local-sandbox.d.ts +45 -0
- package/dist/agent/infra/sandbox/local-sandbox.js +222 -0
- package/dist/agent/infra/sandbox/sandbox-service.d.ts +76 -0
- package/dist/agent/infra/sandbox/sandbox-service.js +118 -0
- package/dist/agent/infra/sandbox/tools-sdk.d.ts +157 -0
- package/dist/agent/infra/sandbox/tools-sdk.js +88 -0
- package/dist/agent/infra/session/chat-session.d.ts +141 -0
- package/dist/agent/infra/session/chat-session.js +372 -0
- package/dist/agent/infra/session/index.d.ts +7 -0
- package/dist/agent/infra/session/index.js +7 -0
- package/dist/agent/infra/session/session-manager.d.ts +210 -0
- package/dist/agent/infra/session/session-metadata-store.d.ts +52 -0
- package/dist/agent/infra/session/session-metadata-store.js +406 -0
- package/dist/agent/infra/session/session-status.d.ts +137 -0
- package/dist/agent/infra/storage/blob-history-storage.d.ts +76 -0
- package/dist/agent/infra/storage/dual-format-history-storage.d.ts +77 -0
- package/dist/agent/infra/storage/granular-history-storage.d.ts +65 -0
- package/dist/agent/infra/storage/message-storage-service.d.ts +171 -0
- package/dist/agent/infra/storage/message-storage-service.js +782 -0
- package/dist/agent/infra/storage/sqlite-key-storage.d.ts +105 -0
- package/dist/agent/infra/storage/sqlite-key-storage.js +404 -0
- package/dist/agent/infra/storage/tool-part-factory.d.ts +116 -0
- package/dist/agent/infra/system-prompt/contributors/agent-prompt-contributor.d.ts +59 -0
- package/dist/agent/infra/system-prompt/contributors/agent-prompt-contributor.js +131 -0
- package/dist/agent/infra/system-prompt/contributors/companion-contributor.d.ts +54 -0
- package/dist/agent/infra/system-prompt/contributors/companion-contributor.js +107 -0
- package/dist/agent/infra/system-prompt/contributors/context-tree-structure-contributor.d.ts +67 -0
- package/dist/agent/infra/system-prompt/contributors/context-tree-structure-contributor.js +220 -0
- package/dist/agent/infra/system-prompt/contributors/datetime-contributor.d.ts +25 -0
- package/dist/agent/infra/system-prompt/contributors/environment-contributor.d.ts +25 -0
- package/dist/agent/infra/system-prompt/contributors/file-contributor.d.ts +60 -0
- package/dist/agent/infra/system-prompt/contributors/file-contributor.js +128 -0
- package/dist/agent/infra/system-prompt/contributors/memory-contributor.d.ts +40 -0
- package/dist/agent/infra/system-prompt/contributors/static-contributor.d.ts +26 -0
- package/dist/agent/infra/system-prompt/schemas.d.ts +157 -0
- package/dist/agent/infra/system-prompt/system-prompt-manager.d.ts +136 -0
- package/dist/agent/infra/system-prompt/system-prompt-manager.js +307 -0
- package/dist/agent/infra/todos/todo-storage-service.d.ts +26 -0
- package/dist/agent/infra/tools/core-tool-scheduler.d.ts +99 -0
- package/dist/agent/infra/tools/core-tool-scheduler.js +158 -0
- package/dist/agent/infra/tools/default-policy-rules.d.ts +26 -0
- package/dist/agent/infra/tools/implementations/bash-exec-tool.d.ts +13 -0
- package/dist/agent/infra/tools/implementations/bash-exec-tool.js +110 -0
- package/dist/agent/infra/tools/implementations/bash-output-tool.d.ts +12 -0
- package/dist/agent/infra/tools/implementations/bash-output-tool.js +43 -0
- package/dist/agent/infra/tools/implementations/batch-tool.d.ts +12 -0
- package/dist/agent/infra/tools/implementations/batch-tool.js +142 -0
- package/dist/agent/infra/tools/implementations/code-exec-tool.d.ts +16 -0
- package/dist/agent/infra/tools/implementations/code-exec-tool.js +92 -0
- package/dist/agent/infra/tools/implementations/create-knowledge-topic-tool.d.ts +11 -0
- package/dist/agent/infra/tools/implementations/create-knowledge-topic-tool.js +149 -0
- package/dist/agent/infra/tools/implementations/curate-tool.d.ts +346 -0
- package/dist/agent/infra/tools/implementations/curate-tool.js +933 -0
- package/dist/agent/infra/tools/implementations/delete-memory-tool.d.ts +12 -0
- package/dist/agent/infra/tools/implementations/delete-memory-tool.js +37 -0
- package/dist/agent/infra/tools/implementations/edit-file-tool.d.ts +13 -0
- package/dist/agent/infra/tools/implementations/edit-file-tool.js +50 -0
- package/dist/agent/infra/tools/implementations/edit-memory-tool.d.ts +13 -0
- package/dist/agent/infra/tools/implementations/edit-memory-tool.js +53 -0
- package/dist/agent/infra/tools/implementations/glob-files-tool.d.ts +18 -0
- package/dist/agent/infra/tools/implementations/glob-files-tool.js +70 -0
- package/dist/agent/infra/tools/implementations/grep-content-tool.d.ts +12 -0
- package/dist/agent/infra/tools/implementations/grep-content-tool.js +77 -0
- package/dist/agent/infra/tools/implementations/kill-process-tool.d.ts +12 -0
- package/dist/agent/infra/tools/implementations/kill-process-tool.js +55 -0
- package/dist/agent/infra/tools/implementations/list-directory-tool.d.ts +12 -0
- package/dist/agent/infra/tools/implementations/list-directory-tool.js +52 -0
- package/dist/agent/infra/tools/implementations/list-memories-tool.d.ts +12 -0
- package/dist/agent/infra/tools/implementations/list-memories-tool.js +63 -0
- package/dist/agent/infra/tools/implementations/read-file-tool.d.ts +19 -0
- package/dist/agent/infra/tools/implementations/read-file-tool.js +96 -0
- package/dist/agent/infra/tools/implementations/read-memory-tool.d.ts +12 -0
- package/dist/agent/infra/tools/implementations/read-memory-tool.js +39 -0
- package/dist/agent/infra/tools/implementations/read-todos-tool.d.ts +11 -0
- package/dist/agent/infra/tools/implementations/read-todos-tool.js +39 -0
- package/dist/agent/infra/tools/implementations/search-history-tool.d.ts +10 -0
- package/dist/agent/infra/tools/implementations/search-history-tool.js +36 -0
- package/dist/agent/infra/tools/implementations/search-knowledge-service.d.ts +40 -0
- package/dist/agent/infra/tools/implementations/search-knowledge-service.js +302 -0
- package/dist/agent/infra/tools/implementations/search-knowledge-tool.d.ts +20 -0
- package/dist/agent/infra/tools/implementations/search-knowledge-tool.js +40 -0
- package/dist/agent/infra/tools/implementations/spec-analyze-tool.d.ts +7 -0
- package/dist/agent/infra/tools/implementations/spec-analyze-tool.js +78 -0
- package/dist/agent/infra/tools/implementations/write-file-tool.d.ts +12 -0
- package/dist/agent/infra/tools/implementations/write-file-tool.js +52 -0
- package/dist/agent/infra/tools/implementations/write-memory-tool.d.ts +13 -0
- package/dist/agent/infra/tools/implementations/write-memory-tool.js +52 -0
- package/dist/agent/infra/tools/implementations/write-todos-tool.d.ts +13 -0
- package/dist/agent/infra/tools/implementations/write-todos-tool.js +121 -0
- package/dist/agent/infra/tools/index.d.ts +19 -0
- package/dist/agent/infra/tools/index.js +20 -0
- package/dist/agent/infra/tools/plugins/logging-plugin.d.ts +28 -0
- package/dist/agent/infra/tools/plugins/plugin-manager.d.ts +81 -0
- package/dist/agent/infra/tools/plugins/plugin-manager.js +122 -0
- package/dist/agent/infra/tools/policy-engine.d.ts +80 -0
- package/dist/agent/infra/tools/streaming/metadata-handler.d.ts +31 -0
- package/dist/agent/infra/tools/tool-description-loader.js +108 -0
- package/dist/agent/infra/tools/tool-invocation.d.ts +216 -0
- package/dist/agent/infra/tools/tool-invocation.js +294 -0
- package/dist/agent/infra/tools/tool-manager.d.ts +178 -0
- package/dist/agent/infra/tools/tool-manager.js +328 -0
- package/dist/agent/infra/tools/tool-provider-getter.d.ts +6 -0
- package/dist/agent/infra/tools/tool-provider.d.ts +102 -0
- package/dist/agent/infra/tools/tool-provider.js +251 -0
- package/dist/agent/infra/tools/tool-registry.d.ts +74 -0
- package/dist/agent/infra/tools/tool-registry.js +221 -0
- package/dist/agent/infra/tools/utils/schema-converter.d.ts +10 -0
- package/dist/agent/infra/tools/utils/schema-converter.js +27 -0
- package/dist/agent/resources/prompts/system-prompt.yml +505 -0
- package/dist/agent/resources/tools/code_exec.txt +126 -0
- package/dist/oclif/commands/curate.d.ts +2 -1
- package/dist/oclif/commands/curate.js +19 -7
- package/dist/oclif/commands/hook-prompt-submit.d.ts +1 -1
- package/dist/oclif/commands/hook-prompt-submit.js +3 -3
- package/dist/oclif/commands/init.d.ts +1 -1
- package/dist/oclif/commands/init.js +18 -18
- package/dist/oclif/commands/login.js +12 -12
- package/dist/oclif/commands/main.js +24 -10
- package/dist/oclif/commands/mcp.js +2 -2
- package/dist/oclif/commands/pull.d.ts +1 -1
- package/dist/oclif/commands/pull.js +12 -12
- package/dist/oclif/commands/push.d.ts +1 -1
- package/dist/oclif/commands/push.js +12 -12
- package/dist/oclif/commands/query.d.ts +1 -1
- package/dist/oclif/commands/query.js +7 -7
- package/dist/oclif/commands/status.d.ts +1 -1
- package/dist/oclif/commands/status.js +9 -9
- package/dist/oclif/hooks/init/update-notifier.d.ts +1 -1
- package/dist/oclif/hooks/init/update-notifier.js +2 -2
- package/dist/oclif/hooks/prerun/validate-brv-config-version.d.ts +1 -1
- package/dist/oclif/hooks/prerun/validate-brv-config-version.js +2 -2
- package/dist/server/config/auth.config.d.ts +32 -0
- package/dist/server/core/domain/entities/agent.js +106 -0
- package/dist/server/core/domain/entities/brv-config.d.ts +75 -0
- package/dist/server/core/domain/entities/brv-config.js +182 -0
- package/dist/server/core/domain/entities/space.d.ts +36 -0
- package/dist/server/core/domain/entities/space.js +76 -0
- package/dist/server/core/domain/entities/team.d.ts +44 -0
- package/dist/server/core/domain/entities/team.js +96 -0
- package/dist/server/core/domain/entities/user.d.ts +31 -0
- package/dist/server/core/domain/entities/user.js +52 -0
- package/dist/server/core/domain/knowledge/relation-parser.d.ts +94 -0
- package/dist/server/core/domain/knowledge/relation-parser.js +131 -0
- package/dist/server/core/domain/transport/schemas.d.ts +1252 -0
- package/dist/server/core/domain/transport/schemas.js +617 -0
- package/dist/server/core/interfaces/auth/i-auth-service.d.ts +35 -0
- package/dist/server/core/interfaces/auth/i-token-store.d.ts +22 -0
- package/dist/server/core/interfaces/connectors/connector-types.d.ts +83 -0
- package/dist/server/core/interfaces/connectors/i-connector-manager.d.ts +79 -0
- package/dist/server/core/interfaces/connectors/i-connector.d.ts +63 -0
- package/dist/server/core/interfaces/context-tree/i-context-file-reader.d.ts +35 -0
- package/dist/server/core/interfaces/context-tree/i-context-tree-snapshot-service.d.ts +36 -0
- package/dist/server/core/interfaces/context-tree/i-context-tree-writer-service.d.ts +32 -0
- package/dist/server/core/interfaces/executor/i-curate-executor.d.ts +36 -0
- package/dist/server/core/interfaces/executor/i-folder-pack-executor.d.ts +39 -0
- package/dist/server/core/interfaces/executor/i-query-executor.d.ts +32 -0
- package/dist/server/core/interfaces/executor/index.d.ts +3 -0
- package/dist/server/core/interfaces/executor/index.js +3 -0
- package/dist/server/core/interfaces/noop-implementations.d.ts +53 -0
- package/dist/server/core/interfaces/services/i-cogit-pull-service.d.ts +23 -0
- package/dist/server/core/interfaces/services/i-cogit-push-service.d.ts +27 -0
- package/dist/server/core/interfaces/services/i-http-client.d.ts +41 -0
- package/dist/server/core/interfaces/services/i-legacy-rule-detector.d.ts +56 -0
- package/dist/server/core/interfaces/services/i-memory-retrieval-service.d.ts +39 -0
- package/dist/server/core/interfaces/services/i-memory-storage-service.d.ts +53 -0
- package/dist/server/core/interfaces/services/i-rule-template-service.d.ts +15 -0
- package/dist/server/core/interfaces/services/i-space-service.d.ts +27 -0
- package/dist/server/core/interfaces/services/i-team-service.d.ts +28 -0
- package/dist/server/core/interfaces/services/i-tracking-service.d.ts +21 -0
- package/dist/server/core/interfaces/services/i-user-service.d.ts +26 -0
- package/dist/server/core/interfaces/services/i-workspace-detector-service.d.ts +8 -0
- package/dist/server/core/interfaces/storage/i-global-config-store.d.ts +34 -0
- package/dist/server/core/interfaces/storage/i-mcp-config-writer.d.ts +40 -0
- package/dist/server/core/interfaces/storage/i-project-config-store.d.ts +26 -0
- package/dist/server/core/interfaces/transport/index.d.ts +1 -0
- package/dist/server/core/interfaces/transport/index.js +2 -0
- package/dist/server/core/interfaces/usecase/i-curate-use-case.d.ts +14 -0
- package/dist/server/core/interfaces/usecase/i-push-use-case.js +1 -0
- package/dist/server/core/interfaces/usecase/i-query-use-case.js +1 -0
- package/dist/server/core/interfaces/usecase/i-reset-use-case.js +1 -0
- package/dist/server/core/interfaces/usecase/i-space-list-use-case.js +1 -0
- package/dist/server/core/interfaces/usecase/i-space-switch-use-case.js +1 -0
- package/dist/server/core/interfaces/usecase/i-status-use-case.js +1 -0
- package/dist/server/infra/auth/oauth-service.d.ts +64 -0
- package/dist/server/infra/auth/oidc-discovery-service.d.ts +51 -0
- package/dist/server/infra/browser/system-browser-launcher.d.ts +10 -0
- package/dist/server/infra/cogit/context-tree-to-push-context-mapper.d.ts +21 -0
- package/dist/server/infra/cogit/http-cogit-pull-service.d.ts +15 -0
- package/dist/server/infra/cogit/http-cogit-push-service.d.ts +17 -0
- package/dist/server/infra/config/file-config-store.d.ts +19 -0
- package/dist/server/infra/connectors/connector-manager.d.ts +33 -0
- package/dist/server/infra/connectors/connector-manager.js +206 -0
- package/dist/server/infra/connectors/hook/hook-connector.d.ts +46 -0
- package/dist/server/infra/connectors/hook/hook-connector.js +246 -0
- package/dist/server/infra/connectors/mcp/json-mcp-config-writer.d.ts +26 -0
- package/dist/server/infra/connectors/mcp/mcp-connector.d.ts +80 -0
- package/dist/server/infra/connectors/mcp/mcp-connector.js +339 -0
- package/dist/server/infra/connectors/mcp/toml-mcp-config-writer.d.ts +45 -0
- package/dist/server/infra/connectors/rules/legacy-rule-detector.d.ts +21 -0
- package/dist/server/infra/connectors/rules/rules-connector-config.d.ts +99 -0
- package/dist/server/infra/connectors/rules/rules-connector.d.ts +34 -0
- package/dist/server/infra/connectors/rules/rules-connector.js +155 -0
- package/dist/server/infra/connectors/shared/rule-file-manager.d.ts +72 -0
- package/dist/server/infra/connectors/shared/template-service.d.ts +27 -0
- package/dist/server/infra/connectors/skill/skill-connector.d.ts +39 -0
- package/dist/server/infra/connectors/skill/skill-connector.js +175 -0
- package/dist/server/infra/connectors/skill/skill-content-loader.d.ts +18 -0
- package/dist/server/infra/connectors/skill/skill-content-loader.js +33 -0
- package/dist/server/infra/context-tree/file-context-file-reader.d.ts +14 -0
- package/dist/server/infra/context-tree/file-context-tree-service.d.ts +14 -0
- package/dist/server/infra/context-tree/file-context-tree-snapshot-service.d.ts +34 -0
- package/dist/server/infra/context-tree/file-context-tree-writer-service.d.ts +28 -0
- package/dist/server/infra/context-tree/path-utils.d.ts +7 -0
- package/dist/server/infra/context-tree/path-utils.js +7 -0
- package/dist/server/infra/executor/curate-executor.d.ts +46 -0
- package/dist/server/infra/executor/curate-executor.js +132 -0
- package/dist/server/infra/executor/folder-pack-executor.d.ts +27 -0
- package/dist/server/infra/executor/folder-pack-executor.js +82 -0
- package/dist/server/infra/executor/index.d.ts +3 -0
- package/dist/server/infra/executor/index.js +3 -0
- package/dist/server/infra/executor/query-executor.d.ts +26 -0
- package/dist/server/infra/executor/query-executor.js +49 -0
- package/dist/server/infra/executor/task-processor.d.ts +89 -0
- package/dist/server/infra/executor/task-processor.js +133 -0
- package/dist/server/infra/file/fs-file-service.d.ts +44 -0
- package/dist/server/infra/http/authenticated-http-client.d.ts +74 -0
- package/dist/server/infra/http/authenticated-http-client.js +159 -0
- package/dist/server/infra/http/callback-handler.d.ts +13 -0
- package/dist/server/infra/mcp/mcp-server.js +179 -0
- package/dist/server/infra/mcp/tools/brv-curate-tool.d.ts +34 -0
- package/dist/server/infra/mcp/tools/brv-curate-tool.js +93 -0
- package/dist/server/infra/mcp/tools/brv-query-tool.d.ts +17 -0
- package/dist/server/infra/mcp/tools/brv-query-tool.js +62 -0
- package/dist/server/infra/mcp/tools/task-result-waiter.d.ts +30 -0
- package/dist/server/infra/memory/http-memory-retrieval-service.d.ts +18 -0
- package/dist/server/infra/memory/http-memory-storage-service.d.ts +18 -0
- package/dist/server/infra/process/agent-worker.js +1392 -0
- package/dist/server/infra/process/inline-agent-executor.d.ts +32 -0
- package/dist/server/infra/process/inline-agent-executor.js +267 -0
- package/dist/server/infra/process/process-manager.js +765 -0
- package/dist/server/infra/process/transport-handlers.js +472 -0
- package/dist/server/infra/space/http-space-service.d.ts +20 -0
- package/dist/server/infra/space/http-space-service.js +74 -0
- package/dist/server/infra/storage/file-global-config-store.d.ts +22 -0
- package/dist/server/infra/storage/file-onboarding-preference-store.d.ts +10 -0
- package/dist/server/infra/storage/file-token-store.d.ts +31 -0
- package/dist/server/infra/storage/keychain-token-store.d.ts +13 -0
- package/dist/server/infra/storage/token-store.d.ts +11 -0
- package/dist/server/infra/team/http-team-service.d.ts +21 -0
- package/dist/server/infra/template/fs-template-loader.d.ts +33 -0
- package/dist/server/infra/terminal/headless-terminal.d.ts +91 -0
- package/dist/server/infra/terminal/oclif-terminal.d.ts +19 -0
- package/dist/server/infra/terminal/repl-terminal.d.ts +31 -0
- package/dist/server/infra/tracking/mixpanel-tracking-service.d.ts +24 -0
- package/dist/server/infra/transport/index.d.ts +3 -0
- package/dist/server/infra/transport/index.js +6 -0
- package/dist/server/infra/transport/transport-factory.d.ts +17 -0
- package/dist/server/infra/transport/transport-factory.js +31 -0
- package/dist/server/infra/usecase/connectors-use-case.d.ts +63 -0
- package/dist/server/infra/usecase/connectors-use-case.js +234 -0
- package/dist/server/infra/usecase/curate-use-case.d.ts +59 -0
- package/dist/server/infra/usecase/curate-use-case.js +269 -0
- package/dist/server/infra/usecase/init-use-case.d.ts +126 -0
- package/dist/server/infra/usecase/login-use-case.d.ts +30 -0
- package/dist/server/infra/usecase/logout-use-case.d.ts +19 -0
- package/dist/server/infra/usecase/logout-use-case.js +48 -0
- package/dist/server/infra/usecase/pull-use-case.d.ts +49 -0
- package/dist/server/infra/usecase/pull-use-case.js +147 -0
- package/dist/server/infra/usecase/push-use-case.d.ts +50 -0
- package/dist/server/infra/usecase/push-use-case.js +191 -0
- package/dist/server/infra/usecase/query-use-case.d.ts +73 -0
- package/dist/server/infra/usecase/query-use-case.js +410 -0
- package/dist/server/infra/usecase/reset-use-case.d.ts +21 -0
- package/dist/server/infra/usecase/space-list-use-case.d.ts +27 -0
- package/dist/server/infra/usecase/space-switch-use-case.d.ts +26 -0
- package/dist/server/infra/usecase/space-switch-use-case.js +110 -0
- package/dist/server/infra/usecase/status-use-case.d.ts +75 -0
- package/dist/server/infra/usecase/status-use-case.js +268 -0
- package/dist/server/infra/user/http-user-service.d.ts +13 -0
- package/dist/server/infra/user/http-user-service.js +32 -0
- package/dist/server/infra/workspace/workspace-detector-service.d.ts +57 -0
- package/dist/server/templates/sections/brv-instructions.md +104 -0
- package/dist/server/utils/file-content-reader.d.ts +81 -0
- package/dist/server/utils/file-content-reader.js +180 -0
- package/dist/server/utils/file-validator.js +84 -0
- package/dist/server/utils/type-guards.d.ts +16 -0
- package/dist/tui/app.js +16 -13
- package/dist/tui/commands/arg-parser.d.ts +102 -0
- package/dist/tui/commands/arg-parser.js +186 -0
- package/dist/tui/commands/connectors-command.d.ts +8 -0
- package/dist/tui/commands/connectors-command.js +49 -0
- package/dist/tui/commands/curate-command.d.ts +9 -0
- package/dist/tui/commands/curate-command.js +80 -0
- package/dist/tui/commands/index.d.ts +8 -0
- package/dist/tui/commands/index.js +45 -0
- package/dist/tui/commands/init-command.d.ts +7 -0
- package/dist/tui/commands/init-command.js +87 -0
- package/dist/tui/commands/login-command.d.ts +7 -0
- package/dist/tui/commands/login-command.js +50 -0
- package/dist/tui/commands/logout-command.d.ts +5 -0
- package/dist/tui/commands/logout-command.js +46 -0
- package/dist/tui/commands/model-command.d.ts +13 -0
- package/dist/tui/commands/model-command.js +212 -0
- package/dist/tui/commands/new-command.d.ts +14 -0
- package/dist/tui/commands/new-command.js +61 -0
- package/dist/tui/commands/provider-command.d.ts +13 -0
- package/dist/tui/commands/provider-command.js +181 -0
- package/dist/tui/commands/pull-command.d.ts +5 -0
- package/dist/tui/commands/pull-command.js +61 -0
- package/dist/tui/commands/push-command.d.ts +5 -0
- package/dist/tui/commands/push-command.js +66 -0
- package/dist/tui/commands/query-command.d.ts +5 -0
- package/dist/tui/commands/query-command.js +63 -0
- package/dist/tui/commands/reset-command.d.ts +5 -0
- package/dist/tui/commands/reset-command.js +61 -0
- package/dist/tui/commands/space/index.d.ts +5 -0
- package/dist/tui/commands/space/index.js +14 -0
- package/dist/tui/commands/space/list-command.d.ts +5 -0
- package/dist/tui/commands/space/list-command.js +70 -0
- package/dist/tui/commands/space/switch-command.d.ts +5 -0
- package/dist/tui/commands/space/switch-command.js +35 -0
- package/dist/tui/commands/status-command.d.ts +5 -0
- package/dist/tui/commands/status-command.js +39 -0
- package/dist/tui/components/api-key-dialog.d.ts +1 -1
- package/dist/tui/components/command/command-output.d.ts +67 -0
- package/dist/tui/components/command/command-output.js +165 -0
- package/dist/tui/components/command/expanded-command-view.d.ts +21 -0
- package/dist/tui/components/command/expanded-command-view.js +78 -0
- package/dist/tui/components/command/index.d.ts +11 -0
- package/dist/tui/components/command/index.js +8 -0
- package/dist/tui/components/command/live-streaming-output.d.ts +19 -0
- package/dist/tui/components/command/live-streaming-output.js +34 -0
- package/dist/tui/components/command-details.d.ts +1 -0
- package/dist/tui/components/command-details.js +2 -2
- package/dist/tui/components/command-input.d.ts +6 -0
- package/dist/tui/components/command-input.js +282 -0
- package/dist/tui/components/command-item.d.ts +14 -0
- package/dist/tui/components/command-item.js +22 -0
- package/dist/tui/components/enter-prompt.js +3 -1
- package/dist/tui/components/execution/execution-input.d.ts +4 -0
- package/dist/tui/components/execution/execution-input.js +16 -4
- package/dist/tui/components/execution/execution-progress.js +13 -12
- package/dist/tui/components/execution/execution-status.d.ts +1 -1
- package/dist/tui/components/execution/execution-tool.d.ts +1 -1
- package/dist/tui/components/execution/execution-tool.js +72 -0
- package/dist/tui/components/execution/expanded-log-view.js +2 -2
- package/dist/tui/components/execution/index.d.ts +0 -1
- package/dist/tui/components/execution/index.js +0 -1
- package/dist/tui/components/execution/log-item.d.ts +1 -1
- package/dist/tui/components/execution/log-item.js +2 -3
- package/dist/tui/components/footer.js +8 -9
- package/dist/tui/components/header.d.ts +0 -4
- package/dist/tui/components/header.js +5 -30
- package/dist/tui/components/index.d.ts +8 -1
- package/dist/tui/components/index.js +6 -1
- package/dist/tui/components/init.js +0 -6
- package/dist/tui/components/list.d.ts +16 -0
- package/dist/tui/components/list.js +24 -0
- package/dist/tui/components/logo.js +2 -2
- package/dist/tui/components/message-item.d.ts +4 -0
- package/dist/tui/components/message-item.js +14 -4
- package/dist/tui/components/message-list.d.ts +16 -0
- package/dist/tui/components/message-list.js +120 -0
- package/dist/tui/components/onboarding/index.d.ts +0 -1
- package/dist/tui/components/onboarding/index.js +0 -1
- package/dist/tui/components/onboarding/welcome-box.js +3 -2
- package/dist/tui/components/onboarding-item.d.ts +17 -0
- package/dist/tui/components/onboarding-item.js +30 -0
- package/dist/tui/components/provider-dialog.d.ts +1 -1
- package/dist/tui/components/provider-dialog.js +1 -1
- package/dist/tui/components/suggestions.js +21 -10
- package/dist/tui/contexts/auth-context.d.ts +8 -5
- package/dist/tui/contexts/auth-context.js +45 -13
- package/dist/tui/contexts/commands-context.d.ts +9 -1
- package/dist/tui/contexts/commands-context.js +16 -5
- package/dist/tui/contexts/index.d.ts +0 -1
- package/dist/tui/contexts/index.js +0 -1
- package/dist/tui/contexts/mode-context.d.ts +2 -2
- package/dist/tui/contexts/mode-context.js +3 -13
- package/dist/tui/contexts/onboarding-context.d.ts +18 -30
- package/dist/tui/contexts/onboarding-context.js +134 -129
- package/dist/tui/contexts/services-context.d.ts +8 -5
- package/dist/tui/contexts/services-context.js +9 -2
- package/dist/tui/contexts/tasks-context.d.ts +4 -2
- package/dist/tui/contexts/tasks-context.js +31 -11
- package/dist/tui/contexts/theme-context.d.ts +1 -0
- package/dist/tui/contexts/theme-context.js +1 -0
- package/dist/tui/contexts/transport-context.d.ts +1 -1
- package/dist/tui/contexts/transport-context.js +3 -4
- package/dist/tui/hooks/index.d.ts +2 -1
- package/dist/tui/hooks/index.js +1 -1
- package/dist/tui/hooks/use-activity-logs.js +71 -13
- package/dist/tui/hooks/use-auth-polling.d.ts +3 -3
- package/dist/tui/hooks/use-auth-polling.js +6 -6
- package/dist/tui/hooks/use-onboarding-logs.d.ts +17 -0
- package/dist/tui/hooks/use-onboarding-logs.js +26 -0
- package/dist/tui/hooks/use-slash-command-processor.js +4 -3
- package/dist/tui/hooks/use-slash-completion.js +3 -3
- package/dist/tui/providers/app-providers.d.ts +9 -7
- package/dist/tui/providers/app-providers.js +3 -3
- package/dist/tui/repl-startup.d.ts +24 -0
- package/dist/tui/repl-startup.js +33 -0
- package/dist/tui/types/commands.d.ts +4 -2
- package/dist/tui/types/messages.d.ts +6 -2
- package/dist/tui/utils/transport-client-helper.d.ts +9 -0
- package/dist/tui/utils/transport-client-helper.js +99 -0
- package/dist/tui/views/index.d.ts +0 -2
- package/dist/tui/views/index.js +0 -2
- package/dist/tui/views/init-view.js +14 -2
- package/dist/tui/views/login-view.js +1 -1
- package/dist/tui/views/main-view.d.ts +12 -0
- package/dist/tui/views/main-view.js +20 -0
- package/node_modules/@campfirein/brv-transport-client/README.md +409 -0
- package/node_modules/@campfirein/brv-transport-client/dist/constants.d.ts +19 -0
- package/node_modules/@campfirein/brv-transport-client/dist/constants.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/constants.js +24 -0
- package/node_modules/@campfirein/brv-transport-client/dist/constants.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/entities/instance-info.d.ts +77 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/entities/instance-info.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/entities/instance-info.js +135 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/entities/instance-info.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/errors/connection-error.d.ts +63 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/errors/connection-error.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/errors/connection-error.js +104 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/errors/connection-error.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/errors/transport-error.d.ts +177 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/errors/transport-error.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/errors/transport-error.js +319 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/errors/transport-error.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/events/event-names.d.ts +216 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/events/event-names.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/events/event-names.js +172 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/events/event-names.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/events/index.d.ts +22 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/events/index.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/events/index.js +23 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/events/index.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/types.d.ts +47 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/types.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/types.js +7 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/types.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/common.d.ts +31 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/common.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/common.js +49 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/common.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/event-name-validator.d.ts +21 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/event-name-validator.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/event-name-validator.js +30 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/event-name-validator.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/index.d.ts +9 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/index.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/index.js +9 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/index.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/room-name-validator.d.ts +21 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/room-name-validator.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/room-name-validator.js +30 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/room-name-validator.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/url-validator.d.ts +29 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/url-validator.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/url-validator.js +61 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/url-validator.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-client-factory.d.ts +44 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-client-factory.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-client-factory.js +2 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-client-factory.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-client-logger.d.ts +45 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-client-logger.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-client-logger.js +2 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-client-logger.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-client.d.ts +170 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-client.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-client.js +2 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-client.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-connection-state.d.ts +78 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-connection-state.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-connection-state.js +2 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-connection-state.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-event-dispatcher.d.ts +33 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-event-dispatcher.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-event-dispatcher.js +2 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-event-dispatcher.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-force-reconnect-manager.d.ts +42 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-force-reconnect-manager.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-force-reconnect-manager.js +2 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-force-reconnect-manager.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-instance-discovery.d.ts +45 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-instance-discovery.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-instance-discovery.js +2 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-instance-discovery.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-instance-reader.d.ts +19 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-instance-reader.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-instance-reader.js +2 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-instance-reader.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-reconnection-strategy.d.ts +27 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-reconnection-strategy.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-reconnection-strategy.js +2 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-reconnection-strategy.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-room-manager.d.ts +32 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-room-manager.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-room-manager.js +2 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-room-manager.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-socket-provider.d.ts +45 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-socket-provider.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-socket-provider.js +2 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-socket-provider.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-socket.d.ts +56 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-socket.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-socket.js +2 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-socket.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-wake-detector.d.ts +35 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-wake-detector.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-wake-detector.js +2 -0
- package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-wake-detector.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/index.d.ts +65 -0
- package/node_modules/@campfirein/brv-transport-client/dist/index.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/index.js +73 -0
- package/node_modules/@campfirein/brv-transport-client/dist/index.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/client-factory.d.ts +283 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/client-factory.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/client-factory.js +451 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/client-factory.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/connection-state-manager.d.ts +90 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/connection-state-manager.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/connection-state-manager.js +142 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/connection-state-manager.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/event-dispatcher.d.ts +168 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/event-dispatcher.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/event-dispatcher.js +265 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/event-dispatcher.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/file-instance-discovery.d.ts +32 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/file-instance-discovery.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/file-instance-discovery.js +85 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/file-instance-discovery.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/file-instance-reader.d.ts +16 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/file-instance-reader.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/file-instance-reader.js +47 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/file-instance-reader.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/force-reconnect-manager.d.ts +102 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/force-reconnect-manager.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/force-reconnect-manager.js +161 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/force-reconnect-manager.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/no-op-client-logger.d.ts +17 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/no-op-client-logger.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/no-op-client-logger.js +24 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/no-op-client-logger.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/process-utils.d.ts +17 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/process-utils.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/process-utils.js +40 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/process-utils.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/reconnection-strategy.d.ts +136 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/reconnection-strategy.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/reconnection-strategy.js +174 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/reconnection-strategy.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/room-manager.d.ts +122 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/room-manager.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/room-manager.js +306 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/room-manager.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/schemas/index.d.ts +14 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/schemas/index.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/schemas/index.js +28 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/schemas/index.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/schemas/schemas.d.ts +953 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/schemas/schemas.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/schemas/schemas.js +476 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/schemas/schemas.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/schemas/types.d.ts +221 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/schemas/types.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/schemas/types.js +2 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/schemas/types.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/socket-io-client.d.ts +283 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/socket-io-client.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/socket-io-client.js +668 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/socket-io-client.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/utils/deep-freeze.d.ts +25 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/utils/deep-freeze.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/utils/deep-freeze.js +54 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/utils/deep-freeze.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/wake-detector.d.ts +72 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/wake-detector.d.ts.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/wake-detector.js +130 -0
- package/node_modules/@campfirein/brv-transport-client/dist/infra/wake-detector.js.map +1 -0
- package/node_modules/@campfirein/brv-transport-client/package.json +62 -0
- package/node_modules/@socket.io/component-emitter/LICENSE +24 -0
- package/node_modules/@socket.io/component-emitter/Readme.md +79 -0
- package/node_modules/@socket.io/component-emitter/lib/cjs/index.d.ts +179 -0
- package/node_modules/@socket.io/component-emitter/lib/cjs/index.js +176 -0
- package/node_modules/@socket.io/component-emitter/lib/cjs/package.json +4 -0
- package/node_modules/@socket.io/component-emitter/lib/esm/index.d.ts +179 -0
- package/node_modules/@socket.io/component-emitter/lib/esm/index.js +169 -0
- package/node_modules/@socket.io/component-emitter/lib/esm/package.json +4 -0
- package/node_modules/@socket.io/component-emitter/package.json +28 -0
- package/node_modules/engine.io-client/LICENSE +22 -0
- package/node_modules/engine.io-client/README.md +331 -0
- package/node_modules/engine.io-client/build/cjs/browser-entrypoint.d.ts +3 -0
- package/node_modules/engine.io-client/build/cjs/browser-entrypoint.js +4 -0
- package/node_modules/engine.io-client/build/cjs/contrib/has-cors.d.ts +1 -0
- package/node_modules/engine.io-client/build/cjs/contrib/has-cors.js +14 -0
- package/node_modules/engine.io-client/build/cjs/contrib/parseqs.d.ts +15 -0
- package/node_modules/engine.io-client/build/cjs/contrib/parseqs.js +38 -0
- package/node_modules/engine.io-client/build/cjs/contrib/parseuri.d.ts +1 -0
- package/node_modules/engine.io-client/build/cjs/contrib/parseuri.js +67 -0
- package/node_modules/engine.io-client/build/cjs/globals.d.ts +4 -0
- package/node_modules/engine.io-client/build/cjs/globals.js +26 -0
- package/node_modules/engine.io-client/build/cjs/globals.node.d.ts +21 -0
- package/node_modules/engine.io-client/build/cjs/globals.node.js +97 -0
- package/node_modules/engine.io-client/build/cjs/index.d.ts +15 -0
- package/node_modules/engine.io-client/build/cjs/index.js +32 -0
- package/node_modules/engine.io-client/build/cjs/package.json +10 -0
- package/node_modules/engine.io-client/build/cjs/socket.d.ts +482 -0
- package/node_modules/engine.io-client/build/cjs/socket.js +765 -0
- package/node_modules/engine.io-client/build/cjs/transport.d.ts +106 -0
- package/node_modules/engine.io-client/build/cjs/transport.js +153 -0
- package/node_modules/engine.io-client/build/cjs/transports/index.d.ts +8 -0
- package/node_modules/engine.io-client/build/cjs/transports/index.js +11 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-fetch.d.ts +15 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-fetch.js +60 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.d.ts +108 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.js +285 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.node.d.ts +11 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.node.js +44 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling.d.ts +52 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling.js +165 -0
- package/node_modules/engine.io-client/build/cjs/transports/websocket.d.ts +36 -0
- package/node_modules/engine.io-client/build/cjs/transports/websocket.js +136 -0
- package/node_modules/engine.io-client/build/cjs/transports/websocket.node.d.ts +14 -0
- package/node_modules/engine.io-client/build/cjs/transports/websocket.node.js +68 -0
- package/node_modules/engine.io-client/build/cjs/transports/webtransport.d.ts +18 -0
- package/node_modules/engine.io-client/build/cjs/transports/webtransport.js +94 -0
- package/node_modules/engine.io-client/build/cjs/util.d.ts +7 -0
- package/node_modules/engine.io-client/build/cjs/util.js +65 -0
- package/node_modules/engine.io-client/build/esm/browser-entrypoint.d.ts +3 -0
- package/node_modules/engine.io-client/build/esm/browser-entrypoint.js +2 -0
- package/node_modules/engine.io-client/build/esm/contrib/has-cors.d.ts +1 -0
- package/node_modules/engine.io-client/build/esm/contrib/has-cors.js +11 -0
- package/node_modules/engine.io-client/build/esm/contrib/parseqs.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm/contrib/parseqs.js +34 -0
- package/node_modules/engine.io-client/build/esm/contrib/parseuri.d.ts +1 -0
- package/node_modules/engine.io-client/build/esm/contrib/parseuri.js +64 -0
- package/node_modules/engine.io-client/build/esm/globals.d.ts +4 -0
- package/node_modules/engine.io-client/build/esm/globals.js +22 -0
- package/node_modules/engine.io-client/build/esm/globals.node.d.ts +21 -0
- package/node_modules/engine.io-client/build/esm/globals.node.js +91 -0
- package/node_modules/engine.io-client/build/esm/index.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm/index.js +15 -0
- package/node_modules/engine.io-client/build/esm/package.json +10 -0
- package/node_modules/engine.io-client/build/esm/socket.d.ts +482 -0
- package/node_modules/engine.io-client/build/esm/socket.js +727 -0
- package/node_modules/engine.io-client/build/esm/transport.d.ts +106 -0
- package/node_modules/engine.io-client/build/esm/transport.js +142 -0
- package/node_modules/engine.io-client/build/esm/transports/index.d.ts +8 -0
- package/node_modules/engine.io-client/build/esm/transports/index.js +8 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-fetch.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-fetch.js +56 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-xhr.d.ts +108 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-xhr.js +271 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-xhr.node.d.ts +11 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-xhr.node.js +17 -0
- package/node_modules/engine.io-client/build/esm/transports/polling.d.ts +52 -0
- package/node_modules/engine.io-client/build/esm/transports/polling.js +145 -0
- package/node_modules/engine.io-client/build/esm/transports/websocket.d.ts +36 -0
- package/node_modules/engine.io-client/build/esm/transports/websocket.js +125 -0
- package/node_modules/engine.io-client/build/esm/transports/websocket.node.d.ts +14 -0
- package/node_modules/engine.io-client/build/esm/transports/websocket.node.js +41 -0
- package/node_modules/engine.io-client/build/esm/transports/webtransport.d.ts +18 -0
- package/node_modules/engine.io-client/build/esm/transports/webtransport.js +80 -0
- package/node_modules/engine.io-client/build/esm/util.d.ts +7 -0
- package/node_modules/engine.io-client/build/esm/util.js +59 -0
- package/node_modules/engine.io-client/build/esm-debug/browser-entrypoint.d.ts +3 -0
- package/node_modules/engine.io-client/build/esm-debug/browser-entrypoint.js +2 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/has-cors.d.ts +1 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/has-cors.js +11 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/parseqs.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/parseqs.js +34 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/parseuri.d.ts +1 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/parseuri.js +64 -0
- package/node_modules/engine.io-client/build/esm-debug/globals.d.ts +4 -0
- package/node_modules/engine.io-client/build/esm-debug/globals.js +22 -0
- package/node_modules/engine.io-client/build/esm-debug/globals.node.d.ts +21 -0
- package/node_modules/engine.io-client/build/esm-debug/globals.node.js +91 -0
- package/node_modules/engine.io-client/build/esm-debug/index.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm-debug/index.js +15 -0
- package/node_modules/engine.io-client/build/esm-debug/package.json +10 -0
- package/node_modules/engine.io-client/build/esm-debug/socket.d.ts +482 -0
- package/node_modules/engine.io-client/build/esm-debug/socket.js +756 -0
- package/node_modules/engine.io-client/build/esm-debug/transport.d.ts +106 -0
- package/node_modules/engine.io-client/build/esm-debug/transport.js +145 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/index.d.ts +8 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/index.js +8 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-fetch.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-fetch.js +56 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.d.ts +108 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.js +276 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.node.d.ts +11 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.node.js +17 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling.d.ts +52 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling.js +158 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/websocket.d.ts +36 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/websocket.js +128 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/websocket.node.d.ts +14 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/websocket.node.js +41 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/webtransport.d.ts +18 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/webtransport.js +87 -0
- package/node_modules/engine.io-client/build/esm-debug/util.d.ts +7 -0
- package/node_modules/engine.io-client/build/esm-debug/util.js +59 -0
- package/node_modules/engine.io-client/dist/engine.io.esm.min.js +7 -0
- package/node_modules/engine.io-client/dist/engine.io.esm.min.js.map +1 -0
- package/node_modules/engine.io-client/dist/engine.io.js +2968 -0
- package/node_modules/engine.io-client/dist/engine.io.js.map +1 -0
- package/node_modules/engine.io-client/dist/engine.io.min.js +7 -0
- package/node_modules/engine.io-client/dist/engine.io.min.js.map +1 -0
- package/node_modules/engine.io-client/node_modules/debug/LICENSE +20 -0
- package/node_modules/engine.io-client/node_modules/debug/README.md +481 -0
- package/node_modules/engine.io-client/node_modules/debug/package.json +60 -0
- package/node_modules/engine.io-client/node_modules/debug/src/browser.js +271 -0
- package/node_modules/engine.io-client/node_modules/debug/src/common.js +274 -0
- package/node_modules/engine.io-client/node_modules/debug/src/index.js +10 -0
- package/node_modules/engine.io-client/node_modules/debug/src/node.js +263 -0
- package/node_modules/engine.io-client/node_modules/ws/LICENSE +20 -0
- package/node_modules/engine.io-client/node_modules/ws/README.md +548 -0
- package/node_modules/engine.io-client/node_modules/ws/browser.js +8 -0
- package/node_modules/engine.io-client/node_modules/ws/index.js +13 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/buffer-util.js +131 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/constants.js +12 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/event-target.js +292 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/extension.js +203 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/limiter.js +55 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/permessage-deflate.js +514 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/receiver.js +704 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/sender.js +497 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/stream.js +159 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/subprotocol.js +62 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/validation.js +130 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/websocket-server.js +540 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/websocket.js +1338 -0
- package/node_modules/engine.io-client/node_modules/ws/package.json +69 -0
- package/node_modules/engine.io-client/node_modules/ws/wrapper.mjs +8 -0
- package/node_modules/engine.io-client/package.json +95 -0
- package/node_modules/engine.io-parser/LICENSE +22 -0
- package/node_modules/engine.io-parser/Readme.md +158 -0
- package/node_modules/engine.io-parser/build/cjs/commons.d.ts +14 -0
- package/node_modules/engine.io-parser/build/cjs/commons.js +19 -0
- package/node_modules/engine.io-parser/build/cjs/contrib/base64-arraybuffer.d.ts +2 -0
- package/node_modules/engine.io-parser/build/cjs/contrib/base64-arraybuffer.js +48 -0
- package/node_modules/engine.io-parser/build/cjs/decodePacket.browser.d.ts +2 -0
- package/node_modules/engine.io-parser/build/cjs/decodePacket.browser.js +66 -0
- package/node_modules/engine.io-parser/build/cjs/decodePacket.d.ts +2 -0
- package/node_modules/engine.io-parser/build/cjs/decodePacket.js +59 -0
- package/node_modules/engine.io-parser/build/cjs/encodePacket.browser.d.ts +4 -0
- package/node_modules/engine.io-parser/build/cjs/encodePacket.browser.js +72 -0
- package/node_modules/engine.io-parser/build/cjs/encodePacket.d.ts +3 -0
- package/node_modules/engine.io-parser/build/cjs/encodePacket.js +38 -0
- package/node_modules/engine.io-parser/build/cjs/index.d.ts +9 -0
- package/node_modules/engine.io-parser/build/cjs/index.js +164 -0
- package/node_modules/engine.io-parser/build/cjs/package.json +8 -0
- package/node_modules/engine.io-parser/build/esm/commons.d.ts +14 -0
- package/node_modules/engine.io-parser/build/esm/commons.js +14 -0
- package/node_modules/engine.io-parser/build/esm/contrib/base64-arraybuffer.d.ts +2 -0
- package/node_modules/engine.io-parser/build/esm/contrib/base64-arraybuffer.js +43 -0
- package/node_modules/engine.io-parser/build/esm/decodePacket.browser.d.ts +2 -0
- package/node_modules/engine.io-parser/build/esm/decodePacket.browser.js +62 -0
- package/node_modules/engine.io-parser/build/esm/decodePacket.d.ts +2 -0
- package/node_modules/engine.io-parser/build/esm/decodePacket.js +55 -0
- package/node_modules/engine.io-parser/build/esm/encodePacket.browser.d.ts +4 -0
- package/node_modules/engine.io-parser/build/esm/encodePacket.browser.js +68 -0
- package/node_modules/engine.io-parser/build/esm/encodePacket.d.ts +3 -0
- package/node_modules/engine.io-parser/build/esm/encodePacket.js +33 -0
- package/node_modules/engine.io-parser/build/esm/index.d.ts +9 -0
- package/node_modules/engine.io-parser/build/esm/index.js +156 -0
- package/node_modules/engine.io-parser/build/esm/package.json +8 -0
- package/node_modules/engine.io-parser/package.json +46 -0
- package/node_modules/ms/index.js +162 -0
- package/node_modules/ms/license.md +21 -0
- package/node_modules/ms/package.json +38 -0
- package/node_modules/ms/readme.md +59 -0
- package/node_modules/socket.io-client/LICENSE +21 -0
- package/node_modules/socket.io-client/README.md +29 -0
- package/node_modules/socket.io-client/build/cjs/browser-entrypoint.d.ts +2 -0
- package/node_modules/socket.io-client/build/cjs/browser-entrypoint.js +4 -0
- package/node_modules/socket.io-client/build/cjs/contrib/backo2.d.ts +12 -0
- package/node_modules/socket.io-client/build/cjs/contrib/backo2.js +69 -0
- package/node_modules/socket.io-client/build/cjs/index.d.ts +29 -0
- package/node_modules/socket.io-client/build/cjs/index.js +76 -0
- package/node_modules/socket.io-client/build/cjs/manager.d.ts +295 -0
- package/node_modules/socket.io-client/build/cjs/manager.js +416 -0
- package/node_modules/socket.io-client/build/cjs/on.d.ts +2 -0
- package/node_modules/socket.io-client/build/cjs/on.js +9 -0
- package/node_modules/socket.io-client/build/cjs/socket.d.ts +593 -0
- package/node_modules/socket.io-client/build/cjs/socket.js +910 -0
- package/node_modules/socket.io-client/build/cjs/url.d.ts +33 -0
- package/node_modules/socket.io-client/build/cjs/url.js +69 -0
- package/node_modules/socket.io-client/build/esm/browser-entrypoint.d.ts +2 -0
- package/node_modules/socket.io-client/build/esm/browser-entrypoint.js +2 -0
- package/node_modules/socket.io-client/build/esm/contrib/backo2.d.ts +12 -0
- package/node_modules/socket.io-client/build/esm/contrib/backo2.js +66 -0
- package/node_modules/socket.io-client/build/esm/index.d.ts +29 -0
- package/node_modules/socket.io-client/build/esm/index.js +58 -0
- package/node_modules/socket.io-client/build/esm/manager.d.ts +295 -0
- package/node_modules/socket.io-client/build/esm/manager.js +367 -0
- package/node_modules/socket.io-client/build/esm/on.d.ts +2 -0
- package/node_modules/socket.io-client/build/esm/on.js +6 -0
- package/node_modules/socket.io-client/build/esm/package.json +5 -0
- package/node_modules/socket.io-client/build/esm/socket.d.ts +593 -0
- package/node_modules/socket.io-client/build/esm/socket.js +882 -0
- package/node_modules/socket.io-client/build/esm/url.d.ts +33 -0
- package/node_modules/socket.io-client/build/esm/url.js +59 -0
- package/node_modules/socket.io-client/build/esm-debug/browser-entrypoint.d.ts +2 -0
- package/node_modules/socket.io-client/build/esm-debug/browser-entrypoint.js +2 -0
- package/node_modules/socket.io-client/build/esm-debug/contrib/backo2.d.ts +12 -0
- package/node_modules/socket.io-client/build/esm-debug/contrib/backo2.js +66 -0
- package/node_modules/socket.io-client/build/esm-debug/index.d.ts +29 -0
- package/node_modules/socket.io-client/build/esm-debug/index.js +62 -0
- package/node_modules/socket.io-client/build/esm-debug/manager.d.ts +295 -0
- package/node_modules/socket.io-client/build/esm-debug/manager.js +386 -0
- package/node_modules/socket.io-client/build/esm-debug/on.d.ts +2 -0
- package/node_modules/socket.io-client/build/esm-debug/on.js +6 -0
- package/node_modules/socket.io-client/build/esm-debug/package.json +5 -0
- package/node_modules/socket.io-client/build/esm-debug/socket.d.ts +593 -0
- package/node_modules/socket.io-client/build/esm-debug/socket.js +903 -0
- package/node_modules/socket.io-client/build/esm-debug/url.d.ts +33 -0
- package/node_modules/socket.io-client/build/esm-debug/url.js +63 -0
- package/node_modules/socket.io-client/dist/socket.io.esm.min.js +7 -0
- package/node_modules/socket.io-client/dist/socket.io.esm.min.js.map +1 -0
- package/node_modules/socket.io-client/dist/socket.io.js +4908 -0
- package/node_modules/socket.io-client/dist/socket.io.js.map +1 -0
- package/node_modules/socket.io-client/dist/socket.io.min.js +7 -0
- package/node_modules/socket.io-client/dist/socket.io.min.js.map +1 -0
- package/node_modules/socket.io-client/dist/socket.io.msgpack.min.js +7 -0
- package/node_modules/socket.io-client/dist/socket.io.msgpack.min.js.map +1 -0
- package/node_modules/socket.io-client/node_modules/debug/LICENSE +20 -0
- package/node_modules/socket.io-client/node_modules/debug/README.md +481 -0
- package/node_modules/socket.io-client/node_modules/debug/package.json +60 -0
- package/node_modules/socket.io-client/node_modules/debug/src/browser.js +271 -0
- package/node_modules/socket.io-client/node_modules/debug/src/common.js +274 -0
- package/node_modules/socket.io-client/node_modules/debug/src/index.js +10 -0
- package/node_modules/socket.io-client/node_modules/debug/src/node.js +263 -0
- package/node_modules/socket.io-client/package.json +101 -0
- package/node_modules/socket.io-parser/LICENSE +20 -0
- package/node_modules/socket.io-parser/Readme.md +81 -0
- package/node_modules/socket.io-parser/build/cjs/binary.d.ts +20 -0
- package/node_modules/socket.io-parser/build/cjs/binary.js +88 -0
- package/node_modules/socket.io-parser/build/cjs/index.d.ts +90 -0
- package/node_modules/socket.io-parser/build/cjs/index.js +321 -0
- package/node_modules/socket.io-parser/build/cjs/is-binary.d.ts +7 -0
- package/node_modules/socket.io-parser/build/cjs/is-binary.js +55 -0
- package/node_modules/socket.io-parser/build/cjs/package.json +3 -0
- package/node_modules/socket.io-parser/build/esm/binary.d.ts +20 -0
- package/node_modules/socket.io-parser/build/esm/binary.js +83 -0
- package/node_modules/socket.io-parser/build/esm/index.d.ts +90 -0
- package/node_modules/socket.io-parser/build/esm/index.js +311 -0
- package/node_modules/socket.io-parser/build/esm/is-binary.d.ts +7 -0
- package/node_modules/socket.io-parser/build/esm/is-binary.js +50 -0
- package/node_modules/socket.io-parser/build/esm/package.json +3 -0
- package/node_modules/socket.io-parser/build/esm-debug/binary.d.ts +20 -0
- package/node_modules/socket.io-parser/build/esm-debug/binary.js +83 -0
- package/node_modules/socket.io-parser/build/esm-debug/index.d.ts +90 -0
- package/node_modules/socket.io-parser/build/esm-debug/index.js +316 -0
- package/node_modules/socket.io-parser/build/esm-debug/is-binary.d.ts +7 -0
- package/node_modules/socket.io-parser/build/esm-debug/is-binary.js +50 -0
- package/node_modules/socket.io-parser/build/esm-debug/package.json +3 -0
- package/node_modules/socket.io-parser/node_modules/debug/LICENSE +20 -0
- package/node_modules/socket.io-parser/node_modules/debug/README.md +481 -0
- package/node_modules/socket.io-parser/node_modules/debug/package.json +60 -0
- package/node_modules/socket.io-parser/node_modules/debug/src/browser.js +271 -0
- package/node_modules/socket.io-parser/node_modules/debug/src/common.js +274 -0
- package/node_modules/socket.io-parser/node_modules/debug/src/index.js +10 -0
- package/node_modules/socket.io-parser/node_modules/debug/src/node.js +263 -0
- package/node_modules/socket.io-parser/package.json +58 -0
- package/node_modules/xmlhttprequest-ssl/LICENSE +22 -0
- package/node_modules/xmlhttprequest-ssl/README.md +67 -0
- package/node_modules/xmlhttprequest-ssl/lib/XMLHttpRequest.js +689 -0
- package/node_modules/xmlhttprequest-ssl/package.json +40 -0
- package/node_modules/zod/LICENSE +21 -0
- package/node_modules/zod/README.md +208 -0
- package/node_modules/zod/index.cjs +33 -0
- package/node_modules/zod/index.d.cts +4 -0
- package/node_modules/zod/index.d.ts +4 -0
- package/node_modules/zod/index.js +4 -0
- package/node_modules/zod/package.json +118 -0
- package/node_modules/zod/src/index.ts +4 -0
- package/node_modules/zod/src/v3/ZodError.ts +330 -0
- package/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
- package/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
- package/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
- package/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
- package/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
- package/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
- package/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
- package/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
- package/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
- package/node_modules/zod/src/v3/errors.ts +13 -0
- package/node_modules/zod/src/v3/external.ts +6 -0
- package/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
- package/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
- package/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
- package/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
- package/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
- package/node_modules/zod/src/v3/helpers/util.ts +224 -0
- package/node_modules/zod/src/v3/index.ts +4 -0
- package/node_modules/zod/src/v3/locales/en.ts +124 -0
- package/node_modules/zod/src/v3/standard-schema.ts +113 -0
- package/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
- package/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
- package/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
- package/node_modules/zod/src/v3/tests/array.test.ts +71 -0
- package/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
- package/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
- package/node_modules/zod/src/v3/tests/base.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
- package/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
- package/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
- package/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
- package/node_modules/zod/src/v3/tests/complex.test.ts +56 -0
- package/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
- package/node_modules/zod/src/v3/tests/date.test.ts +32 -0
- package/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
- package/node_modules/zod/src/v3/tests/default.test.ts +112 -0
- package/node_modules/zod/src/v3/tests/description.test.ts +33 -0
- package/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
- package/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
- package/node_modules/zod/src/v3/tests/error.test.ts +551 -0
- package/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
- package/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
- package/node_modules/zod/src/v3/tests/function.test.ts +257 -0
- package/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
- package/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
- package/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
- package/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
- package/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
- package/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
- package/node_modules/zod/src/v3/tests/map.test.ts +110 -0
- package/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
- package/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
- package/node_modules/zod/src/v3/tests/nan.test.ts +21 -0
- package/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
- package/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
- package/node_modules/zod/src/v3/tests/number.test.ts +176 -0
- package/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/object.test.ts +434 -0
- package/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
- package/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
- package/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
- package/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
- package/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
- package/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
- package/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
- package/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
- package/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
- package/node_modules/zod/src/v3/tests/record.test.ts +171 -0
- package/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
- package/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
- package/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
- package/node_modules/zod/src/v3/tests/set.test.ts +142 -0
- package/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
- package/node_modules/zod/src/v3/tests/string.test.ts +916 -0
- package/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
- package/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
- package/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
- package/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
- package/node_modules/zod/src/v3/tests/void.test.ts +15 -0
- package/node_modules/zod/src/v3/types.ts +5136 -0
- package/node_modules/zod/src/v4/classic/checks.ts +30 -0
- package/node_modules/zod/src/v4/classic/coerce.ts +27 -0
- package/node_modules/zod/src/v4/classic/compat.ts +66 -0
- package/node_modules/zod/src/v4/classic/errors.ts +75 -0
- package/node_modules/zod/src/v4/classic/external.ts +50 -0
- package/node_modules/zod/src/v4/classic/index.ts +5 -0
- package/node_modules/zod/src/v4/classic/iso.ts +90 -0
- package/node_modules/zod/src/v4/classic/parse.ts +33 -0
- package/node_modules/zod/src/v4/classic/schemas.ts +2054 -0
- package/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
- package/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
- package/node_modules/zod/src/v4/classic/tests/assignability.test.ts +210 -0
- package/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
- package/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
- package/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
- package/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
- package/node_modules/zod/src/v4/classic/tests/brand.test.ts +63 -0
- package/node_modules/zod/src/v4/classic/tests/catch.test.ts +252 -0
- package/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
- package/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
- package/node_modules/zod/src/v4/classic/tests/continuability.test.ts +352 -0
- package/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
- package/node_modules/zod/src/v4/classic/tests/date.test.ts +31 -0
- package/node_modules/zod/src/v4/classic/tests/datetime.test.ts +296 -0
- package/node_modules/zod/src/v4/classic/tests/default.test.ts +313 -0
- package/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
- package/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +619 -0
- package/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
- package/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +527 -0
- package/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
- package/node_modules/zod/src/v4/classic/tests/file.test.ts +91 -0
- package/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +175 -0
- package/node_modules/zod/src/v4/classic/tests/function.test.ts +268 -0
- package/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
- package/node_modules/zod/src/v4/classic/tests/index.test.ts +829 -0
- package/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +34 -0
- package/node_modules/zod/src/v4/classic/tests/intersection.test.ts +171 -0
- package/node_modules/zod/src/v4/classic/tests/json.test.ts +108 -0
- package/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
- package/node_modules/zod/src/v4/classic/tests/literal.test.ts +92 -0
- package/node_modules/zod/src/v4/classic/tests/map.test.ts +196 -0
- package/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
- package/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
- package/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +86 -0
- package/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
- package/node_modules/zod/src/v4/classic/tests/number.test.ts +247 -0
- package/node_modules/zod/src/v4/classic/tests/object.test.ts +563 -0
- package/node_modules/zod/src/v4/classic/tests/optional.test.ts +123 -0
- package/node_modules/zod/src/v4/classic/tests/partial.test.ts +147 -0
- package/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +127 -0
- package/node_modules/zod/src/v4/classic/tests/pipe.test.ts +81 -0
- package/node_modules/zod/src/v4/classic/tests/prefault.test.ts +37 -0
- package/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +298 -0
- package/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
- package/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
- package/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
- package/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
- package/node_modules/zod/src/v4/classic/tests/record.test.ts +342 -0
- package/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +356 -0
- package/node_modules/zod/src/v4/classic/tests/refine.test.ts +532 -0
- package/node_modules/zod/src/v4/classic/tests/registries.test.ts +204 -0
- package/node_modules/zod/src/v4/classic/tests/set.test.ts +179 -0
- package/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +57 -0
- package/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +109 -0
- package/node_modules/zod/src/v4/classic/tests/string.test.ts +881 -0
- package/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +66 -0
- package/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +758 -0
- package/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +2314 -0
- package/node_modules/zod/src/v4/classic/tests/transform.test.ts +250 -0
- package/node_modules/zod/src/v4/classic/tests/tuple.test.ts +163 -0
- package/node_modules/zod/src/v4/classic/tests/union.test.ts +94 -0
- package/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
- package/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
- package/node_modules/zod/src/v4/core/api.ts +1594 -0
- package/node_modules/zod/src/v4/core/checks.ts +1283 -0
- package/node_modules/zod/src/v4/core/config.ts +15 -0
- package/node_modules/zod/src/v4/core/core.ts +134 -0
- package/node_modules/zod/src/v4/core/doc.ts +44 -0
- package/node_modules/zod/src/v4/core/errors.ts +424 -0
- package/node_modules/zod/src/v4/core/function.ts +176 -0
- package/node_modules/zod/src/v4/core/index.ts +15 -0
- package/node_modules/zod/src/v4/core/json-schema.ts +143 -0
- package/node_modules/zod/src/v4/core/parse.ts +94 -0
- package/node_modules/zod/src/v4/core/regexes.ts +135 -0
- package/node_modules/zod/src/v4/core/registries.ts +96 -0
- package/node_modules/zod/src/v4/core/schemas.ts +3842 -0
- package/node_modules/zod/src/v4/core/standard-schema.ts +64 -0
- package/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
- package/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
- package/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
- package/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
- package/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
- package/node_modules/zod/src/v4/core/to-json-schema.ts +977 -0
- package/node_modules/zod/src/v4/core/util.ts +775 -0
- package/node_modules/zod/src/v4/core/versions.ts +5 -0
- package/node_modules/zod/src/v4/core/zsf.ts +323 -0
- package/node_modules/zod/src/v4/index.ts +4 -0
- package/node_modules/zod/src/v4/locales/ar.ts +125 -0
- package/node_modules/zod/src/v4/locales/az.ts +121 -0
- package/node_modules/zod/src/v4/locales/be.ts +184 -0
- package/node_modules/zod/src/v4/locales/ca.ts +127 -0
- package/node_modules/zod/src/v4/locales/cs.ts +142 -0
- package/node_modules/zod/src/v4/locales/de.ts +124 -0
- package/node_modules/zod/src/v4/locales/en.ts +127 -0
- package/node_modules/zod/src/v4/locales/eo.ts +125 -0
- package/node_modules/zod/src/v4/locales/es.ts +125 -0
- package/node_modules/zod/src/v4/locales/fa.ts +134 -0
- package/node_modules/zod/src/v4/locales/fi.ts +131 -0
- package/node_modules/zod/src/v4/locales/fr-CA.ts +126 -0
- package/node_modules/zod/src/v4/locales/fr.ts +124 -0
- package/node_modules/zod/src/v4/locales/he.ts +125 -0
- package/node_modules/zod/src/v4/locales/hu.ts +126 -0
- package/node_modules/zod/src/v4/locales/id.ts +125 -0
- package/node_modules/zod/src/v4/locales/index.ts +39 -0
- package/node_modules/zod/src/v4/locales/it.ts +125 -0
- package/node_modules/zod/src/v4/locales/ja.ts +122 -0
- package/node_modules/zod/src/v4/locales/kh.ts +126 -0
- package/node_modules/zod/src/v4/locales/ko.ts +131 -0
- package/node_modules/zod/src/v4/locales/mk.ts +127 -0
- package/node_modules/zod/src/v4/locales/ms.ts +124 -0
- package/node_modules/zod/src/v4/locales/nl.ts +126 -0
- package/node_modules/zod/src/v4/locales/no.ts +124 -0
- package/node_modules/zod/src/v4/locales/ota.ts +125 -0
- package/node_modules/zod/src/v4/locales/pl.ts +126 -0
- package/node_modules/zod/src/v4/locales/ps.ts +133 -0
- package/node_modules/zod/src/v4/locales/pt.ts +123 -0
- package/node_modules/zod/src/v4/locales/ru.ts +184 -0
- package/node_modules/zod/src/v4/locales/sl.ts +126 -0
- package/node_modules/zod/src/v4/locales/sv.ts +127 -0
- package/node_modules/zod/src/v4/locales/ta.ts +125 -0
- package/node_modules/zod/src/v4/locales/th.ts +126 -0
- package/node_modules/zod/src/v4/locales/tr.ts +121 -0
- package/node_modules/zod/src/v4/locales/ua.ts +126 -0
- package/node_modules/zod/src/v4/locales/ur.ts +126 -0
- package/node_modules/zod/src/v4/locales/vi.ts +125 -0
- package/node_modules/zod/src/v4/locales/zh-CN.ts +123 -0
- package/node_modules/zod/src/v4/locales/zh-TW.ts +125 -0
- package/node_modules/zod/src/v4/mini/checks.ts +32 -0
- package/node_modules/zod/src/v4/mini/coerce.ts +22 -0
- package/node_modules/zod/src/v4/mini/external.ts +40 -0
- package/node_modules/zod/src/v4/mini/index.ts +3 -0
- package/node_modules/zod/src/v4/mini/iso.ts +62 -0
- package/node_modules/zod/src/v4/mini/parse.ts +1 -0
- package/node_modules/zod/src/v4/mini/schemas.ts +1579 -0
- package/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
- package/node_modules/zod/src/v4/mini/tests/brand.test.ts +51 -0
- package/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
- package/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
- package/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
- package/node_modules/zod/src/v4/mini/tests/functions.test.ts +43 -0
- package/node_modules/zod/src/v4/mini/tests/index.test.ts +871 -0
- package/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
- package/node_modules/zod/src/v4/mini/tests/object.test.ts +185 -0
- package/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
- package/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +275 -0
- package/node_modules/zod/src/v4/mini/tests/string.test.ts +299 -0
- package/node_modules/zod/src/v4-mini/index.ts +1 -0
- package/node_modules/zod/v3/ZodError.cjs +138 -0
- package/node_modules/zod/v3/ZodError.d.cts +164 -0
- package/node_modules/zod/v3/ZodError.d.ts +164 -0
- package/node_modules/zod/v3/ZodError.js +133 -0
- package/node_modules/zod/v3/errors.cjs +17 -0
- package/node_modules/zod/v3/errors.d.cts +5 -0
- package/node_modules/zod/v3/errors.d.ts +5 -0
- package/node_modules/zod/v3/errors.js +9 -0
- package/node_modules/zod/v3/external.cjs +22 -0
- package/node_modules/zod/v3/external.d.cts +6 -0
- package/node_modules/zod/v3/external.d.ts +6 -0
- package/node_modules/zod/v3/external.js +6 -0
- package/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
- package/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
- package/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
- package/node_modules/zod/v3/helpers/enumUtil.js +1 -0
- package/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
- package/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
- package/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
- package/node_modules/zod/v3/helpers/errorUtil.js +6 -0
- package/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
- package/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
- package/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
- package/node_modules/zod/v3/helpers/parseUtil.js +109 -0
- package/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
- package/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
- package/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
- package/node_modules/zod/v3/helpers/partialUtil.js +1 -0
- package/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
- package/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
- package/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
- package/node_modules/zod/v3/helpers/typeAliases.js +1 -0
- package/node_modules/zod/v3/helpers/util.cjs +137 -0
- package/node_modules/zod/v3/helpers/util.d.cts +85 -0
- package/node_modules/zod/v3/helpers/util.d.ts +85 -0
- package/node_modules/zod/v3/helpers/util.js +133 -0
- package/node_modules/zod/v3/index.cjs +33 -0
- package/node_modules/zod/v3/index.d.cts +4 -0
- package/node_modules/zod/v3/index.d.ts +4 -0
- package/node_modules/zod/v3/index.js +4 -0
- package/node_modules/zod/v3/locales/en.cjs +111 -0
- package/node_modules/zod/v3/locales/en.d.cts +3 -0
- package/node_modules/zod/v3/locales/en.d.ts +3 -0
- package/node_modules/zod/v3/locales/en.js +109 -0
- package/node_modules/zod/v3/standard-schema.cjs +2 -0
- package/node_modules/zod/v3/standard-schema.d.cts +102 -0
- package/node_modules/zod/v3/standard-schema.d.ts +102 -0
- package/node_modules/zod/v3/standard-schema.js +1 -0
- package/node_modules/zod/v3/types.cjs +3775 -0
- package/node_modules/zod/v3/types.d.cts +1031 -0
- package/node_modules/zod/v3/types.d.ts +1031 -0
- package/node_modules/zod/v3/types.js +3693 -0
- package/node_modules/zod/v4/classic/checks.cjs +32 -0
- package/node_modules/zod/v4/classic/checks.d.cts +1 -0
- package/node_modules/zod/v4/classic/checks.d.ts +1 -0
- package/node_modules/zod/v4/classic/checks.js +1 -0
- package/node_modules/zod/v4/classic/coerce.cjs +47 -0
- package/node_modules/zod/v4/classic/coerce.d.cts +17 -0
- package/node_modules/zod/v4/classic/coerce.d.ts +17 -0
- package/node_modules/zod/v4/classic/coerce.js +17 -0
- package/node_modules/zod/v4/classic/compat.cjs +57 -0
- package/node_modules/zod/v4/classic/compat.d.cts +46 -0
- package/node_modules/zod/v4/classic/compat.d.ts +46 -0
- package/node_modules/zod/v4/classic/compat.js +27 -0
- package/node_modules/zod/v4/classic/errors.cjs +67 -0
- package/node_modules/zod/v4/classic/errors.d.cts +30 -0
- package/node_modules/zod/v4/classic/errors.d.ts +30 -0
- package/node_modules/zod/v4/classic/errors.js +41 -0
- package/node_modules/zod/v4/classic/external.cjs +70 -0
- package/node_modules/zod/v4/classic/external.d.cts +13 -0
- package/node_modules/zod/v4/classic/external.d.ts +13 -0
- package/node_modules/zod/v4/classic/external.js +18 -0
- package/node_modules/zod/v4/classic/index.cjs +33 -0
- package/node_modules/zod/v4/classic/index.d.cts +4 -0
- package/node_modules/zod/v4/classic/index.d.ts +4 -0
- package/node_modules/zod/v4/classic/index.js +4 -0
- package/node_modules/zod/v4/classic/iso.cjs +60 -0
- package/node_modules/zod/v4/classic/iso.d.cts +22 -0
- package/node_modules/zod/v4/classic/iso.d.ts +22 -0
- package/node_modules/zod/v4/classic/iso.js +30 -0
- package/node_modules/zod/v4/classic/parse.cjs +32 -0
- package/node_modules/zod/v4/classic/parse.d.cts +23 -0
- package/node_modules/zod/v4/classic/parse.d.ts +23 -0
- package/node_modules/zod/v4/classic/parse.js +6 -0
- package/node_modules/zod/v4/classic/schemas.cjs +1109 -0
- package/node_modules/zod/v4/classic/schemas.d.cts +630 -0
- package/node_modules/zod/v4/classic/schemas.d.ts +630 -0
- package/node_modules/zod/v4/classic/schemas.js +1006 -0
- package/node_modules/zod/v4/core/api.cjs +1039 -0
- package/node_modules/zod/v4/core/api.d.cts +284 -0
- package/node_modules/zod/v4/core/api.d.ts +284 -0
- package/node_modules/zod/v4/core/api.js +906 -0
- package/node_modules/zod/v4/core/checks.cjs +591 -0
- package/node_modules/zod/v4/core/checks.d.cts +278 -0
- package/node_modules/zod/v4/core/checks.d.ts +278 -0
- package/node_modules/zod/v4/core/checks.js +565 -0
- package/node_modules/zod/v4/core/core.cjs +67 -0
- package/node_modules/zod/v4/core/core.d.cts +49 -0
- package/node_modules/zod/v4/core/core.d.ts +49 -0
- package/node_modules/zod/v4/core/core.js +61 -0
- package/node_modules/zod/v4/core/doc.cjs +39 -0
- package/node_modules/zod/v4/core/doc.d.cts +14 -0
- package/node_modules/zod/v4/core/doc.d.ts +14 -0
- package/node_modules/zod/v4/core/doc.js +35 -0
- package/node_modules/zod/v4/core/errors.cjs +226 -0
- package/node_modules/zod/v4/core/errors.d.cts +208 -0
- package/node_modules/zod/v4/core/errors.d.ts +208 -0
- package/node_modules/zod/v4/core/errors.js +195 -0
- package/node_modules/zod/v4/core/function.cjs +102 -0
- package/node_modules/zod/v4/core/function.d.cts +52 -0
- package/node_modules/zod/v4/core/function.d.ts +52 -0
- package/node_modules/zod/v4/core/function.js +75 -0
- package/node_modules/zod/v4/core/index.cjs +44 -0
- package/node_modules/zod/v4/core/index.d.cts +15 -0
- package/node_modules/zod/v4/core/index.d.ts +15 -0
- package/node_modules/zod/v4/core/index.js +15 -0
- package/node_modules/zod/v4/core/json-schema.cjs +2 -0
- package/node_modules/zod/v4/core/json-schema.d.cts +87 -0
- package/node_modules/zod/v4/core/json-schema.d.ts +87 -0
- package/node_modules/zod/v4/core/json-schema.js +1 -0
- package/node_modules/zod/v4/core/parse.cjs +87 -0
- package/node_modules/zod/v4/core/parse.d.cts +25 -0
- package/node_modules/zod/v4/core/parse.d.ts +25 -0
- package/node_modules/zod/v4/core/parse.js +57 -0
- package/node_modules/zod/v4/core/regexes.cjs +103 -0
- package/node_modules/zod/v4/core/regexes.d.cts +62 -0
- package/node_modules/zod/v4/core/regexes.d.ts +62 -0
- package/node_modules/zod/v4/core/regexes.js +95 -0
- package/node_modules/zod/v4/core/registries.cjs +56 -0
- package/node_modules/zod/v4/core/registries.d.cts +35 -0
- package/node_modules/zod/v4/core/registries.d.ts +35 -0
- package/node_modules/zod/v4/core/registries.js +51 -0
- package/node_modules/zod/v4/core/schemas.cjs +1748 -0
- package/node_modules/zod/v4/core/schemas.d.cts +1041 -0
- package/node_modules/zod/v4/core/schemas.d.ts +1041 -0
- package/node_modules/zod/v4/core/schemas.js +1717 -0
- package/node_modules/zod/v4/core/standard-schema.cjs +2 -0
- package/node_modules/zod/v4/core/standard-schema.d.cts +55 -0
- package/node_modules/zod/v4/core/standard-schema.d.ts +55 -0
- package/node_modules/zod/v4/core/standard-schema.js +1 -0
- package/node_modules/zod/v4/core/to-json-schema.cjs +854 -0
- package/node_modules/zod/v4/core/to-json-schema.d.cts +88 -0
- package/node_modules/zod/v4/core/to-json-schema.d.ts +88 -0
- package/node_modules/zod/v4/core/to-json-schema.js +849 -0
- package/node_modules/zod/v4/core/util.cjs +539 -0
- package/node_modules/zod/v4/core/util.d.cts +183 -0
- package/node_modules/zod/v4/core/util.d.ts +183 -0
- package/node_modules/zod/v4/core/util.js +493 -0
- package/node_modules/zod/v4/core/versions.cjs +8 -0
- package/node_modules/zod/v4/core/versions.d.cts +5 -0
- package/node_modules/zod/v4/core/versions.d.ts +5 -0
- package/node_modules/zod/v4/core/versions.js +5 -0
- package/node_modules/zod/v4/index.cjs +22 -0
- package/node_modules/zod/v4/index.d.cts +3 -0
- package/node_modules/zod/v4/index.d.ts +3 -0
- package/node_modules/zod/v4/index.js +3 -0
- package/node_modules/zod/v4/locales/ar.cjs +142 -0
- package/node_modules/zod/v4/locales/ar.d.cts +4 -0
- package/node_modules/zod/v4/locales/ar.d.ts +4 -0
- package/node_modules/zod/v4/locales/ar.js +116 -0
- package/node_modules/zod/v4/locales/az.cjs +141 -0
- package/node_modules/zod/v4/locales/az.d.cts +4 -0
- package/node_modules/zod/v4/locales/az.d.ts +4 -0
- package/node_modules/zod/v4/locales/az.js +115 -0
- package/node_modules/zod/v4/locales/be.cjs +190 -0
- package/node_modules/zod/v4/locales/be.d.cts +4 -0
- package/node_modules/zod/v4/locales/be.d.ts +4 -0
- package/node_modules/zod/v4/locales/be.js +164 -0
- package/node_modules/zod/v4/locales/ca.cjs +144 -0
- package/node_modules/zod/v4/locales/ca.d.cts +4 -0
- package/node_modules/zod/v4/locales/ca.d.ts +4 -0
- package/node_modules/zod/v4/locales/ca.js +118 -0
- package/node_modules/zod/v4/locales/cs.cjs +161 -0
- package/node_modules/zod/v4/locales/cs.d.cts +4 -0
- package/node_modules/zod/v4/locales/cs.d.ts +4 -0
- package/node_modules/zod/v4/locales/cs.js +135 -0
- package/node_modules/zod/v4/locales/de.cjs +142 -0
- package/node_modules/zod/v4/locales/de.d.cts +4 -0
- package/node_modules/zod/v4/locales/de.d.ts +4 -0
- package/node_modules/zod/v4/locales/de.js +116 -0
- package/node_modules/zod/v4/locales/en.cjs +145 -0
- package/node_modules/zod/v4/locales/en.d.cts +5 -0
- package/node_modules/zod/v4/locales/en.d.ts +5 -0
- package/node_modules/zod/v4/locales/en.js +117 -0
- package/node_modules/zod/v4/locales/eo.cjs +144 -0
- package/node_modules/zod/v4/locales/eo.d.cts +5 -0
- package/node_modules/zod/v4/locales/eo.d.ts +5 -0
- package/node_modules/zod/v4/locales/eo.js +116 -0
- package/node_modules/zod/v4/locales/es.cjs +143 -0
- package/node_modules/zod/v4/locales/es.d.cts +4 -0
- package/node_modules/zod/v4/locales/es.d.ts +4 -0
- package/node_modules/zod/v4/locales/es.js +117 -0
- package/node_modules/zod/v4/locales/fa.cjs +148 -0
- package/node_modules/zod/v4/locales/fa.d.cts +4 -0
- package/node_modules/zod/v4/locales/fa.d.ts +4 -0
- package/node_modules/zod/v4/locales/fa.js +122 -0
- package/node_modules/zod/v4/locales/fi.cjs +148 -0
- package/node_modules/zod/v4/locales/fi.d.cts +4 -0
- package/node_modules/zod/v4/locales/fi.d.ts +4 -0
- package/node_modules/zod/v4/locales/fi.js +122 -0
- package/node_modules/zod/v4/locales/fr-CA.cjs +143 -0
- package/node_modules/zod/v4/locales/fr-CA.d.cts +4 -0
- package/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
- package/node_modules/zod/v4/locales/fr-CA.js +117 -0
- package/node_modules/zod/v4/locales/fr.cjs +142 -0
- package/node_modules/zod/v4/locales/fr.d.cts +4 -0
- package/node_modules/zod/v4/locales/fr.d.ts +4 -0
- package/node_modules/zod/v4/locales/fr.js +116 -0
- package/node_modules/zod/v4/locales/he.cjs +143 -0
- package/node_modules/zod/v4/locales/he.d.cts +4 -0
- package/node_modules/zod/v4/locales/he.d.ts +4 -0
- package/node_modules/zod/v4/locales/he.js +117 -0
- package/node_modules/zod/v4/locales/hu.cjs +143 -0
- package/node_modules/zod/v4/locales/hu.d.cts +4 -0
- package/node_modules/zod/v4/locales/hu.d.ts +4 -0
- package/node_modules/zod/v4/locales/hu.js +117 -0
- package/node_modules/zod/v4/locales/id.cjs +142 -0
- package/node_modules/zod/v4/locales/id.d.cts +4 -0
- package/node_modules/zod/v4/locales/id.d.ts +4 -0
- package/node_modules/zod/v4/locales/id.js +116 -0
- package/node_modules/zod/v4/locales/index.cjs +84 -0
- package/node_modules/zod/v4/locales/index.d.cts +39 -0
- package/node_modules/zod/v4/locales/index.d.ts +39 -0
- package/node_modules/zod/v4/locales/index.js +39 -0
- package/node_modules/zod/v4/locales/it.cjs +143 -0
- package/node_modules/zod/v4/locales/it.d.cts +4 -0
- package/node_modules/zod/v4/locales/it.d.ts +4 -0
- package/node_modules/zod/v4/locales/it.js +117 -0
- package/node_modules/zod/v4/locales/ja.cjs +141 -0
- package/node_modules/zod/v4/locales/ja.d.cts +4 -0
- package/node_modules/zod/v4/locales/ja.d.ts +4 -0
- package/node_modules/zod/v4/locales/ja.js +115 -0
- package/node_modules/zod/v4/locales/kh.cjs +143 -0
- package/node_modules/zod/v4/locales/kh.d.cts +4 -0
- package/node_modules/zod/v4/locales/kh.d.ts +4 -0
- package/node_modules/zod/v4/locales/kh.js +117 -0
- package/node_modules/zod/v4/locales/ko.cjs +147 -0
- package/node_modules/zod/v4/locales/ko.d.cts +4 -0
- package/node_modules/zod/v4/locales/ko.d.ts +4 -0
- package/node_modules/zod/v4/locales/ko.js +121 -0
- package/node_modules/zod/v4/locales/mk.cjs +144 -0
- package/node_modules/zod/v4/locales/mk.d.cts +4 -0
- package/node_modules/zod/v4/locales/mk.d.ts +4 -0
- package/node_modules/zod/v4/locales/mk.js +118 -0
- package/node_modules/zod/v4/locales/ms.cjs +142 -0
- package/node_modules/zod/v4/locales/ms.d.cts +4 -0
- package/node_modules/zod/v4/locales/ms.d.ts +4 -0
- package/node_modules/zod/v4/locales/ms.js +116 -0
- package/node_modules/zod/v4/locales/nl.cjs +143 -0
- package/node_modules/zod/v4/locales/nl.d.cts +4 -0
- package/node_modules/zod/v4/locales/nl.d.ts +4 -0
- package/node_modules/zod/v4/locales/nl.js +117 -0
- package/node_modules/zod/v4/locales/no.cjs +142 -0
- package/node_modules/zod/v4/locales/no.d.cts +4 -0
- package/node_modules/zod/v4/locales/no.d.ts +4 -0
- package/node_modules/zod/v4/locales/no.js +116 -0
- package/node_modules/zod/v4/locales/ota.cjs +143 -0
- package/node_modules/zod/v4/locales/ota.d.cts +4 -0
- package/node_modules/zod/v4/locales/ota.d.ts +4 -0
- package/node_modules/zod/v4/locales/ota.js +117 -0
- package/node_modules/zod/v4/locales/pl.cjs +143 -0
- package/node_modules/zod/v4/locales/pl.d.cts +4 -0
- package/node_modules/zod/v4/locales/pl.d.ts +4 -0
- package/node_modules/zod/v4/locales/pl.js +117 -0
- package/node_modules/zod/v4/locales/ps.cjs +148 -0
- package/node_modules/zod/v4/locales/ps.d.cts +4 -0
- package/node_modules/zod/v4/locales/ps.d.ts +4 -0
- package/node_modules/zod/v4/locales/ps.js +122 -0
- package/node_modules/zod/v4/locales/pt.cjs +142 -0
- package/node_modules/zod/v4/locales/pt.d.cts +4 -0
- package/node_modules/zod/v4/locales/pt.d.ts +4 -0
- package/node_modules/zod/v4/locales/pt.js +116 -0
- package/node_modules/zod/v4/locales/ru.cjs +190 -0
- package/node_modules/zod/v4/locales/ru.d.cts +4 -0
- package/node_modules/zod/v4/locales/ru.d.ts +4 -0
- package/node_modules/zod/v4/locales/ru.js +164 -0
- package/node_modules/zod/v4/locales/sl.cjs +143 -0
- package/node_modules/zod/v4/locales/sl.d.cts +4 -0
- package/node_modules/zod/v4/locales/sl.d.ts +4 -0
- package/node_modules/zod/v4/locales/sl.js +117 -0
- package/node_modules/zod/v4/locales/sv.cjs +144 -0
- package/node_modules/zod/v4/locales/sv.d.cts +4 -0
- package/node_modules/zod/v4/locales/sv.d.ts +4 -0
- package/node_modules/zod/v4/locales/sv.js +118 -0
- package/node_modules/zod/v4/locales/ta.cjs +143 -0
- package/node_modules/zod/v4/locales/ta.d.cts +4 -0
- package/node_modules/zod/v4/locales/ta.d.ts +4 -0
- package/node_modules/zod/v4/locales/ta.js +117 -0
- package/node_modules/zod/v4/locales/th.cjs +143 -0
- package/node_modules/zod/v4/locales/th.d.cts +4 -0
- package/node_modules/zod/v4/locales/th.d.ts +4 -0
- package/node_modules/zod/v4/locales/th.js +117 -0
- package/node_modules/zod/v4/locales/tr.cjs +143 -0
- package/node_modules/zod/v4/locales/tr.d.cts +5 -0
- package/node_modules/zod/v4/locales/tr.d.ts +5 -0
- package/node_modules/zod/v4/locales/tr.js +115 -0
- package/node_modules/zod/v4/locales/ua.cjs +143 -0
- package/node_modules/zod/v4/locales/ua.d.cts +4 -0
- package/node_modules/zod/v4/locales/ua.d.ts +4 -0
- package/node_modules/zod/v4/locales/ua.js +117 -0
- package/node_modules/zod/v4/locales/ur.cjs +143 -0
- package/node_modules/zod/v4/locales/ur.d.cts +4 -0
- package/node_modules/zod/v4/locales/ur.d.ts +4 -0
- package/node_modules/zod/v4/locales/ur.js +117 -0
- package/node_modules/zod/v4/locales/vi.cjs +142 -0
- package/node_modules/zod/v4/locales/vi.d.cts +4 -0
- package/node_modules/zod/v4/locales/vi.d.ts +4 -0
- package/node_modules/zod/v4/locales/vi.js +116 -0
- package/node_modules/zod/v4/locales/zh-CN.cjs +142 -0
- package/node_modules/zod/v4/locales/zh-CN.d.cts +4 -0
- package/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
- package/node_modules/zod/v4/locales/zh-CN.js +116 -0
- package/node_modules/zod/v4/locales/zh-TW.cjs +143 -0
- package/node_modules/zod/v4/locales/zh-TW.d.cts +4 -0
- package/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
- package/node_modules/zod/v4/locales/zh-TW.js +117 -0
- package/node_modules/zod/v4/mini/checks.cjs +34 -0
- package/node_modules/zod/v4/mini/checks.d.cts +1 -0
- package/node_modules/zod/v4/mini/checks.d.ts +1 -0
- package/node_modules/zod/v4/mini/checks.js +1 -0
- package/node_modules/zod/v4/mini/coerce.cjs +47 -0
- package/node_modules/zod/v4/mini/coerce.d.cts +7 -0
- package/node_modules/zod/v4/mini/coerce.d.ts +7 -0
- package/node_modules/zod/v4/mini/coerce.js +17 -0
- package/node_modules/zod/v4/mini/external.cjs +62 -0
- package/node_modules/zod/v4/mini/external.d.cts +11 -0
- package/node_modules/zod/v4/mini/external.d.ts +11 -0
- package/node_modules/zod/v4/mini/external.js +13 -0
- package/node_modules/zod/v4/mini/index.cjs +32 -0
- package/node_modules/zod/v4/mini/index.d.cts +3 -0
- package/node_modules/zod/v4/mini/index.d.ts +3 -0
- package/node_modules/zod/v4/mini/index.js +3 -0
- package/node_modules/zod/v4/mini/iso.cjs +60 -0
- package/node_modules/zod/v4/mini/iso.d.cts +22 -0
- package/node_modules/zod/v4/mini/iso.d.ts +22 -0
- package/node_modules/zod/v4/mini/iso.js +30 -0
- package/node_modules/zod/v4/mini/parse.cjs +8 -0
- package/node_modules/zod/v4/mini/parse.d.cts +1 -0
- package/node_modules/zod/v4/mini/parse.d.ts +1 -0
- package/node_modules/zod/v4/mini/parse.js +1 -0
- package/node_modules/zod/v4/mini/schemas.cjs +839 -0
- package/node_modules/zod/v4/mini/schemas.d.cts +356 -0
- package/node_modules/zod/v4/mini/schemas.d.ts +356 -0
- package/node_modules/zod/v4/mini/schemas.js +732 -0
- package/node_modules/zod/v4-mini/index.cjs +17 -0
- package/node_modules/zod/v4-mini/index.d.cts +1 -0
- package/node_modules/zod/v4-mini/index.d.ts +1 -0
- package/node_modules/zod/v4-mini/index.js +1 -0
- package/oclif.manifest.json +16 -2
- package/package.json +7 -2
- package/dist/config/auth.config.d.ts +0 -32
- package/dist/core/domain/cipher/agent/agent-registry.d.ts +0 -96
- package/dist/core/domain/cipher/agent/agent-registry.js +0 -254
- package/dist/core/domain/cipher/storage/history-types.d.ts +0 -38
- package/dist/core/domain/cipher/storage/message-storage-types.d.ts +0 -327
- package/dist/core/domain/cipher/streaming/types.d.ts +0 -119
- package/dist/core/domain/cipher/system-prompt/types.d.ts +0 -175
- package/dist/core/domain/cipher/tools/constants.d.ts +0 -33
- package/dist/core/domain/cipher/tools/constants.js +0 -29
- package/dist/core/domain/entities/agent.js +0 -106
- package/dist/core/domain/entities/brv-config.d.ts +0 -61
- package/dist/core/domain/entities/brv-config.js +0 -165
- package/dist/core/domain/entities/space.d.ts +0 -24
- package/dist/core/domain/entities/space.js +0 -52
- package/dist/core/domain/entities/team.d.ts +0 -42
- package/dist/core/domain/entities/team.js +0 -89
- package/dist/core/domain/entities/user.d.ts +0 -20
- package/dist/core/domain/entities/user.js +0 -32
- package/dist/core/domain/errors/connection-error.d.ts +0 -33
- package/dist/core/domain/errors/connection-error.js +0 -54
- package/dist/core/domain/knowledge/relation-parser.d.ts +0 -91
- package/dist/core/domain/knowledge/relation-parser.js +0 -126
- package/dist/core/domain/transport/schemas.d.ts +0 -1240
- package/dist/core/domain/transport/schemas.js +0 -611
- package/dist/core/interfaces/cipher/cipher-services.d.ts +0 -80
- package/dist/core/interfaces/cipher/i-blob-storage.d.ts +0 -84
- package/dist/core/interfaces/cipher/i-chat-session.d.ts +0 -107
- package/dist/core/interfaces/cipher/i-cipher-agent.d.ts +0 -125
- package/dist/core/interfaces/cipher/i-content-generator.d.ts +0 -148
- package/dist/core/interfaces/cipher/i-file-system.d.ts +0 -79
- package/dist/core/interfaces/cipher/i-history-storage.d.ts +0 -53
- package/dist/core/interfaces/cipher/i-llm-service.d.ts +0 -61
- package/dist/core/interfaces/cipher/i-process-service.d.ts +0 -65
- package/dist/core/interfaces/cipher/i-session-persistence.d.ts +0 -133
- package/dist/core/interfaces/cipher/i-system-prompt-contributor.d.ts +0 -25
- package/dist/core/interfaces/cipher/i-todo-storage.d.ts +0 -24
- package/dist/core/interfaces/cipher/i-tool-plugin.d.ts +0 -90
- package/dist/core/interfaces/cipher/i-tool-provider.d.ts +0 -65
- package/dist/core/interfaces/cipher/index.d.ts +0 -32
- package/dist/core/interfaces/connectors/connector-types.d.ts +0 -70
- package/dist/core/interfaces/connectors/i-connector-manager.d.ts +0 -72
- package/dist/core/interfaces/connectors/i-connector.d.ts +0 -54
- package/dist/core/interfaces/executor/i-curate-executor.d.ts +0 -36
- package/dist/core/interfaces/executor/i-query-executor.d.ts +0 -32
- package/dist/core/interfaces/executor/index.d.ts +0 -2
- package/dist/core/interfaces/executor/index.js +0 -2
- package/dist/core/interfaces/i-auth-service.d.ts +0 -35
- package/dist/core/interfaces/i-cogit-pull-service.d.ts +0 -23
- package/dist/core/interfaces/i-cogit-push-service.d.ts +0 -27
- package/dist/core/interfaces/i-context-file-reader.d.ts +0 -35
- package/dist/core/interfaces/i-context-tree-snapshot-service.d.ts +0 -36
- package/dist/core/interfaces/i-context-tree-writer-service.d.ts +0 -32
- package/dist/core/interfaces/i-global-config-store.d.ts +0 -34
- package/dist/core/interfaces/i-http-client.d.ts +0 -33
- package/dist/core/interfaces/i-legacy-rule-detector.d.ts +0 -56
- package/dist/core/interfaces/i-mcp-config-writer.d.ts +0 -40
- package/dist/core/interfaces/i-memory-retrieval-service.d.ts +0 -39
- package/dist/core/interfaces/i-memory-storage-service.d.ts +0 -53
- package/dist/core/interfaces/i-project-config-store.d.ts +0 -26
- package/dist/core/interfaces/i-rule-template-service.d.ts +0 -15
- package/dist/core/interfaces/i-space-service.d.ts +0 -27
- package/dist/core/interfaces/i-team-service.d.ts +0 -28
- package/dist/core/interfaces/i-token-store.d.ts +0 -22
- package/dist/core/interfaces/i-tracking-service.d.ts +0 -21
- package/dist/core/interfaces/i-user-service.d.ts +0 -13
- package/dist/core/interfaces/i-workspace-detector-service.d.ts +0 -8
- package/dist/core/interfaces/noop-implementations.d.ts +0 -53
- package/dist/core/interfaces/transport/i-transport-client.d.ts +0 -104
- package/dist/core/interfaces/transport/index.d.ts +0 -2
- package/dist/core/interfaces/transport/index.js +0 -2
- package/dist/core/interfaces/usecase/i-curate-use-case.d.ts +0 -12
- package/dist/infra/auth/oauth-service.d.ts +0 -64
- package/dist/infra/auth/oidc-discovery-service.d.ts +0 -51
- package/dist/infra/browser/system-browser-launcher.d.ts +0 -10
- package/dist/infra/cipher/agent/agent-error.d.ts +0 -54
- package/dist/infra/cipher/agent/agent-error.js +0 -79
- package/dist/infra/cipher/agent/agent-schemas.d.ts +0 -264
- package/dist/infra/cipher/agent/agent-state-manager.d.ts +0 -140
- package/dist/infra/cipher/agent/base-agent.d.ts +0 -118
- package/dist/infra/cipher/agent/cipher-agent.d.ts +0 -173
- package/dist/infra/cipher/agent/cipher-agent.js +0 -566
- package/dist/infra/cipher/agent/service-initializer.d.ts +0 -79
- package/dist/infra/cipher/agent/service-initializer.js +0 -284
- package/dist/infra/cipher/agent/types.d.ts +0 -35
- package/dist/infra/cipher/blob/blob-reference-resolver.d.ts +0 -107
- package/dist/infra/cipher/blob/blob-storage-factory.d.ts +0 -13
- package/dist/infra/cipher/blob/index.d.ts +0 -10
- package/dist/infra/cipher/blob/index.js +0 -12
- package/dist/infra/cipher/blob/migrations.d.ts +0 -63
- package/dist/infra/cipher/blob/sqlite-blob-storage.d.ts +0 -82
- package/dist/infra/cipher/blob/sqlite-blob-storage.js +0 -307
- package/dist/infra/cipher/display/todo-display.d.ts +0 -23
- package/dist/infra/cipher/events/event-emitter.d.ts +0 -137
- package/dist/infra/cipher/file-system/binary-utils.d.ts +0 -51
- package/dist/infra/cipher/file-system/binary-utils.js +0 -202
- package/dist/infra/cipher/file-system/file-system-service.d.ts +0 -134
- package/dist/infra/cipher/file-system/file-system-service.js +0 -1021
- package/dist/infra/cipher/file-system/path-validator.d.ts +0 -101
- package/dist/infra/cipher/file-system/path-validator.js +0 -289
- package/dist/infra/cipher/file-system/pdf-extractor.d.ts +0 -100
- package/dist/infra/cipher/file-system/pdf-extractor.js +0 -226
- package/dist/infra/cipher/http/internal-llm-http-service.d.ts +0 -133
- package/dist/infra/cipher/http/internal-llm-http-service.js +0 -265
- package/dist/infra/cipher/interactive-commands.d.ts +0 -16
- package/dist/infra/cipher/interactive-loop.d.ts +0 -24
- package/dist/infra/cipher/llm/capability-cache.d.ts +0 -87
- package/dist/infra/cipher/llm/capability-cache.js +0 -125
- package/dist/infra/cipher/llm/context/compaction/compaction-service.d.ts +0 -138
- package/dist/infra/cipher/llm/context/compression/enhanced-compaction.d.ts +0 -112
- package/dist/infra/cipher/llm/context/compression/filter-compacted.d.ts +0 -83
- package/dist/infra/cipher/llm/context/compression/middle-removal.d.ts +0 -40
- package/dist/infra/cipher/llm/context/compression/middle-removal.js +0 -76
- package/dist/infra/cipher/llm/context/compression/oldest-removal.d.ts +0 -38
- package/dist/infra/cipher/llm/context/compression/oldest-removal.js +0 -53
- package/dist/infra/cipher/llm/context/compression/reactive-overflow.d.ts +0 -107
- package/dist/infra/cipher/llm/context/compression/reactive-overflow.js +0 -272
- package/dist/infra/cipher/llm/context/compression/types.d.ts +0 -36
- package/dist/infra/cipher/llm/context/context-manager.d.ts +0 -332
- package/dist/infra/cipher/llm/context/context-manager.js +0 -671
- package/dist/infra/cipher/llm/context/utils.d.ts +0 -17
- package/dist/infra/cipher/llm/formatters/claude-formatter.d.ts +0 -54
- package/dist/infra/cipher/llm/formatters/gemini-formatter.d.ts +0 -82
- package/dist/infra/cipher/llm/formatters/openrouter-formatter.d.ts +0 -47
- package/dist/infra/cipher/llm/formatters/openrouter-formatter.js +0 -238
- package/dist/infra/cipher/llm/generators/byterover-content-generator.d.ts +0 -91
- package/dist/infra/cipher/llm/generators/logging-content-generator.d.ts +0 -104
- package/dist/infra/cipher/llm/generators/logging-content-generator.js +0 -182
- package/dist/infra/cipher/llm/generators/openrouter-content-generator.d.ts +0 -94
- package/dist/infra/cipher/llm/generators/retryable-content-generator.d.ts +0 -90
- package/dist/infra/cipher/llm/generators/retryable-content-generator.js +0 -157
- package/dist/infra/cipher/llm/index.d.ts +0 -9
- package/dist/infra/cipher/llm/index.js +0 -13
- package/dist/infra/cipher/llm/internal-llm-service.d.ts +0 -362
- package/dist/infra/cipher/llm/internal-llm-service.js +0 -1059
- package/dist/infra/cipher/llm/openrouter-llm-service.d.ts +0 -215
- package/dist/infra/cipher/llm/openrouter-llm-service.js +0 -572
- package/dist/infra/cipher/llm/response-validator.d.ts +0 -89
- package/dist/infra/cipher/llm/sanitization/tool-sanitizer.d.ts +0 -74
- package/dist/infra/cipher/llm/sanitization/tool-sanitizer.js +0 -398
- package/dist/infra/cipher/llm/stream-processor.d.ts +0 -178
- package/dist/infra/cipher/llm/thought-parser.js +0 -217
- package/dist/infra/cipher/llm/tokenizers/claude-tokenizer.d.ts +0 -40
- package/dist/infra/cipher/llm/tokenizers/claude-tokenizer.js +0 -48
- package/dist/infra/cipher/llm/tokenizers/default-tokenizer.d.ts +0 -31
- package/dist/infra/cipher/llm/tokenizers/gemini-tokenizer.d.ts +0 -38
- package/dist/infra/cipher/llm/tokenizers/gemini-tokenizer.js +0 -46
- package/dist/infra/cipher/llm/tokenizers/openrouter-tokenizer.d.ts +0 -37
- package/dist/infra/cipher/llm/tokenizers/openrouter-tokenizer.js +0 -49
- package/dist/infra/cipher/llm/tool-output-processor.d.ts +0 -178
- package/dist/infra/cipher/llm/transformers/openrouter-stream-transformer.d.ts +0 -49
- package/dist/infra/cipher/llm/transformers/openrouter-stream-transformer.js +0 -272
- package/dist/infra/cipher/logger/console-logger.d.ts +0 -42
- package/dist/infra/cipher/logger/event-based-logger.d.ts +0 -54
- package/dist/infra/cipher/memory/index.d.ts +0 -6
- package/dist/infra/cipher/memory/index.js +0 -7
- package/dist/infra/cipher/memory/memory-manager.d.ts +0 -136
- package/dist/infra/cipher/memory/memory-manager.js +0 -523
- package/dist/infra/cipher/process/command-validator.d.ts +0 -82
- package/dist/infra/cipher/process/process-service.d.ts +0 -127
- package/dist/infra/cipher/process/process-service.js +0 -528
- package/dist/infra/cipher/session/chat-session.d.ts +0 -141
- package/dist/infra/cipher/session/chat-session.js +0 -372
- package/dist/infra/cipher/session/index.d.ts +0 -7
- package/dist/infra/cipher/session/index.js +0 -7
- package/dist/infra/cipher/session/session-manager.d.ts +0 -210
- package/dist/infra/cipher/session/session-metadata-store.d.ts +0 -52
- package/dist/infra/cipher/session/session-metadata-store.js +0 -406
- package/dist/infra/cipher/session/session-status.d.ts +0 -137
- package/dist/infra/cipher/storage/blob-history-storage.d.ts +0 -76
- package/dist/infra/cipher/storage/dual-format-history-storage.d.ts +0 -77
- package/dist/infra/cipher/storage/granular-history-storage.d.ts +0 -65
- package/dist/infra/cipher/storage/message-storage-service.d.ts +0 -171
- package/dist/infra/cipher/storage/message-storage-service.js +0 -779
- package/dist/infra/cipher/storage/sqlite-key-storage.d.ts +0 -105
- package/dist/infra/cipher/storage/sqlite-key-storage.js +0 -404
- package/dist/infra/cipher/storage/tool-part-factory.d.ts +0 -116
- package/dist/infra/cipher/system-prompt/contributors/agent-prompt-contributor.d.ts +0 -59
- package/dist/infra/cipher/system-prompt/contributors/agent-prompt-contributor.js +0 -131
- package/dist/infra/cipher/system-prompt/contributors/companion-contributor.d.ts +0 -54
- package/dist/infra/cipher/system-prompt/contributors/companion-contributor.js +0 -107
- package/dist/infra/cipher/system-prompt/contributors/context-tree-structure-contributor.d.ts +0 -67
- package/dist/infra/cipher/system-prompt/contributors/context-tree-structure-contributor.js +0 -220
- package/dist/infra/cipher/system-prompt/contributors/datetime-contributor.d.ts +0 -25
- package/dist/infra/cipher/system-prompt/contributors/environment-contributor.d.ts +0 -25
- package/dist/infra/cipher/system-prompt/contributors/file-contributor.d.ts +0 -60
- package/dist/infra/cipher/system-prompt/contributors/file-contributor.js +0 -128
- package/dist/infra/cipher/system-prompt/contributors/memory-contributor.d.ts +0 -40
- package/dist/infra/cipher/system-prompt/contributors/static-contributor.d.ts +0 -26
- package/dist/infra/cipher/system-prompt/environment-context-builder.d.ts +0 -112
- package/dist/infra/cipher/system-prompt/environment-context-builder.js +0 -256
- package/dist/infra/cipher/system-prompt/schemas.d.ts +0 -151
- package/dist/infra/cipher/system-prompt/system-prompt-manager.d.ts +0 -136
- package/dist/infra/cipher/system-prompt/system-prompt-manager.js +0 -307
- package/dist/infra/cipher/todos/todo-storage-service.d.ts +0 -26
- package/dist/infra/cipher/tools/core-tool-scheduler.d.ts +0 -99
- package/dist/infra/cipher/tools/core-tool-scheduler.js +0 -165
- package/dist/infra/cipher/tools/default-policy-rules.d.ts +0 -26
- package/dist/infra/cipher/tools/implementations/bash-exec-tool.d.ts +0 -13
- package/dist/infra/cipher/tools/implementations/bash-exec-tool.js +0 -110
- package/dist/infra/cipher/tools/implementations/bash-output-tool.d.ts +0 -12
- package/dist/infra/cipher/tools/implementations/bash-output-tool.js +0 -43
- package/dist/infra/cipher/tools/implementations/batch-tool.d.ts +0 -12
- package/dist/infra/cipher/tools/implementations/batch-tool.js +0 -142
- package/dist/infra/cipher/tools/implementations/create-knowledge-topic-tool.d.ts +0 -11
- package/dist/infra/cipher/tools/implementations/create-knowledge-topic-tool.js +0 -149
- package/dist/infra/cipher/tools/implementations/curate-tool.d.ts +0 -3
- package/dist/infra/cipher/tools/implementations/curate-tool.js +0 -927
- package/dist/infra/cipher/tools/implementations/delete-memory-tool.d.ts +0 -12
- package/dist/infra/cipher/tools/implementations/delete-memory-tool.js +0 -37
- package/dist/infra/cipher/tools/implementations/edit-file-tool.d.ts +0 -13
- package/dist/infra/cipher/tools/implementations/edit-file-tool.js +0 -50
- package/dist/infra/cipher/tools/implementations/edit-memory-tool.d.ts +0 -13
- package/dist/infra/cipher/tools/implementations/edit-memory-tool.js +0 -53
- package/dist/infra/cipher/tools/implementations/glob-files-tool.d.ts +0 -18
- package/dist/infra/cipher/tools/implementations/glob-files-tool.js +0 -70
- package/dist/infra/cipher/tools/implementations/grep-content-tool.d.ts +0 -12
- package/dist/infra/cipher/tools/implementations/grep-content-tool.js +0 -77
- package/dist/infra/cipher/tools/implementations/kill-process-tool.d.ts +0 -12
- package/dist/infra/cipher/tools/implementations/kill-process-tool.js +0 -55
- package/dist/infra/cipher/tools/implementations/list-directory-tool.d.ts +0 -12
- package/dist/infra/cipher/tools/implementations/list-directory-tool.js +0 -52
- package/dist/infra/cipher/tools/implementations/list-memories-tool.d.ts +0 -12
- package/dist/infra/cipher/tools/implementations/list-memories-tool.js +0 -63
- package/dist/infra/cipher/tools/implementations/read-file-tool.d.ts +0 -19
- package/dist/infra/cipher/tools/implementations/read-file-tool.js +0 -96
- package/dist/infra/cipher/tools/implementations/read-memory-tool.d.ts +0 -12
- package/dist/infra/cipher/tools/implementations/read-memory-tool.js +0 -39
- package/dist/infra/cipher/tools/implementations/read-todos-tool.d.ts +0 -11
- package/dist/infra/cipher/tools/implementations/read-todos-tool.js +0 -39
- package/dist/infra/cipher/tools/implementations/search-history-tool.d.ts +0 -10
- package/dist/infra/cipher/tools/implementations/search-history-tool.js +0 -36
- package/dist/infra/cipher/tools/implementations/search-knowledge-tool.d.ts +0 -7
- package/dist/infra/cipher/tools/implementations/search-knowledge-tool.js +0 -303
- package/dist/infra/cipher/tools/implementations/spec-analyze-tool.d.ts +0 -7
- package/dist/infra/cipher/tools/implementations/spec-analyze-tool.js +0 -78
- package/dist/infra/cipher/tools/implementations/task-tool.d.ts +0 -34
- package/dist/infra/cipher/tools/implementations/task-tool.js +0 -254
- package/dist/infra/cipher/tools/implementations/write-file-tool.d.ts +0 -12
- package/dist/infra/cipher/tools/implementations/write-file-tool.js +0 -52
- package/dist/infra/cipher/tools/implementations/write-memory-tool.d.ts +0 -13
- package/dist/infra/cipher/tools/implementations/write-memory-tool.js +0 -52
- package/dist/infra/cipher/tools/implementations/write-todos-tool.d.ts +0 -13
- package/dist/infra/cipher/tools/implementations/write-todos-tool.js +0 -121
- package/dist/infra/cipher/tools/index.d.ts +0 -19
- package/dist/infra/cipher/tools/index.js +0 -20
- package/dist/infra/cipher/tools/plugins/logging-plugin.d.ts +0 -28
- package/dist/infra/cipher/tools/plugins/plugin-manager.d.ts +0 -81
- package/dist/infra/cipher/tools/plugins/plugin-manager.js +0 -122
- package/dist/infra/cipher/tools/policy-engine.d.ts +0 -80
- package/dist/infra/cipher/tools/streaming/metadata-handler.d.ts +0 -31
- package/dist/infra/cipher/tools/tool-description-loader.js +0 -108
- package/dist/infra/cipher/tools/tool-invocation.d.ts +0 -216
- package/dist/infra/cipher/tools/tool-invocation.js +0 -294
- package/dist/infra/cipher/tools/tool-manager.d.ts +0 -175
- package/dist/infra/cipher/tools/tool-manager.js +0 -333
- package/dist/infra/cipher/tools/tool-provider-getter.d.ts +0 -6
- package/dist/infra/cipher/tools/tool-provider.d.ts +0 -102
- package/dist/infra/cipher/tools/tool-provider.js +0 -252
- package/dist/infra/cipher/tools/tool-registry.d.ts +0 -75
- package/dist/infra/cipher/tools/tool-registry.js +0 -200
- package/dist/infra/cipher/tools/utils/schema-converter.d.ts +0 -10
- package/dist/infra/cipher/tools/utils/schema-converter.js +0 -29
- package/dist/infra/cogit/context-tree-to-push-context-mapper.d.ts +0 -21
- package/dist/infra/cogit/http-cogit-pull-service.d.ts +0 -15
- package/dist/infra/cogit/http-cogit-push-service.d.ts +0 -17
- package/dist/infra/config/file-config-store.d.ts +0 -19
- package/dist/infra/connectors/connector-manager.d.ts +0 -32
- package/dist/infra/connectors/connector-manager.js +0 -160
- package/dist/infra/connectors/hook/hook-connector.d.ts +0 -46
- package/dist/infra/connectors/hook/hook-connector.js +0 -231
- package/dist/infra/connectors/mcp/json-mcp-config-writer.d.ts +0 -26
- package/dist/infra/connectors/mcp/mcp-connector.d.ts +0 -80
- package/dist/infra/connectors/mcp/mcp-connector.js +0 -324
- package/dist/infra/connectors/mcp/toml-mcp-config-writer.d.ts +0 -45
- package/dist/infra/connectors/rules/legacy-rule-detector.d.ts +0 -21
- package/dist/infra/connectors/rules/rules-connector-config.d.ts +0 -99
- package/dist/infra/connectors/rules/rules-connector.d.ts +0 -34
- package/dist/infra/connectors/rules/rules-connector.js +0 -139
- package/dist/infra/connectors/shared/rule-file-manager.d.ts +0 -72
- package/dist/infra/connectors/shared/template-service.d.ts +0 -27
- package/dist/infra/connectors/skill/skill-connector.d.ts +0 -39
- package/dist/infra/connectors/skill/skill-connector.js +0 -160
- package/dist/infra/connectors/skill/skill-content-loader.d.ts +0 -18
- package/dist/infra/connectors/skill/skill-content-loader.js +0 -33
- package/dist/infra/context-tree/file-context-file-reader.d.ts +0 -14
- package/dist/infra/context-tree/file-context-tree-service.d.ts +0 -14
- package/dist/infra/context-tree/file-context-tree-snapshot-service.d.ts +0 -34
- package/dist/infra/context-tree/file-context-tree-writer-service.d.ts +0 -28
- package/dist/infra/context-tree/path-utils.d.ts +0 -7
- package/dist/infra/context-tree/path-utils.js +0 -7
- package/dist/infra/core/executors/curate-executor.d.ts +0 -30
- package/dist/infra/core/executors/curate-executor.js +0 -88
- package/dist/infra/core/executors/index.d.ts +0 -2
- package/dist/infra/core/executors/index.js +0 -2
- package/dist/infra/core/executors/query-executor.d.ts +0 -29
- package/dist/infra/core/executors/query-executor.js +0 -87
- package/dist/infra/core/task-processor.d.ts +0 -83
- package/dist/infra/core/task-processor.js +0 -116
- package/dist/infra/file/fs-file-service.d.ts +0 -44
- package/dist/infra/http/authenticated-http-client.d.ts +0 -65
- package/dist/infra/http/authenticated-http-client.js +0 -138
- package/dist/infra/http/callback-handler.d.ts +0 -13
- package/dist/infra/mcp/mcp-server.js +0 -178
- package/dist/infra/mcp/tools/brv-curate-tool.d.ts +0 -29
- package/dist/infra/mcp/tools/brv-curate-tool.js +0 -73
- package/dist/infra/mcp/tools/brv-query-tool.d.ts +0 -17
- package/dist/infra/mcp/tools/brv-query-tool.js +0 -68
- package/dist/infra/mcp/tools/task-result-waiter.d.ts +0 -30
- package/dist/infra/memory/http-memory-retrieval-service.d.ts +0 -18
- package/dist/infra/memory/http-memory-storage-service.d.ts +0 -18
- package/dist/infra/process/agent-worker.js +0 -1354
- package/dist/infra/process/inline-agent-executor.d.ts +0 -32
- package/dist/infra/process/inline-agent-executor.js +0 -259
- package/dist/infra/process/process-manager.js +0 -755
- package/dist/infra/process/transport-handlers.js +0 -470
- package/dist/infra/repl/commands/arg-parser.d.ts +0 -97
- package/dist/infra/repl/commands/arg-parser.js +0 -129
- package/dist/infra/repl/commands/connectors-command.d.ts +0 -8
- package/dist/infra/repl/commands/connectors-command.js +0 -49
- package/dist/infra/repl/commands/curate-command.d.ts +0 -9
- package/dist/infra/repl/commands/curate-command.js +0 -83
- package/dist/infra/repl/commands/index.d.ts +0 -8
- package/dist/infra/repl/commands/index.js +0 -45
- package/dist/infra/repl/commands/init-command.d.ts +0 -7
- package/dist/infra/repl/commands/init-command.js +0 -87
- package/dist/infra/repl/commands/login-command.d.ts +0 -7
- package/dist/infra/repl/commands/login-command.js +0 -50
- package/dist/infra/repl/commands/logout-command.d.ts +0 -5
- package/dist/infra/repl/commands/logout-command.js +0 -48
- package/dist/infra/repl/commands/model-command.d.ts +0 -13
- package/dist/infra/repl/commands/model-command.js +0 -212
- package/dist/infra/repl/commands/new-command.d.ts +0 -14
- package/dist/infra/repl/commands/new-command.js +0 -61
- package/dist/infra/repl/commands/provider-command.d.ts +0 -13
- package/dist/infra/repl/commands/provider-command.js +0 -181
- package/dist/infra/repl/commands/pull-command.d.ts +0 -5
- package/dist/infra/repl/commands/pull-command.js +0 -61
- package/dist/infra/repl/commands/push-command.d.ts +0 -5
- package/dist/infra/repl/commands/push-command.js +0 -66
- package/dist/infra/repl/commands/query-command.d.ts +0 -5
- package/dist/infra/repl/commands/query-command.js +0 -83
- package/dist/infra/repl/commands/reset-command.d.ts +0 -5
- package/dist/infra/repl/commands/reset-command.js +0 -61
- package/dist/infra/repl/commands/space/index.d.ts +0 -5
- package/dist/infra/repl/commands/space/index.js +0 -14
- package/dist/infra/repl/commands/space/list-command.d.ts +0 -5
- package/dist/infra/repl/commands/space/list-command.js +0 -70
- package/dist/infra/repl/commands/space/switch-command.d.ts +0 -5
- package/dist/infra/repl/commands/space/switch-command.js +0 -35
- package/dist/infra/repl/commands/status-command.d.ts +0 -5
- package/dist/infra/repl/commands/status-command.js +0 -39
- package/dist/infra/repl/repl-startup.d.ts +0 -22
- package/dist/infra/repl/repl-startup.js +0 -33
- package/dist/infra/repl/transport-client-helper.d.ts +0 -9
- package/dist/infra/repl/transport-client-helper.js +0 -100
- package/dist/infra/space/http-space-service.d.ts +0 -20
- package/dist/infra/space/http-space-service.js +0 -68
- package/dist/infra/storage/file-global-config-store.d.ts +0 -22
- package/dist/infra/storage/file-onboarding-preference-store.d.ts +0 -10
- package/dist/infra/storage/file-token-store.d.ts +0 -31
- package/dist/infra/storage/keychain-token-store.d.ts +0 -13
- package/dist/infra/storage/token-store.d.ts +0 -11
- package/dist/infra/team/http-team-service.d.ts +0 -21
- package/dist/infra/template/fs-template-loader.d.ts +0 -33
- package/dist/infra/terminal/headless-terminal.d.ts +0 -91
- package/dist/infra/terminal/oclif-terminal.d.ts +0 -19
- package/dist/infra/terminal/repl-terminal.d.ts +0 -31
- package/dist/infra/tracking/mixpanel-tracking-service.d.ts +0 -24
- package/dist/infra/transport/index.d.ts +0 -4
- package/dist/infra/transport/index.js +0 -4
- package/dist/infra/transport/socket-io-transport-client.d.ts +0 -149
- package/dist/infra/transport/socket-io-transport-client.js +0 -677
- package/dist/infra/transport/transport-client-factory.d.ts +0 -76
- package/dist/infra/transport/transport-client-factory.js +0 -168
- package/dist/infra/transport/transport-factory.d.ts +0 -33
- package/dist/infra/transport/transport-factory.js +0 -59
- package/dist/infra/usecase/connectors-use-case.d.ts +0 -63
- package/dist/infra/usecase/connectors-use-case.js +0 -228
- package/dist/infra/usecase/curate-use-case.d.ts +0 -58
- package/dist/infra/usecase/curate-use-case.js +0 -264
- package/dist/infra/usecase/init-use-case.d.ts +0 -126
- package/dist/infra/usecase/login-use-case.d.ts +0 -30
- package/dist/infra/usecase/logout-use-case.d.ts +0 -22
- package/dist/infra/usecase/logout-use-case.js +0 -51
- package/dist/infra/usecase/pull-use-case.d.ts +0 -49
- package/dist/infra/usecase/pull-use-case.js +0 -147
- package/dist/infra/usecase/push-use-case.d.ts +0 -50
- package/dist/infra/usecase/push-use-case.js +0 -191
- package/dist/infra/usecase/query-use-case.d.ts +0 -72
- package/dist/infra/usecase/query-use-case.js +0 -411
- package/dist/infra/usecase/reset-use-case.d.ts +0 -21
- package/dist/infra/usecase/space-list-use-case.d.ts +0 -27
- package/dist/infra/usecase/space-switch-use-case.d.ts +0 -26
- package/dist/infra/usecase/space-switch-use-case.js +0 -110
- package/dist/infra/usecase/status-use-case.d.ts +0 -73
- package/dist/infra/usecase/status-use-case.js +0 -287
- package/dist/infra/user/http-user-service.d.ts +0 -12
- package/dist/infra/user/http-user-service.js +0 -22
- package/dist/infra/workspace/workspace-detector-service.d.ts +0 -57
- package/dist/resources/prompts/curate.yml +0 -238
- package/dist/resources/prompts/explore.yml +0 -112
- package/dist/resources/prompts/plan.yml +0 -120
- package/dist/resources/prompts/query-orchestrator.yml +0 -112
- package/dist/resources/prompts/system-prompt.yml +0 -99
- package/dist/resources/tools/task.txt +0 -23
- package/dist/templates/sections/brv-instructions.md +0 -98
- package/dist/tui/components/execution/expanded-message-view.d.ts +0 -24
- package/dist/tui/components/execution/expanded-message-view.js +0 -68
- package/dist/tui/components/onboarding/onboarding-flow.d.ts +0 -15
- package/dist/tui/components/onboarding/onboarding-flow.js +0 -103
- package/dist/tui/contexts/status-context.d.ts +0 -33
- package/dist/tui/contexts/status-context.js +0 -159
- package/dist/tui/hooks/use-tab-navigation.d.ts +0 -11
- package/dist/tui/hooks/use-tab-navigation.js +0 -42
- package/dist/tui/views/command-view.d.ts +0 -19
- package/dist/tui/views/command-view.js +0 -479
- package/dist/tui/views/logs-view.d.ts +0 -32
- package/dist/tui/views/logs-view.js +0 -90
- package/dist/utils/connection-error-handler.d.ts +0 -16
- package/dist/utils/connection-error-handler.js +0 -49
- package/dist/utils/file-validator.js +0 -84
- package/dist/utils/type-guards.d.ts +0 -16
- /package/dist/{core/domain/cipher → agent/core/domain}/agent/agent-info.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/agent/agent-info.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/agent/agent-state-machine.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/agent/agent-state-machine.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/agent/agent-state.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/agent/agent-state.js +0 -0
- /package/dist/{infra/cipher → agent/core/domain/agent}/exit-codes.d.ts +0 -0
- /package/dist/{infra/cipher → agent/core/domain/agent}/exit-codes.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/agent/index.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/agent/index.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/agent-events/index.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/agent-events/index.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/agent-events/types.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/agent-events/types.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/blob/types.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/blob/types.js +0 -0
- /package/dist/{core/domain/cipher/file-system → agent/core/domain/environment}/types.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/blob-error.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/blob-error.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/error-normalizer.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/error-normalizer.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/file-system-error.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/file-system-error.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/llm-error.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/llm-error.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/memory-error.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/memory-error.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/process-error-code.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/process-error-code.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/process-error.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/process-error.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/session-error.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/session-error.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/storage-error.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/storage-error.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/system-prompt-error-codes.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/system-prompt-error-codes.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/system-prompt-error.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/system-prompt-error.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/tool-error.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/errors/tool-error.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/file-system/types.d.ts +0 -0
- /package/dist/{core/domain/cipher/process → agent/core/domain/file-system}/types.js +0 -0
- /package/dist/{core/domain/cipher/session/types.js → agent/core/domain/folder-pack/index.js} +0 -0
- /package/dist/{core/domain/cipher/system-prompt → agent/core/domain/folder-pack}/types.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/llm/error-codes.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/llm/error-codes.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/llm/index.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/llm/index.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/llm/registry.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/llm/registry.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/llm/schemas.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/llm/schemas.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/llm/types.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/llm/types.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/memory/types.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/memory/types.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/parsed-interaction.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/parsed-interaction.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/process/types.d.ts +0 -0
- /package/dist/{core/domain/cipher/tools → agent/core/domain/process}/types.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/queue/types.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/queue/types.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/session/session-metadata.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/session/session-metadata.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/session/types.d.ts +0 -0
- /package/dist/{infra/cipher/agent → agent/core/domain/session}/types.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/storage/history-types.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/storage/message-storage-types.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/streaming/types.js +0 -0
- /package/dist/{infra/cipher/llm/context/compression → agent/core/domain/system-prompt}/types.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/todos/index.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/todos/index.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/todos/types.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/todos/types.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/tools/tool-error.d.ts +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/tools/tool-error.js +0 -0
- /package/dist/{core/domain/cipher → agent/core/domain}/tools/types.d.ts +0 -0
- /package/dist/{core/interfaces/cipher/cipher-services.js → agent/core/domain/tools/types.js} +0 -0
- /package/dist/{core/interfaces/cipher/i-blob-storage.js → agent/core/interfaces/cipher-services.js} +0 -0
- /package/dist/{core/interfaces/cipher/i-chat-session.js → agent/core/interfaces/i-blob-storage.js} +0 -0
- /package/dist/{core/interfaces/cipher/i-cipher-agent.js → agent/core/interfaces/i-chat-session.js} +0 -0
- /package/dist/{core/interfaces/cipher/i-event-emitter.js → agent/core/interfaces/i-cipher-agent.js} +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/i-content-generator.js +0 -0
- /package/dist/{core/interfaces/cipher/i-file-system.js → agent/core/interfaces/i-document-parser-service.js} +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/i-event-emitter.d.ts +0 -0
- /package/dist/{core/interfaces/cipher/i-history-storage.js → agent/core/interfaces/i-event-emitter.js} +0 -0
- /package/dist/{core/interfaces/cipher/i-key-storage.js → agent/core/interfaces/i-file-system.js} +0 -0
- /package/dist/{core/interfaces/cipher/i-llm-provider.js → agent/core/interfaces/i-folder-pack-service.js} +0 -0
- /package/dist/{core/interfaces/cipher/i-llm-service.js → agent/core/interfaces/i-history-storage.js} +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/i-key-storage.d.ts +0 -0
- /package/dist/{core/interfaces/cipher/i-message-formatter.js → agent/core/interfaces/i-key-storage.js} +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/i-llm-provider.d.ts +0 -0
- /package/dist/{core/interfaces/cipher/i-process-service.js → agent/core/interfaces/i-llm-provider.js} +0 -0
- /package/dist/{core/interfaces/cipher/i-system-prompt-contributor.js → agent/core/interfaces/i-llm-service.js} +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/i-logger.d.ts +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/i-logger.js +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/i-message-formatter.d.ts +0 -0
- /package/dist/{core/interfaces/cipher/i-todo-storage.js → agent/core/interfaces/i-message-formatter.js} +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/i-policy-engine.d.ts +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/i-policy-engine.js +0 -0
- /package/dist/{core/interfaces/cipher/i-tokenizer.js → agent/core/interfaces/i-process-service.js} +0 -0
- /package/dist/{core/interfaces/cipher/i-tool-plugin.js → agent/core/interfaces/i-sandbox-service.js} +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/i-session-persistence.js +0 -0
- /package/dist/{core/interfaces/cipher/i-tool-provider.js → agent/core/interfaces/i-system-prompt-contributor.js} +0 -0
- /package/dist/{core/interfaces/connectors/connector-types.js → agent/core/interfaces/i-todo-storage.js} +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/i-tokenizer.d.ts +0 -0
- /package/dist/{core/interfaces/connectors/i-connector-manager.js → agent/core/interfaces/i-tokenizer.js} +0 -0
- /package/dist/{core/interfaces/connectors/i-connector.js → agent/core/interfaces/i-tool-plugin.js} +0 -0
- /package/dist/{core/interfaces/executor/i-curate-executor.js → agent/core/interfaces/i-tool-provider.js} +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/i-tool-scheduler.d.ts +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/i-tool-scheduler.js +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/index.js +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/llm-types.d.ts +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/llm-types.js +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/message-factory.d.ts +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/message-factory.js +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/message-type-guards.d.ts +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/message-type-guards.js +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/message-types.d.ts +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/message-types.js +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/sanitization-types.d.ts +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/sanitization-types.js +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/tokenizer-types.d.ts +0 -0
- /package/dist/{core/interfaces/cipher → agent/core/interfaces}/tokenizer-types.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/agent/agent-error-codes.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/agent/agent-error-codes.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/agent/agent-schemas.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/agent/agent-state-manager.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/agent/base-agent.js +0 -0
- /package/dist/{infra/cipher → agent/infra/agent}/command-parser.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra/agent}/command-parser.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/agent/index.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/agent/index.js +0 -0
- /package/dist/{infra/cipher → agent/infra/agent}/interactive-commands.js +0 -0
- /package/dist/{infra/cipher → agent/infra/agent}/interactive-loop.js +0 -0
- /package/dist/{core/interfaces/executor/i-query-executor.js → agent/infra/agent/types.js} +0 -0
- /package/dist/{infra/cipher → agent/infra}/blob/blob-reference-resolver.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/blob/blob-reference-utils.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/blob/blob-reference-utils.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/blob/blob-storage-factory.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/blob/migrations.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/display/todo-display.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/events/event-emitter.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/file-system/context-tree-file-system-factory.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/file-system/context-tree-file-system-factory.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/file-system/gitignore-filter.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/file-system/gitignore-filter.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/file-system/glob-utils.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/file-system/glob-utils.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/context/async-mutex.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/context/async-mutex.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/context/compaction/compaction-service.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/context/compaction/index.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/context/compaction/index.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/context/compression/enhanced-compaction.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/context/compression/filter-compacted.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/context/compression/index.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/context/compression/index.js +0 -0
- /package/dist/{core/interfaces/i-auth-service.js → agent/infra/llm/context/compression/types.js} +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/context/index.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/context/index.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/context/loop-detector.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/context/loop-detector.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/context/rw-lock.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/context/rw-lock.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/context/utils.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/formatters/claude-formatter.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/formatters/gemini-formatter.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/generators/byterover-content-generator.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/generators/index.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/generators/index.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/generators/openrouter-content-generator.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/model-capabilities.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/model-capabilities.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/response-validator.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/retry/index.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/retry/index.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/retry/retry-policy.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/retry/retry-policy.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/retry/retry-with-backoff.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/retry/retry-with-backoff.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/sanitization/base64-utils.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/sanitization/base64-utils.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/sanitization/index.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/sanitization/index.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/stream-processor.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/thought-parser.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/tokenizers/default-tokenizer.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/tool-output-processor.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/transformers/reasoning-extractor.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/llm/transformers/reasoning-extractor.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/logger/console-logger.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/logger/event-based-logger.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/process/command-validator.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/process/index.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/process/index.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/process/path-utils.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/process/path-utils.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/session/message-queue.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/session/message-queue.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/session/session-event-forwarder.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/session/session-event-forwarder.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/session/session-manager.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/session/session-status.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/session/title-generator.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/session/title-generator.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/storage/blob-history-storage.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/storage/dual-format-history-storage.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/storage/granular-history-storage.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/storage/process-utils.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/storage/process-utils.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/storage/tool-part-factory.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/system-prompt/contributor-schemas.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/system-prompt/contributor-schemas.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/system-prompt/contributors/datetime-contributor.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/system-prompt/contributors/environment-contributor.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/system-prompt/contributors/index.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/system-prompt/contributors/index.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/system-prompt/contributors/memory-contributor.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/system-prompt/contributors/static-contributor.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/system-prompt/prompt-cache.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/system-prompt/prompt-cache.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/system-prompt/schemas.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/todos/todo-storage-service.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/tools/default-policy-rules.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/tools/plugins/index.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/tools/plugins/index.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/tools/plugins/logging-plugin.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/tools/policy-engine.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/tools/streaming/index.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/tools/streaming/index.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/tools/streaming/metadata-handler.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/tools/tool-description-loader.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/tools/tool-invocation-queue.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/tools/tool-invocation-queue.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/tools/tool-markers.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/tools/tool-markers.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/tools/tool-provider-getter.js +0 -0
- /package/dist/{infra/cipher → agent/infra}/validation/workspace-validator.d.ts +0 -0
- /package/dist/{infra/cipher → agent/infra}/validation/workspace-validator.js +0 -0
- /package/dist/{resources → agent/resources}/prompts/reflection.yml +0 -0
- /package/dist/{resources → agent/resources}/prompts/tool-outputs.yml +0 -0
- /package/dist/{resources → agent/resources}/tools/bash_exec.txt +0 -0
- /package/dist/{resources → agent/resources}/tools/bash_output.txt +0 -0
- /package/dist/{resources → agent/resources}/tools/batch.txt +0 -0
- /package/dist/{resources → agent/resources}/tools/create_knowledge_topic.txt +0 -0
- /package/dist/{resources → agent/resources}/tools/curate.txt +0 -0
- /package/dist/{resources → agent/resources}/tools/delete_memory.txt +0 -0
- /package/dist/{resources → agent/resources}/tools/detect_domains.txt +0 -0
- /package/dist/{resources → agent/resources}/tools/edit_file.txt +0 -0
- /package/dist/{resources → agent/resources}/tools/edit_memory.txt +0 -0
- /package/dist/{resources → agent/resources}/tools/glob_files.txt +0 -0
- /package/dist/{resources → agent/resources}/tools/grep_content.txt +0 -0
- /package/dist/{resources → agent/resources}/tools/kill_process.txt +0 -0
- /package/dist/{resources → agent/resources}/tools/list_directory.txt +0 -0
- /package/dist/{resources → agent/resources}/tools/list_memories.txt +0 -0
- /package/dist/{resources → agent/resources}/tools/read_file.txt +0 -0
- /package/dist/{resources → agent/resources}/tools/read_memory.txt +0 -0
- /package/dist/{resources → agent/resources}/tools/read_todos.txt +0 -0
- /package/dist/{resources → agent/resources}/tools/search_history.txt +0 -0
- /package/dist/{resources → agent/resources}/tools/search_knowledge.txt +0 -0
- /package/dist/{resources → agent/resources}/tools/write_file.txt +0 -0
- /package/dist/{resources → agent/resources}/tools/write_memory.txt +0 -0
- /package/dist/{resources → agent/resources}/tools/write_todos.txt +0 -0
- /package/dist/{config → server/config}/auth.config.js +0 -0
- /package/dist/{config → server/config}/environment.d.ts +0 -0
- /package/dist/{config → server/config}/environment.js +0 -0
- /package/dist/{constants.d.ts → server/constants.d.ts} +0 -0
- /package/dist/{constants.js → server/constants.js} +0 -0
- /package/dist/{core → server/core}/domain/entities/agent.d.ts +0 -0
- /package/dist/{core → server/core}/domain/entities/auth-token.d.ts +0 -0
- /package/dist/{core → server/core}/domain/entities/auth-token.js +0 -0
- /package/dist/{core → server/core}/domain/entities/bullet.d.ts +0 -0
- /package/dist/{core → server/core}/domain/entities/bullet.js +0 -0
- /package/dist/{core → server/core}/domain/entities/cogit-push-context.d.ts +0 -0
- /package/dist/{core → server/core}/domain/entities/cogit-push-context.js +0 -0
- /package/dist/{core → server/core}/domain/entities/cogit-push-response.d.ts +0 -0
- /package/dist/{core → server/core}/domain/entities/cogit-push-response.js +0 -0
- /package/dist/{core → server/core}/domain/entities/cogit-snapshot-author.d.ts +0 -0
- /package/dist/{core → server/core}/domain/entities/cogit-snapshot-author.js +0 -0
- /package/dist/{core → server/core}/domain/entities/cogit-snapshot-file.d.ts +0 -0
- /package/dist/{core → server/core}/domain/entities/cogit-snapshot-file.js +0 -0
- /package/dist/{core → server/core}/domain/entities/cogit-snapshot.d.ts +0 -0
- /package/dist/{core → server/core}/domain/entities/cogit-snapshot.js +0 -0
- /package/dist/{core → server/core}/domain/entities/connector-type.d.ts +0 -0
- /package/dist/{core → server/core}/domain/entities/connector-type.js +0 -0
- /package/dist/{core → server/core}/domain/entities/context-tree-index.d.ts +0 -0
- /package/dist/{core → server/core}/domain/entities/context-tree-index.js +0 -0
- /package/dist/{core → server/core}/domain/entities/context-tree-snapshot.d.ts +0 -0
- /package/dist/{core → server/core}/domain/entities/context-tree-snapshot.js +0 -0
- /package/dist/{core → server/core}/domain/entities/event.d.ts +0 -0
- /package/dist/{core → server/core}/domain/entities/event.js +0 -0
- /package/dist/{core → server/core}/domain/entities/global-config.d.ts +0 -0
- /package/dist/{core → server/core}/domain/entities/global-config.js +0 -0
- /package/dist/{core → server/core}/domain/entities/memory.d.ts +0 -0
- /package/dist/{core → server/core}/domain/entities/memory.js +0 -0
- /package/dist/{core → server/core}/domain/entities/oauth-token-data.d.ts +0 -0
- /package/dist/{core → server/core}/domain/entities/oauth-token-data.js +0 -0
- /package/dist/{core → server/core}/domain/entities/parser.d.ts +0 -0
- /package/dist/{core → server/core}/domain/entities/parser.js +0 -0
- /package/dist/{core → server/core}/domain/entities/playbook.d.ts +0 -0
- /package/dist/{core → server/core}/domain/entities/playbook.js +0 -0
- /package/dist/{core → server/core}/domain/entities/presigned-url.d.ts +0 -0
- /package/dist/{core → server/core}/domain/entities/presigned-url.js +0 -0
- /package/dist/{core → server/core}/domain/entities/presigned-urls-response.d.ts +0 -0
- /package/dist/{core → server/core}/domain/entities/presigned-urls-response.js +0 -0
- /package/dist/{core → server/core}/domain/entities/provider-config.d.ts +0 -0
- /package/dist/{core → server/core}/domain/entities/provider-config.js +0 -0
- /package/dist/{core → server/core}/domain/entities/provider-registry.d.ts +0 -0
- /package/dist/{core → server/core}/domain/entities/provider-registry.js +0 -0
- /package/dist/{core → server/core}/domain/entities/retrieve-result.d.ts +0 -0
- /package/dist/{core → server/core}/domain/entities/retrieve-result.js +0 -0
- /package/dist/{core → server/core}/domain/errors/ace-error.d.ts +0 -0
- /package/dist/{core → server/core}/domain/errors/ace-error.js +0 -0
- /package/dist/{core → server/core}/domain/errors/auth-error.d.ts +0 -0
- /package/dist/{core → server/core}/domain/errors/auth-error.js +0 -0
- /package/dist/{core → server/core}/domain/errors/brv-config-version-error.d.ts +0 -0
- /package/dist/{core → server/core}/domain/errors/brv-config-version-error.js +0 -0
- /package/dist/{core → server/core}/domain/errors/core-process-error.d.ts +0 -0
- /package/dist/{core → server/core}/domain/errors/core-process-error.js +0 -0
- /package/dist/{core → server/core}/domain/errors/discovery-error.d.ts +0 -0
- /package/dist/{core → server/core}/domain/errors/discovery-error.js +0 -0
- /package/dist/{core → server/core}/domain/errors/headless-prompt-error.d.ts +0 -0
- /package/dist/{core → server/core}/domain/errors/headless-prompt-error.js +0 -0
- /package/dist/{core → server/core}/domain/errors/task-error.d.ts +0 -0
- /package/dist/{core → server/core}/domain/errors/task-error.js +0 -0
- /package/dist/{core → server/core}/domain/errors/transport-error.d.ts +0 -0
- /package/dist/{core → server/core}/domain/errors/transport-error.js +0 -0
- /package/dist/{core → server/core}/domain/instance/index.d.ts +0 -0
- /package/dist/{core → server/core}/domain/instance/index.js +0 -0
- /package/dist/{core → server/core}/domain/instance/types.d.ts +0 -0
- /package/dist/{core → server/core}/domain/instance/types.js +0 -0
- /package/dist/{core → server/core}/domain/knowledge/directory-manager.d.ts +0 -0
- /package/dist/{core → server/core}/domain/knowledge/directory-manager.js +0 -0
- /package/dist/{core → server/core}/domain/knowledge/markdown-writer.d.ts +0 -0
- /package/dist/{core → server/core}/domain/knowledge/markdown-writer.js +0 -0
- /package/dist/{core → server/core}/domain/transport/index.d.ts +0 -0
- /package/dist/{core → server/core}/domain/transport/index.js +0 -0
- /package/dist/{core → server/core}/domain/transport/types.d.ts +0 -0
- /package/dist/{core → server/core}/domain/transport/types.js +0 -0
- /package/dist/{core/interfaces/i-browser-launcher.js → server/core/interfaces/auth/i-auth-service.js} +0 -0
- /package/dist/{core/interfaces → server/core/interfaces/auth}/i-callback-handler.d.ts +0 -0
- /package/dist/{core/interfaces → server/core/interfaces/auth}/i-callback-handler.js +0 -0
- /package/dist/{core/interfaces → server/core/interfaces/auth}/i-oidc-discovery-service.d.ts +0 -0
- /package/dist/{core/interfaces → server/core/interfaces/auth}/i-oidc-discovery-service.js +0 -0
- /package/dist/{core/interfaces → server/core/interfaces/auth}/i-token-store.js +0 -0
- /package/dist/{core/interfaces/i-cogit-pull-service.js → server/core/interfaces/connectors/connector-types.js} +0 -0
- /package/dist/{core/interfaces/i-cogit-push-service.js → server/core/interfaces/connectors/i-connector-manager.js} +0 -0
- /package/dist/{core/interfaces/i-context-file-reader.js → server/core/interfaces/connectors/i-connector.js} +0 -0
- /package/dist/{core/interfaces/i-context-tree-service.js → server/core/interfaces/context-tree/i-context-file-reader.js} +0 -0
- /package/dist/{core/interfaces → server/core/interfaces/context-tree}/i-context-tree-service.d.ts +0 -0
- /package/dist/{core/interfaces/i-context-tree-snapshot-service.js → server/core/interfaces/context-tree/i-context-tree-service.js} +0 -0
- /package/dist/{core/interfaces/i-context-tree-writer-service.js → server/core/interfaces/context-tree/i-context-tree-snapshot-service.js} +0 -0
- /package/dist/{core/interfaces/i-file-service.js → server/core/interfaces/context-tree/i-context-tree-writer-service.js} +0 -0
- /package/dist/{core/interfaces/i-global-config-store.js → server/core/interfaces/executor/i-curate-executor.js} +0 -0
- /package/dist/{core/interfaces/i-http-client.js → server/core/interfaces/executor/i-folder-pack-executor.js} +0 -0
- /package/dist/{core/interfaces/i-legacy-rule-detector.js → server/core/interfaces/executor/i-query-executor.js} +0 -0
- /package/dist/{core → server/core}/interfaces/i-provider-config-store.d.ts +0 -0
- /package/dist/{core → server/core}/interfaces/i-provider-config-store.js +0 -0
- /package/dist/{core → server/core}/interfaces/i-provider-keychain-store.d.ts +0 -0
- /package/dist/{core → server/core}/interfaces/i-provider-keychain-store.js +0 -0
- /package/dist/{core → server/core}/interfaces/instance/i-instance-discovery.d.ts +0 -0
- /package/dist/{core → server/core}/interfaces/instance/i-instance-discovery.js +0 -0
- /package/dist/{core → server/core}/interfaces/instance/i-instance-manager.d.ts +0 -0
- /package/dist/{core → server/core}/interfaces/instance/i-instance-manager.js +0 -0
- /package/dist/{core → server/core}/interfaces/instance/index.d.ts +0 -0
- /package/dist/{core → server/core}/interfaces/instance/index.js +0 -0
- /package/dist/{core → server/core}/interfaces/noop-implementations.js +0 -0
- /package/dist/{core/interfaces → server/core/interfaces/services}/i-browser-launcher.d.ts +0 -0
- /package/dist/{core/interfaces/i-mcp-config-writer.js → server/core/interfaces/services/i-browser-launcher.js} +0 -0
- /package/dist/{core/interfaces/i-memory-retrieval-service.js → server/core/interfaces/services/i-cogit-pull-service.js} +0 -0
- /package/dist/{core/interfaces/i-memory-storage-service.js → server/core/interfaces/services/i-cogit-push-service.js} +0 -0
- /package/dist/{core/interfaces → server/core/interfaces/services}/i-file-service.d.ts +0 -0
- /package/dist/{core/interfaces/i-onboarding-preference-store.js → server/core/interfaces/services/i-file-service.js} +0 -0
- /package/dist/{core/interfaces/i-project-config-store.js → server/core/interfaces/services/i-http-client.js} +0 -0
- /package/dist/{core/interfaces/i-rule-template-service.js → server/core/interfaces/services/i-legacy-rule-detector.js} +0 -0
- /package/dist/{core/interfaces/i-space-service.js → server/core/interfaces/services/i-memory-retrieval-service.js} +0 -0
- /package/dist/{core/interfaces/i-team-service.js → server/core/interfaces/services/i-memory-storage-service.js} +0 -0
- /package/dist/{core/interfaces/i-template-loader.js → server/core/interfaces/services/i-rule-template-service.js} +0 -0
- /package/dist/{core/interfaces/i-terminal.js → server/core/interfaces/services/i-space-service.js} +0 -0
- /package/dist/{core/interfaces/i-tracking-service.js → server/core/interfaces/services/i-team-service.js} +0 -0
- /package/dist/{core/interfaces → server/core/interfaces/services}/i-template-loader.d.ts +0 -0
- /package/dist/{core/interfaces/i-user-service.js → server/core/interfaces/services/i-template-loader.js} +0 -0
- /package/dist/{core/interfaces → server/core/interfaces/services}/i-terminal.d.ts +0 -0
- /package/dist/{core/interfaces/i-workspace-detector-service.js → server/core/interfaces/services/i-terminal.js} +0 -0
- /package/dist/{core/interfaces/transport/i-transport-client.js → server/core/interfaces/services/i-tracking-service.js} +0 -0
- /package/dist/{core/interfaces/transport/i-transport-server.js → server/core/interfaces/services/i-user-service.js} +0 -0
- /package/dist/{core/interfaces/usecase/i-connectors-use-case.js → server/core/interfaces/services/i-workspace-detector-service.js} +0 -0
- /package/dist/{core/interfaces/usecase/i-curate-use-case.js → server/core/interfaces/storage/i-global-config-store.js} +0 -0
- /package/dist/{core/interfaces/usecase/i-init-use-case.js → server/core/interfaces/storage/i-mcp-config-writer.js} +0 -0
- /package/dist/{core/interfaces → server/core/interfaces/storage}/i-onboarding-preference-store.d.ts +0 -0
- /package/dist/{core/interfaces/usecase/i-login-use-case.js → server/core/interfaces/storage/i-onboarding-preference-store.js} +0 -0
- /package/dist/{core/interfaces/usecase/i-logout-use-case.js → server/core/interfaces/storage/i-project-config-store.js} +0 -0
- /package/dist/{core → server/core}/interfaces/transport/i-transport-server.d.ts +0 -0
- /package/dist/{core/interfaces/usecase/i-pull-use-case.js → server/core/interfaces/transport/i-transport-server.js} +0 -0
- /package/dist/{core → server/core}/interfaces/usecase/i-connectors-use-case.d.ts +0 -0
- /package/dist/{core/interfaces/usecase/i-push-use-case.js → server/core/interfaces/usecase/i-connectors-use-case.js} +0 -0
- /package/dist/{core/interfaces/usecase/i-query-use-case.js → server/core/interfaces/usecase/i-curate-use-case.js} +0 -0
- /package/dist/{core → server/core}/interfaces/usecase/i-init-use-case.d.ts +0 -0
- /package/dist/{core/interfaces/usecase/i-reset-use-case.js → server/core/interfaces/usecase/i-init-use-case.js} +0 -0
- /package/dist/{core → server/core}/interfaces/usecase/i-login-use-case.d.ts +0 -0
- /package/dist/{core/interfaces/usecase/i-space-list-use-case.js → server/core/interfaces/usecase/i-login-use-case.js} +0 -0
- /package/dist/{core → server/core}/interfaces/usecase/i-logout-use-case.d.ts +0 -0
- /package/dist/{core/interfaces/usecase/i-space-switch-use-case.js → server/core/interfaces/usecase/i-logout-use-case.js} +0 -0
- /package/dist/{core → server/core}/interfaces/usecase/i-pull-use-case.d.ts +0 -0
- /package/dist/{core/interfaces/usecase/i-status-use-case.js → server/core/interfaces/usecase/i-pull-use-case.js} +0 -0
- /package/dist/{core → server/core}/interfaces/usecase/i-push-use-case.d.ts +0 -0
- /package/dist/{core → server/core}/interfaces/usecase/i-query-use-case.d.ts +0 -0
- /package/dist/{core → server/core}/interfaces/usecase/i-reset-use-case.d.ts +0 -0
- /package/dist/{core → server/core}/interfaces/usecase/i-space-list-use-case.d.ts +0 -0
- /package/dist/{core → server/core}/interfaces/usecase/i-space-switch-use-case.d.ts +0 -0
- /package/dist/{core → server/core}/interfaces/usecase/i-status-use-case.d.ts +0 -0
- /package/dist/{infra → server/infra}/auth/oauth-service.js +0 -0
- /package/dist/{infra → server/infra}/auth/oidc-discovery-service.js +0 -0
- /package/dist/{infra → server/infra}/browser/system-browser-launcher.js +0 -0
- /package/dist/{infra → server/infra}/cogit/context-tree-to-push-context-mapper.js +0 -0
- /package/dist/{infra → server/infra}/cogit/http-cogit-pull-service.js +0 -0
- /package/dist/{infra → server/infra}/cogit/http-cogit-push-service.js +0 -0
- /package/dist/{infra → server/infra}/config/file-config-store.js +0 -0
- /package/dist/{infra → server/infra}/connectors/hook/hook-connector-config.d.ts +0 -0
- /package/dist/{infra → server/infra}/connectors/hook/hook-connector-config.js +0 -0
- /package/dist/{infra → server/infra}/connectors/mcp/index.d.ts +0 -0
- /package/dist/{infra → server/infra}/connectors/mcp/index.js +0 -0
- /package/dist/{infra → server/infra}/connectors/mcp/json-mcp-config-writer.js +0 -0
- /package/dist/{infra → server/infra}/connectors/mcp/mcp-connector-config.d.ts +0 -0
- /package/dist/{infra → server/infra}/connectors/mcp/mcp-connector-config.js +0 -0
- /package/dist/{infra → server/infra}/connectors/mcp/toml-mcp-config-writer.js +0 -0
- /package/dist/{infra → server/infra}/connectors/rules/legacy-rule-detector.js +0 -0
- /package/dist/{infra → server/infra}/connectors/rules/rules-connector-config.js +0 -0
- /package/dist/{infra → server/infra}/connectors/shared/constants.d.ts +0 -0
- /package/dist/{infra → server/infra}/connectors/shared/constants.js +0 -0
- /package/dist/{infra → server/infra}/connectors/shared/rule-file-manager.js +0 -0
- /package/dist/{infra → server/infra}/connectors/shared/template-service.js +0 -0
- /package/dist/{infra → server/infra}/connectors/skill/index.d.ts +0 -0
- /package/dist/{infra → server/infra}/connectors/skill/index.js +0 -0
- /package/dist/{infra → server/infra}/connectors/skill/skill-connector-config.d.ts +0 -0
- /package/dist/{infra → server/infra}/connectors/skill/skill-connector-config.js +0 -0
- /package/dist/{infra → server/infra}/context-tree/file-context-file-reader.js +0 -0
- /package/dist/{infra → server/infra}/context-tree/file-context-tree-service.js +0 -0
- /package/dist/{infra → server/infra}/context-tree/file-context-tree-snapshot-service.js +0 -0
- /package/dist/{infra → server/infra}/context-tree/file-context-tree-writer-service.js +0 -0
- /package/dist/{infra → server/infra}/file/fs-file-service.js +0 -0
- /package/dist/{infra → server/infra}/http/callback-handler.js +0 -0
- /package/dist/{infra → server/infra}/http/callback-server.d.ts +0 -0
- /package/dist/{infra → server/infra}/http/callback-server.js +0 -0
- /package/dist/{infra → server/infra}/http/openrouter-api-client.d.ts +0 -0
- /package/dist/{infra → server/infra}/http/openrouter-api-client.js +0 -0
- /package/dist/{infra → server/infra}/instance/file-instance-discovery.d.ts +0 -0
- /package/dist/{infra → server/infra}/instance/file-instance-discovery.js +0 -0
- /package/dist/{infra → server/infra}/instance/file-instance-manager.d.ts +0 -0
- /package/dist/{infra → server/infra}/instance/file-instance-manager.js +0 -0
- /package/dist/{infra → server/infra}/instance/index.d.ts +0 -0
- /package/dist/{infra → server/infra}/instance/index.js +0 -0
- /package/dist/{infra → server/infra}/instance/process-utils.d.ts +0 -0
- /package/dist/{infra → server/infra}/instance/process-utils.js +0 -0
- /package/dist/{infra → server/infra}/mcp/index.d.ts +0 -0
- /package/dist/{infra → server/infra}/mcp/index.js +0 -0
- /package/dist/{infra → server/infra}/mcp/mcp-server.d.ts +0 -0
- /package/dist/{infra → server/infra}/mcp/tools/index.d.ts +0 -0
- /package/dist/{infra → server/infra}/mcp/tools/index.js +0 -0
- /package/dist/{infra → server/infra}/mcp/tools/task-result-waiter.js +0 -0
- /package/dist/{infra → server/infra}/memory/http-memory-retrieval-service.js +0 -0
- /package/dist/{infra → server/infra}/memory/http-memory-storage-service.js +0 -0
- /package/dist/{infra → server/infra}/memory/memory-to-playbook-mapper.d.ts +0 -0
- /package/dist/{infra → server/infra}/memory/memory-to-playbook-mapper.js +0 -0
- /package/dist/{infra → server/infra}/process/agent-worker.d.ts +0 -0
- /package/dist/{infra → server/infra}/process/index.d.ts +0 -0
- /package/dist/{infra → server/infra}/process/index.js +0 -0
- /package/dist/{infra → server/infra}/process/ipc-types.d.ts +0 -0
- /package/dist/{infra → server/infra}/process/ipc-types.js +0 -0
- /package/dist/{infra → server/infra}/process/parent-heartbeat.d.ts +0 -0
- /package/dist/{infra → server/infra}/process/parent-heartbeat.js +0 -0
- /package/dist/{infra → server/infra}/process/process-manager.d.ts +0 -0
- /package/dist/{infra → server/infra}/process/task-queue-manager.d.ts +0 -0
- /package/dist/{infra → server/infra}/process/task-queue-manager.js +0 -0
- /package/dist/{infra → server/infra}/process/transport-handlers.d.ts +0 -0
- /package/dist/{infra → server/infra}/process/transport-worker.d.ts +0 -0
- /package/dist/{infra → server/infra}/process/transport-worker.js +0 -0
- /package/dist/{infra → server/infra}/storage/file-global-config-store.js +0 -0
- /package/dist/{infra → server/infra}/storage/file-onboarding-preference-store.js +0 -0
- /package/dist/{infra → server/infra}/storage/file-provider-config-store.d.ts +0 -0
- /package/dist/{infra → server/infra}/storage/file-provider-config-store.js +0 -0
- /package/dist/{infra → server/infra}/storage/file-token-store.js +0 -0
- /package/dist/{infra → server/infra}/storage/keychain-token-store.js +0 -0
- /package/dist/{infra → server/infra}/storage/provider-keychain-store.d.ts +0 -0
- /package/dist/{infra → server/infra}/storage/provider-keychain-store.js +0 -0
- /package/dist/{infra → server/infra}/storage/token-store.js +0 -0
- /package/dist/{infra → server/infra}/team/http-team-service.js +0 -0
- /package/dist/{infra → server/infra}/template/fs-template-loader.js +0 -0
- /package/dist/{infra → server/infra}/terminal/headless-terminal.js +0 -0
- /package/dist/{infra → server/infra}/terminal/oclif-terminal.js +0 -0
- /package/dist/{infra → server/infra}/terminal/repl-terminal.js +0 -0
- /package/dist/{infra → server/infra}/tracking/mixpanel-tracking-service.js +0 -0
- /package/dist/{infra → server/infra}/transport/port-utils.d.ts +0 -0
- /package/dist/{infra → server/infra}/transport/port-utils.js +0 -0
- /package/dist/{infra → server/infra}/transport/socket-io-transport-server.d.ts +0 -0
- /package/dist/{infra → server/infra}/transport/socket-io-transport-server.js +0 -0
- /package/dist/{infra → server/infra}/usecase/init-use-case.js +0 -0
- /package/dist/{infra → server/infra}/usecase/login-use-case.js +0 -0
- /package/dist/{infra → server/infra}/usecase/reset-use-case.js +0 -0
- /package/dist/{infra → server/infra}/usecase/space-list-use-case.js +0 -0
- /package/dist/{infra → server/infra}/workspace/workspace-detector-service.js +0 -0
- /package/dist/{templates → server/templates}/README.md +0 -0
- /package/dist/{templates → server/templates}/base.md +0 -0
- /package/dist/{templates → server/templates}/mcp-base.md +0 -0
- /package/dist/{templates → server/templates}/sections/command-reference.md +0 -0
- /package/dist/{templates → server/templates}/sections/mcp-workflow.md +0 -0
- /package/dist/{templates → server/templates}/sections/workflow.md +0 -0
- /package/dist/{templates → server/templates}/skill/SKILL.md +0 -0
- /package/dist/{templates → server/templates}/skill/TROUBLESHOOTING.md +0 -0
- /package/dist/{templates → server/templates}/skill/WORKFLOWS.md +0 -0
- /package/dist/{utils → server/utils}/crash-log.d.ts +0 -0
- /package/dist/{utils → server/utils}/crash-log.js +0 -0
- /package/dist/{utils → server/utils}/emoji-helpers.d.ts +0 -0
- /package/dist/{utils → server/utils}/emoji-helpers.js +0 -0
- /package/dist/{utils → server/utils}/environment-detector.d.ts +0 -0
- /package/dist/{utils → server/utils}/environment-detector.js +0 -0
- /package/dist/{utils → server/utils}/error-handler.d.ts +0 -0
- /package/dist/{utils → server/utils}/error-handler.js +0 -0
- /package/dist/{utils → server/utils}/error-helpers.d.ts +0 -0
- /package/dist/{utils → server/utils}/error-helpers.js +0 -0
- /package/dist/{utils → server/utils}/file-helpers.d.ts +0 -0
- /package/dist/{utils → server/utils}/file-helpers.js +0 -0
- /package/dist/{utils → server/utils}/file-validator.d.ts +0 -0
- /package/dist/{utils → server/utils}/global-config-path.d.ts +0 -0
- /package/dist/{utils → server/utils}/global-config-path.js +0 -0
- /package/dist/{utils → server/utils}/global-data-path.d.ts +0 -0
- /package/dist/{utils → server/utils}/global-data-path.js +0 -0
- /package/dist/{utils → server/utils}/global-logs-path.d.ts +0 -0
- /package/dist/{utils → server/utils}/global-logs-path.js +0 -0
- /package/dist/{utils → server/utils}/oclif-error-helpers.d.ts +0 -0
- /package/dist/{utils → server/utils}/oclif-error-helpers.js +0 -0
- /package/dist/{utils → server/utils}/process-logger.d.ts +0 -0
- /package/dist/{utils → server/utils}/process-logger.js +0 -0
- /package/dist/{utils → server/utils}/sandbox-detector.d.ts +0 -0
- /package/dist/{utils → server/utils}/sandbox-detector.js +0 -0
- /package/dist/{utils → server/utils}/tool-display-formatter.d.ts +0 -0
- /package/dist/{utils → server/utils}/tool-display-formatter.js +0 -0
- /package/dist/{utils → server/utils}/type-guards.js +0 -0
|
@@ -0,0 +1,327 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Types for granular message and part storage.
|
|
3
|
+
*
|
|
4
|
+
* This module defines the storage format for the new granular history system,
|
|
5
|
+
* where messages and parts are stored separately to enable:
|
|
6
|
+
* - Streaming message loading (newest to oldest)
|
|
7
|
+
* - Selective tool output pruning
|
|
8
|
+
* - Compaction boundary markers
|
|
9
|
+
*
|
|
10
|
+
* Storage key structure:
|
|
11
|
+
* - ["session", sessionId] → SessionRecord
|
|
12
|
+
* - ["message", sessionId, messageId] → StoredMessage
|
|
13
|
+
* - ["part", messageId, partId] → StoredPart
|
|
14
|
+
*/
|
|
15
|
+
import type { ToolCall } from '../../interfaces/message-types.js';
|
|
16
|
+
/**
|
|
17
|
+
* Session-level record stored at ["session", sessionId].
|
|
18
|
+
* Contains metadata and acts as a marker for granular format detection.
|
|
19
|
+
*/
|
|
20
|
+
export interface SessionRecord {
|
|
21
|
+
/** Unix timestamp when session was created */
|
|
22
|
+
createdAt: number;
|
|
23
|
+
/** ID of the latest compaction boundary message, if any */
|
|
24
|
+
lastCompactionMessageId?: string;
|
|
25
|
+
/** Total number of messages in the session */
|
|
26
|
+
messageCount: number;
|
|
27
|
+
/** ID of the most recent message for efficient iteration */
|
|
28
|
+
newestMessageId?: string;
|
|
29
|
+
/** ID of the oldest message for complete traversal */
|
|
30
|
+
oldestMessageId?: string;
|
|
31
|
+
/** Unique session identifier */
|
|
32
|
+
sessionId: string;
|
|
33
|
+
/** Optional user-provided or auto-generated title */
|
|
34
|
+
title?: string;
|
|
35
|
+
/** Unix timestamp of last update */
|
|
36
|
+
updatedAt: number;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Individual message stored at ["message", sessionId, messageId].
|
|
40
|
+
*
|
|
41
|
+
* Messages are stored individually to enable:
|
|
42
|
+
* - Streaming from newest to oldest
|
|
43
|
+
* - Efficient single-message updates
|
|
44
|
+
* - Compaction boundary markers
|
|
45
|
+
*/
|
|
46
|
+
export interface StoredMessage {
|
|
47
|
+
/**
|
|
48
|
+
* Flag indicating this is a compaction boundary.
|
|
49
|
+
* When loading history, stop at the first compaction boundary.
|
|
50
|
+
* Messages before this point are summarized and not needed.
|
|
51
|
+
*/
|
|
52
|
+
compactionBoundary?: boolean;
|
|
53
|
+
/**
|
|
54
|
+
* Summary content if this is a compaction boundary message.
|
|
55
|
+
* Contains the LLM-generated summary of prior conversation.
|
|
56
|
+
*/
|
|
57
|
+
compactionSummary?: string;
|
|
58
|
+
/**
|
|
59
|
+
* The text content of the message.
|
|
60
|
+
* - null for assistant messages with only tool calls
|
|
61
|
+
* - string for most messages
|
|
62
|
+
*/
|
|
63
|
+
content: null | string;
|
|
64
|
+
/** Unix timestamp when message was created */
|
|
65
|
+
createdAt: number;
|
|
66
|
+
/** Unique message identifier (UUID) */
|
|
67
|
+
id: string;
|
|
68
|
+
/**
|
|
69
|
+
* Name of the tool that produced this result.
|
|
70
|
+
* Only present for tool messages.
|
|
71
|
+
*/
|
|
72
|
+
name?: string;
|
|
73
|
+
/** ID of the next message (toward newest) for linked traversal */
|
|
74
|
+
nextMessageId?: string;
|
|
75
|
+
/** IDs of parts associated with this message, in order */
|
|
76
|
+
partIds: string[];
|
|
77
|
+
/** ID of the previous message (toward oldest) for linked traversal */
|
|
78
|
+
prevMessageId?: string;
|
|
79
|
+
/** Optional reasoning text from the model */
|
|
80
|
+
reasoning?: string;
|
|
81
|
+
/** Message role */
|
|
82
|
+
role: 'assistant' | 'system' | 'tool' | 'user';
|
|
83
|
+
/** Session this message belongs to */
|
|
84
|
+
sessionId: string;
|
|
85
|
+
/** Raw thought text from the model (Gemini) */
|
|
86
|
+
thought?: string;
|
|
87
|
+
/** Parsed thought summary (Gemini) */
|
|
88
|
+
thoughtSummary?: {
|
|
89
|
+
description: string;
|
|
90
|
+
subject: string;
|
|
91
|
+
};
|
|
92
|
+
/**
|
|
93
|
+
* ID of the tool call this message is responding to.
|
|
94
|
+
* Only present for tool messages.
|
|
95
|
+
*/
|
|
96
|
+
toolCallId?: string;
|
|
97
|
+
/**
|
|
98
|
+
* Tool calls made by the assistant.
|
|
99
|
+
* Only present for assistant messages requesting tool execution.
|
|
100
|
+
*/
|
|
101
|
+
toolCalls?: ToolCall[];
|
|
102
|
+
/** Unix timestamp of last update */
|
|
103
|
+
updatedAt: number;
|
|
104
|
+
}
|
|
105
|
+
/**
|
|
106
|
+
* Tool state as stored in StoredPart.
|
|
107
|
+
* Mirrors the ToolState types from message-types.ts but optimized for storage.
|
|
108
|
+
*/
|
|
109
|
+
export interface StoredToolState {
|
|
110
|
+
/** Attachments produced by the tool (images, files) */
|
|
111
|
+
attachments?: Array<{
|
|
112
|
+
/** Base64-encoded data or data URL */
|
|
113
|
+
data: string;
|
|
114
|
+
/** Original filename if available */
|
|
115
|
+
filename?: string;
|
|
116
|
+
/** MIME type of the attachment */
|
|
117
|
+
mime: string;
|
|
118
|
+
/** Attachment type */
|
|
119
|
+
type: 'file' | 'image';
|
|
120
|
+
}>;
|
|
121
|
+
/** Unique identifier for this tool call */
|
|
122
|
+
callId: string;
|
|
123
|
+
/** Unix timestamp when execution completed */
|
|
124
|
+
completedAt?: number;
|
|
125
|
+
/** Error message (only for 'error' status) */
|
|
126
|
+
error?: string;
|
|
127
|
+
/** Parsed input arguments */
|
|
128
|
+
input?: Record<string, unknown>;
|
|
129
|
+
/** Tool output content (only for 'completed' status) */
|
|
130
|
+
output?: string;
|
|
131
|
+
/** Unix timestamp when execution started */
|
|
132
|
+
startedAt?: number;
|
|
133
|
+
/** Current status of the tool call */
|
|
134
|
+
status: 'completed' | 'error' | 'pending' | 'running';
|
|
135
|
+
/** Human-readable title for display */
|
|
136
|
+
title?: string;
|
|
137
|
+
}
|
|
138
|
+
/**
|
|
139
|
+
* Reasoning summary as stored in StoredPart.
|
|
140
|
+
*/
|
|
141
|
+
export interface StoredReasoningSummary {
|
|
142
|
+
/** Detailed description of the thought */
|
|
143
|
+
description: string;
|
|
144
|
+
/** Brief subject of the thought */
|
|
145
|
+
subject: string;
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* Part-level metadata as stored in StoredPart.
|
|
149
|
+
*/
|
|
150
|
+
export interface StoredPartMetadata {
|
|
151
|
+
/** Custom metadata fields */
|
|
152
|
+
[key: string]: unknown;
|
|
153
|
+
/** Anthropic cache control hint */
|
|
154
|
+
cacheControl?: {
|
|
155
|
+
type: 'ephemeral' | 'permanent';
|
|
156
|
+
};
|
|
157
|
+
/** Whether this is auto-generated content */
|
|
158
|
+
synthetic?: boolean;
|
|
159
|
+
}
|
|
160
|
+
/**
|
|
161
|
+
* Message part stored at ["part", messageId, partId].
|
|
162
|
+
*
|
|
163
|
+
* Parts contain content that may be pruned independently:
|
|
164
|
+
* - Tool outputs (large, can be marked as compacted)
|
|
165
|
+
* - Tool calls with state machine (pending → running → completed/error)
|
|
166
|
+
* - File attachments
|
|
167
|
+
* - Image data
|
|
168
|
+
* - Reasoning/thinking traces
|
|
169
|
+
*
|
|
170
|
+
* Parts are stored separately to enable:
|
|
171
|
+
* - Selective pruning of old tool outputs
|
|
172
|
+
* - Lazy loading of large content
|
|
173
|
+
* - Efficient streaming without loading all content
|
|
174
|
+
* - Tool state tracking with full lifecycle
|
|
175
|
+
*
|
|
176
|
+
* Blob references:
|
|
177
|
+
* - Large binary content (>5KB) can be stored in blob storage
|
|
178
|
+
* - When stored as blob, content contains "@blob:{id}" reference
|
|
179
|
+
* - Blob refs are resolved lazily at format-time via BlobReferenceResolver
|
|
180
|
+
*/
|
|
181
|
+
export interface StoredPart {
|
|
182
|
+
/**
|
|
183
|
+
* Blob reference ID (without @ prefix) when content is stored externally.
|
|
184
|
+
* Present when isBlob is true. The actual data can be retrieved from
|
|
185
|
+
* blob storage using this ID.
|
|
186
|
+
*/
|
|
187
|
+
blobRef?: string;
|
|
188
|
+
/**
|
|
189
|
+
* Unix timestamp when this part was marked as compacted.
|
|
190
|
+
* If set, the original content has been cleared to save space,
|
|
191
|
+
* and a placeholder message should be shown instead.
|
|
192
|
+
*/
|
|
193
|
+
compactedAt?: number;
|
|
194
|
+
/**
|
|
195
|
+
* The actual content of the part.
|
|
196
|
+
* - Tool output: string (JSON or text)
|
|
197
|
+
* - File: base64 encoded data, file path, or blob reference (@blob:id)
|
|
198
|
+
* - Text: raw text content
|
|
199
|
+
* - Image: base64 encoded data or blob reference (@blob:id)
|
|
200
|
+
* - Reasoning: thinking text from the model
|
|
201
|
+
* - Tool: empty (state stored in toolState)
|
|
202
|
+
*
|
|
203
|
+
* When compactedAt is set, this will be empty or contain a placeholder.
|
|
204
|
+
* When isBlob is true, this contains the blob reference string.
|
|
205
|
+
*/
|
|
206
|
+
content: string;
|
|
207
|
+
/** Unix timestamp when part was created */
|
|
208
|
+
createdAt: number;
|
|
209
|
+
/** Original filename for file parts */
|
|
210
|
+
filename?: string;
|
|
211
|
+
/** Unique part identifier (UUID) */
|
|
212
|
+
id: string;
|
|
213
|
+
/**
|
|
214
|
+
* Whether the content field contains a blob reference.
|
|
215
|
+
* When true, content should be resolved via BlobReferenceResolver
|
|
216
|
+
* before use (at format-time for LLM requests).
|
|
217
|
+
*/
|
|
218
|
+
isBlob?: boolean;
|
|
219
|
+
/** ID of the message this part belongs to */
|
|
220
|
+
messageId: string;
|
|
221
|
+
/**
|
|
222
|
+
* Part-level metadata for cache hints and custom data.
|
|
223
|
+
* Follows OpenCode's pattern for part metadata.
|
|
224
|
+
*/
|
|
225
|
+
metadata?: StoredPartMetadata;
|
|
226
|
+
/** MIME type for file and image parts */
|
|
227
|
+
mimeType?: string;
|
|
228
|
+
/**
|
|
229
|
+
* Reasoning summary for 'reasoning' type parts.
|
|
230
|
+
* Contains parsed subject and description for display.
|
|
231
|
+
*/
|
|
232
|
+
reasoningSummary?: StoredReasoningSummary;
|
|
233
|
+
/**
|
|
234
|
+
* For tool_output parts, the name of the tool.
|
|
235
|
+
* Used for display and filtering.
|
|
236
|
+
*/
|
|
237
|
+
toolName?: string;
|
|
238
|
+
/**
|
|
239
|
+
* Tool state for 'tool' type parts.
|
|
240
|
+
* Tracks the full lifecycle: pending → running → completed/error.
|
|
241
|
+
* Only present when type is 'tool'.
|
|
242
|
+
*/
|
|
243
|
+
toolState?: StoredToolState;
|
|
244
|
+
/**
|
|
245
|
+
* Type of part content.
|
|
246
|
+
* Extended with 'tool' for tool calls with state machine and 'reasoning' for thinking traces.
|
|
247
|
+
*/
|
|
248
|
+
type: 'compaction' | 'file' | 'image' | 'reasoning' | 'text' | 'tool' | 'tool_output';
|
|
249
|
+
}
|
|
250
|
+
/**
|
|
251
|
+
* Placeholder message shown when tool output has been compacted.
|
|
252
|
+
*/
|
|
253
|
+
export declare const COMPACTED_TOOL_OUTPUT_PLACEHOLDER = "[Old tool result content cleared]";
|
|
254
|
+
/**
|
|
255
|
+
* Result of loading messages with compaction awareness.
|
|
256
|
+
*/
|
|
257
|
+
export interface LoadMessagesResult {
|
|
258
|
+
/** Whether a compaction boundary was reached */
|
|
259
|
+
hitCompactionBoundary: boolean;
|
|
260
|
+
/** Loaded messages in chronological order (oldest first) */
|
|
261
|
+
messages: StoredMessageWithParts[];
|
|
262
|
+
}
|
|
263
|
+
/**
|
|
264
|
+
* StoredMessage combined with its resolved parts.
|
|
265
|
+
* Used when converting back to InternalMessage format.
|
|
266
|
+
*/
|
|
267
|
+
export interface StoredMessageWithParts extends StoredMessage {
|
|
268
|
+
/** Resolved part objects (not just IDs) */
|
|
269
|
+
parts: StoredPart[];
|
|
270
|
+
}
|
|
271
|
+
/**
|
|
272
|
+
* Configuration for message streaming.
|
|
273
|
+
*/
|
|
274
|
+
export interface StreamMessagesOptions {
|
|
275
|
+
/**
|
|
276
|
+
* Maximum number of messages to load.
|
|
277
|
+
* Useful for preview/summary views.
|
|
278
|
+
*/
|
|
279
|
+
limit?: number;
|
|
280
|
+
/**
|
|
281
|
+
* Session ID to stream messages from.
|
|
282
|
+
*/
|
|
283
|
+
sessionId: string;
|
|
284
|
+
/**
|
|
285
|
+
* Whether to stop at the first compaction boundary.
|
|
286
|
+
* Default: true
|
|
287
|
+
*/
|
|
288
|
+
stopAtCompaction?: boolean;
|
|
289
|
+
}
|
|
290
|
+
/**
|
|
291
|
+
* Configuration for tool output pruning.
|
|
292
|
+
*/
|
|
293
|
+
export interface PruneToolOutputsOptions {
|
|
294
|
+
/**
|
|
295
|
+
* Target token count to keep in tool outputs.
|
|
296
|
+
* Tool outputs beyond this (from oldest) will be marked as compacted.
|
|
297
|
+
* Default: 40000 (same as OpenCode PRUNE_PROTECT)
|
|
298
|
+
*/
|
|
299
|
+
keepTokens?: number;
|
|
300
|
+
/**
|
|
301
|
+
* Minimum tokens that must be recoverable to perform pruning.
|
|
302
|
+
* If pruning would save less than this, skip it entirely.
|
|
303
|
+
* Default: 20000 (same as OpenCode PRUNE_MINIMUM)
|
|
304
|
+
*/
|
|
305
|
+
minimumTokens?: number;
|
|
306
|
+
/**
|
|
307
|
+
* Number of recent user turns to protect from pruning.
|
|
308
|
+
* Tool outputs in these turns will not be compacted.
|
|
309
|
+
* Default: 2
|
|
310
|
+
*/
|
|
311
|
+
protectedTurns?: number;
|
|
312
|
+
/**
|
|
313
|
+
* Session ID to prune tool outputs from.
|
|
314
|
+
*/
|
|
315
|
+
sessionId: string;
|
|
316
|
+
}
|
|
317
|
+
/**
|
|
318
|
+
* Compaction operation result.
|
|
319
|
+
*/
|
|
320
|
+
export interface CompactionResult {
|
|
321
|
+
/** Number of parts that were compacted */
|
|
322
|
+
compactedCount: number;
|
|
323
|
+
/** New compaction boundary message ID */
|
|
324
|
+
compactionMessageId?: string;
|
|
325
|
+
/** Estimated tokens saved */
|
|
326
|
+
tokensSaved: number;
|
|
327
|
+
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import type { ExecutionContext } from '../../interfaces/i-cipher-agent.js';
|
|
2
|
+
import type { TokenUsage } from '../agent-events/types.js';
|
|
3
|
+
/**
|
|
4
|
+
* Streaming event names for CipherAgent.stream()
|
|
5
|
+
* These are the events exposed via the streaming API for real-time chat UIs.
|
|
6
|
+
*/
|
|
7
|
+
export declare const STREAMING_EVENT_NAMES: readonly ["llmservice:thinking", "llmservice:chunk", "llmservice:response", "llmservice:toolCall", "llmservice:toolResult", "llmservice:error", "llmservice:warning", "message:queued", "message:dequeued", "run:complete"];
|
|
8
|
+
export type StreamingEventName = (typeof STREAMING_EVENT_NAMES)[number];
|
|
9
|
+
/**
|
|
10
|
+
* Union type of all streaming events with their payloads.
|
|
11
|
+
* Uses 'name' property as discriminant for type narrowing.
|
|
12
|
+
*/
|
|
13
|
+
export type StreamingEvent = {
|
|
14
|
+
args: Record<string, unknown>;
|
|
15
|
+
callId?: string;
|
|
16
|
+
name: 'llmservice:toolCall';
|
|
17
|
+
sessionId: string;
|
|
18
|
+
taskId?: string;
|
|
19
|
+
toolName: string;
|
|
20
|
+
} | {
|
|
21
|
+
callId?: string;
|
|
22
|
+
error?: string;
|
|
23
|
+
name: 'llmservice:toolResult';
|
|
24
|
+
result?: unknown;
|
|
25
|
+
sessionId: string;
|
|
26
|
+
success: boolean;
|
|
27
|
+
taskId?: string;
|
|
28
|
+
toolName: string;
|
|
29
|
+
} | {
|
|
30
|
+
code?: string;
|
|
31
|
+
error: string;
|
|
32
|
+
name: 'llmservice:error';
|
|
33
|
+
recoverable?: boolean;
|
|
34
|
+
sessionId: string;
|
|
35
|
+
taskId?: string;
|
|
36
|
+
} | {
|
|
37
|
+
content: string;
|
|
38
|
+
isComplete?: boolean;
|
|
39
|
+
name: 'llmservice:chunk';
|
|
40
|
+
sessionId: string;
|
|
41
|
+
taskId?: string;
|
|
42
|
+
type: 'reasoning' | 'text';
|
|
43
|
+
} | {
|
|
44
|
+
content: string;
|
|
45
|
+
model?: string;
|
|
46
|
+
name: 'llmservice:response';
|
|
47
|
+
partial?: boolean;
|
|
48
|
+
provider?: string;
|
|
49
|
+
reasoning?: string;
|
|
50
|
+
sessionId: string;
|
|
51
|
+
taskId?: string;
|
|
52
|
+
tokenUsage?: TokenUsage;
|
|
53
|
+
} | {
|
|
54
|
+
count: number;
|
|
55
|
+
name: 'message:dequeued';
|
|
56
|
+
sessionId: string;
|
|
57
|
+
taskId?: string;
|
|
58
|
+
} | {
|
|
59
|
+
durationMs: number;
|
|
60
|
+
error?: Error;
|
|
61
|
+
finishReason: 'cancelled' | 'error' | 'max-iterations' | 'stop' | 'timeout';
|
|
62
|
+
name: 'run:complete';
|
|
63
|
+
sessionId: string;
|
|
64
|
+
stepCount: number;
|
|
65
|
+
taskId?: string;
|
|
66
|
+
} | {
|
|
67
|
+
message: string;
|
|
68
|
+
name: 'llmservice:warning';
|
|
69
|
+
sessionId: string;
|
|
70
|
+
taskId?: string;
|
|
71
|
+
} | {
|
|
72
|
+
message: {
|
|
73
|
+
content: string;
|
|
74
|
+
id: string;
|
|
75
|
+
queuedAt: number;
|
|
76
|
+
};
|
|
77
|
+
name: 'message:queued';
|
|
78
|
+
position: number;
|
|
79
|
+
sessionId: string;
|
|
80
|
+
taskId?: string;
|
|
81
|
+
} | {
|
|
82
|
+
name: 'llmservice:thinking';
|
|
83
|
+
sessionId: string;
|
|
84
|
+
taskId?: string;
|
|
85
|
+
};
|
|
86
|
+
/**
|
|
87
|
+
* Options for stream() method
|
|
88
|
+
*/
|
|
89
|
+
export interface StreamOptions {
|
|
90
|
+
/** Execution context */
|
|
91
|
+
executionContext?: ExecutionContext;
|
|
92
|
+
/** AbortSignal for cancellation */
|
|
93
|
+
signal?: AbortSignal;
|
|
94
|
+
/** Task ID for concurrent task isolation (included in all emitted events) */
|
|
95
|
+
taskId?: string;
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* Complete response from generate() method (wrapper around stream)
|
|
99
|
+
*/
|
|
100
|
+
export interface GenerateResponse {
|
|
101
|
+
/** The final response content */
|
|
102
|
+
content: string;
|
|
103
|
+
/** Internal reasoning (if available) */
|
|
104
|
+
reasoning?: string;
|
|
105
|
+
/** Session ID */
|
|
106
|
+
sessionId: string;
|
|
107
|
+
/** Tool calls made during execution */
|
|
108
|
+
toolCalls: Array<{
|
|
109
|
+
args: Record<string, unknown>;
|
|
110
|
+
callId: string;
|
|
111
|
+
result?: {
|
|
112
|
+
data: unknown;
|
|
113
|
+
success: boolean;
|
|
114
|
+
};
|
|
115
|
+
toolName: string;
|
|
116
|
+
}>;
|
|
117
|
+
/** Token usage statistics */
|
|
118
|
+
usage: TokenUsage;
|
|
119
|
+
}
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
import type { MemoryManager } from '../../../infra/memory/memory-manager.js';
|
|
2
|
+
import type { EnvironmentContext } from '../environment/types.js';
|
|
3
|
+
/**
|
|
4
|
+
* Conversation metadata for execution context
|
|
5
|
+
*/
|
|
6
|
+
export interface ConversationMetadata {
|
|
7
|
+
/** ID of the conversation */
|
|
8
|
+
conversationId: string;
|
|
9
|
+
/** Title of the conversation */
|
|
10
|
+
title: string;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Context passed to system prompt contributors at runtime.
|
|
14
|
+
* This allows contributors to access runtime dependencies and configuration.
|
|
15
|
+
*/
|
|
16
|
+
export interface SystemPromptContext {
|
|
17
|
+
/** Additional context properties */
|
|
18
|
+
[key: string]: unknown;
|
|
19
|
+
/** Set of available tool marker strings */
|
|
20
|
+
availableMarkers?: Set<string>;
|
|
21
|
+
/** Array of available tool names */
|
|
22
|
+
availableTools?: string[];
|
|
23
|
+
/** Metadata about the conversation (for JSON input mode) */
|
|
24
|
+
conversationMetadata?: ConversationMetadata;
|
|
25
|
+
/** Whether running in JSON input mode (headless with conversation history) */
|
|
26
|
+
isJsonInputMode?: boolean;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Extended context for contributor execution.
|
|
30
|
+
* Includes runtime dependencies needed by contributors.
|
|
31
|
+
*/
|
|
32
|
+
export interface ContributorContext {
|
|
33
|
+
/** Available markers and their descriptions */
|
|
34
|
+
availableMarkers?: Record<string, string>;
|
|
35
|
+
/** List of available tool names */
|
|
36
|
+
availableTools?: string[];
|
|
37
|
+
/** Type of command being executed */
|
|
38
|
+
commandType?: 'chat' | 'curate' | 'query';
|
|
39
|
+
/** Metadata about the current conversation */
|
|
40
|
+
conversationMetadata?: {
|
|
41
|
+
conversationId?: string;
|
|
42
|
+
title?: string;
|
|
43
|
+
};
|
|
44
|
+
/** Environment context with working directory, git status, file tree, etc. */
|
|
45
|
+
environmentContext?: EnvironmentContext;
|
|
46
|
+
/** Instructions for file reference handling */
|
|
47
|
+
fileReferenceInstructions?: string;
|
|
48
|
+
/** Memory manager instance for accessing memories */
|
|
49
|
+
memoryManager?: MemoryManager;
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* Interface for system prompt contributors.
|
|
53
|
+
*
|
|
54
|
+
* Contributors generate portions of the system prompt that are
|
|
55
|
+
* combined by the SystemPromptManager.
|
|
56
|
+
*/
|
|
57
|
+
export interface SystemPromptContributor {
|
|
58
|
+
/**
|
|
59
|
+
* Generate the content for this contributor.
|
|
60
|
+
*
|
|
61
|
+
* @param context - Runtime context with dependencies
|
|
62
|
+
* @returns Prompt content string
|
|
63
|
+
*/
|
|
64
|
+
getContent(context: ContributorContext): Promise<string>;
|
|
65
|
+
/** Unique identifier for this contributor */
|
|
66
|
+
id: string;
|
|
67
|
+
/** Priority for ordering (lower = higher priority) */
|
|
68
|
+
priority: number;
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* Configuration for a static contributor.
|
|
72
|
+
* Static contributors return the base system prompt from YAML or custom content.
|
|
73
|
+
*/
|
|
74
|
+
export interface StaticContributorConfig {
|
|
75
|
+
/** Optional category for YAML file (e.g., 'base', 'contributors') */
|
|
76
|
+
category?: string;
|
|
77
|
+
/** Optional custom content to return (overrides YAML) */
|
|
78
|
+
content?: string;
|
|
79
|
+
/** Whether this contributor is enabled (default: true) */
|
|
80
|
+
enabled?: boolean;
|
|
81
|
+
/** Optional filename for YAML file (without .yml extension) */
|
|
82
|
+
filename?: string;
|
|
83
|
+
/** Unique identifier for this contributor */
|
|
84
|
+
id: string;
|
|
85
|
+
/** Priority for ordering (lower = higher priority) */
|
|
86
|
+
priority: number;
|
|
87
|
+
/** Type discriminator */
|
|
88
|
+
type: 'static';
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* Configuration for a date-time contributor.
|
|
92
|
+
* Provides current date and time in ISO format.
|
|
93
|
+
*/
|
|
94
|
+
export interface DateTimeContributorConfig {
|
|
95
|
+
/** Whether this contributor is enabled (default: true) */
|
|
96
|
+
enabled?: boolean;
|
|
97
|
+
/** Unique identifier for this contributor */
|
|
98
|
+
id: string;
|
|
99
|
+
/** Priority for ordering (lower = higher priority) */
|
|
100
|
+
priority: number;
|
|
101
|
+
/** Type discriminator */
|
|
102
|
+
type: 'dateTime';
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* Options for memory contributor configuration.
|
|
106
|
+
* Controls how memories are retrieved and formatted in the system prompt.
|
|
107
|
+
*/
|
|
108
|
+
export interface MemoryContributorOptions {
|
|
109
|
+
/** Whether to include tags in memory display (default: true) */
|
|
110
|
+
includeTags?: boolean;
|
|
111
|
+
/** Whether to include timestamps in memory display (default: false) */
|
|
112
|
+
includeTimestamps?: boolean;
|
|
113
|
+
/** Maximum number of memories to include */
|
|
114
|
+
limit?: number;
|
|
115
|
+
/** Only include pinned memories (for hybrid approach, default: false) */
|
|
116
|
+
pinnedOnly?: boolean;
|
|
117
|
+
/** Filter by memory source (agent, system, or user) */
|
|
118
|
+
source?: 'agent' | 'system' | 'user';
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* Configuration for a memory contributor.
|
|
122
|
+
* Retrieves and formats agent memories for inclusion in the system prompt.
|
|
123
|
+
*/
|
|
124
|
+
export interface MemoryContributorConfig {
|
|
125
|
+
/** Whether this contributor is enabled (default: true) */
|
|
126
|
+
enabled?: boolean;
|
|
127
|
+
/** Unique identifier for this contributor */
|
|
128
|
+
id: string;
|
|
129
|
+
/** Options for memory retrieval and formatting */
|
|
130
|
+
options?: MemoryContributorOptions;
|
|
131
|
+
/** Priority for ordering (lower = higher priority) */
|
|
132
|
+
priority: number;
|
|
133
|
+
/** Type discriminator */
|
|
134
|
+
type: 'memory';
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* Configuration for an execution mode contributor.
|
|
138
|
+
* Provides context-specific instructions based on execution mode (e.g., JSON input mode).
|
|
139
|
+
*/
|
|
140
|
+
export interface ExecutionModeContributorConfig {
|
|
141
|
+
/** Whether this contributor is enabled (default: true) */
|
|
142
|
+
enabled?: boolean;
|
|
143
|
+
/** Unique identifier for this contributor */
|
|
144
|
+
id: string;
|
|
145
|
+
/** Priority for ordering (lower = higher priority) */
|
|
146
|
+
priority: number;
|
|
147
|
+
/** Type discriminator */
|
|
148
|
+
type: 'executionMode';
|
|
149
|
+
}
|
|
150
|
+
/**
|
|
151
|
+
* Configuration for a marker-based prompt contributor.
|
|
152
|
+
* Generates prompt sections based on available tool markers.
|
|
153
|
+
*/
|
|
154
|
+
export interface MarkerPromptContributorConfig {
|
|
155
|
+
/** Whether this contributor is enabled (default: true) */
|
|
156
|
+
enabled?: boolean;
|
|
157
|
+
/** Unique identifier for this contributor */
|
|
158
|
+
id: string;
|
|
159
|
+
/** Priority for ordering (lower = higher priority) */
|
|
160
|
+
priority: number;
|
|
161
|
+
/** Type discriminator */
|
|
162
|
+
type: 'markerPrompt';
|
|
163
|
+
}
|
|
164
|
+
/**
|
|
165
|
+
* Union type for all contributor configurations.
|
|
166
|
+
* Uses discriminated union for type-safe contributor creation.
|
|
167
|
+
*/
|
|
168
|
+
export type ContributorConfig = DateTimeContributorConfig | ExecutionModeContributorConfig | MarkerPromptContributorConfig | MemoryContributorConfig | StaticContributorConfig;
|
|
169
|
+
/**
|
|
170
|
+
* Configuration for the system prompt manager.
|
|
171
|
+
*/
|
|
172
|
+
export interface SystemPromptConfig {
|
|
173
|
+
/** Array of contributor configurations */
|
|
174
|
+
contributors: ContributorConfig[];
|
|
175
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Known tool names.
|
|
3
|
+
* These constants ensure type safety and prevent typos.
|
|
4
|
+
*/
|
|
5
|
+
export declare const ToolName: {
|
|
6
|
+
readonly BASH_EXEC: 'bash_exec';
|
|
7
|
+
readonly BASH_OUTPUT: 'bash_output';
|
|
8
|
+
readonly BATCH: 'batch';
|
|
9
|
+
readonly CODE_EXEC: 'code_exec';
|
|
10
|
+
readonly CREATE_KNOWLEDGE_TOPIC: 'create_knowledge_topic';
|
|
11
|
+
readonly CURATE: 'curate';
|
|
12
|
+
readonly DELETE_MEMORY: 'delete_memory';
|
|
13
|
+
readonly EDIT_FILE: 'edit_file';
|
|
14
|
+
readonly EDIT_MEMORY: 'edit_memory';
|
|
15
|
+
readonly GLOB_FILES: 'glob_files';
|
|
16
|
+
readonly GREP_CONTENT: 'grep_content';
|
|
17
|
+
readonly KILL_PROCESS: 'kill_process';
|
|
18
|
+
readonly LIST_DIRECTORY: 'list_directory';
|
|
19
|
+
readonly LIST_MEMORIES: 'list_memories';
|
|
20
|
+
readonly READ_FILE: 'read_file';
|
|
21
|
+
readonly READ_MEMORY: 'read_memory';
|
|
22
|
+
readonly READ_TODOS: 'read_todos';
|
|
23
|
+
readonly SEARCH_HISTORY: 'search_history';
|
|
24
|
+
readonly SEARCH_KNOWLEDGE: 'search_knowledge';
|
|
25
|
+
readonly SPEC_ANALYZE: 'spec_analyze';
|
|
26
|
+
readonly WRITE_FILE: 'write_file';
|
|
27
|
+
readonly WRITE_MEMORY: 'write_memory';
|
|
28
|
+
readonly WRITE_TODOS: 'write_todos';
|
|
29
|
+
};
|
|
30
|
+
/**
|
|
31
|
+
* Union type of all known tool names.
|
|
32
|
+
*/
|
|
33
|
+
export type KnownTool = (typeof ToolName)[keyof typeof ToolName];
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Known tool names.
|
|
3
|
+
* These constants ensure type safety and prevent typos.
|
|
4
|
+
*/
|
|
5
|
+
export const ToolName = {
|
|
6
|
+
BASH_EXEC: 'bash_exec',
|
|
7
|
+
BASH_OUTPUT: 'bash_output',
|
|
8
|
+
BATCH: 'batch',
|
|
9
|
+
CODE_EXEC: 'code_exec',
|
|
10
|
+
CREATE_KNOWLEDGE_TOPIC: 'create_knowledge_topic',
|
|
11
|
+
CURATE: 'curate',
|
|
12
|
+
DELETE_MEMORY: 'delete_memory',
|
|
13
|
+
EDIT_FILE: 'edit_file',
|
|
14
|
+
EDIT_MEMORY: 'edit_memory',
|
|
15
|
+
GLOB_FILES: 'glob_files',
|
|
16
|
+
GREP_CONTENT: 'grep_content',
|
|
17
|
+
KILL_PROCESS: 'kill_process',
|
|
18
|
+
LIST_DIRECTORY: 'list_directory',
|
|
19
|
+
LIST_MEMORIES: 'list_memories',
|
|
20
|
+
READ_FILE: 'read_file',
|
|
21
|
+
READ_MEMORY: 'read_memory',
|
|
22
|
+
READ_TODOS: 'read_todos',
|
|
23
|
+
SEARCH_HISTORY: 'search_history',
|
|
24
|
+
SEARCH_KNOWLEDGE: 'search_knowledge',
|
|
25
|
+
SPEC_ANALYZE: 'spec_analyze',
|
|
26
|
+
WRITE_FILE: 'write_file',
|
|
27
|
+
WRITE_MEMORY: 'write_memory',
|
|
28
|
+
WRITE_TODOS: 'write_todos',
|
|
29
|
+
};
|