langflower 0.0.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 +130 -0
- package/bin/langflower.js +3 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +14 -0
- package/dist/cli.js.map +1 -0
- package/dist/create-fake-skill-case-runner.d.ts +10 -0
- package/dist/create-fake-skill-case-runner.d.ts.map +1 -0
- package/dist/create-fake-skill-case-runner.js +74 -0
- package/dist/create-fake-skill-case-runner.js.map +1 -0
- package/dist/create-fake-skill-case-runner.test.d.ts +2 -0
- package/dist/create-fake-skill-case-runner.test.d.ts.map +1 -0
- package/dist/create-fake-skill-case-runner.test.js +61 -0
- package/dist/create-fake-skill-case-runner.test.js.map +1 -0
- package/dist/eval-command.d.ts +3 -0
- package/dist/eval-command.d.ts.map +1 -0
- package/dist/eval-command.js +67 -0
- package/dist/eval-command.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -0
- package/dist/start-command.d.ts +6 -0
- package/dist/start-command.d.ts.map +1 -0
- package/dist/start-command.js +111 -0
- package/dist/start-command.js.map +1 -0
- package/dist/start-command.test.d.ts +2 -0
- package/dist/start-command.test.d.ts.map +1 -0
- package/dist/start-command.test.js +18 -0
- package/dist/start-command.test.js.map +1 -0
- package/package.json +38 -0
- package/ui-dist/chunk-EM5IX6SE.js +4 -0
- package/ui-dist/chunk-KBE4AFZR.js +1 -0
- package/ui-dist/index.html +12 -0
- package/ui-dist/main-GNFFCUQS.js +310 -0
- package/ui-dist/polyfills-WLKSPSHJ.js +2 -0
- package/ui-dist/styles-SVUMLEUV.css +1 -0
- package/vendor/common-nodes/dist/ai/build-effective-system-prompt.d.ts +10 -0
- package/vendor/common-nodes/dist/ai/build-effective-system-prompt.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/build-effective-system-prompt.js +22 -0
- package/vendor/common-nodes/dist/ai/build-effective-system-prompt.js.map +1 -0
- package/vendor/common-nodes/dist/ai/chat-completion-stream.d.ts +52 -0
- package/vendor/common-nodes/dist/ai/chat-completion-stream.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/chat-completion-stream.js +2 -0
- package/vendor/common-nodes/dist/ai/chat-completion-stream.js.map +1 -0
- package/vendor/common-nodes/dist/ai/chat-input/node.d.ts +25 -0
- package/vendor/common-nodes/dist/ai/chat-input/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/chat-input/node.js +39 -0
- package/vendor/common-nodes/dist/ai/chat-input/node.js.map +1 -0
- package/vendor/common-nodes/dist/ai/critique/node.d.ts +229 -0
- package/vendor/common-nodes/dist/ai/critique/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/critique/node.js +235 -0
- package/vendor/common-nodes/dist/ai/critique/node.js.map +1 -0
- package/vendor/common-nodes/dist/ai/define-llm-node/default-llm-ports.d.ts +28 -0
- package/vendor/common-nodes/dist/ai/define-llm-node/default-llm-ports.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/define-llm-node/default-llm-ports.js +59 -0
- package/vendor/common-nodes/dist/ai/define-llm-node/default-llm-ports.js.map +1 -0
- package/vendor/common-nodes/dist/ai/define-llm-node/define-llm-node.d.ts +45 -0
- package/vendor/common-nodes/dist/ai/define-llm-node/define-llm-node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/define-llm-node/define-llm-node.js +48 -0
- package/vendor/common-nodes/dist/ai/define-llm-node/define-llm-node.js.map +1 -0
- package/vendor/common-nodes/dist/ai/fake-llm/node.d.ts +330 -0
- package/vendor/common-nodes/dist/ai/fake-llm/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/fake-llm/node.js +205 -0
- package/vendor/common-nodes/dist/ai/fake-llm/node.js.map +1 -0
- package/vendor/common-nodes/dist/ai/fake-mcp-server/node.d.ts +26 -0
- package/vendor/common-nodes/dist/ai/fake-mcp-server/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/fake-mcp-server/node.js +67 -0
- package/vendor/common-nodes/dist/ai/fake-mcp-server/node.js.map +1 -0
- package/vendor/common-nodes/dist/ai/fake-tool-registration/node.d.ts +26 -0
- package/vendor/common-nodes/dist/ai/fake-tool-registration/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/fake-tool-registration/node.js +57 -0
- package/vendor/common-nodes/dist/ai/fake-tool-registration/node.js.map +1 -0
- package/vendor/common-nodes/dist/ai/filter-enabled-registrations.d.ts +9 -0
- package/vendor/common-nodes/dist/ai/filter-enabled-registrations.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/filter-enabled-registrations.js +18 -0
- package/vendor/common-nodes/dist/ai/filter-enabled-registrations.js.map +1 -0
- package/vendor/common-nodes/dist/ai/flatten-mcp-server-configs.d.ts +7 -0
- package/vendor/common-nodes/dist/ai/flatten-mcp-server-configs.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/flatten-mcp-server-configs.js +21 -0
- package/vendor/common-nodes/dist/ai/flatten-mcp-server-configs.js.map +1 -0
- package/vendor/common-nodes/dist/ai/inventory-tool-round.d.ts +33 -0
- package/vendor/common-nodes/dist/ai/inventory-tool-round.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/inventory-tool-round.js +215 -0
- package/vendor/common-nodes/dist/ai/inventory-tool-round.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-compaction-ui-schema.d.ts +15 -0
- package/vendor/common-nodes/dist/ai/llm-compaction-ui-schema.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-compaction-ui-schema.js +18 -0
- package/vendor/common-nodes/dist/ai/llm-compaction-ui-schema.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/classify-llm-failure.d.ts +3 -0
- package/vendor/common-nodes/dist/ai/llm-loop/classify-llm-failure.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/classify-llm-failure.js +107 -0
- package/vendor/common-nodes/dist/ai/llm-loop/classify-llm-failure.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/llm-loop-reducer.d.ts +3 -0
- package/vendor/common-nodes/dist/ai/llm-loop/llm-loop-reducer.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/llm-loop-reducer.js +181 -0
- package/vendor/common-nodes/dist/ai/llm-loop/llm-loop-reducer.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/llm-loop-types.d.ts +91 -0
- package/vendor/common-nodes/dist/ai/llm-loop/llm-loop-types.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/llm-loop-types.js +21 -0
- package/vendor/common-nodes/dist/ai/llm-loop/llm-loop-types.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/normalize-llm-recovery-policy.d.ts +3 -0
- package/vendor/common-nodes/dist/ai/llm-loop/normalize-llm-recovery-policy.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/normalize-llm-recovery-policy.js +17 -0
- package/vendor/common-nodes/dist/ai/llm-loop/normalize-llm-recovery-policy.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/operators/normalize-tool-result.d.ts +2 -0
- package/vendor/common-nodes/dist/ai/llm-loop/operators/normalize-tool-result.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/operators/normalize-tool-result.js +8 -0
- package/vendor/common-nodes/dist/ai/llm-loop/operators/normalize-tool-result.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/operators/observe-provider-stream.d.ts +38 -0
- package/vendor/common-nodes/dist/ai/llm-loop/operators/observe-provider-stream.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/operators/observe-provider-stream.js +67 -0
- package/vendor/common-nodes/dist/ai/llm-loop/operators/observe-provider-stream.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/run-agent-loop.d.ts +30 -0
- package/vendor/common-nodes/dist/ai/llm-loop/run-agent-loop.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/run-agent-loop.js +55 -0
- package/vendor/common-nodes/dist/ai/llm-loop/run-agent-loop.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/run-llm-loop.d.ts +72 -0
- package/vendor/common-nodes/dist/ai/llm-loop/run-llm-loop.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/run-llm-loop.js +463 -0
- package/vendor/common-nodes/dist/ai/llm-loop/run-llm-loop.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-panel-ui-schema.d.ts +95 -0
- package/vendor/common-nodes/dist/ai/llm-panel-ui-schema.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-panel-ui-schema.js +73 -0
- package/vendor/common-nodes/dist/ai/llm-panel-ui-schema.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-recovery-ui-schema.d.ts +32 -0
- package/vendor/common-nodes/dist/ai/llm-recovery-ui-schema.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-recovery-ui-schema.js +37 -0
- package/vendor/common-nodes/dist/ai/llm-recovery-ui-schema.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-role-preset.d.ts +68 -0
- package/vendor/common-nodes/dist/ai/llm-role-preset.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-role-preset.js +178 -0
- package/vendor/common-nodes/dist/ai/llm-role-preset.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-session/run-session-machine.d.ts +18 -0
- package/vendor/common-nodes/dist/ai/llm-session/run-session-machine.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-session/run-session-machine.js +92 -0
- package/vendor/common-nodes/dist/ai/llm-session/run-session-machine.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-session-shell.d.ts +140 -0
- package/vendor/common-nodes/dist/ai/llm-session-shell.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-session-shell.js +181 -0
- package/vendor/common-nodes/dist/ai/llm-session-shell.js.map +1 -0
- package/vendor/common-nodes/dist/ai/mcp-server/node.d.ts +26 -0
- package/vendor/common-nodes/dist/ai/mcp-server/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/mcp-server/node.js +68 -0
- package/vendor/common-nodes/dist/ai/mcp-server/node.js.map +1 -0
- package/vendor/common-nodes/dist/ai/mcp-server-config.d.ts +16 -0
- package/vendor/common-nodes/dist/ai/mcp-server-config.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/mcp-server-config.js +2 -0
- package/vendor/common-nodes/dist/ai/mcp-server-config.js.map +1 -0
- package/vendor/common-nodes/dist/ai/mcp-tool-id.d.ts +11 -0
- package/vendor/common-nodes/dist/ai/mcp-tool-id.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/mcp-tool-id.js +30 -0
- package/vendor/common-nodes/dist/ai/mcp-tool-id.js.map +1 -0
- package/vendor/common-nodes/dist/ai/merge-tool-inventory.d.ts +10 -0
- package/vendor/common-nodes/dist/ai/merge-tool-inventory.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/merge-tool-inventory.js +26 -0
- package/vendor/common-nodes/dist/ai/merge-tool-inventory.js.map +1 -0
- package/vendor/common-nodes/dist/ai/normalize-max-iterations.d.ts +13 -0
- package/vendor/common-nodes/dist/ai/normalize-max-iterations.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/normalize-max-iterations.js +23 -0
- package/vendor/common-nodes/dist/ai/normalize-max-iterations.js.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/context-length-error.d.ts +15 -0
- package/vendor/common-nodes/dist/ai/openai/context-length-error.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/context-length-error.js +64 -0
- package/vendor/common-nodes/dist/ai/openai/context-length-error.js.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/create-chat-completion-stream.d.ts +20 -0
- package/vendor/common-nodes/dist/ai/openai/create-chat-completion-stream.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/create-chat-completion-stream.js +177 -0
- package/vendor/common-nodes/dist/ai/openai/create-chat-completion-stream.js.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/create-embedding.d.ts +18 -0
- package/vendor/common-nodes/dist/ai/openai/create-embedding.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/create-embedding.js +43 -0
- package/vendor/common-nodes/dist/ai/openai/create-embedding.js.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/list-provider-models.d.ts +29 -0
- package/vendor/common-nodes/dist/ai/openai/list-provider-models.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/list-provider-models.js +53 -0
- package/vendor/common-nodes/dist/ai/openai/list-provider-models.js.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/llm-context-compaction.d.ts +32 -0
- package/vendor/common-nodes/dist/ai/openai/llm-context-compaction.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/llm-context-compaction.js +327 -0
- package/vendor/common-nodes/dist/ai/openai/llm-context-compaction.js.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/normalize-compaction-params.d.ts +15 -0
- package/vendor/common-nodes/dist/ai/openai/normalize-compaction-params.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/normalize-compaction-params.js +22 -0
- package/vendor/common-nodes/dist/ai/openai/normalize-compaction-params.js.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/prepare-chat-completion.d.ts +29 -0
- package/vendor/common-nodes/dist/ai/openai/prepare-chat-completion.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/prepare-chat-completion.js +115 -0
- package/vendor/common-nodes/dist/ai/openai/prepare-chat-completion.js.map +1 -0
- package/vendor/common-nodes/dist/ai/openai-llm/node.d.ts +346 -0
- package/vendor/common-nodes/dist/ai/openai-llm/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/openai-llm/node.js +86 -0
- package/vendor/common-nodes/dist/ai/openai-llm/node.js.map +1 -0
- package/vendor/common-nodes/dist/ai/path-choice/control-tools.d.ts +21 -0
- package/vendor/common-nodes/dist/ai/path-choice/control-tools.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/path-choice/control-tools.js +71 -0
- package/vendor/common-nodes/dist/ai/path-choice/control-tools.js.map +1 -0
- package/vendor/common-nodes/dist/ai/path-choice/run-path-choice-tool-loop.d.ts +54 -0
- package/vendor/common-nodes/dist/ai/path-choice/run-path-choice-tool-loop.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/path-choice/run-path-choice-tool-loop.js +242 -0
- package/vendor/common-nodes/dist/ai/path-choice/run-path-choice-tool-loop.js.map +1 -0
- package/vendor/common-nodes/dist/ai/path-choice/run-reactive-path-choice-loop.d.ts +36 -0
- package/vendor/common-nodes/dist/ai/path-choice/run-reactive-path-choice-loop.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/path-choice/run-reactive-path-choice-loop.js +105 -0
- package/vendor/common-nodes/dist/ai/path-choice/run-reactive-path-choice-loop.js.map +1 -0
- package/vendor/common-nodes/dist/ai/resolve-mcp-inventory.d.ts +8 -0
- package/vendor/common-nodes/dist/ai/resolve-mcp-inventory.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/resolve-mcp-inventory.js +43 -0
- package/vendor/common-nodes/dist/ai/resolve-mcp-inventory.js.map +1 -0
- package/vendor/common-nodes/dist/ai/review/node.d.ts +229 -0
- package/vendor/common-nodes/dist/ai/review/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/review/node.js +230 -0
- package/vendor/common-nodes/dist/ai/review/node.js.map +1 -0
- package/vendor/common-nodes/dist/ai/review/review-control-tools.d.ts +20 -0
- package/vendor/common-nodes/dist/ai/review/review-control-tools.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/review/review-control-tools.js +70 -0
- package/vendor/common-nodes/dist/ai/review/review-control-tools.js.map +1 -0
- package/vendor/common-nodes/dist/ai/review/run-review-tool-loop.d.ts +44 -0
- package/vendor/common-nodes/dist/ai/review/run-review-tool-loop.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/review/run-review-tool-loop.js +193 -0
- package/vendor/common-nodes/dist/ai/review/run-review-tool-loop.js.map +1 -0
- package/vendor/common-nodes/dist/ai/run-host-services.d.ts +19 -0
- package/vendor/common-nodes/dist/ai/run-host-services.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/run-host-services.js +12 -0
- package/vendor/common-nodes/dist/ai/run-host-services.js.map +1 -0
- package/vendor/common-nodes/dist/ai/run-internal-tool-loop.d.ts +39 -0
- package/vendor/common-nodes/dist/ai/run-internal-tool-loop.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/run-internal-tool-loop.js +138 -0
- package/vendor/common-nodes/dist/ai/run-internal-tool-loop.js.map +1 -0
- package/vendor/common-nodes/dist/ai/scripted-chat-completion-stream.d.ts +18 -0
- package/vendor/common-nodes/dist/ai/scripted-chat-completion-stream.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/scripted-chat-completion-stream.js +62 -0
- package/vendor/common-nodes/dist/ai/scripted-chat-completion-stream.js.map +1 -0
- package/vendor/common-nodes/dist/ai/sub-agent/node.d.ts +389 -0
- package/vendor/common-nodes/dist/ai/sub-agent/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/sub-agent/node.js +289 -0
- package/vendor/common-nodes/dist/ai/sub-agent/node.js.map +1 -0
- package/vendor/common-nodes/dist/ai/sub-agent-protocol.d.ts +40 -0
- package/vendor/common-nodes/dist/ai/sub-agent-protocol.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/sub-agent-protocol.js +44 -0
- package/vendor/common-nodes/dist/ai/sub-agent-protocol.js.map +1 -0
- package/vendor/common-nodes/dist/ai/tool-handler-context.d.ts +4 -0
- package/vendor/common-nodes/dist/ai/tool-handler-context.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/tool-handler-context.js +16 -0
- package/vendor/common-nodes/dist/ai/tool-handler-context.js.map +1 -0
- package/vendor/common-nodes/dist/ai/tool-registration.d.ts +6 -0
- package/vendor/common-nodes/dist/ai/tool-registration.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/tool-registration.js +33 -0
- package/vendor/common-nodes/dist/ai/tool-registration.js.map +1 -0
- package/vendor/common-nodes/dist/ai/wait-for-subagent-result.d.ts +7 -0
- package/vendor/common-nodes/dist/ai/wait-for-subagent-result.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/wait-for-subagent-result.js +31 -0
- package/vendor/common-nodes/dist/ai/wait-for-subagent-result.js.map +1 -0
- package/vendor/common-nodes/dist/catalog.d.ts +7 -0
- package/vendor/common-nodes/dist/catalog.d.ts.map +1 -0
- package/vendor/common-nodes/dist/catalog.js +82 -0
- package/vendor/common-nodes/dist/catalog.js.map +1 -0
- package/vendor/common-nodes/dist/crawl/crawl/node.d.ts +104 -0
- package/vendor/common-nodes/dist/crawl/crawl/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/crawl/crawl/node.js +121 -0
- package/vendor/common-nodes/dist/crawl/crawl/node.js.map +1 -0
- package/vendor/common-nodes/dist/crawl/crawl-tools/node.d.ts +25 -0
- package/vendor/common-nodes/dist/crawl/crawl-tools/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/crawl/crawl-tools/node.js +14 -0
- package/vendor/common-nodes/dist/crawl/crawl-tools/node.js.map +1 -0
- package/vendor/common-nodes/dist/crawl/extract-links/node.d.ts +27 -0
- package/vendor/common-nodes/dist/crawl/extract-links/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/crawl/extract-links/node.js +40 -0
- package/vendor/common-nodes/dist/crawl/extract-links/node.js.map +1 -0
- package/vendor/common-nodes/dist/crawl/fetch-url/node.d.ts +61 -0
- package/vendor/common-nodes/dist/crawl/fetch-url/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/crawl/fetch-url/node.js +81 -0
- package/vendor/common-nodes/dist/crawl/fetch-url/node.js.map +1 -0
- package/vendor/common-nodes/dist/crawl/html/extract-links.d.ts +3 -0
- package/vendor/common-nodes/dist/crawl/html/extract-links.d.ts.map +1 -0
- package/vendor/common-nodes/dist/crawl/html/extract-links.js +36 -0
- package/vendor/common-nodes/dist/crawl/html/extract-links.js.map +1 -0
- package/vendor/common-nodes/dist/crawl/html/html-to-text.d.ts +3 -0
- package/vendor/common-nodes/dist/crawl/html/html-to-text.d.ts.map +1 -0
- package/vendor/common-nodes/dist/crawl/html/html-to-text.js +36 -0
- package/vendor/common-nodes/dist/crawl/html/html-to-text.js.map +1 -0
- package/vendor/common-nodes/dist/crawl/html/index.d.ts +3 -0
- package/vendor/common-nodes/dist/crawl/html/index.d.ts.map +1 -0
- package/vendor/common-nodes/dist/crawl/html/index.js +3 -0
- package/vendor/common-nodes/dist/crawl/html/index.js.map +1 -0
- package/vendor/common-nodes/dist/crawl/save-page/node.d.ts +26 -0
- package/vendor/common-nodes/dist/crawl/save-page/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/crawl/save-page/node.js +64 -0
- package/vendor/common-nodes/dist/crawl/save-page/node.js.map +1 -0
- package/vendor/common-nodes/dist/crawl/tool-defs.d.ts +81 -0
- package/vendor/common-nodes/dist/crawl/tool-defs.d.ts.map +1 -0
- package/vendor/common-nodes/dist/crawl/tool-defs.js +56 -0
- package/vendor/common-nodes/dist/crawl/tool-defs.js.map +1 -0
- package/vendor/common-nodes/dist/flow/checkpoint/node.d.ts +28 -0
- package/vendor/common-nodes/dist/flow/checkpoint/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/flow/checkpoint/node.js +41 -0
- package/vendor/common-nodes/dist/flow/checkpoint/node.js.map +1 -0
- package/vendor/common-nodes/dist/flow/delay/node.d.ts +31 -0
- package/vendor/common-nodes/dist/flow/delay/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/flow/delay/node.js +42 -0
- package/vendor/common-nodes/dist/flow/delay/node.js.map +1 -0
- package/vendor/common-nodes/dist/flow/loop/node.d.ts +27 -0
- package/vendor/common-nodes/dist/flow/loop/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/flow/loop/node.js +46 -0
- package/vendor/common-nodes/dist/flow/loop/node.js.map +1 -0
- package/vendor/common-nodes/dist/flow/map-collect-body.d.ts +22 -0
- package/vendor/common-nodes/dist/flow/map-collect-body.d.ts.map +1 -0
- package/vendor/common-nodes/dist/flow/map-collect-body.js +74 -0
- package/vendor/common-nodes/dist/flow/map-collect-body.js.map +1 -0
- package/vendor/common-nodes/dist/flow/merge/node.d.ts +22 -0
- package/vendor/common-nodes/dist/flow/merge/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/flow/merge/node.js +25 -0
- package/vendor/common-nodes/dist/flow/merge/node.js.map +1 -0
- package/vendor/common-nodes/dist/flow/repeat/node.d.ts +25 -0
- package/vendor/common-nodes/dist/flow/repeat/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/flow/repeat/node.js +56 -0
- package/vendor/common-nodes/dist/flow/repeat/node.js.map +1 -0
- package/vendor/common-nodes/dist/flow/router/build-router-definition.d.ts +20 -0
- package/vendor/common-nodes/dist/flow/router/build-router-definition.d.ts.map +1 -0
- package/vendor/common-nodes/dist/flow/router/build-router-definition.js +23 -0
- package/vendor/common-nodes/dist/flow/router/build-router-definition.js.map +1 -0
- package/vendor/common-nodes/dist/flow/router/node.d.ts +22 -0
- package/vendor/common-nodes/dist/flow/router/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/flow/router/node.js +15 -0
- package/vendor/common-nodes/dist/flow/router/node.js.map +1 -0
- package/vendor/common-nodes/dist/flow/router/router-constants.d.ts +3 -0
- package/vendor/common-nodes/dist/flow/router/router-constants.d.ts.map +1 -0
- package/vendor/common-nodes/dist/flow/router/router-constants.js +3 -0
- package/vendor/common-nodes/dist/flow/router/router-constants.js.map +1 -0
- package/vendor/common-nodes/dist/hitl/approval-choice/node.d.ts +23 -0
- package/vendor/common-nodes/dist/hitl/approval-choice/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/hitl/approval-choice/node.js +71 -0
- package/vendor/common-nodes/dist/hitl/approval-choice/node.js.map +1 -0
- package/vendor/common-nodes/dist/hitl/ask-user/node.d.ts +23 -0
- package/vendor/common-nodes/dist/hitl/ask-user/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/hitl/ask-user/node.js +40 -0
- package/vendor/common-nodes/dist/hitl/ask-user/node.js.map +1 -0
- package/vendor/common-nodes/dist/hitl/chat-input/node.d.ts +25 -0
- package/vendor/common-nodes/dist/hitl/chat-input/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/hitl/chat-input/node.js +39 -0
- package/vendor/common-nodes/dist/hitl/chat-input/node.js.map +1 -0
- package/vendor/common-nodes/dist/hitl/hitl-required-role.d.ts +38 -0
- package/vendor/common-nodes/dist/hitl/hitl-required-role.d.ts.map +1 -0
- package/vendor/common-nodes/dist/hitl/hitl-required-role.js +21 -0
- package/vendor/common-nodes/dist/hitl/hitl-required-role.js.map +1 -0
- package/vendor/common-nodes/dist/hitl/review-gate/node.d.ts +22 -0
- package/vendor/common-nodes/dist/hitl/review-gate/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/hitl/review-gate/node.js +60 -0
- package/vendor/common-nodes/dist/hitl/review-gate/node.js.map +1 -0
- package/vendor/common-nodes/dist/kb/chunk-text.d.ts +8 -0
- package/vendor/common-nodes/dist/kb/chunk-text.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/chunk-text.js +52 -0
- package/vendor/common-nodes/dist/kb/chunk-text.js.map +1 -0
- package/vendor/common-nodes/dist/kb/cosine.d.ts +3 -0
- package/vendor/common-nodes/dist/kb/cosine.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/cosine.js +21 -0
- package/vendor/common-nodes/dist/kb/cosine.js.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-apply-curation/node.d.ts +25 -0
- package/vendor/common-nodes/dist/kb/kb-apply-curation/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-apply-curation/node.js +38 -0
- package/vendor/common-nodes/dist/kb/kb-apply-curation/node.js.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-contradict/node.d.ts +25 -0
- package/vendor/common-nodes/dist/kb/kb-contradict/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-contradict/node.js +70 -0
- package/vendor/common-nodes/dist/kb/kb-contradict/node.js.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-dedupe/node.d.ts +25 -0
- package/vendor/common-nodes/dist/kb/kb-dedupe/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-dedupe/node.js +61 -0
- package/vendor/common-nodes/dist/kb/kb-dedupe/node.js.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-delete/node.d.ts +24 -0
- package/vendor/common-nodes/dist/kb/kb-delete/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-delete/node.js +60 -0
- package/vendor/common-nodes/dist/kb/kb-delete/node.js.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-embed/node.d.ts +26 -0
- package/vendor/common-nodes/dist/kb/kb-embed/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-embed/node.js +52 -0
- package/vendor/common-nodes/dist/kb/kb-embed/node.js.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-ingest/node.d.ts +25 -0
- package/vendor/common-nodes/dist/kb/kb-ingest/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-ingest/node.js +68 -0
- package/vendor/common-nodes/dist/kb/kb-ingest/node.js.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-list/node.d.ts +24 -0
- package/vendor/common-nodes/dist/kb/kb-list/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-list/node.js +42 -0
- package/vendor/common-nodes/dist/kb/kb-list/node.js.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-paths.d.ts +8 -0
- package/vendor/common-nodes/dist/kb/kb-paths.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-paths.js +19 -0
- package/vendor/common-nodes/dist/kb/kb-paths.js.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-search/node.d.ts +24 -0
- package/vendor/common-nodes/dist/kb/kb-search/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-search/node.js +60 -0
- package/vendor/common-nodes/dist/kb/kb-search/node.js.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-store.d.ts +57 -0
- package/vendor/common-nodes/dist/kb/kb-store.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-store.js +290 -0
- package/vendor/common-nodes/dist/kb/kb-store.js.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-tools/node.d.ts +25 -0
- package/vendor/common-nodes/dist/kb/kb-tools/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-tools/node.js +14 -0
- package/vendor/common-nodes/dist/kb/kb-tools/node.js.map +1 -0
- package/vendor/common-nodes/dist/kb/local-embed.d.ts +9 -0
- package/vendor/common-nodes/dist/kb/local-embed.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/local-embed.js +41 -0
- package/vendor/common-nodes/dist/kb/local-embed.js.map +1 -0
- package/vendor/common-nodes/dist/kb/parse-string-list.d.ts +3 -0
- package/vendor/common-nodes/dist/kb/parse-string-list.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/parse-string-list.js +25 -0
- package/vendor/common-nodes/dist/kb/parse-string-list.js.map +1 -0
- package/vendor/common-nodes/dist/kb/tool-defs.d.ts +85 -0
- package/vendor/common-nodes/dist/kb/tool-defs.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/tool-defs.js +67 -0
- package/vendor/common-nodes/dist/kb/tool-defs.js.map +1 -0
- package/vendor/common-nodes/dist/logic/assert/node.d.ts +25 -0
- package/vendor/common-nodes/dist/logic/assert/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/logic/assert/node.js +50 -0
- package/vendor/common-nodes/dist/logic/assert/node.js.map +1 -0
- package/vendor/common-nodes/dist/logic/compare/evaluate-compare.d.ts +29 -0
- package/vendor/common-nodes/dist/logic/compare/evaluate-compare.d.ts.map +1 -0
- package/vendor/common-nodes/dist/logic/compare/evaluate-compare.js +61 -0
- package/vendor/common-nodes/dist/logic/compare/evaluate-compare.js.map +1 -0
- package/vendor/common-nodes/dist/logic/compare/node.d.ts +112 -0
- package/vendor/common-nodes/dist/logic/compare/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/logic/compare/node.js +40 -0
- package/vendor/common-nodes/dist/logic/compare/node.js.map +1 -0
- package/vendor/common-nodes/dist/logic/gate/node.d.ts +22 -0
- package/vendor/common-nodes/dist/logic/gate/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/logic/gate/node.js +35 -0
- package/vendor/common-nodes/dist/logic/gate/node.js.map +1 -0
- package/vendor/common-nodes/dist/logic/if/node.d.ts +22 -0
- package/vendor/common-nodes/dist/logic/if/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/logic/if/node.js +40 -0
- package/vendor/common-nodes/dist/logic/if/node.js.map +1 -0
- package/vendor/common-nodes/dist/logic/switch/build-switch-definition.d.ts +18 -0
- package/vendor/common-nodes/dist/logic/switch/build-switch-definition.d.ts.map +1 -0
- package/vendor/common-nodes/dist/logic/switch/build-switch-definition.js +30 -0
- package/vendor/common-nodes/dist/logic/switch/build-switch-definition.js.map +1 -0
- package/vendor/common-nodes/dist/logic/switch/node.d.ts +92 -0
- package/vendor/common-nodes/dist/logic/switch/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/logic/switch/node.js +69 -0
- package/vendor/common-nodes/dist/logic/switch/node.js.map +1 -0
- package/vendor/common-nodes/dist/logic/switch/switch-constants.d.ts +16 -0
- package/vendor/common-nodes/dist/logic/switch/switch-constants.d.ts.map +1 -0
- package/vendor/common-nodes/dist/logic/switch/switch-constants.js +25 -0
- package/vendor/common-nodes/dist/logic/switch/switch-constants.js.map +1 -0
- package/vendor/common-nodes/dist/logic/switch/switch-rules.d.ts +7 -0
- package/vendor/common-nodes/dist/logic/switch/switch-rules.d.ts.map +1 -0
- package/vendor/common-nodes/dist/logic/switch/switch-rules.js +44 -0
- package/vendor/common-nodes/dist/logic/switch/switch-rules.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/build-mcp-handle.d.ts +13 -0
- package/vendor/common-nodes/dist/mcp/build-mcp-handle.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/build-mcp-handle.js +65 -0
- package/vendor/common-nodes/dist/mcp/build-mcp-handle.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/build-mcp-transport.d.ts +14 -0
- package/vendor/common-nodes/dist/mcp/build-mcp-transport.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/build-mcp-transport.js +56 -0
- package/vendor/common-nodes/dist/mcp/build-mcp-transport.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/collect-mcp-tool-registrations.d.ts +7 -0
- package/vendor/common-nodes/dist/mcp/collect-mcp-tool-registrations.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/collect-mcp-tool-registrations.js +19 -0
- package/vendor/common-nodes/dist/mcp/collect-mcp-tool-registrations.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/create-system-mcp-transports.d.ts +48 -0
- package/vendor/common-nodes/dist/mcp/create-system-mcp-transports.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/create-system-mcp-transports.js +124 -0
- package/vendor/common-nodes/dist/mcp/create-system-mcp-transports.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-handles.d.ts +7 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-handles.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-handles.js +22 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-handles.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-server-configs.d.ts +7 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-server-configs.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-server-configs.js +21 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-server-configs.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-transports.d.ts +7 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-transports.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-transports.js +22 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-transports.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/format-mcp-connect-error.d.ts +10 -0
- package/vendor/common-nodes/dist/mcp/format-mcp-connect-error.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/format-mcp-connect-error.js +18 -0
- package/vendor/common-nodes/dist/mcp/format-mcp-connect-error.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/mcp-http/node.d.ts +26 -0
- package/vendor/common-nodes/dist/mcp/mcp-http/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/mcp-http/node.js +112 -0
- package/vendor/common-nodes/dist/mcp/mcp-http/node.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/mcp-server/node.d.ts +26 -0
- package/vendor/common-nodes/dist/mcp/mcp-server/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/mcp-server/node.js +68 -0
- package/vendor/common-nodes/dist/mcp/mcp-server/node.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/mcp-server-config.d.ts +2 -0
- package/vendor/common-nodes/dist/mcp/mcp-server-config.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/mcp-server-config.js +2 -0
- package/vendor/common-nodes/dist/mcp/mcp-server-config.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/mcp-stdio/node.d.ts +26 -0
- package/vendor/common-nodes/dist/mcp/mcp-stdio/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/mcp-stdio/node.js +101 -0
- package/vendor/common-nodes/dist/mcp/mcp-stdio/node.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/resolve-agent-mcp-inventory.d.ts +13 -0
- package/vendor/common-nodes/dist/mcp/resolve-agent-mcp-inventory.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/resolve-agent-mcp-inventory.js +17 -0
- package/vendor/common-nodes/dist/mcp/resolve-agent-mcp-inventory.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/resolve-mcp-inventory.d.ts +8 -0
- package/vendor/common-nodes/dist/mcp/resolve-mcp-inventory.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/resolve-mcp-inventory.js +43 -0
- package/vendor/common-nodes/dist/mcp/resolve-mcp-inventory.js.map +1 -0
- package/vendor/common-nodes/dist/memory/memory/node.d.ts +79 -0
- package/vendor/common-nodes/dist/memory/memory/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/memory/memory/node.js +76 -0
- package/vendor/common-nodes/dist/memory/memory/node.js.map +1 -0
- package/vendor/common-nodes/dist/memory/memory-tools/node.d.ts +25 -0
- package/vendor/common-nodes/dist/memory/memory-tools/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/memory/memory-tools/node.js +14 -0
- package/vendor/common-nodes/dist/memory/memory-tools/node.js.map +1 -0
- package/vendor/common-nodes/dist/memory/tool-defs.d.ts +48 -0
- package/vendor/common-nodes/dist/memory/tool-defs.d.ts.map +1 -0
- package/vendor/common-nodes/dist/memory/tool-defs.js +45 -0
- package/vendor/common-nodes/dist/memory/tool-defs.js.map +1 -0
- package/vendor/common-nodes/dist/obsidian/build-moc/node.d.ts +26 -0
- package/vendor/common-nodes/dist/obsidian/build-moc/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/obsidian/build-moc/node.js +52 -0
- package/vendor/common-nodes/dist/obsidian/build-moc/node.js.map +1 -0
- package/vendor/common-nodes/dist/obsidian/build-moc.d.ts +13 -0
- package/vendor/common-nodes/dist/obsidian/build-moc.d.ts.map +1 -0
- package/vendor/common-nodes/dist/obsidian/build-moc.js +57 -0
- package/vendor/common-nodes/dist/obsidian/build-moc.js.map +1 -0
- package/vendor/common-nodes/dist/obsidian/frontmatter/node.d.ts +27 -0
- package/vendor/common-nodes/dist/obsidian/frontmatter/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/obsidian/frontmatter/node.js +66 -0
- package/vendor/common-nodes/dist/obsidian/frontmatter/node.js.map +1 -0
- package/vendor/common-nodes/dist/obsidian/frontmatter.d.ts +26 -0
- package/vendor/common-nodes/dist/obsidian/frontmatter.d.ts.map +1 -0
- package/vendor/common-nodes/dist/obsidian/frontmatter.js +142 -0
- package/vendor/common-nodes/dist/obsidian/frontmatter.js.map +1 -0
- package/vendor/common-nodes/dist/obsidian/wikilink-rewrite/node.d.ts +26 -0
- package/vendor/common-nodes/dist/obsidian/wikilink-rewrite/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/obsidian/wikilink-rewrite/node.js +51 -0
- package/vendor/common-nodes/dist/obsidian/wikilink-rewrite/node.js.map +1 -0
- package/vendor/common-nodes/dist/obsidian/wikilinks.d.ts +22 -0
- package/vendor/common-nodes/dist/obsidian/wikilinks.d.ts.map +1 -0
- package/vendor/common-nodes/dist/obsidian/wikilinks.js +84 -0
- package/vendor/common-nodes/dist/obsidian/wikilinks.js.map +1 -0
- package/vendor/common-nodes/dist/output/finish/node.d.ts +22 -0
- package/vendor/common-nodes/dist/output/finish/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/output/finish/node.js +23 -0
- package/vendor/common-nodes/dist/output/finish/node.js.map +1 -0
- package/vendor/common-nodes/dist/output/preview/node.d.ts +22 -0
- package/vendor/common-nodes/dist/output/preview/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/output/preview/node.js +42 -0
- package/vendor/common-nodes/dist/output/preview/node.js.map +1 -0
- package/vendor/common-nodes/dist/primitives/boolean/node.d.ts +22 -0
- package/vendor/common-nodes/dist/primitives/boolean/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/primitives/boolean/node.js +26 -0
- package/vendor/common-nodes/dist/primitives/boolean/node.js.map +1 -0
- package/vendor/common-nodes/dist/primitives/number/node.d.ts +22 -0
- package/vendor/common-nodes/dist/primitives/number/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/primitives/number/node.js +26 -0
- package/vendor/common-nodes/dist/primitives/number/node.js.map +1 -0
- package/vendor/common-nodes/dist/primitives/string/node.d.ts +22 -0
- package/vendor/common-nodes/dist/primitives/string/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/primitives/string/node.js +26 -0
- package/vendor/common-nodes/dist/primitives/string/node.js.map +1 -0
- package/vendor/common-nodes/dist/resolve-workflow-node-definition.d.ts +8 -0
- package/vendor/common-nodes/dist/resolve-workflow-node-definition.d.ts.map +1 -0
- package/vendor/common-nodes/dist/resolve-workflow-node-definition.js +4 -0
- package/vendor/common-nodes/dist/resolve-workflow-node-definition.js.map +1 -0
- package/vendor/common-nodes/dist/text/append-file/node.d.ts +25 -0
- package/vendor/common-nodes/dist/text/append-file/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/text/append-file/node.js +61 -0
- package/vendor/common-nodes/dist/text/append-file/node.js.map +1 -0
- package/vendor/common-nodes/dist/text/concat/node.d.ts +22 -0
- package/vendor/common-nodes/dist/text/concat/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/text/concat/node.js +35 -0
- package/vendor/common-nodes/dist/text/concat/node.js.map +1 -0
- package/vendor/common-nodes/dist/text/read-file/node.d.ts +25 -0
- package/vendor/common-nodes/dist/text/read-file/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/text/read-file/node.js +52 -0
- package/vendor/common-nodes/dist/text/read-file/node.js.map +1 -0
- package/vendor/common-nodes/dist/text/write-file/node.d.ts +24 -0
- package/vendor/common-nodes/dist/text/write-file/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/text/write-file/node.js +53 -0
- package/vendor/common-nodes/dist/text/write-file/node.js.map +1 -0
- package/vendor/common-nodes/dist/tools/collect-agent-tool-handles.d.ts +13 -0
- package/vendor/common-nodes/dist/tools/collect-agent-tool-handles.d.ts.map +1 -0
- package/vendor/common-nodes/dist/tools/collect-agent-tool-handles.js +51 -0
- package/vendor/common-nodes/dist/tools/collect-agent-tool-handles.js.map +1 -0
- package/vendor/common-nodes/dist/tools/filter-enabled-registrations.d.ts +9 -0
- package/vendor/common-nodes/dist/tools/filter-enabled-registrations.d.ts.map +1 -0
- package/vendor/common-nodes/dist/tools/filter-enabled-registrations.js +18 -0
- package/vendor/common-nodes/dist/tools/filter-enabled-registrations.js.map +1 -0
- package/vendor/common-nodes/dist/tools/inventory-tool-round.d.ts +30 -0
- package/vendor/common-nodes/dist/tools/inventory-tool-round.d.ts.map +1 -0
- package/vendor/common-nodes/dist/tools/inventory-tool-round.js +172 -0
- package/vendor/common-nodes/dist/tools/inventory-tool-round.js.map +1 -0
- package/vendor/common-nodes/dist/tools/merge-tool-inventory.d.ts +10 -0
- package/vendor/common-nodes/dist/tools/merge-tool-inventory.d.ts.map +1 -0
- package/vendor/common-nodes/dist/tools/merge-tool-inventory.js +26 -0
- package/vendor/common-nodes/dist/tools/merge-tool-inventory.js.map +1 -0
- package/vendor/common-nodes/dist/tools/run-internal-tool-loop.d.ts +55 -0
- package/vendor/common-nodes/dist/tools/run-internal-tool-loop.d.ts.map +1 -0
- package/vendor/common-nodes/dist/tools/run-internal-tool-loop.js +360 -0
- package/vendor/common-nodes/dist/tools/run-internal-tool-loop.js.map +1 -0
- package/vendor/common-nodes/dist/tools/tool-registration.d.ts +6 -0
- package/vendor/common-nodes/dist/tools/tool-registration.d.ts.map +1 -0
- package/vendor/common-nodes/dist/tools/tool-registration.js +33 -0
- package/vendor/common-nodes/dist/tools/tool-registration.js.map +1 -0
- package/vendor/common-nodes/package.json +48 -0
- package/vendor/compiler/dist/bundle-pack.d.ts +18 -0
- package/vendor/compiler/dist/bundle-pack.d.ts.map +1 -0
- package/vendor/compiler/dist/bundle-pack.js +93 -0
- package/vendor/compiler/dist/bundle-pack.js.map +1 -0
- package/vendor/compiler/dist/cache-key.d.ts +5 -0
- package/vendor/compiler/dist/cache-key.d.ts.map +1 -0
- package/vendor/compiler/dist/cache-key.js +31 -0
- package/vendor/compiler/dist/cache-key.js.map +1 -0
- package/vendor/compiler/dist/compile-project-nodes.d.ts +14 -0
- package/vendor/compiler/dist/compile-project-nodes.d.ts.map +1 -0
- package/vendor/compiler/dist/compile-project-nodes.js +115 -0
- package/vendor/compiler/dist/compile-project-nodes.js.map +1 -0
- package/vendor/compiler/dist/compile-types.d.ts +23 -0
- package/vendor/compiler/dist/compile-types.d.ts.map +1 -0
- package/vendor/compiler/dist/compile-types.js +2 -0
- package/vendor/compiler/dist/compile-types.js.map +1 -0
- package/vendor/compiler/dist/discover-packs.d.ts +7 -0
- package/vendor/compiler/dist/discover-packs.d.ts.map +1 -0
- package/vendor/compiler/dist/discover-packs.js +94 -0
- package/vendor/compiler/dist/discover-packs.js.map +1 -0
- package/vendor/compiler/dist/format-compilation-errors.d.ts +18 -0
- package/vendor/compiler/dist/format-compilation-errors.d.ts.map +1 -0
- package/vendor/compiler/dist/format-compilation-errors.js +63 -0
- package/vendor/compiler/dist/format-compilation-errors.js.map +1 -0
- package/vendor/compiler/dist/resolve-host-types.d.ts +18 -0
- package/vendor/compiler/dist/resolve-host-types.d.ts.map +1 -0
- package/vendor/compiler/dist/resolve-host-types.js +164 -0
- package/vendor/compiler/dist/resolve-host-types.js.map +1 -0
- package/vendor/compiler/dist/typecheck-pack.d.ts +21 -0
- package/vendor/compiler/dist/typecheck-pack.d.ts.map +1 -0
- package/vendor/compiler/dist/typecheck-pack.js +103 -0
- package/vendor/compiler/dist/typecheck-pack.js.map +1 -0
- package/vendor/compiler/dist/validate-default-export.d.ts +10 -0
- package/vendor/compiler/dist/validate-default-export.d.ts.map +1 -0
- package/vendor/compiler/dist/validate-default-export.js +41 -0
- package/vendor/compiler/dist/validate-default-export.js.map +1 -0
- package/vendor/compiler/dist/write-compilation-errors.d.ts +5 -0
- package/vendor/compiler/dist/write-compilation-errors.d.ts.map +1 -0
- package/vendor/compiler/dist/write-compilation-errors.js +28 -0
- package/vendor/compiler/dist/write-compilation-errors.js.map +1 -0
- package/vendor/compiler/package.json +26 -0
- package/vendor/eval/dist/eval-pack-types.d.ts +15 -0
- package/vendor/eval/dist/eval-pack-types.d.ts.map +1 -0
- package/vendor/eval/dist/eval-pack-types.js +2 -0
- package/vendor/eval/dist/eval-pack-types.js.map +1 -0
- package/vendor/eval/dist/load-pack.d.ts +6 -0
- package/vendor/eval/dist/load-pack.d.ts.map +1 -0
- package/vendor/eval/dist/load-pack.js +98 -0
- package/vendor/eval/dist/load-pack.js.map +1 -0
- package/vendor/eval/dist/load-skill-via-read.d.ts +7 -0
- package/vendor/eval/dist/load-skill-via-read.d.ts.map +1 -0
- package/vendor/eval/dist/load-skill-via-read.js +15 -0
- package/vendor/eval/dist/load-skill-via-read.js.map +1 -0
- package/vendor/eval/dist/run-eval-suite.d.ts +47 -0
- package/vendor/eval/dist/run-eval-suite.d.ts.map +1 -0
- package/vendor/eval/dist/run-eval-suite.js +91 -0
- package/vendor/eval/dist/run-eval-suite.js.map +1 -0
- package/vendor/eval/dist/score-case.d.ts +3 -0
- package/vendor/eval/dist/score-case.d.ts.map +1 -0
- package/vendor/eval/dist/score-case.js +11 -0
- package/vendor/eval/dist/score-case.js.map +1 -0
- package/vendor/eval/package.json +21 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/default-llm-ports.d.ts +30 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/default-llm-ports.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/default-llm-ports.js +85 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/default-llm-ports.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/define-llm-node.d.ts +50 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/define-llm-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/define-llm-node.js +51 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/define-llm-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/llm-inventory-wire.d.ts +5 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/llm-inventory-wire.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/llm-inventory-wire.js +5 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/llm-inventory-wire.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/llm.d.ts +3 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/llm.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/llm.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/llm.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/steer-control.d.ts +22 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/steer-control.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/steer-control.js +24 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/steer-control.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/define-mcp.d.ts +50 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/define-mcp.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/define-mcp.js +60 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/define-mcp.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-handle.d.ts +16 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-handle.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-handle.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-handle.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-server-config.d.ts +17 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-server-config.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-server-config.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-server-config.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-transport.d.ts +20 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-transport.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-transport.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-transport.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp.d.ts +3 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-node/define-node.d.ts +35 -0
- package/vendor/node-sdk/dist/node-factory/define-node/define-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-node/define-node.js +100 -0
- package/vendor/node-sdk/dist/node-factory/define-node/define-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-node/test/samples/gate-node.d.ts +25 -0
- package/vendor/node-sdk/dist/node-factory/define-node/test/samples/gate-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-node/test/samples/gate-node.js +23 -0
- package/vendor/node-sdk/dist/node-factory/define-node/test/samples/gate-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/chat-completion-stream.d.ts +50 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/chat-completion-stream.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/chat-completion-stream.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/chat-completion-stream.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/crawl-context.d.ts +22 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/crawl-context.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/crawl-context.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/crawl-context.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/create-embedding.d.ts +6 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/create-embedding.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/create-embedding.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/create-embedding.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/ctx-error.d.ts +9 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/ctx-error.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/ctx-error.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/ctx-error.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/define-reactive-node.d.ts +45 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/define-reactive-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/define-reactive-node.js +72 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/define-reactive-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/define-tool-registrations.d.ts +52 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/define-tool-registrations.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/define-tool-registrations.js +52 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/define-tool-registrations.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/hitl-config.d.ts +59 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/hitl-config.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/hitl-config.js +8 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/hitl-config.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/io-helpers.d.ts +137 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/io-helpers.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/io-helpers.js +79 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/io-helpers.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/kb-context.d.ts +111 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/kb-context.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/kb-context.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/kb-context.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/memory-context.d.ts +12 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/memory-context.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/memory-context.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/memory-context.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/port-meta.d.ts +29 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/port-meta.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/port-meta.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/port-meta.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/project-files-context.d.ts +10 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/project-files-context.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/project-files-context.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/project-files-context.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/project-harness.d.ts +56 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/project-harness.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/project-harness.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/project-harness.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/agent-node.d.ts +34 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/agent-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/agent-node.js +61 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/agent-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/combine-node.d.ts +34 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/combine-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/combine-node.js +27 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/combine-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/constant-node.d.ts +34 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/constant-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/constant-node.js +22 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/constant-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/delay-node.d.ts +34 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/delay-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/delay-node.js +26 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/delay-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/finish-node.d.ts +22 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/finish-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/finish-node.js +22 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/finish-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/hitl-node.d.ts +26 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/hitl-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/hitl-node.js +44 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/hitl-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/join-node.d.ts +34 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/join-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/join-node.js +32 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/join-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/preview-node.d.ts +22 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/preview-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/preview-node.js +20 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/preview-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/router-node.d.ts +23 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/router-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/router-node.js +13 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/router-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/tool-registration.d.ts +36 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/tool-registration.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/tool-registration.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/tool-registration.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/types.d.ts +127 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/types.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/types.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/types.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/ui-schema-inference.d.ts +33 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/ui-schema-inference.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/ui-schema-inference.js +18 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/ui-schema-inference.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/define-tool-registrations.d.ts +52 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/define-tool-registrations.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/define-tool-registrations.js +51 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/define-tool-registrations.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/tool-handle.d.ts +24 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/tool-handle.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/tool-handle.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/tool-handle.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/tool-registration.d.ts +46 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/tool-registration.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/tool-registration.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/tool-registration.js.map +1 -0
- package/vendor/node-sdk/package.json +32 -0
- package/vendor/runtime/dist/bypass-ports.d.ts +51 -0
- package/vendor/runtime/dist/bypass-ports.d.ts.map +1 -0
- package/vendor/runtime/dist/bypass-ports.js +115 -0
- package/vendor/runtime/dist/bypass-ports.js.map +1 -0
- package/vendor/runtime/dist/normalize-port-error-value.d.ts +11 -0
- package/vendor/runtime/dist/normalize-port-error-value.d.ts.map +1 -0
- package/vendor/runtime/dist/normalize-port-error-value.js +79 -0
- package/vendor/runtime/dist/normalize-port-error-value.js.map +1 -0
- package/vendor/runtime/dist/port-meta.d.ts +17 -0
- package/vendor/runtime/dist/port-meta.d.ts.map +1 -0
- package/vendor/runtime/dist/port-meta.js +18 -0
- package/vendor/runtime/dist/port-meta.js.map +1 -0
- package/vendor/runtime/dist/runtime-editor.d.ts +46 -0
- package/vendor/runtime/dist/runtime-editor.d.ts.map +1 -0
- package/vendor/runtime/dist/runtime-editor.js +426 -0
- package/vendor/runtime/dist/runtime-editor.js.map +1 -0
- package/vendor/runtime/dist/runtime-helpers.d.ts +20 -0
- package/vendor/runtime/dist/runtime-helpers.d.ts.map +1 -0
- package/vendor/runtime/dist/runtime-helpers.js +162 -0
- package/vendor/runtime/dist/runtime-helpers.js.map +1 -0
- package/vendor/runtime/dist/runtime-runner.d.ts +71 -0
- package/vendor/runtime/dist/runtime-runner.d.ts.map +1 -0
- package/vendor/runtime/dist/runtime-runner.js +733 -0
- package/vendor/runtime/dist/runtime-runner.js.map +1 -0
- package/vendor/runtime/dist/runtime.d.ts +16 -0
- package/vendor/runtime/dist/runtime.d.ts.map +1 -0
- package/vendor/runtime/dist/runtime.js +15 -0
- package/vendor/runtime/dist/runtime.js.map +1 -0
- package/vendor/runtime/dist/testing/nodes/agent-node.d.ts +16 -0
- package/vendor/runtime/dist/testing/nodes/agent-node.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/nodes/agent-node.js +69 -0
- package/vendor/runtime/dist/testing/nodes/agent-node.js.map +1 -0
- package/vendor/runtime/dist/testing/nodes/combine-node.d.ts +10 -0
- package/vendor/runtime/dist/testing/nodes/combine-node.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/nodes/combine-node.js +44 -0
- package/vendor/runtime/dist/testing/nodes/combine-node.js.map +1 -0
- package/vendor/runtime/dist/testing/nodes/constant-node.d.ts +8 -0
- package/vendor/runtime/dist/testing/nodes/constant-node.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/nodes/constant-node.js +22 -0
- package/vendor/runtime/dist/testing/nodes/constant-node.js.map +1 -0
- package/vendor/runtime/dist/testing/nodes/delay-node.d.ts +16 -0
- package/vendor/runtime/dist/testing/nodes/delay-node.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/nodes/delay-node.js +72 -0
- package/vendor/runtime/dist/testing/nodes/delay-node.js.map +1 -0
- package/vendor/runtime/dist/testing/nodes/finish-node.d.ts +7 -0
- package/vendor/runtime/dist/testing/nodes/finish-node.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/nodes/finish-node.js +29 -0
- package/vendor/runtime/dist/testing/nodes/finish-node.js.map +1 -0
- package/vendor/runtime/dist/testing/nodes/hitl-node.d.ts +14 -0
- package/vendor/runtime/dist/testing/nodes/hitl-node.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/nodes/hitl-node.js +50 -0
- package/vendor/runtime/dist/testing/nodes/hitl-node.js.map +1 -0
- package/vendor/runtime/dist/testing/nodes/join-node.d.ts +13 -0
- package/vendor/runtime/dist/testing/nodes/join-node.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/nodes/join-node.js +33 -0
- package/vendor/runtime/dist/testing/nodes/join-node.js.map +1 -0
- package/vendor/runtime/dist/testing/nodes/merge-node.d.ts +12 -0
- package/vendor/runtime/dist/testing/nodes/merge-node.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/nodes/merge-node.js +32 -0
- package/vendor/runtime/dist/testing/nodes/merge-node.js.map +1 -0
- package/vendor/runtime/dist/testing/nodes/preview-node.d.ts +7 -0
- package/vendor/runtime/dist/testing/nodes/preview-node.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/nodes/preview-node.js +28 -0
- package/vendor/runtime/dist/testing/nodes/preview-node.js.map +1 -0
- package/vendor/runtime/dist/testing/nodes/pushable-node.d.ts +15 -0
- package/vendor/runtime/dist/testing/nodes/pushable-node.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/nodes/pushable-node.js +30 -0
- package/vendor/runtime/dist/testing/nodes/pushable-node.js.map +1 -0
- package/vendor/runtime/dist/testing/nodes/router-node.d.ts +9 -0
- package/vendor/runtime/dist/testing/nodes/router-node.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/nodes/router-node.js +14 -0
- package/vendor/runtime/dist/testing/nodes/router-node.js.map +1 -0
- package/vendor/runtime/dist/testing/readOutputValue.d.ts +3 -0
- package/vendor/runtime/dist/testing/readOutputValue.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/readOutputValue.js +5 -0
- package/vendor/runtime/dist/testing/readOutputValue.js.map +1 -0
- package/vendor/runtime/dist/testing/workflows/workflow-events.d.ts +21 -0
- package/vendor/runtime/dist/testing/workflows/workflow-events.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/workflows/workflow-events.js +78 -0
- package/vendor/runtime/dist/testing/workflows/workflow-events.js.map +1 -0
- package/vendor/runtime/dist/types.d.ts +402 -0
- package/vendor/runtime/dist/types.d.ts.map +1 -0
- package/vendor/runtime/dist/types.js +2 -0
- package/vendor/runtime/dist/types.js.map +1 -0
- package/vendor/runtime/package.json +24 -0
- package/vendor/server/dist/bootstrap/copy-force.d.ts +8 -0
- package/vendor/server/dist/bootstrap/copy-force.d.ts.map +1 -0
- package/vendor/server/dist/bootstrap/copy-force.js +19 -0
- package/vendor/server/dist/bootstrap/copy-force.js.map +1 -0
- package/vendor/server/dist/bootstrap/copy-if-missing.d.ts +8 -0
- package/vendor/server/dist/bootstrap/copy-if-missing.d.ts.map +1 -0
- package/vendor/server/dist/bootstrap/copy-if-missing.js +33 -0
- package/vendor/server/dist/bootstrap/copy-if-missing.js.map +1 -0
- package/vendor/server/dist/bootstrap/project-bootstrap.service.d.ts +18 -0
- package/vendor/server/dist/bootstrap/project-bootstrap.service.d.ts.map +1 -0
- package/vendor/server/dist/bootstrap/project-bootstrap.service.js +75 -0
- package/vendor/server/dist/bootstrap/project-bootstrap.service.js.map +1 -0
- package/vendor/server/dist/bootstrap/project-bootstrap.service.test.d.ts +2 -0
- package/vendor/server/dist/bootstrap/project-bootstrap.service.test.d.ts.map +1 -0
- package/vendor/server/dist/bootstrap/project-bootstrap.service.test.js +20 -0
- package/vendor/server/dist/bootstrap/project-bootstrap.service.test.js.map +1 -0
- package/vendor/server/dist/bootstrap/resolve-skeleton-root.d.ts +9 -0
- package/vendor/server/dist/bootstrap/resolve-skeleton-root.d.ts.map +1 -0
- package/vendor/server/dist/bootstrap/resolve-skeleton-root.js +35 -0
- package/vendor/server/dist/bootstrap/resolve-skeleton-root.js.map +1 -0
- package/vendor/server/dist/bootstrap/seed-skeleton.d.ts +16 -0
- package/vendor/server/dist/bootstrap/seed-skeleton.d.ts.map +1 -0
- package/vendor/server/dist/bootstrap/seed-skeleton.js +55 -0
- package/vendor/server/dist/bootstrap/seed-skeleton.js.map +1 -0
- package/vendor/server/dist/bridge/attach-langflower-bridge.d.ts +17 -0
- package/vendor/server/dist/bridge/attach-langflower-bridge.d.ts.map +1 -0
- package/vendor/server/dist/bridge/attach-langflower-bridge.js +68 -0
- package/vendor/server/dist/bridge/attach-langflower-bridge.js.map +1 -0
- package/vendor/server/dist/bridge/bind-llm-context.d.ts +14 -0
- package/vendor/server/dist/bridge/bind-llm-context.d.ts.map +1 -0
- package/vendor/server/dist/bridge/bind-llm-context.js +31 -0
- package/vendor/server/dist/bridge/bind-llm-context.js.map +1 -0
- package/vendor/server/dist/bridge/bridge-outbound.d.ts +5 -0
- package/vendor/server/dist/bridge/bridge-outbound.d.ts.map +1 -0
- package/vendor/server/dist/bridge/bridge-outbound.js +15 -0
- package/vendor/server/dist/bridge/bridge-outbound.js.map +1 -0
- package/vendor/server/dist/bridge/build-execution-context.d.ts +29 -0
- package/vendor/server/dist/bridge/build-execution-context.d.ts.map +1 -0
- package/vendor/server/dist/bridge/build-execution-context.js +171 -0
- package/vendor/server/dist/bridge/build-execution-context.js.map +1 -0
- package/vendor/server/dist/bridge/build-execution-context.test.d.ts +2 -0
- package/vendor/server/dist/bridge/build-execution-context.test.d.ts.map +1 -0
- package/vendor/server/dist/bridge/build-execution-context.test.js +126 -0
- package/vendor/server/dist/bridge/build-execution-context.test.js.map +1 -0
- package/vendor/server/dist/bridge/build-langflower-config-snapshot.d.ts +7 -0
- package/vendor/server/dist/bridge/build-langflower-config-snapshot.d.ts.map +1 -0
- package/vendor/server/dist/bridge/build-langflower-config-snapshot.js +18 -0
- package/vendor/server/dist/bridge/build-langflower-config-snapshot.js.map +1 -0
- package/vendor/server/dist/bridge/client-index.d.ts +6 -0
- package/vendor/server/dist/bridge/client-index.d.ts.map +1 -0
- package/vendor/server/dist/bridge/client-index.js +17 -0
- package/vendor/server/dist/bridge/client-index.js.map +1 -0
- package/vendor/server/dist/bridge/emit-bootstrap.d.ts +14 -0
- package/vendor/server/dist/bridge/emit-bootstrap.d.ts.map +1 -0
- package/vendor/server/dist/bridge/emit-bootstrap.js +75 -0
- package/vendor/server/dist/bridge/emit-bootstrap.js.map +1 -0
- package/vendor/server/dist/bridge/forward-runner-event.d.ts +5 -0
- package/vendor/server/dist/bridge/forward-runner-event.d.ts.map +1 -0
- package/vendor/server/dist/bridge/forward-runner-event.js +18 -0
- package/vendor/server/dist/bridge/forward-runner-event.js.map +1 -0
- package/vendor/server/dist/bridge/forward-runner-event.test.d.ts +2 -0
- package/vendor/server/dist/bridge/forward-runner-event.test.d.ts.map +1 -0
- package/vendor/server/dist/bridge/forward-runner-event.test.js +91 -0
- package/vendor/server/dist/bridge/forward-runner-event.test.js.map +1 -0
- package/vendor/server/dist/bridge/inbound-guards.d.ts +3 -0
- package/vendor/server/dist/bridge/inbound-guards.d.ts.map +1 -0
- package/vendor/server/dist/bridge/inbound-guards.js +5 -0
- package/vendor/server/dist/bridge/inbound-guards.js.map +1 -0
- package/vendor/server/dist/bridge/langflower-bridge.types.d.ts +5 -0
- package/vendor/server/dist/bridge/langflower-bridge.types.d.ts.map +1 -0
- package/vendor/server/dist/bridge/langflower-bridge.types.js +2 -0
- package/vendor/server/dist/bridge/langflower-bridge.types.js.map +1 -0
- package/vendor/server/dist/bridge/push-models-catalog.d.ts +13 -0
- package/vendor/server/dist/bridge/push-models-catalog.d.ts.map +1 -0
- package/vendor/server/dist/bridge/push-models-catalog.js +32 -0
- package/vendor/server/dist/bridge/push-models-catalog.js.map +1 -0
- package/vendor/server/dist/bridge/same-canvas-viewport.d.ts +4 -0
- package/vendor/server/dist/bridge/same-canvas-viewport.d.ts.map +1 -0
- package/vendor/server/dist/bridge/same-canvas-viewport.js +6 -0
- package/vendor/server/dist/bridge/same-canvas-viewport.js.map +1 -0
- package/vendor/server/dist/bridge/wire-config-handlers.d.ts +5 -0
- package/vendor/server/dist/bridge/wire-config-handlers.d.ts.map +1 -0
- package/vendor/server/dist/bridge/wire-config-handlers.js +22 -0
- package/vendor/server/dist/bridge/wire-config-handlers.js.map +1 -0
- package/vendor/server/dist/bridge/wire-custom-palette-handlers.d.ts +5 -0
- package/vendor/server/dist/bridge/wire-custom-palette-handlers.d.ts.map +1 -0
- package/vendor/server/dist/bridge/wire-custom-palette-handlers.js +11 -0
- package/vendor/server/dist/bridge/wire-custom-palette-handlers.js.map +1 -0
- package/vendor/server/dist/bridge/wire-editor-handlers.d.ts +6 -0
- package/vendor/server/dist/bridge/wire-editor-handlers.d.ts.map +1 -0
- package/vendor/server/dist/bridge/wire-editor-handlers.js +202 -0
- package/vendor/server/dist/bridge/wire-editor-handlers.js.map +1 -0
- package/vendor/server/dist/bridge/wire-models-handlers.d.ts +5 -0
- package/vendor/server/dist/bridge/wire-models-handlers.d.ts.map +1 -0
- package/vendor/server/dist/bridge/wire-models-handlers.js +23 -0
- package/vendor/server/dist/bridge/wire-models-handlers.js.map +1 -0
- package/vendor/server/dist/bridge/wire-palette-handlers.d.ts +5 -0
- package/vendor/server/dist/bridge/wire-palette-handlers.d.ts.map +1 -0
- package/vendor/server/dist/bridge/wire-palette-handlers.js +10 -0
- package/vendor/server/dist/bridge/wire-palette-handlers.js.map +1 -0
- package/vendor/server/dist/bridge/wire-project-bootstrap-handlers.d.ts +10 -0
- package/vendor/server/dist/bridge/wire-project-bootstrap-handlers.d.ts.map +1 -0
- package/vendor/server/dist/bridge/wire-project-bootstrap-handlers.js +64 -0
- package/vendor/server/dist/bridge/wire-project-bootstrap-handlers.js.map +1 -0
- package/vendor/server/dist/bridge/wire-runner-handlers.d.ts +11 -0
- package/vendor/server/dist/bridge/wire-runner-handlers.d.ts.map +1 -0
- package/vendor/server/dist/bridge/wire-runner-handlers.js +294 -0
- package/vendor/server/dist/bridge/wire-runner-handlers.js.map +1 -0
- package/vendor/server/dist/bridge/wire-workflow-handlers.d.ts +6 -0
- package/vendor/server/dist/bridge/wire-workflow-handlers.d.ts.map +1 -0
- package/vendor/server/dist/bridge/wire-workflow-handlers.js +208 -0
- package/vendor/server/dist/bridge/wire-workflow-handlers.js.map +1 -0
- package/vendor/server/dist/bridge/wrap-builtin-tool-handles.d.ts +8 -0
- package/vendor/server/dist/bridge/wrap-builtin-tool-handles.d.ts.map +1 -0
- package/vendor/server/dist/bridge/wrap-builtin-tool-handles.js +34 -0
- package/vendor/server/dist/bridge/wrap-builtin-tool-handles.js.map +1 -0
- package/vendor/server/dist/checkpoint/list-resumable-checkpoints.d.ts +5 -0
- package/vendor/server/dist/checkpoint/list-resumable-checkpoints.d.ts.map +1 -0
- package/vendor/server/dist/checkpoint/list-resumable-checkpoints.js +12 -0
- package/vendor/server/dist/checkpoint/list-resumable-checkpoints.js.map +1 -0
- package/vendor/server/dist/checkpoint/resolve-checkpoint-boundary.d.ts +12 -0
- package/vendor/server/dist/checkpoint/resolve-checkpoint-boundary.d.ts.map +1 -0
- package/vendor/server/dist/checkpoint/resolve-checkpoint-boundary.js +32 -0
- package/vendor/server/dist/checkpoint/resolve-checkpoint-boundary.js.map +1 -0
- package/vendor/server/dist/checkpoint/run-checkpoint-session.d.ts +42 -0
- package/vendor/server/dist/checkpoint/run-checkpoint-session.d.ts.map +1 -0
- package/vendor/server/dist/checkpoint/run-checkpoint-session.js +170 -0
- package/vendor/server/dist/checkpoint/run-checkpoint-session.js.map +1 -0
- package/vendor/server/dist/checkpoint/workflow-checkpoint-store.d.ts +24 -0
- package/vendor/server/dist/checkpoint/workflow-checkpoint-store.d.ts.map +1 -0
- package/vendor/server/dist/checkpoint/workflow-checkpoint-store.js +178 -0
- package/vendor/server/dist/checkpoint/workflow-checkpoint-store.js.map +1 -0
- package/vendor/server/dist/checkpoint/workflow-checkpoint-store.test.d.ts +2 -0
- package/vendor/server/dist/checkpoint/workflow-checkpoint-store.test.d.ts.map +1 -0
- package/vendor/server/dist/checkpoint/workflow-checkpoint-store.test.js +60 -0
- package/vendor/server/dist/checkpoint/workflow-checkpoint-store.test.js.map +1 -0
- package/vendor/server/dist/config/config.service.d.ts +10 -0
- package/vendor/server/dist/config/config.service.d.ts.map +1 -0
- package/vendor/server/dist/config/config.service.js +32 -0
- package/vendor/server/dist/config/config.service.js.map +1 -0
- package/vendor/server/dist/config/langflower-config.service.d.ts +34 -0
- package/vendor/server/dist/config/langflower-config.service.d.ts.map +1 -0
- package/vendor/server/dist/config/langflower-config.service.js +338 -0
- package/vendor/server/dist/config/langflower-config.service.js.map +1 -0
- package/vendor/server/dist/config/langflower-config.service.test.d.ts +2 -0
- package/vendor/server/dist/config/langflower-config.service.test.d.ts.map +1 -0
- package/vendor/server/dist/config/langflower-config.service.test.js +111 -0
- package/vendor/server/dist/config/langflower-config.service.test.js.map +1 -0
- package/vendor/server/dist/config/redact-langflower-config.d.ts +9 -0
- package/vendor/server/dist/config/redact-langflower-config.d.ts.map +1 -0
- package/vendor/server/dist/config/redact-langflower-config.js +43 -0
- package/vendor/server/dist/config/redact-langflower-config.js.map +1 -0
- package/vendor/server/dist/config/redact-langflower-config.test.d.ts +2 -0
- package/vendor/server/dist/config/redact-langflower-config.test.d.ts.map +1 -0
- package/vendor/server/dist/config/redact-langflower-config.test.js +69 -0
- package/vendor/server/dist/config/redact-langflower-config.test.js.map +1 -0
- package/vendor/server/dist/config/resolve-global-langflower-config-path.d.ts +6 -0
- package/vendor/server/dist/config/resolve-global-langflower-config-path.d.ts.map +1 -0
- package/vendor/server/dist/config/resolve-global-langflower-config-path.js +19 -0
- package/vendor/server/dist/config/resolve-global-langflower-config-path.js.map +1 -0
- package/vendor/server/dist/config/resolve-provider-credentials.d.ts +21 -0
- package/vendor/server/dist/config/resolve-provider-credentials.d.ts.map +1 -0
- package/vendor/server/dist/config/resolve-provider-credentials.js +60 -0
- package/vendor/server/dist/config/resolve-provider-credentials.js.map +1 -0
- package/vendor/server/dist/config/resolve-provider-credentials.test.d.ts +2 -0
- package/vendor/server/dist/config/resolve-provider-credentials.test.d.ts.map +1 -0
- package/vendor/server/dist/config/resolve-provider-credentials.test.js +63 -0
- package/vendor/server/dist/config/resolve-provider-credentials.test.js.map +1 -0
- package/vendor/server/dist/crawl/create-crawl-context.d.ts +6 -0
- package/vendor/server/dist/crawl/create-crawl-context.d.ts.map +1 -0
- package/vendor/server/dist/crawl/create-crawl-context.js +33 -0
- package/vendor/server/dist/crawl/create-crawl-context.js.map +1 -0
- package/vendor/server/dist/crawl/create-crawl-context.test.d.ts +2 -0
- package/vendor/server/dist/crawl/create-crawl-context.test.d.ts.map +1 -0
- package/vendor/server/dist/crawl/create-crawl-context.test.js +30 -0
- package/vendor/server/dist/crawl/create-crawl-context.test.js.map +1 -0
- package/vendor/server/dist/crawl/create-web-fetch.d.ts +12 -0
- package/vendor/server/dist/crawl/create-web-fetch.d.ts.map +1 -0
- package/vendor/server/dist/crawl/create-web-fetch.js +128 -0
- package/vendor/server/dist/crawl/create-web-fetch.js.map +1 -0
- package/vendor/server/dist/crawl/create-web-fetch.test.d.ts +2 -0
- package/vendor/server/dist/crawl/create-web-fetch.test.d.ts.map +1 -0
- package/vendor/server/dist/crawl/create-web-fetch.test.js +43 -0
- package/vendor/server/dist/crawl/create-web-fetch.test.js.map +1 -0
- package/vendor/server/dist/crawl/ssrf-guard.d.ts +13 -0
- package/vendor/server/dist/crawl/ssrf-guard.d.ts.map +1 -0
- package/vendor/server/dist/crawl/ssrf-guard.js +117 -0
- package/vendor/server/dist/crawl/ssrf-guard.js.map +1 -0
- package/vendor/server/dist/crawl/ssrf-guard.test.d.ts +2 -0
- package/vendor/server/dist/crawl/ssrf-guard.test.d.ts.map +1 -0
- package/vendor/server/dist/crawl/ssrf-guard.test.js +46 -0
- package/vendor/server/dist/crawl/ssrf-guard.test.js.map +1 -0
- package/vendor/server/dist/create-server.d.ts +11 -0
- package/vendor/server/dist/create-server.d.ts.map +1 -0
- package/vendor/server/dist/create-server.js +43 -0
- package/vendor/server/dist/create-server.js.map +1 -0
- package/vendor/server/dist/harness/pending-permission-asks.d.ts +15 -0
- package/vendor/server/dist/harness/pending-permission-asks.d.ts.map +1 -0
- package/vendor/server/dist/harness/pending-permission-asks.js +46 -0
- package/vendor/server/dist/harness/pending-permission-asks.js.map +1 -0
- package/vendor/server/dist/harness/permission.d.ts +23 -0
- package/vendor/server/dist/harness/permission.d.ts.map +1 -0
- package/vendor/server/dist/harness/permission.js +31 -0
- package/vendor/server/dist/harness/permission.js.map +1 -0
- package/vendor/server/dist/harness/permission.test.d.ts +2 -0
- package/vendor/server/dist/harness/permission.test.d.ts.map +1 -0
- package/vendor/server/dist/harness/permission.test.js +50 -0
- package/vendor/server/dist/harness/permission.test.js.map +1 -0
- package/vendor/server/dist/index.d.ts +4 -0
- package/vendor/server/dist/index.d.ts.map +1 -0
- package/vendor/server/dist/index.js +4 -0
- package/vendor/server/dist/index.js.map +1 -0
- package/vendor/server/dist/kb/chunk-text.d.ts +8 -0
- package/vendor/server/dist/kb/chunk-text.d.ts.map +1 -0
- package/vendor/server/dist/kb/chunk-text.js +52 -0
- package/vendor/server/dist/kb/chunk-text.js.map +1 -0
- package/vendor/server/dist/kb/cosine.d.ts +3 -0
- package/vendor/server/dist/kb/cosine.d.ts.map +1 -0
- package/vendor/server/dist/kb/cosine.js +21 -0
- package/vendor/server/dist/kb/cosine.js.map +1 -0
- package/vendor/server/dist/kb/create-kb-context.d.ts +6 -0
- package/vendor/server/dist/kb/create-kb-context.d.ts.map +1 -0
- package/vendor/server/dist/kb/create-kb-context.js +46 -0
- package/vendor/server/dist/kb/create-kb-context.js.map +1 -0
- package/vendor/server/dist/kb/kb-paths.d.ts +8 -0
- package/vendor/server/dist/kb/kb-paths.d.ts.map +1 -0
- package/vendor/server/dist/kb/kb-paths.js +19 -0
- package/vendor/server/dist/kb/kb-paths.js.map +1 -0
- package/vendor/server/dist/kb/kb-store.d.ts +41 -0
- package/vendor/server/dist/kb/kb-store.d.ts.map +1 -0
- package/vendor/server/dist/kb/kb-store.js +250 -0
- package/vendor/server/dist/kb/kb-store.js.map +1 -0
- package/vendor/server/dist/kb/kb-store.test.d.ts +2 -0
- package/vendor/server/dist/kb/kb-store.test.d.ts.map +1 -0
- package/vendor/server/dist/kb/kb-store.test.js +94 -0
- package/vendor/server/dist/kb/kb-store.test.js.map +1 -0
- package/vendor/server/dist/kb/local-embed.d.ts +8 -0
- package/vendor/server/dist/kb/local-embed.d.ts.map +1 -0
- package/vendor/server/dist/kb/local-embed.js +41 -0
- package/vendor/server/dist/kb/local-embed.js.map +1 -0
- package/vendor/server/dist/listen-http-server.d.ts +7 -0
- package/vendor/server/dist/listen-http-server.d.ts.map +1 -0
- package/vendor/server/dist/listen-http-server.js +19 -0
- package/vendor/server/dist/listen-http-server.js.map +1 -0
- package/vendor/server/dist/llm/create-chat-completion-stream.d.ts +8 -0
- package/vendor/server/dist/llm/create-chat-completion-stream.d.ts.map +1 -0
- package/vendor/server/dist/llm/create-chat-completion-stream.js +125 -0
- package/vendor/server/dist/llm/create-chat-completion-stream.js.map +1 -0
- package/vendor/server/dist/llm/create-chat-completion-stream.test.d.ts +2 -0
- package/vendor/server/dist/llm/create-chat-completion-stream.test.d.ts.map +1 -0
- package/vendor/server/dist/llm/create-chat-completion-stream.test.js +72 -0
- package/vendor/server/dist/llm/create-chat-completion-stream.test.js.map +1 -0
- package/vendor/server/dist/llm/create-embedding.d.ts +9 -0
- package/vendor/server/dist/llm/create-embedding.d.ts.map +1 -0
- package/vendor/server/dist/llm/create-embedding.js +51 -0
- package/vendor/server/dist/llm/create-embedding.js.map +1 -0
- package/vendor/server/dist/llm/list-provider-models.d.ts +29 -0
- package/vendor/server/dist/llm/list-provider-models.d.ts.map +1 -0
- package/vendor/server/dist/llm/list-provider-models.js +55 -0
- package/vendor/server/dist/llm/list-provider-models.js.map +1 -0
- package/vendor/server/dist/llm/list-provider-models.test.d.ts +2 -0
- package/vendor/server/dist/llm/list-provider-models.test.d.ts.map +1 -0
- package/vendor/server/dist/llm/list-provider-models.test.js +97 -0
- package/vendor/server/dist/llm/list-provider-models.test.js.map +1 -0
- package/vendor/server/dist/mcp/create-mcp-runtime.d.ts +21 -0
- package/vendor/server/dist/mcp/create-mcp-runtime.d.ts.map +1 -0
- package/vendor/server/dist/mcp/create-mcp-runtime.js +167 -0
- package/vendor/server/dist/mcp/create-mcp-runtime.js.map +1 -0
- package/vendor/server/dist/mcp/create-mcp-runtime.test.d.ts +2 -0
- package/vendor/server/dist/mcp/create-mcp-runtime.test.d.ts.map +1 -0
- package/vendor/server/dist/mcp/create-mcp-runtime.test.js +69 -0
- package/vendor/server/dist/mcp/create-mcp-runtime.test.js.map +1 -0
- package/vendor/server/dist/mcp/mcp-stdio-client.d.ts +32 -0
- package/vendor/server/dist/mcp/mcp-stdio-client.d.ts.map +1 -0
- package/vendor/server/dist/mcp/mcp-stdio-client.js +183 -0
- package/vendor/server/dist/mcp/mcp-stdio-client.js.map +1 -0
- package/vendor/server/dist/mcp/mcp-tool-id.d.ts +5 -0
- package/vendor/server/dist/mcp/mcp-tool-id.d.ts.map +1 -0
- package/vendor/server/dist/mcp/mcp-tool-id.js +5 -0
- package/vendor/server/dist/mcp/mcp-tool-id.js.map +1 -0
- package/vendor/server/dist/mcp/openai-mcp-tool-loop.test.d.ts +2 -0
- package/vendor/server/dist/mcp/openai-mcp-tool-loop.test.d.ts.map +1 -0
- package/vendor/server/dist/mcp/openai-mcp-tool-loop.test.js +189 -0
- package/vendor/server/dist/mcp/openai-mcp-tool-loop.test.js.map +1 -0
- package/vendor/server/dist/mcp/wrap-harness-with-mcp.d.ts +5 -0
- package/vendor/server/dist/mcp/wrap-harness-with-mcp.d.ts.map +1 -0
- package/vendor/server/dist/mcp/wrap-harness-with-mcp.js +14 -0
- package/vendor/server/dist/mcp/wrap-harness-with-mcp.js.map +1 -0
- package/vendor/server/dist/palette/custom-node-registry.d.ts +11 -0
- package/vendor/server/dist/palette/custom-node-registry.d.ts.map +1 -0
- package/vendor/server/dist/palette/custom-node-registry.js +20 -0
- package/vendor/server/dist/palette/custom-node-registry.js.map +1 -0
- package/vendor/server/dist/palette/custom-palette.service.d.ts +13 -0
- package/vendor/server/dist/palette/custom-palette.service.d.ts.map +1 -0
- package/vendor/server/dist/palette/custom-palette.service.js +64 -0
- package/vendor/server/dist/palette/custom-palette.service.js.map +1 -0
- package/vendor/server/dist/palette/palette.service.d.ts +14 -0
- package/vendor/server/dist/palette/palette.service.d.ts.map +1 -0
- package/vendor/server/dist/palette/palette.service.js +17 -0
- package/vendor/server/dist/palette/palette.service.js.map +1 -0
- package/vendor/server/dist/server-context.d.ts +19 -0
- package/vendor/server/dist/server-context.d.ts.map +1 -0
- package/vendor/server/dist/server-context.js +30 -0
- package/vendor/server/dist/server-context.js.map +1 -0
- package/vendor/server/dist/session/build-selected-node-payload.d.ts +10 -0
- package/vendor/server/dist/session/build-selected-node-payload.d.ts.map +1 -0
- package/vendor/server/dist/session/build-selected-node-payload.js +21 -0
- package/vendor/server/dist/session/build-selected-node-payload.js.map +1 -0
- package/vendor/server/dist/session/build-session-bootstrap.d.ts +6 -0
- package/vendor/server/dist/session/build-session-bootstrap.d.ts.map +1 -0
- package/vendor/server/dist/session/build-session-bootstrap.js +14 -0
- package/vendor/server/dist/session/build-session-bootstrap.js.map +1 -0
- package/vendor/server/dist/session/clear-feed-while-running.test.d.ts +2 -0
- package/vendor/server/dist/session/clear-feed-while-running.test.d.ts.map +1 -0
- package/vendor/server/dist/session/clear-feed-while-running.test.js +41 -0
- package/vendor/server/dist/session/clear-feed-while-running.test.js.map +1 -0
- package/vendor/server/dist/session/langflower-session.d.ts +32 -0
- package/vendor/server/dist/session/langflower-session.d.ts.map +1 -0
- package/vendor/server/dist/session/langflower-session.js +83 -0
- package/vendor/server/dist/session/langflower-session.js.map +1 -0
- package/vendor/server/dist/skills/is-safe-skill-id.d.ts +3 -0
- package/vendor/server/dist/skills/is-safe-skill-id.d.ts.map +1 -0
- package/vendor/server/dist/skills/is-safe-skill-id.js +8 -0
- package/vendor/server/dist/skills/is-safe-skill-id.js.map +1 -0
- package/vendor/server/dist/skills/list-skills.d.ts +3 -0
- package/vendor/server/dist/skills/list-skills.d.ts.map +1 -0
- package/vendor/server/dist/skills/list-skills.js +37 -0
- package/vendor/server/dist/skills/list-skills.js.map +1 -0
- package/vendor/server/dist/skills/list-skills.test.d.ts +2 -0
- package/vendor/server/dist/skills/list-skills.test.d.ts.map +1 -0
- package/vendor/server/dist/skills/list-skills.test.js +46 -0
- package/vendor/server/dist/skills/list-skills.test.js.map +1 -0
- package/vendor/server/dist/skills/parse-skill-markdown.d.ts +8 -0
- package/vendor/server/dist/skills/parse-skill-markdown.d.ts.map +1 -0
- package/vendor/server/dist/skills/parse-skill-markdown.js +51 -0
- package/vendor/server/dist/skills/parse-skill-markdown.js.map +1 -0
- package/vendor/server/dist/skills/parse-skill-markdown.test.d.ts +2 -0
- package/vendor/server/dist/skills/parse-skill-markdown.test.d.ts.map +1 -0
- package/vendor/server/dist/skills/parse-skill-markdown.test.js +33 -0
- package/vendor/server/dist/skills/parse-skill-markdown.test.js.map +1 -0
- package/vendor/server/dist/skills/read-agents-markdown.d.ts +3 -0
- package/vendor/server/dist/skills/read-agents-markdown.d.ts.map +1 -0
- package/vendor/server/dist/skills/read-agents-markdown.js +14 -0
- package/vendor/server/dist/skills/read-agents-markdown.js.map +1 -0
- package/vendor/server/dist/skills/read-skill-markdown.d.ts +3 -0
- package/vendor/server/dist/skills/read-skill-markdown.d.ts.map +1 -0
- package/vendor/server/dist/skills/read-skill-markdown.js +18 -0
- package/vendor/server/dist/skills/read-skill-markdown.js.map +1 -0
- package/vendor/server/dist/skills/read-skill-markdown.test.d.ts +2 -0
- package/vendor/server/dist/skills/read-skill-markdown.test.d.ts.map +1 -0
- package/vendor/server/dist/skills/read-skill-markdown.test.js +31 -0
- package/vendor/server/dist/skills/read-skill-markdown.test.js.map +1 -0
- package/vendor/server/dist/skills/with-skills-catalog.d.ts +4 -0
- package/vendor/server/dist/skills/with-skills-catalog.d.ts.map +1 -0
- package/vendor/server/dist/skills/with-skills-catalog.js +7 -0
- package/vendor/server/dist/skills/with-skills-catalog.js.map +1 -0
- package/vendor/server/dist/skills/with-skills-catalog.test.d.ts +2 -0
- package/vendor/server/dist/skills/with-skills-catalog.test.d.ts.map +1 -0
- package/vendor/server/dist/skills/with-skills-catalog.test.js +40 -0
- package/vendor/server/dist/skills/with-skills-catalog.test.js.map +1 -0
- package/vendor/server/dist/utils/parse-jsonc.d.ts +3 -0
- package/vendor/server/dist/utils/parse-jsonc.d.ts.map +1 -0
- package/vendor/server/dist/utils/parse-jsonc.js +8 -0
- package/vendor/server/dist/utils/parse-jsonc.js.map +1 -0
- package/vendor/server/dist/workflow/activate-workflow-in-session.d.ts +15 -0
- package/vendor/server/dist/workflow/activate-workflow-in-session.d.ts.map +1 -0
- package/vendor/server/dist/workflow/activate-workflow-in-session.js +26 -0
- package/vendor/server/dist/workflow/activate-workflow-in-session.js.map +1 -0
- package/vendor/server/dist/workflow/apply-editor-mutation.d.ts +58 -0
- package/vendor/server/dist/workflow/apply-editor-mutation.d.ts.map +1 -0
- package/vendor/server/dist/workflow/apply-editor-mutation.js +493 -0
- package/vendor/server/dist/workflow/apply-editor-mutation.js.map +1 -0
- package/vendor/server/dist/workflow/apply-editor-mutation.test.d.ts +2 -0
- package/vendor/server/dist/workflow/apply-editor-mutation.test.d.ts.map +1 -0
- package/vendor/server/dist/workflow/apply-editor-mutation.test.js +397 -0
- package/vendor/server/dist/workflow/apply-editor-mutation.test.js.map +1 -0
- package/vendor/server/dist/workflow/bind-workflow-graph.d.ts +11 -0
- package/vendor/server/dist/workflow/bind-workflow-graph.d.ts.map +1 -0
- package/vendor/server/dist/workflow/bind-workflow-graph.js +16 -0
- package/vendor/server/dist/workflow/bind-workflow-graph.js.map +1 -0
- package/vendor/server/dist/workflow/build-save-current-payload.d.ts +4 -0
- package/vendor/server/dist/workflow/build-save-current-payload.d.ts.map +1 -0
- package/vendor/server/dist/workflow/build-save-current-payload.js +18 -0
- package/vendor/server/dist/workflow/build-save-current-payload.js.map +1 -0
- package/vendor/server/dist/workflow/build-save-current-payload.test.d.ts +2 -0
- package/vendor/server/dist/workflow/build-save-current-payload.test.d.ts.map +1 -0
- package/vendor/server/dist/workflow/build-save-current-payload.test.js +44 -0
- package/vendor/server/dist/workflow/build-save-current-payload.test.js.map +1 -0
- package/vendor/server/dist/workflow/copy-workflow-to-session.d.ts +9 -0
- package/vendor/server/dist/workflow/copy-workflow-to-session.d.ts.map +1 -0
- package/vendor/server/dist/workflow/copy-workflow-to-session.js +33 -0
- package/vendor/server/dist/workflow/copy-workflow-to-session.js.map +1 -0
- package/vendor/server/dist/workflow/copy-workflow-to-session.test.d.ts +2 -0
- package/vendor/server/dist/workflow/copy-workflow-to-session.test.d.ts.map +1 -0
- package/vendor/server/dist/workflow/copy-workflow-to-session.test.js +72 -0
- package/vendor/server/dist/workflow/copy-workflow-to-session.test.js.map +1 -0
- package/vendor/server/dist/workflow/create-empty-workflow-in-session.d.ts +5 -0
- package/vendor/server/dist/workflow/create-empty-workflow-in-session.d.ts.map +1 -0
- package/vendor/server/dist/workflow/create-empty-workflow-in-session.js +35 -0
- package/vendor/server/dist/workflow/create-empty-workflow-in-session.js.map +1 -0
- package/vendor/server/dist/workflow/create-empty-workflow-in-session.test.d.ts +2 -0
- package/vendor/server/dist/workflow/create-empty-workflow-in-session.test.d.ts.map +1 -0
- package/vendor/server/dist/workflow/create-empty-workflow-in-session.test.js +54 -0
- package/vendor/server/dist/workflow/create-empty-workflow-in-session.test.js.map +1 -0
- package/vendor/server/dist/workflow/load-workflow-into-session.d.ts +5 -0
- package/vendor/server/dist/workflow/load-workflow-into-session.d.ts.map +1 -0
- package/vendor/server/dist/workflow/load-workflow-into-session.js +12 -0
- package/vendor/server/dist/workflow/load-workflow-into-session.js.map +1 -0
- package/vendor/server/dist/workflow/rename-active-workflow.d.ts +15 -0
- package/vendor/server/dist/workflow/rename-active-workflow.d.ts.map +1 -0
- package/vendor/server/dist/workflow/rename-active-workflow.js +61 -0
- package/vendor/server/dist/workflow/rename-active-workflow.js.map +1 -0
- package/vendor/server/dist/workflow/rename-active-workflow.test.d.ts +2 -0
- package/vendor/server/dist/workflow/rename-active-workflow.test.d.ts.map +1 -0
- package/vendor/server/dist/workflow/rename-active-workflow.test.js +111 -0
- package/vendor/server/dist/workflow/rename-active-workflow.test.js.map +1 -0
- package/vendor/server/dist/workflow/repro-bypass.test.d.ts +2 -0
- package/vendor/server/dist/workflow/repro-bypass.test.d.ts.map +1 -0
- package/vendor/server/dist/workflow/repro-bypass.test.js +63 -0
- package/vendor/server/dist/workflow/repro-bypass.test.js.map +1 -0
- package/vendor/server/dist/workflow/workflow-document.d.ts +22 -0
- package/vendor/server/dist/workflow/workflow-document.d.ts.map +1 -0
- package/vendor/server/dist/workflow/workflow-document.js +59 -0
- package/vendor/server/dist/workflow/workflow-document.js.map +1 -0
- package/vendor/server/dist/workflow/workflow-id.d.ts +3 -0
- package/vendor/server/dist/workflow/workflow-id.d.ts.map +1 -0
- package/vendor/server/dist/workflow/workflow-id.js +20 -0
- package/vendor/server/dist/workflow/workflow-id.js.map +1 -0
- package/vendor/server/dist/workflow/workflow-id.test.d.ts +2 -0
- package/vendor/server/dist/workflow/workflow-id.test.d.ts.map +1 -0
- package/vendor/server/dist/workflow/workflow-id.test.js +23 -0
- package/vendor/server/dist/workflow/workflow-id.test.js.map +1 -0
- package/vendor/server/dist/workflow/workflow-persisted-inputs.d.ts +14 -0
- package/vendor/server/dist/workflow/workflow-persisted-inputs.d.ts.map +1 -0
- package/vendor/server/dist/workflow/workflow-persisted-inputs.js +70 -0
- package/vendor/server/dist/workflow/workflow-persisted-inputs.js.map +1 -0
- package/vendor/server/dist/workflow/workflow.service.d.ts +35 -0
- package/vendor/server/dist/workflow/workflow.service.d.ts.map +1 -0
- package/vendor/server/dist/workflow/workflow.service.js +126 -0
- package/vendor/server/dist/workflow/workflow.service.js.map +1 -0
- package/vendor/server/dist/workflow/workflow.service.test.d.ts +2 -0
- package/vendor/server/dist/workflow/workflow.service.test.d.ts.map +1 -0
- package/vendor/server/dist/workflow/workflow.service.test.js +57 -0
- package/vendor/server/dist/workflow/workflow.service.test.js.map +1 -0
- package/vendor/server/package.json +35 -0
- package/vendor/server/skeleton/instructions.md +41 -0
- package/vendor/server/skeleton/nodes/my-nodes/README.md +212 -0
- package/vendor/server/skeleton/nodes/my-nodes/git-diff-tool.ts +73 -0
- package/vendor/server/skeleton/nodes/my-nodes/git-diff.ts +46 -0
- package/vendor/server/skeleton/nodes/my-nodes/package.json +11 -0
- package/vendor/server/skeleton/nodes/my-nodes/review-gate.ts +106 -0
- package/vendor/server/skeleton/nodes/my-nodes/tsconfig.json +13 -0
- package/vendor/server/skeleton/skills/langflower-helper/SKILL.md +210 -0
- package/vendor/server/skeleton/skills/langflower-helper/architecture.md +96 -0
- package/vendor/server/skeleton/skills/langflower-helper/layout.md +51 -0
- package/vendor/server/skeleton/skills/langflower-node-writer/SKILL.md +56 -0
- package/vendor/server/skeleton/workflows/advanced-coder.json +343 -0
- package/vendor/server/skeleton/workflows/agents-dialog.json +134 -0
- package/vendor/server/skeleton/workflows/kb-create.json +262 -0
- package/vendor/server/skeleton/workflows/kb-navigate.json +149 -0
- package/vendor/server/skeleton/workflows/node-writer.json +81 -0
- package/vendor/server/skeleton/workflows/simple-coder.json +157 -0
- package/vendor/server/skeleton/workflows/starter.json +81 -0
- package/vendor/shared/dist/checkpoint/json-value.d.ts +8 -0
- package/vendor/shared/dist/checkpoint/json-value.d.ts.map +1 -0
- package/vendor/shared/dist/checkpoint/json-value.js +53 -0
- package/vendor/shared/dist/checkpoint/json-value.js.map +1 -0
- package/vendor/shared/dist/checkpoint/json-value.test.d.ts +2 -0
- package/vendor/shared/dist/checkpoint/json-value.test.d.ts.map +1 -0
- package/vendor/shared/dist/checkpoint/json-value.test.js +23 -0
- package/vendor/shared/dist/checkpoint/json-value.test.js.map +1 -0
- package/vendor/shared/dist/checkpoint/workflow-fingerprint.d.ts +12 -0
- package/vendor/shared/dist/checkpoint/workflow-fingerprint.d.ts.map +1 -0
- package/vendor/shared/dist/checkpoint/workflow-fingerprint.js +18 -0
- package/vendor/shared/dist/checkpoint/workflow-fingerprint.js.map +1 -0
- package/vendor/shared/dist/checkpoint/workflow-fingerprint.test.d.ts +2 -0
- package/vendor/shared/dist/checkpoint/workflow-fingerprint.test.d.ts.map +1 -0
- package/vendor/shared/dist/checkpoint/workflow-fingerprint.test.js +55 -0
- package/vendor/shared/dist/checkpoint/workflow-fingerprint.test.js.map +1 -0
- package/vendor/shared/dist/constants/defaults.d.ts +17 -0
- package/vendor/shared/dist/constants/defaults.d.ts.map +1 -0
- package/vendor/shared/dist/constants/defaults.js +26 -0
- package/vendor/shared/dist/constants/defaults.js.map +1 -0
- package/vendor/shared/dist/execution/derive-run-settle-outcome.d.ts +17 -0
- package/vendor/shared/dist/execution/derive-run-settle-outcome.d.ts.map +1 -0
- package/vendor/shared/dist/execution/derive-run-settle-outcome.js +48 -0
- package/vendor/shared/dist/execution/derive-run-settle-outcome.js.map +1 -0
- package/vendor/shared/dist/execution/derive-run-settle-outcome.test.d.ts +2 -0
- package/vendor/shared/dist/execution/derive-run-settle-outcome.test.d.ts.map +1 -0
- package/vendor/shared/dist/execution/derive-run-settle-outcome.test.js +44 -0
- package/vendor/shared/dist/execution/derive-run-settle-outcome.test.js.map +1 -0
- package/vendor/shared/dist/langflower-bus-config.d.ts +424 -0
- package/vendor/shared/dist/langflower-bus-config.d.ts.map +1 -0
- package/vendor/shared/dist/langflower-bus-config.js +574 -0
- package/vendor/shared/dist/langflower-bus-config.js.map +1 -0
- package/vendor/shared/dist/langflower-config/mcp-tool-id.d.ts +24 -0
- package/vendor/shared/dist/langflower-config/mcp-tool-id.d.ts.map +1 -0
- package/vendor/shared/dist/langflower-config/mcp-tool-id.js +44 -0
- package/vendor/shared/dist/langflower-config/mcp-tool-id.js.map +1 -0
- package/vendor/shared/dist/langflower-config/merge-langflower-config-layers.d.ts +7 -0
- package/vendor/shared/dist/langflower-config/merge-langflower-config-layers.d.ts.map +1 -0
- package/vendor/shared/dist/langflower-config/merge-langflower-config-layers.js +19 -0
- package/vendor/shared/dist/langflower-config/merge-langflower-config-layers.js.map +1 -0
- package/vendor/shared/dist/langflower-config/merge-langflower-config-layers.test.d.ts +2 -0
- package/vendor/shared/dist/langflower-config/merge-langflower-config-layers.test.d.ts.map +1 -0
- package/vendor/shared/dist/langflower-config/merge-langflower-config-layers.test.js +33 -0
- package/vendor/shared/dist/langflower-config/merge-langflower-config-layers.test.js.map +1 -0
- package/vendor/shared/dist/langflower-config/merge-provider-model-options.d.ts +8 -0
- package/vendor/shared/dist/langflower-config/merge-provider-model-options.d.ts.map +1 -0
- package/vendor/shared/dist/langflower-config/merge-provider-model-options.js +18 -0
- package/vendor/shared/dist/langflower-config/merge-provider-model-options.js.map +1 -0
- package/vendor/shared/dist/langflower-config/merge-provider-model-options.test.d.ts +2 -0
- package/vendor/shared/dist/langflower-config/merge-provider-model-options.test.d.ts.map +1 -0
- package/vendor/shared/dist/langflower-config/merge-provider-model-options.test.js +23 -0
- package/vendor/shared/dist/langflower-config/merge-provider-model-options.test.js.map +1 -0
- package/vendor/shared/dist/langflower-config/resolve-ui-schema-options.d.ts +19 -0
- package/vendor/shared/dist/langflower-config/resolve-ui-schema-options.d.ts.map +1 -0
- package/vendor/shared/dist/langflower-config/resolve-ui-schema-options.js +62 -0
- package/vendor/shared/dist/langflower-config/resolve-ui-schema-options.js.map +1 -0
- package/vendor/shared/dist/langflower-config/resolve-ui-schema-options.test.d.ts +2 -0
- package/vendor/shared/dist/langflower-config/resolve-ui-schema-options.test.d.ts.map +1 -0
- package/vendor/shared/dist/langflower-config/resolve-ui-schema-options.test.js +38 -0
- package/vendor/shared/dist/langflower-config/resolve-ui-schema-options.test.js.map +1 -0
- package/vendor/shared/dist/langflower-config/resolve-wired-tool-options.d.ts +41 -0
- package/vendor/shared/dist/langflower-config/resolve-wired-tool-options.d.ts.map +1 -0
- package/vendor/shared/dist/langflower-config/resolve-wired-tool-options.js +134 -0
- package/vendor/shared/dist/langflower-config/resolve-wired-tool-options.js.map +1 -0
- package/vendor/shared/dist/langflower-config/resolve-wired-tool-options.test.d.ts +2 -0
- package/vendor/shared/dist/langflower-config/resolve-wired-tool-options.test.d.ts.map +1 -0
- package/vendor/shared/dist/langflower-config/resolve-wired-tool-options.test.js +224 -0
- package/vendor/shared/dist/langflower-config/resolve-wired-tool-options.test.js.map +1 -0
- package/vendor/shared/dist/langflower-ws-waits.d.ts +64 -0
- package/vendor/shared/dist/langflower-ws-waits.d.ts.map +1 -0
- package/vendor/shared/dist/langflower-ws-waits.js +122 -0
- package/vendor/shared/dist/langflower-ws-waits.js.map +1 -0
- package/vendor/shared/dist/langflower.d.ts +26 -0
- package/vendor/shared/dist/langflower.d.ts.map +1 -0
- package/vendor/shared/dist/langflower.js +11 -0
- package/vendor/shared/dist/langflower.js.map +1 -0
- package/vendor/shared/dist/types/config.d.ts +5 -0
- package/vendor/shared/dist/types/config.d.ts.map +1 -0
- package/vendor/shared/dist/types/config.js +2 -0
- package/vendor/shared/dist/types/config.js.map +1 -0
- package/vendor/shared/dist/types/langflower-bootstrap.d.ts +61 -0
- package/vendor/shared/dist/types/langflower-bootstrap.d.ts.map +1 -0
- package/vendor/shared/dist/types/langflower-bootstrap.js +2 -0
- package/vendor/shared/dist/types/langflower-bootstrap.js.map +1 -0
- package/vendor/shared/dist/types/langflower-config.d.ts +182 -0
- package/vendor/shared/dist/types/langflower-config.d.ts.map +1 -0
- package/vendor/shared/dist/types/langflower-config.js +2 -0
- package/vendor/shared/dist/types/langflower-config.js.map +1 -0
- package/vendor/shared/dist/types/langflower-custom-palette.d.ts +22 -0
- package/vendor/shared/dist/types/langflower-custom-palette.d.ts.map +1 -0
- package/vendor/shared/dist/types/langflower-custom-palette.js +2 -0
- package/vendor/shared/dist/types/langflower-custom-palette.js.map +1 -0
- package/vendor/shared/dist/types/langflower-editor.d.ts +78 -0
- package/vendor/shared/dist/types/langflower-editor.d.ts.map +1 -0
- package/vendor/shared/dist/types/langflower-editor.js +2 -0
- package/vendor/shared/dist/types/langflower-editor.js.map +1 -0
- package/vendor/shared/dist/types/langflower-palette.d.ts +25 -0
- package/vendor/shared/dist/types/langflower-palette.d.ts.map +1 -0
- package/vendor/shared/dist/types/langflower-palette.js +2 -0
- package/vendor/shared/dist/types/langflower-palette.js.map +1 -0
- package/vendor/shared/dist/types/langflower-project-bootstrap.d.ts +12 -0
- package/vendor/shared/dist/types/langflower-project-bootstrap.d.ts.map +1 -0
- package/vendor/shared/dist/types/langflower-project-bootstrap.js +2 -0
- package/vendor/shared/dist/types/langflower-project-bootstrap.js.map +1 -0
- package/vendor/shared/dist/types/langflower-server.d.ts +5 -0
- package/vendor/shared/dist/types/langflower-server.d.ts.map +1 -0
- package/vendor/shared/dist/types/langflower-server.js +2 -0
- package/vendor/shared/dist/types/langflower-server.js.map +1 -0
- package/vendor/shared/dist/types/langflower-workflow.d.ts +125 -0
- package/vendor/shared/dist/types/langflower-workflow.d.ts.map +1 -0
- package/vendor/shared/dist/types/langflower-workflow.js +13 -0
- package/vendor/shared/dist/types/langflower-workflow.js.map +1 -0
- package/vendor/shared/dist/types/workflow-checkpoint.d.ts +61 -0
- package/vendor/shared/dist/types/workflow-checkpoint.d.ts.map +1 -0
- package/vendor/shared/dist/types/workflow-checkpoint.js +10 -0
- package/vendor/shared/dist/types/workflow-checkpoint.js.map +1 -0
- package/vendor/shared/package.json +74 -0
- package/vendor/tools/dist/builtin-schemas.d.ts +10 -0
- package/vendor/tools/dist/builtin-schemas.d.ts.map +1 -0
- package/vendor/tools/dist/builtin-schemas.js +144 -0
- package/vendor/tools/dist/builtin-schemas.js.map +1 -0
- package/vendor/tools/dist/builtins/apply-post-process.d.ts +2 -0
- package/vendor/tools/dist/builtins/apply-post-process.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/apply-post-process.js +10 -0
- package/vendor/tools/dist/builtins/apply-post-process.js.map +1 -0
- package/vendor/tools/dist/builtins/args.d.ts +4 -0
- package/vendor/tools/dist/builtins/args.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/args.js +15 -0
- package/vendor/tools/dist/builtins/args.js.map +1 -0
- package/vendor/tools/dist/builtins/bash/tool.d.ts +26 -0
- package/vendor/tools/dist/builtins/bash/tool.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/bash/tool.js +73 -0
- package/vendor/tools/dist/builtins/bash/tool.js.map +1 -0
- package/vendor/tools/dist/builtins/catalog.d.ts +229 -0
- package/vendor/tools/dist/builtins/catalog.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/catalog.js +25 -0
- package/vendor/tools/dist/builtins/catalog.js.map +1 -0
- package/vendor/tools/dist/builtins/create/tool.d.ts +26 -0
- package/vendor/tools/dist/builtins/create/tool.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/create/tool.js +57 -0
- package/vendor/tools/dist/builtins/create/tool.js.map +1 -0
- package/vendor/tools/dist/builtins/delete/tool.d.ts +22 -0
- package/vendor/tools/dist/builtins/delete/tool.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/delete/tool.js +45 -0
- package/vendor/tools/dist/builtins/delete/tool.js.map +1 -0
- package/vendor/tools/dist/builtins/edit/tool.d.ts +30 -0
- package/vendor/tools/dist/builtins/edit/tool.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/edit/tool.js +69 -0
- package/vendor/tools/dist/builtins/edit/tool.js.map +1 -0
- package/vendor/tools/dist/builtins/fence.d.ts +5 -0
- package/vendor/tools/dist/builtins/fence.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/fence.js +7 -0
- package/vendor/tools/dist/builtins/fence.js.map +1 -0
- package/vendor/tools/dist/builtins/glob/tool.d.ts +34 -0
- package/vendor/tools/dist/builtins/glob/tool.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/glob/tool.js +78 -0
- package/vendor/tools/dist/builtins/glob/tool.js.map +1 -0
- package/vendor/tools/dist/builtins/grep/tool.d.ts +37 -0
- package/vendor/tools/dist/builtins/grep/tool.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/grep/tool.js +99 -0
- package/vendor/tools/dist/builtins/grep/tool.js.map +1 -0
- package/vendor/tools/dist/builtins/read/tool.d.ts +42 -0
- package/vendor/tools/dist/builtins/read/tool.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/read/tool.js +97 -0
- package/vendor/tools/dist/builtins/read/tool.js.map +1 -0
- package/vendor/tools/dist/builtins/types.d.ts +15 -0
- package/vendor/tools/dist/builtins/types.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/types.js +2 -0
- package/vendor/tools/dist/builtins/types.js.map +1 -0
- package/vendor/tools/dist/builtins/walk-files.d.ts +3 -0
- package/vendor/tools/dist/builtins/walk-files.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/walk-files.js +47 -0
- package/vendor/tools/dist/builtins/walk-files.js.map +1 -0
- package/vendor/tools/dist/builtins/write/tool.d.ts +26 -0
- package/vendor/tools/dist/builtins/write/tool.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/write/tool.js +41 -0
- package/vendor/tools/dist/builtins/write/tool.js.map +1 -0
- package/vendor/tools/dist/create-crawl-context.d.ts +23 -0
- package/vendor/tools/dist/create-crawl-context.d.ts.map +1 -0
- package/vendor/tools/dist/create-crawl-context.js +35 -0
- package/vendor/tools/dist/create-crawl-context.js.map +1 -0
- package/vendor/tools/dist/create-memory-context.d.ts +12 -0
- package/vendor/tools/dist/create-memory-context.d.ts.map +1 -0
- package/vendor/tools/dist/create-memory-context.js +84 -0
- package/vendor/tools/dist/create-memory-context.js.map +1 -0
- package/vendor/tools/dist/create-project-files-context.d.ts +20 -0
- package/vendor/tools/dist/create-project-files-context.d.ts.map +1 -0
- package/vendor/tools/dist/create-project-files-context.js +76 -0
- package/vendor/tools/dist/create-project-files-context.js.map +1 -0
- package/vendor/tools/dist/create-project-harness.d.ts +34 -0
- package/vendor/tools/dist/create-project-harness.d.ts.map +1 -0
- package/vendor/tools/dist/create-project-harness.js +62 -0
- package/vendor/tools/dist/create-project-harness.js.map +1 -0
- package/vendor/tools/dist/create-web-fetch.d.ts +28 -0
- package/vendor/tools/dist/create-web-fetch.d.ts.map +1 -0
- package/vendor/tools/dist/create-web-fetch.js +165 -0
- package/vendor/tools/dist/create-web-fetch.js.map +1 -0
- package/vendor/tools/dist/domain/args.d.ts +4 -0
- package/vendor/tools/dist/domain/args.d.ts.map +1 -0
- package/vendor/tools/dist/domain/args.js +23 -0
- package/vendor/tools/dist/domain/args.js.map +1 -0
- package/vendor/tools/dist/domain/create-domain-handlers.d.ts +22 -0
- package/vendor/tools/dist/domain/create-domain-handlers.d.ts.map +1 -0
- package/vendor/tools/dist/domain/create-domain-handlers.js +223 -0
- package/vendor/tools/dist/domain/create-domain-handlers.js.map +1 -0
- package/vendor/tools/dist/domain/domain-tool-configs.d.ts +29 -0
- package/vendor/tools/dist/domain/domain-tool-configs.d.ts.map +1 -0
- package/vendor/tools/dist/domain/domain-tool-configs.js +300 -0
- package/vendor/tools/dist/domain/domain-tool-configs.js.map +1 -0
- package/vendor/tools/dist/domain/html.d.ts +5 -0
- package/vendor/tools/dist/domain/html.d.ts.map +1 -0
- package/vendor/tools/dist/domain/html.js +69 -0
- package/vendor/tools/dist/domain/html.js.map +1 -0
- package/vendor/tools/dist/domain/run-bfs-crawl.d.ts +58 -0
- package/vendor/tools/dist/domain/run-bfs-crawl.d.ts.map +1 -0
- package/vendor/tools/dist/domain/run-bfs-crawl.js +113 -0
- package/vendor/tools/dist/domain/run-bfs-crawl.js.map +1 -0
- package/vendor/tools/dist/gate-tool-call.d.ts +18 -0
- package/vendor/tools/dist/gate-tool-call.d.ts.map +1 -0
- package/vendor/tools/dist/gate-tool-call.js +36 -0
- package/vendor/tools/dist/gate-tool-call.js.map +1 -0
- package/vendor/tools/dist/gitignore.d.ts +5 -0
- package/vendor/tools/dist/gitignore.d.ts.map +1 -0
- package/vendor/tools/dist/gitignore.js +95 -0
- package/vendor/tools/dist/gitignore.js.map +1 -0
- package/vendor/tools/dist/handlers.d.ts +16 -0
- package/vendor/tools/dist/handlers.d.ts.map +1 -0
- package/vendor/tools/dist/handlers.js +367 -0
- package/vendor/tools/dist/handlers.js.map +1 -0
- package/vendor/tools/dist/harness-types.d.ts +32 -0
- package/vendor/tools/dist/harness-types.d.ts.map +1 -0
- package/vendor/tools/dist/harness-types.js +5 -0
- package/vendor/tools/dist/harness-types.js.map +1 -0
- package/vendor/tools/dist/kb/chunk-text.d.ts +8 -0
- package/vendor/tools/dist/kb/chunk-text.d.ts.map +1 -0
- package/vendor/tools/dist/kb/chunk-text.js +52 -0
- package/vendor/tools/dist/kb/chunk-text.js.map +1 -0
- package/vendor/tools/dist/kb/cosine.d.ts +3 -0
- package/vendor/tools/dist/kb/cosine.d.ts.map +1 -0
- package/vendor/tools/dist/kb/cosine.js +21 -0
- package/vendor/tools/dist/kb/cosine.js.map +1 -0
- package/vendor/tools/dist/kb/create-kb-context.d.ts +62 -0
- package/vendor/tools/dist/kb/create-kb-context.d.ts.map +1 -0
- package/vendor/tools/dist/kb/create-kb-context.js +78 -0
- package/vendor/tools/dist/kb/create-kb-context.js.map +1 -0
- package/vendor/tools/dist/kb/kb-curation.d.ts +69 -0
- package/vendor/tools/dist/kb/kb-curation.d.ts.map +1 -0
- package/vendor/tools/dist/kb/kb-curation.js +364 -0
- package/vendor/tools/dist/kb/kb-curation.js.map +1 -0
- package/vendor/tools/dist/kb/kb-paths.d.ts +8 -0
- package/vendor/tools/dist/kb/kb-paths.d.ts.map +1 -0
- package/vendor/tools/dist/kb/kb-paths.js +19 -0
- package/vendor/tools/dist/kb/kb-paths.js.map +1 -0
- package/vendor/tools/dist/kb/kb-store.d.ts +41 -0
- package/vendor/tools/dist/kb/kb-store.d.ts.map +1 -0
- package/vendor/tools/dist/kb/kb-store.js +246 -0
- package/vendor/tools/dist/kb/kb-store.js.map +1 -0
- package/vendor/tools/dist/kb/local-embed.d.ts +8 -0
- package/vendor/tools/dist/kb/local-embed.d.ts.map +1 -0
- package/vendor/tools/dist/kb/local-embed.js +41 -0
- package/vendor/tools/dist/kb/local-embed.js.map +1 -0
- package/vendor/tools/dist/mcp/build-mcp-handle.d.ts +30 -0
- package/vendor/tools/dist/mcp/build-mcp-handle.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/build-mcp-handle.js +65 -0
- package/vendor/tools/dist/mcp/build-mcp-handle.js.map +1 -0
- package/vendor/tools/dist/mcp/create-mcp-runtime.d.ts +29 -0
- package/vendor/tools/dist/mcp/create-mcp-runtime.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/create-mcp-runtime.js +161 -0
- package/vendor/tools/dist/mcp/create-mcp-runtime.js.map +1 -0
- package/vendor/tools/dist/mcp/create-system-mcp-handles.d.ts +50 -0
- package/vendor/tools/dist/mcp/create-system-mcp-handles.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/create-system-mcp-handles.js +124 -0
- package/vendor/tools/dist/mcp/create-system-mcp-handles.js.map +1 -0
- package/vendor/tools/dist/mcp/env-with-shell-com-spec.d.ts +6 -0
- package/vendor/tools/dist/mcp/env-with-shell-com-spec.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/env-with-shell-com-spec.js +19 -0
- package/vendor/tools/dist/mcp/env-with-shell-com-spec.js.map +1 -0
- package/vendor/tools/dist/mcp/format-mcp-connect-error.d.ts +10 -0
- package/vendor/tools/dist/mcp/format-mcp-connect-error.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/format-mcp-connect-error.js +14 -0
- package/vendor/tools/dist/mcp/format-mcp-connect-error.js.map +1 -0
- package/vendor/tools/dist/mcp/mcp-client-types.d.ts +18 -0
- package/vendor/tools/dist/mcp/mcp-client-types.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/mcp-client-types.js +2 -0
- package/vendor/tools/dist/mcp/mcp-client-types.js.map +1 -0
- package/vendor/tools/dist/mcp/mcp-http-client.d.ts +32 -0
- package/vendor/tools/dist/mcp/mcp-http-client.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/mcp-http-client.js +244 -0
- package/vendor/tools/dist/mcp/mcp-http-client.js.map +1 -0
- package/vendor/tools/dist/mcp/mcp-stdio-client.d.ts +20 -0
- package/vendor/tools/dist/mcp/mcp-stdio-client.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/mcp-stdio-client.js +187 -0
- package/vendor/tools/dist/mcp/mcp-stdio-client.js.map +1 -0
- package/vendor/tools/dist/mcp/mcp-stdio-frame-parser.d.ts +8 -0
- package/vendor/tools/dist/mcp/mcp-stdio-frame-parser.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/mcp-stdio-frame-parser.js +78 -0
- package/vendor/tools/dist/mcp/mcp-stdio-frame-parser.js.map +1 -0
- package/vendor/tools/dist/mcp/mcp-tool-id.d.ts +26 -0
- package/vendor/tools/dist/mcp/mcp-tool-id.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/mcp-tool-id.js +46 -0
- package/vendor/tools/dist/mcp/mcp-tool-id.js.map +1 -0
- package/vendor/tools/dist/mcp/require-mcp-server-name.d.ts +6 -0
- package/vendor/tools/dist/mcp/require-mcp-server-name.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/require-mcp-server-name.js +23 -0
- package/vendor/tools/dist/mcp/require-mcp-server-name.js.map +1 -0
- package/vendor/tools/dist/mcp/resolve-shell-option.d.ts +6 -0
- package/vendor/tools/dist/mcp/resolve-shell-option.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/resolve-shell-option.js +19 -0
- package/vendor/tools/dist/mcp/resolve-shell-option.js.map +1 -0
- package/vendor/tools/dist/mcp/wrap-harness-with-mcp.d.ts +5 -0
- package/vendor/tools/dist/mcp/wrap-harness-with-mcp.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/wrap-harness-with-mcp.js +27 -0
- package/vendor/tools/dist/mcp/wrap-harness-with-mcp.js.map +1 -0
- package/vendor/tools/dist/memory/atomic-write.d.ts +5 -0
- package/vendor/tools/dist/memory/atomic-write.d.ts.map +1 -0
- package/vendor/tools/dist/memory/atomic-write.js +19 -0
- package/vendor/tools/dist/memory/atomic-write.js.map +1 -0
- package/vendor/tools/dist/memory/create-memory-store.d.ts +22 -0
- package/vendor/tools/dist/memory/create-memory-store.d.ts.map +1 -0
- package/vendor/tools/dist/memory/create-memory-store.js +204 -0
- package/vendor/tools/dist/memory/create-memory-store.js.map +1 -0
- package/vendor/tools/dist/memory/markdown-sections.d.ts +23 -0
- package/vendor/tools/dist/memory/markdown-sections.d.ts.map +1 -0
- package/vendor/tools/dist/memory/markdown-sections.js +70 -0
- package/vendor/tools/dist/memory/markdown-sections.js.map +1 -0
- package/vendor/tools/dist/memory/memory-paths.d.ts +10 -0
- package/vendor/tools/dist/memory/memory-paths.d.ts.map +1 -0
- package/vendor/tools/dist/memory/memory-paths.js +29 -0
- package/vendor/tools/dist/memory/memory-paths.js.map +1 -0
- package/vendor/tools/dist/path-sandbox.d.ts +22 -0
- package/vendor/tools/dist/path-sandbox.d.ts.map +1 -0
- package/vendor/tools/dist/path-sandbox.js +97 -0
- package/vendor/tools/dist/path-sandbox.js.map +1 -0
- package/vendor/tools/dist/permission.d.ts +46 -0
- package/vendor/tools/dist/permission.d.ts.map +1 -0
- package/vendor/tools/dist/permission.js +172 -0
- package/vendor/tools/dist/permission.js.map +1 -0
- package/vendor/tools/dist/post-process.d.ts +10 -0
- package/vendor/tools/dist/post-process.d.ts.map +1 -0
- package/vendor/tools/dist/post-process.js +37 -0
- package/vendor/tools/dist/post-process.js.map +1 -0
- package/vendor/tools/dist/ssrf-guard.d.ts +23 -0
- package/vendor/tools/dist/ssrf-guard.d.ts.map +1 -0
- package/vendor/tools/dist/ssrf-guard.js +120 -0
- package/vendor/tools/dist/ssrf-guard.js.map +1 -0
- package/vendor/tools/package.json +73 -0
- package/vendor/websocket-bridge/dist/bridge-codec.d.ts +3 -0
- package/vendor/websocket-bridge/dist/bridge-codec.d.ts.map +1 -0
- package/vendor/websocket-bridge/dist/bridge-codec.js +27 -0
- package/vendor/websocket-bridge/dist/bridge-codec.js.map +1 -0
- package/vendor/websocket-bridge/dist/bridge-frame.d.ts +12 -0
- package/vendor/websocket-bridge/dist/bridge-frame.d.ts.map +1 -0
- package/vendor/websocket-bridge/dist/bridge-frame.js +25 -0
- package/vendor/websocket-bridge/dist/bridge-frame.js.map +1 -0
- package/vendor/websocket-bridge/dist/bridge-guards.d.ts +5 -0
- package/vendor/websocket-bridge/dist/bridge-guards.d.ts.map +1 -0
- package/vendor/websocket-bridge/dist/bridge-guards.js +18 -0
- package/vendor/websocket-bridge/dist/bridge-guards.js.map +1 -0
- package/vendor/websocket-bridge/dist/bridge-subjects.d.ts +11 -0
- package/vendor/websocket-bridge/dist/bridge-subjects.d.ts.map +1 -0
- package/vendor/websocket-bridge/dist/bridge-subjects.js +39 -0
- package/vendor/websocket-bridge/dist/bridge-subjects.js.map +1 -0
- package/vendor/websocket-bridge/dist/bridge-types.d.ts +91 -0
- package/vendor/websocket-bridge/dist/bridge-types.d.ts.map +1 -0
- package/vendor/websocket-bridge/dist/bridge-types.js +3 -0
- package/vendor/websocket-bridge/dist/bridge-types.js.map +1 -0
- package/vendor/websocket-bridge/dist/create-client.d.ts +6 -0
- package/vendor/websocket-bridge/dist/create-client.d.ts.map +1 -0
- package/vendor/websocket-bridge/dist/create-client.js +153 -0
- package/vendor/websocket-bridge/dist/create-client.js.map +1 -0
- package/vendor/websocket-bridge/dist/create-server.d.ts +9 -0
- package/vendor/websocket-bridge/dist/create-server.d.ts.map +1 -0
- package/vendor/websocket-bridge/dist/create-server.js +129 -0
- package/vendor/websocket-bridge/dist/create-server.js.map +1 -0
- package/vendor/websocket-bridge/dist/testing/expect-type.d.ts +4 -0
- package/vendor/websocket-bridge/dist/testing/expect-type.d.ts.map +1 -0
- package/vendor/websocket-bridge/dist/testing/expect-type.js +4 -0
- package/vendor/websocket-bridge/dist/testing/expect-type.js.map +1 -0
- package/vendor/websocket-bridge/dist/testing/sample-diagram-ws-config.d.ts +28 -0
- package/vendor/websocket-bridge/dist/testing/sample-diagram-ws-config.d.ts.map +1 -0
- package/vendor/websocket-bridge/dist/testing/sample-diagram-ws-config.js +13 -0
- package/vendor/websocket-bridge/dist/testing/sample-diagram-ws-config.js.map +1 -0
- package/vendor/websocket-bridge/dist/testing/sample-ping-ws-config.d.ts +18 -0
- package/vendor/websocket-bridge/dist/testing/sample-ping-ws-config.d.ts.map +1 -0
- package/vendor/websocket-bridge/dist/testing/sample-ping-ws-config.js +11 -0
- package/vendor/websocket-bridge/dist/testing/sample-ping-ws-config.js.map +1 -0
- package/vendor/websocket-bridge/dist/testing/transport-test-helpers.d.ts +7 -0
- package/vendor/websocket-bridge/dist/testing/transport-test-helpers.d.ts.map +1 -0
- package/vendor/websocket-bridge/dist/testing/transport-test-helpers.js +35 -0
- package/vendor/websocket-bridge/dist/testing/transport-test-helpers.js.map +1 -0
- package/vendor/websocket-bridge/package.json +26 -0
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@langflower/shared",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/constants/defaults.js",
|
|
6
|
+
"types": "./dist/constants/defaults.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/constants/defaults.d.ts",
|
|
10
|
+
"import": "./dist/constants/defaults.js"
|
|
11
|
+
},
|
|
12
|
+
"./constants/defaults": {
|
|
13
|
+
"types": "./dist/constants/defaults.d.ts",
|
|
14
|
+
"import": "./dist/constants/defaults.js"
|
|
15
|
+
},
|
|
16
|
+
"./constants/defaults.js": {
|
|
17
|
+
"types": "./dist/constants/defaults.d.ts",
|
|
18
|
+
"import": "./dist/constants/defaults.js"
|
|
19
|
+
},
|
|
20
|
+
"./types/config": {
|
|
21
|
+
"types": "./dist/types/config.d.ts",
|
|
22
|
+
"import": "./dist/types/config.js"
|
|
23
|
+
},
|
|
24
|
+
"./types/config.js": {
|
|
25
|
+
"types": "./dist/types/config.d.ts",
|
|
26
|
+
"import": "./dist/types/config.js"
|
|
27
|
+
},
|
|
28
|
+
"./langflower": {
|
|
29
|
+
"types": "./dist/langflower.d.ts",
|
|
30
|
+
"import": "./dist/langflower.js"
|
|
31
|
+
},
|
|
32
|
+
"./langflower.js": {
|
|
33
|
+
"types": "./dist/langflower.d.ts",
|
|
34
|
+
"import": "./dist/langflower.js"
|
|
35
|
+
},
|
|
36
|
+
"./langflower-ws-waits": {
|
|
37
|
+
"types": "./dist/langflower-ws-waits.d.ts",
|
|
38
|
+
"import": "./dist/langflower-ws-waits.js"
|
|
39
|
+
},
|
|
40
|
+
"./langflower-ws-waits.js": {
|
|
41
|
+
"types": "./dist/langflower-ws-waits.d.ts",
|
|
42
|
+
"import": "./dist/langflower-ws-waits.js"
|
|
43
|
+
},
|
|
44
|
+
"./types/langflower-server": {
|
|
45
|
+
"types": "./dist/types/langflower-server.d.ts",
|
|
46
|
+
"import": "./dist/types/langflower-server.js"
|
|
47
|
+
},
|
|
48
|
+
"./types/langflower-workflow": {
|
|
49
|
+
"types": "./dist/types/langflower-workflow.d.ts",
|
|
50
|
+
"import": "./dist/types/langflower-workflow.js"
|
|
51
|
+
},
|
|
52
|
+
"./types/langflower-bootstrap": {
|
|
53
|
+
"types": "./dist/types/langflower-bootstrap.d.ts",
|
|
54
|
+
"import": "./dist/types/langflower-bootstrap.js"
|
|
55
|
+
},
|
|
56
|
+
"./types/langflower-config": {
|
|
57
|
+
"types": "./dist/types/langflower-config.d.ts",
|
|
58
|
+
"import": "./dist/types/langflower-config.js"
|
|
59
|
+
},
|
|
60
|
+
"./types/langflower-palette": {
|
|
61
|
+
"types": "./dist/types/langflower-palette.d.ts",
|
|
62
|
+
"import": "./dist/types/langflower-palette.js"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"dependencies": {
|
|
66
|
+
"@langflower/node-sdk": "file:../node-sdk",
|
|
67
|
+
"@langflower/runtime": "file:../runtime",
|
|
68
|
+
"@langflower/websocket-bridge": "file:../websocket-bridge",
|
|
69
|
+
"rxjs": "^7.8.1"
|
|
70
|
+
},
|
|
71
|
+
"files": [
|
|
72
|
+
"dist"
|
|
73
|
+
]
|
|
74
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare const BUILTIN_TOOL_IDS: readonly ["read", "glob", "grep", "edit", "write", "create", "delete", "bash"];
|
|
2
|
+
export type BuiltinToolId = (typeof BUILTIN_TOOL_IDS)[number];
|
|
3
|
+
export type BuiltinToolRegistration = {
|
|
4
|
+
readonly toolId: string;
|
|
5
|
+
readonly name: string;
|
|
6
|
+
readonly description: string;
|
|
7
|
+
readonly inputSchema: object;
|
|
8
|
+
};
|
|
9
|
+
export declare const BUILTIN_REGISTRATIONS: readonly BuiltinToolRegistration[];
|
|
10
|
+
//# sourceMappingURL=builtin-schemas.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"builtin-schemas.d.ts","sourceRoot":"","sources":["../src/builtin-schemas.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,gBAAgB,gFASnB,CAAC;AAEX,MAAM,MAAM,aAAa,GAAG,CAAC,OAAO,gBAAgB,CAAC,CAAC,MAAM,CAAC,CAAC;AAE9D,MAAM,MAAM,uBAAuB,GAAG;IACrC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;CAC7B,CAAC;AAOF,eAAO,MAAM,qBAAqB,EAAE,SAAS,uBAAuB,EA6InE,CAAC"}
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
export const BUILTIN_TOOL_IDS = [
|
|
2
|
+
'read',
|
|
3
|
+
'glob',
|
|
4
|
+
'grep',
|
|
5
|
+
'edit',
|
|
6
|
+
'write',
|
|
7
|
+
'create',
|
|
8
|
+
'delete',
|
|
9
|
+
'bash',
|
|
10
|
+
];
|
|
11
|
+
const stringProp = (description) => ({
|
|
12
|
+
type: 'string',
|
|
13
|
+
description,
|
|
14
|
+
});
|
|
15
|
+
export const BUILTIN_REGISTRATIONS = [
|
|
16
|
+
{
|
|
17
|
+
toolId: 'read',
|
|
18
|
+
name: 'read',
|
|
19
|
+
description: 'Read a file under the project root. Optional startLine/endLine (1-based) or offset/limit (byte-ish line slices). Optional postProcess: source of (res: string) => string.',
|
|
20
|
+
inputSchema: {
|
|
21
|
+
type: 'object',
|
|
22
|
+
properties: {
|
|
23
|
+
path: stringProp('Project-relative file path'),
|
|
24
|
+
startLine: { type: 'number', description: '1-based start line' },
|
|
25
|
+
endLine: { type: 'number', description: '1-based end line (inclusive)' },
|
|
26
|
+
offset: { type: 'number', description: '0-based line offset' },
|
|
27
|
+
limit: { type: 'number', description: 'Max lines to return' },
|
|
28
|
+
postProcess: stringProp('Optional source of (res: string) => string applied after a successful read'),
|
|
29
|
+
},
|
|
30
|
+
required: ['path'],
|
|
31
|
+
additionalProperties: false,
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
toolId: 'glob',
|
|
36
|
+
name: 'glob',
|
|
37
|
+
description: 'List files matching a glob under the project root (gitignore-aware by default). Optional postProcess.',
|
|
38
|
+
inputSchema: {
|
|
39
|
+
type: 'object',
|
|
40
|
+
properties: {
|
|
41
|
+
pattern: stringProp('Glob pattern, e.g. **/*.ts'),
|
|
42
|
+
cwd: stringProp('Optional subdirectory relative to project root'),
|
|
43
|
+
respectGitignore: {
|
|
44
|
+
type: 'boolean',
|
|
45
|
+
description: 'Default true',
|
|
46
|
+
},
|
|
47
|
+
postProcess: stringProp('Optional source of (res: string) => string'),
|
|
48
|
+
},
|
|
49
|
+
required: ['pattern'],
|
|
50
|
+
additionalProperties: false,
|
|
51
|
+
},
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
toolId: 'grep',
|
|
55
|
+
name: 'grep',
|
|
56
|
+
description: 'Regex search across project files (gitignore-aware by default; Node walk — not ripgrep). Optional postProcess.',
|
|
57
|
+
inputSchema: {
|
|
58
|
+
type: 'object',
|
|
59
|
+
properties: {
|
|
60
|
+
pattern: stringProp('JavaScript RegExp source'),
|
|
61
|
+
path: stringProp('Optional subdirectory or file to search'),
|
|
62
|
+
caseInsensitive: { type: 'boolean' },
|
|
63
|
+
respectGitignore: {
|
|
64
|
+
type: 'boolean',
|
|
65
|
+
description: 'Default true',
|
|
66
|
+
},
|
|
67
|
+
postProcess: stringProp('Optional source of (res: string) => string'),
|
|
68
|
+
},
|
|
69
|
+
required: ['pattern'],
|
|
70
|
+
additionalProperties: false,
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
toolId: 'edit',
|
|
75
|
+
name: 'edit',
|
|
76
|
+
description: 'Exact string replace in a file. Fails if oldString is missing or not unique.',
|
|
77
|
+
inputSchema: {
|
|
78
|
+
type: 'object',
|
|
79
|
+
properties: {
|
|
80
|
+
path: stringProp('Project-relative file path'),
|
|
81
|
+
oldString: stringProp('Exact text to find'),
|
|
82
|
+
newString: stringProp('Replacement text'),
|
|
83
|
+
},
|
|
84
|
+
required: ['path', 'oldString', 'newString'],
|
|
85
|
+
additionalProperties: false,
|
|
86
|
+
},
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
toolId: 'write',
|
|
90
|
+
name: 'write',
|
|
91
|
+
description: 'Write or overwrite a file (creates parent directories). Prefer create for new-only files.',
|
|
92
|
+
inputSchema: {
|
|
93
|
+
type: 'object',
|
|
94
|
+
properties: {
|
|
95
|
+
path: stringProp('Project-relative file path'),
|
|
96
|
+
content: stringProp('Full file contents'),
|
|
97
|
+
},
|
|
98
|
+
required: ['path', 'content'],
|
|
99
|
+
additionalProperties: false,
|
|
100
|
+
},
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
toolId: 'create',
|
|
104
|
+
name: 'create',
|
|
105
|
+
description: 'Create a new file. Fails if the path already exists (use write to overwrite).',
|
|
106
|
+
inputSchema: {
|
|
107
|
+
type: 'object',
|
|
108
|
+
properties: {
|
|
109
|
+
path: stringProp('Project-relative file path'),
|
|
110
|
+
content: stringProp('Initial file contents'),
|
|
111
|
+
},
|
|
112
|
+
required: ['path', 'content'],
|
|
113
|
+
additionalProperties: false,
|
|
114
|
+
},
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
toolId: 'delete',
|
|
118
|
+
name: 'delete',
|
|
119
|
+
description: 'Delete a file under the project root.',
|
|
120
|
+
inputSchema: {
|
|
121
|
+
type: 'object',
|
|
122
|
+
properties: {
|
|
123
|
+
path: stringProp('Project-relative file path'),
|
|
124
|
+
},
|
|
125
|
+
required: ['path'],
|
|
126
|
+
additionalProperties: false,
|
|
127
|
+
},
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
toolId: 'bash',
|
|
131
|
+
name: 'bash',
|
|
132
|
+
description: 'Run a shell command in the project root. Disabled unless the harness enables bash (default-deny). Not read-class — no postProcess.',
|
|
133
|
+
inputSchema: {
|
|
134
|
+
type: 'object',
|
|
135
|
+
properties: {
|
|
136
|
+
command: stringProp('Shell command to run'),
|
|
137
|
+
cwd: stringProp('Optional subdirectory relative to project root'),
|
|
138
|
+
},
|
|
139
|
+
required: ['command'],
|
|
140
|
+
additionalProperties: false,
|
|
141
|
+
},
|
|
142
|
+
},
|
|
143
|
+
];
|
|
144
|
+
//# sourceMappingURL=builtin-schemas.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"builtin-schemas.js","sourceRoot":"","sources":["../src/builtin-schemas.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC/B,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM;IACN,OAAO;IACP,QAAQ;IACR,QAAQ;IACR,MAAM;CACG,CAAC;AAWX,MAAM,UAAU,GAAG,CAAC,WAAmB,EAAE,EAAE,CAAC,CAAC;IAC5C,IAAI,EAAE,QAAQ;IACd,WAAW;CACX,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,qBAAqB,GAAuC;IACxE;QACC,MAAM,EAAE,MAAM;QACd,IAAI,EAAE,MAAM;QACZ,WAAW,EACV,2KAA2K;QAC5K,WAAW,EAAE;YACZ,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE;gBACX,IAAI,EAAE,UAAU,CAAC,4BAA4B,CAAC;gBAC9C,SAAS,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,oBAAoB,EAAE;gBAChE,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,8BAA8B,EAAE;gBACxE,MAAM,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,qBAAqB,EAAE;gBAC9D,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,qBAAqB,EAAE;gBAC7D,WAAW,EAAE,UAAU,CACtB,4EAA4E,CAC5E;aACD;YACD,QAAQ,EAAE,CAAC,MAAM,CAAC;YAClB,oBAAoB,EAAE,KAAK;SAC3B;KACD;IACD;QACC,MAAM,EAAE,MAAM;QACd,IAAI,EAAE,MAAM;QACZ,WAAW,EACV,uGAAuG;QACxG,WAAW,EAAE;YACZ,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE;gBACX,OAAO,EAAE,UAAU,CAAC,4BAA4B,CAAC;gBACjD,GAAG,EAAE,UAAU,CAAC,gDAAgD,CAAC;gBACjE,gBAAgB,EAAE;oBACjB,IAAI,EAAE,SAAS;oBACf,WAAW,EAAE,cAAc;iBAC3B;gBACD,WAAW,EAAE,UAAU,CACtB,4CAA4C,CAC5C;aACD;YACD,QAAQ,EAAE,CAAC,SAAS,CAAC;YACrB,oBAAoB,EAAE,KAAK;SAC3B;KACD;IACD;QACC,MAAM,EAAE,MAAM;QACd,IAAI,EAAE,MAAM;QACZ,WAAW,EACV,gHAAgH;QACjH,WAAW,EAAE;YACZ,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE;gBACX,OAAO,EAAE,UAAU,CAAC,0BAA0B,CAAC;gBAC/C,IAAI,EAAE,UAAU,CAAC,yCAAyC,CAAC;gBAC3D,eAAe,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;gBACpC,gBAAgB,EAAE;oBACjB,IAAI,EAAE,SAAS;oBACf,WAAW,EAAE,cAAc;iBAC3B;gBACD,WAAW,EAAE,UAAU,CACtB,4CAA4C,CAC5C;aACD;YACD,QAAQ,EAAE,CAAC,SAAS,CAAC;YACrB,oBAAoB,EAAE,KAAK;SAC3B;KACD;IACD;QACC,MAAM,EAAE,MAAM;QACd,IAAI,EAAE,MAAM;QACZ,WAAW,EACV,8EAA8E;QAC/E,WAAW,EAAE;YACZ,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE;gBACX,IAAI,EAAE,UAAU,CAAC,4BAA4B,CAAC;gBAC9C,SAAS,EAAE,UAAU,CAAC,oBAAoB,CAAC;gBAC3C,SAAS,EAAE,UAAU,CAAC,kBAAkB,CAAC;aACzC;YACD,QAAQ,EAAE,CAAC,MAAM,EAAE,WAAW,EAAE,WAAW,CAAC;YAC5C,oBAAoB,EAAE,KAAK;SAC3B;KACD;IACD;QACC,MAAM,EAAE,OAAO;QACf,IAAI,EAAE,OAAO;QACb,WAAW,EACV,2FAA2F;QAC5F,WAAW,EAAE;YACZ,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE;gBACX,IAAI,EAAE,UAAU,CAAC,4BAA4B,CAAC;gBAC9C,OAAO,EAAE,UAAU,CAAC,oBAAoB,CAAC;aACzC;YACD,QAAQ,EAAE,CAAC,MAAM,EAAE,SAAS,CAAC;YAC7B,oBAAoB,EAAE,KAAK;SAC3B;KACD;IACD;QACC,MAAM,EAAE,QAAQ;QAChB,IAAI,EAAE,QAAQ;QACd,WAAW,EACV,+EAA+E;QAChF,WAAW,EAAE;YACZ,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE;gBACX,IAAI,EAAE,UAAU,CAAC,4BAA4B,CAAC;gBAC9C,OAAO,EAAE,UAAU,CAAC,uBAAuB,CAAC;aAC5C;YACD,QAAQ,EAAE,CAAC,MAAM,EAAE,SAAS,CAAC;YAC7B,oBAAoB,EAAE,KAAK;SAC3B;KACD;IACD;QACC,MAAM,EAAE,QAAQ;QAChB,IAAI,EAAE,QAAQ;QACd,WAAW,EAAE,uCAAuC;QACpD,WAAW,EAAE;YACZ,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE;gBACX,IAAI,EAAE,UAAU,CAAC,4BAA4B,CAAC;aAC9C;YACD,QAAQ,EAAE,CAAC,MAAM,CAAC;YAClB,oBAAoB,EAAE,KAAK;SAC3B;KACD;IACD;QACC,MAAM,EAAE,MAAM;QACd,IAAI,EAAE,MAAM;QACZ,WAAW,EACV,oIAAoI;QACrI,WAAW,EAAE;YACZ,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE;gBACX,OAAO,EAAE,UAAU,CAAC,sBAAsB,CAAC;gBAC3C,GAAG,EAAE,UAAU,CAAC,gDAAgD,CAAC;aACjE;YACD,QAAQ,EAAE,CAAC,SAAS,CAAC;YACrB,oBAAoB,EAAE,KAAK;SAC3B;KACD;CACD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"apply-post-process.d.ts","sourceRoot":"","sources":["../../src/builtins/apply-post-process.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,gBAAgB,GAC5B,MAAM,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,EACvC,MAAM,MAAM,KACV,MAQF,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { runReadClassPostProcess } from '../post-process.js';
|
|
2
|
+
import { asString } from './args.js';
|
|
3
|
+
export const applyPostProcess = (args, text) => {
|
|
4
|
+
const source = asString(args, 'postProcess');
|
|
5
|
+
if (source === undefined || source.trim().length === 0) {
|
|
6
|
+
return text;
|
|
7
|
+
}
|
|
8
|
+
return runReadClassPostProcess(source, text);
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=apply-post-process.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"apply-post-process.js","sourceRoot":"","sources":["../../src/builtins/apply-post-process.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,oBAAoB,CAAC;AAC7D,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAErC,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAC/B,IAAuC,EACvC,IAAY,EACH,EAAE;IACX,MAAM,MAAM,GAAG,QAAQ,CAAC,IAAI,EAAE,aAAa,CAAC,CAAC;IAE7C,IAAI,MAAM,KAAK,SAAS,IAAI,MAAM,CAAC,IAAI,EAAE,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QACxD,OAAO,IAAI,CAAC;IACb,CAAC;IAED,OAAO,uBAAuB,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;AAC9C,CAAC,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export declare const asString: (args: Readonly<Record<string, unknown>>, key: string) => string | undefined;
|
|
2
|
+
export declare const asNumber: (args: Readonly<Record<string, unknown>>, key: string) => number | undefined;
|
|
3
|
+
export declare const asBoolean: (args: Readonly<Record<string, unknown>>, key: string, defaultValue: boolean) => boolean;
|
|
4
|
+
//# sourceMappingURL=args.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"args.d.ts","sourceRoot":"","sources":["../../src/builtins/args.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ,GACpB,MAAM,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,EACvC,KAAK,MAAM,KACT,MAAM,GAAG,SAGX,CAAC;AAEF,eAAO,MAAM,QAAQ,GACpB,MAAM,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,EACvC,KAAK,MAAM,KACT,MAAM,GAAG,SAKX,CAAC;AAEF,eAAO,MAAM,SAAS,GACrB,MAAM,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,EACvC,KAAK,MAAM,EACX,cAAc,OAAO,KACnB,OAGF,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export const asString = (args, key) => {
|
|
2
|
+
const value = args[key];
|
|
3
|
+
return typeof value === 'string' ? value : undefined;
|
|
4
|
+
};
|
|
5
|
+
export const asNumber = (args, key) => {
|
|
6
|
+
const value = args[key];
|
|
7
|
+
return typeof value === 'number' && Number.isFinite(value)
|
|
8
|
+
? value
|
|
9
|
+
: undefined;
|
|
10
|
+
};
|
|
11
|
+
export const asBoolean = (args, key, defaultValue) => {
|
|
12
|
+
const value = args[key];
|
|
13
|
+
return typeof value === 'boolean' ? value : defaultValue;
|
|
14
|
+
};
|
|
15
|
+
//# sourceMappingURL=args.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"args.js","sourceRoot":"","sources":["../../src/builtins/args.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,QAAQ,GAAG,CACvB,IAAuC,EACvC,GAAW,EACU,EAAE;IACvB,MAAM,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC;IACxB,OAAO,OAAO,KAAK,KAAK,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;AACtD,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,QAAQ,GAAG,CACvB,IAAuC,EACvC,GAAW,EACU,EAAE;IACvB,MAAM,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC;IACxB,OAAO,OAAO,KAAK,KAAK,QAAQ,IAAI,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC;QACzD,CAAC,CAAC,KAAK;QACP,CAAC,CAAC,SAAS,CAAC;AACd,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,SAAS,GAAG,CACxB,IAAuC,EACvC,GAAW,EACX,YAAqB,EACX,EAAE;IACZ,MAAM,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC;IACxB,OAAO,OAAO,KAAK,KAAK,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,YAAY,CAAC;AAC1D,CAAC,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { HandlerContext } from '../types.js';
|
|
2
|
+
export declare const bashTool: {
|
|
3
|
+
readonly id: "bash";
|
|
4
|
+
readonly registration: {
|
|
5
|
+
readonly toolId: "bash";
|
|
6
|
+
readonly name: "bash";
|
|
7
|
+
readonly description: "Run a shell command in the project root. Disabled unless the harness enables bash (default-deny). Not read-class — no postProcess.";
|
|
8
|
+
readonly inputSchema: {
|
|
9
|
+
readonly type: "object";
|
|
10
|
+
readonly properties: {
|
|
11
|
+
readonly command: {
|
|
12
|
+
readonly type: "string";
|
|
13
|
+
readonly description: "Shell command to run";
|
|
14
|
+
};
|
|
15
|
+
readonly cwd: {
|
|
16
|
+
readonly type: "string";
|
|
17
|
+
readonly description: "Optional subdirectory relative to project root";
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
readonly required: readonly ["command"];
|
|
21
|
+
readonly additionalProperties: false;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
readonly invoke: (ctx: HandlerContext, args: Readonly<Record<string, unknown>>) => Promise<string>;
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=tool.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tool.d.ts","sourceRoot":"","sources":["../../../src/builtins/bash/tool.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAe,cAAc,EAAE,MAAM,aAAa,CAAC;AA0D/D,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;2BArDf,cAAc,QACb,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,KACrC,OAAO,CAAC,MAAM,CAAC;CA4EsB,CAAC"}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { spawn } from 'node:child_process';
|
|
2
|
+
import { resolveProjectPath } from '../../path-sandbox.js';
|
|
3
|
+
import { asString } from '../args.js';
|
|
4
|
+
import { fenceOptions } from '../fence.js';
|
|
5
|
+
const MAX_BASH_OUTPUT = 100_000;
|
|
6
|
+
const invoke = async (ctx, args) => {
|
|
7
|
+
if (!ctx.bashEnabled) {
|
|
8
|
+
throw new Error('bash is disabled (default-deny). Enable bash on the project harness to run shell commands.');
|
|
9
|
+
}
|
|
10
|
+
const command = asString(args, 'command');
|
|
11
|
+
if (command === undefined || command.trim().length === 0) {
|
|
12
|
+
throw new Error('bash requires string argument «command».');
|
|
13
|
+
}
|
|
14
|
+
const cwdArg = asString(args, 'cwd') ?? '.';
|
|
15
|
+
const cwd = resolveProjectPath(ctx.projectRoot, cwdArg, fenceOptions(ctx));
|
|
16
|
+
return await new Promise((resolve, reject) => {
|
|
17
|
+
const child = spawn(command, {
|
|
18
|
+
cwd,
|
|
19
|
+
shell: true,
|
|
20
|
+
windowsHide: true,
|
|
21
|
+
});
|
|
22
|
+
let stdout = '';
|
|
23
|
+
let stderr = '';
|
|
24
|
+
child.stdout?.on('data', (chunk) => {
|
|
25
|
+
stdout += String(chunk);
|
|
26
|
+
if (stdout.length > MAX_BASH_OUTPUT) {
|
|
27
|
+
stdout = stdout.slice(0, MAX_BASH_OUTPUT);
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
child.stderr?.on('data', (chunk) => {
|
|
31
|
+
stderr += String(chunk);
|
|
32
|
+
if (stderr.length > MAX_BASH_OUTPUT) {
|
|
33
|
+
stderr = stderr.slice(0, MAX_BASH_OUTPUT);
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
child.on('error', (error) => {
|
|
37
|
+
reject(error);
|
|
38
|
+
});
|
|
39
|
+
child.on('close', (code) => {
|
|
40
|
+
const combined = [
|
|
41
|
+
`exit ${code ?? 'null'}`,
|
|
42
|
+
stdout.length > 0 ? `stdout:\n${stdout}` : 'stdout: (empty)',
|
|
43
|
+
stderr.length > 0 ? `stderr:\n${stderr}` : 'stderr: (empty)',
|
|
44
|
+
].join('\n');
|
|
45
|
+
resolve(combined);
|
|
46
|
+
});
|
|
47
|
+
});
|
|
48
|
+
};
|
|
49
|
+
export const bashTool = {
|
|
50
|
+
id: 'bash',
|
|
51
|
+
registration: {
|
|
52
|
+
toolId: 'bash',
|
|
53
|
+
name: 'bash',
|
|
54
|
+
description: 'Run a shell command in the project root. Disabled unless the harness enables bash (default-deny). Not read-class — no postProcess.',
|
|
55
|
+
inputSchema: {
|
|
56
|
+
type: 'object',
|
|
57
|
+
properties: {
|
|
58
|
+
command: {
|
|
59
|
+
type: 'string',
|
|
60
|
+
description: 'Shell command to run',
|
|
61
|
+
},
|
|
62
|
+
cwd: {
|
|
63
|
+
type: 'string',
|
|
64
|
+
description: 'Optional subdirectory relative to project root',
|
|
65
|
+
},
|
|
66
|
+
},
|
|
67
|
+
required: ['command'],
|
|
68
|
+
additionalProperties: false,
|
|
69
|
+
},
|
|
70
|
+
},
|
|
71
|
+
invoke,
|
|
72
|
+
};
|
|
73
|
+
//# sourceMappingURL=tool.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tool.js","sourceRoot":"","sources":["../../../src/builtins/bash/tool.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,oBAAoB,CAAC;AAC3C,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAC3D,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAG3C,MAAM,eAAe,GAAG,OAAO,CAAC;AAEhC,MAAM,MAAM,GAAG,KAAK,EACnB,GAAmB,EACnB,IAAuC,EACrB,EAAE;IACpB,IAAI,CAAC,GAAG,CAAC,WAAW,EAAE,CAAC;QACtB,MAAM,IAAI,KAAK,CACd,4FAA4F,CAC5F,CAAC;IACH,CAAC;IAED,MAAM,OAAO,GAAG,QAAQ,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;IAE1C,IAAI,OAAO,KAAK,SAAS,IAAI,OAAO,CAAC,IAAI,EAAE,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QAC1D,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;IAC7D,CAAC;IAED,MAAM,MAAM,GAAG,QAAQ,CAAC,IAAI,EAAE,KAAK,CAAC,IAAI,GAAG,CAAC;IAC5C,MAAM,GAAG,GAAG,kBAAkB,CAAC,GAAG,CAAC,WAAW,EAAE,MAAM,EAAE,YAAY,CAAC,GAAG,CAAC,CAAC,CAAC;IAE3E,OAAO,MAAM,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;QAC5C,MAAM,KAAK,GAAG,KAAK,CAAC,OAAO,EAAE;YAC5B,GAAG;YACH,KAAK,EAAE,IAAI;YACX,WAAW,EAAE,IAAI;SACjB,CAAC,CAAC;QACH,IAAI,MAAM,GAAG,EAAE,CAAC;QAChB,IAAI,MAAM,GAAG,EAAE,CAAC;QAEhB,KAAK,CAAC,MAAM,EAAE,EAAE,CAAC,MAAM,EAAE,CAAC,KAAsB,EAAE,EAAE;YACnD,MAAM,IAAI,MAAM,CAAC,KAAK,CAAC,CAAC;YACxB,IAAI,MAAM,CAAC,MAAM,GAAG,eAAe,EAAE,CAAC;gBACrC,MAAM,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,eAAe,CAAC,CAAC;YAC3C,CAAC;QACF,CAAC,CAAC,CAAC;QACH,KAAK,CAAC,MAAM,EAAE,EAAE,CAAC,MAAM,EAAE,CAAC,KAAsB,EAAE,EAAE;YACnD,MAAM,IAAI,MAAM,CAAC,KAAK,CAAC,CAAC;YACxB,IAAI,MAAM,CAAC,MAAM,GAAG,eAAe,EAAE,CAAC;gBACrC,MAAM,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,eAAe,CAAC,CAAC;YAC3C,CAAC;QACF,CAAC,CAAC,CAAC;QACH,KAAK,CAAC,EAAE,CAAC,OAAO,EAAE,CAAC,KAAK,EAAE,EAAE;YAC3B,MAAM,CAAC,KAAK,CAAC,CAAC;QACf,CAAC,CAAC,CAAC;QACH,KAAK,CAAC,EAAE,CAAC,OAAO,EAAE,CAAC,IAAI,EAAE,EAAE;YAC1B,MAAM,QAAQ,GAAG;gBAChB,QAAQ,IAAI,IAAI,MAAM,EAAE;gBACxB,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,YAAY,MAAM,EAAE,CAAC,CAAC,CAAC,iBAAiB;gBAC5D,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,YAAY,MAAM,EAAE,CAAC,CAAC,CAAC,iBAAiB;aAC5D,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YACb,OAAO,CAAC,QAAQ,CAAC,CAAC;QACnB,CAAC,CAAC,CAAC;IACJ,CAAC,CAAC,CAAC;AACJ,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,QAAQ,GAAG;IACvB,EAAE,EAAE,MAAM;IACV,YAAY,EAAE;QACb,MAAM,EAAE,MAAM;QACd,IAAI,EAAE,MAAM;QACZ,WAAW,EACV,oIAAoI;QACrI,WAAW,EAAE;YACZ,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE;gBACX,OAAO,EAAE;oBACR,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,sBAAsB;iBACnC;gBACD,GAAG,EAAE;oBACJ,IAAI,EAAE,QAAQ;oBACd,WAAW,EACV,gDAAgD;iBACjD;aACD;YACD,QAAQ,EAAE,CAAC,SAAS,CAAC;YACrB,oBAAoB,EAAE,KAAK;SAC3B;KACD;IACD,MAAM;CACiC,CAAC"}
|
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
import type { BuiltinToolRegistration, HandlerContext } from './types.js';
|
|
2
|
+
/** Composer: builtin order for inventory + invoke dispatch. */
|
|
3
|
+
export declare const BUILTIN_TOOLS: readonly [{
|
|
4
|
+
readonly id: "read";
|
|
5
|
+
readonly registration: {
|
|
6
|
+
readonly toolId: "read";
|
|
7
|
+
readonly name: "read";
|
|
8
|
+
readonly description: "Read a file under the project root. Optional startLine/endLine (1-based) or offset/limit (byte-ish line slices). Optional postProcess: source of (res: string) => string.";
|
|
9
|
+
readonly inputSchema: {
|
|
10
|
+
readonly type: "object";
|
|
11
|
+
readonly properties: {
|
|
12
|
+
readonly path: {
|
|
13
|
+
readonly type: "string";
|
|
14
|
+
readonly description: "Project-relative file path";
|
|
15
|
+
};
|
|
16
|
+
readonly startLine: {
|
|
17
|
+
readonly type: "number";
|
|
18
|
+
readonly description: "1-based start line";
|
|
19
|
+
};
|
|
20
|
+
readonly endLine: {
|
|
21
|
+
readonly type: "number";
|
|
22
|
+
readonly description: "1-based end line (inclusive)";
|
|
23
|
+
};
|
|
24
|
+
readonly offset: {
|
|
25
|
+
readonly type: "number";
|
|
26
|
+
readonly description: "0-based line offset";
|
|
27
|
+
};
|
|
28
|
+
readonly limit: {
|
|
29
|
+
readonly type: "number";
|
|
30
|
+
readonly description: "Max lines to return";
|
|
31
|
+
};
|
|
32
|
+
readonly postProcess: {
|
|
33
|
+
readonly type: "string";
|
|
34
|
+
readonly description: "Optional source of (res: string) => string applied after a successful read";
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
readonly required: readonly ["path"];
|
|
38
|
+
readonly additionalProperties: false;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
readonly invoke: (ctx: HandlerContext, args: Readonly<Record<string, unknown>>) => Promise<string>;
|
|
42
|
+
}, {
|
|
43
|
+
readonly id: "glob";
|
|
44
|
+
readonly registration: {
|
|
45
|
+
readonly toolId: "glob";
|
|
46
|
+
readonly name: "glob";
|
|
47
|
+
readonly description: "List files matching a glob under the project root (gitignore-aware by default). Optional postProcess.";
|
|
48
|
+
readonly inputSchema: {
|
|
49
|
+
readonly type: "object";
|
|
50
|
+
readonly properties: {
|
|
51
|
+
readonly pattern: {
|
|
52
|
+
readonly type: "string";
|
|
53
|
+
readonly description: "Glob pattern, e.g. **/*.ts";
|
|
54
|
+
};
|
|
55
|
+
readonly cwd: {
|
|
56
|
+
readonly type: "string";
|
|
57
|
+
readonly description: "Optional subdirectory relative to project root";
|
|
58
|
+
};
|
|
59
|
+
readonly respectGitignore: {
|
|
60
|
+
readonly type: "boolean";
|
|
61
|
+
readonly description: "Default true";
|
|
62
|
+
};
|
|
63
|
+
readonly postProcess: {
|
|
64
|
+
readonly type: "string";
|
|
65
|
+
readonly description: "Optional source of (res: string) => string";
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
readonly required: readonly ["pattern"];
|
|
69
|
+
readonly additionalProperties: false;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
readonly invoke: (ctx: HandlerContext, args: Readonly<Record<string, unknown>>) => Promise<string>;
|
|
73
|
+
}, {
|
|
74
|
+
readonly id: "grep";
|
|
75
|
+
readonly registration: {
|
|
76
|
+
readonly toolId: "grep";
|
|
77
|
+
readonly name: "grep";
|
|
78
|
+
readonly description: "Regex search across project files (gitignore-aware by default; Node walk — not ripgrep). Optional postProcess.";
|
|
79
|
+
readonly inputSchema: {
|
|
80
|
+
readonly type: "object";
|
|
81
|
+
readonly properties: {
|
|
82
|
+
readonly pattern: {
|
|
83
|
+
readonly type: "string";
|
|
84
|
+
readonly description: "JavaScript RegExp source";
|
|
85
|
+
};
|
|
86
|
+
readonly path: {
|
|
87
|
+
readonly type: "string";
|
|
88
|
+
readonly description: "Optional subdirectory or file to search";
|
|
89
|
+
};
|
|
90
|
+
readonly caseInsensitive: {
|
|
91
|
+
readonly type: "boolean";
|
|
92
|
+
};
|
|
93
|
+
readonly respectGitignore: {
|
|
94
|
+
readonly type: "boolean";
|
|
95
|
+
readonly description: "Default true";
|
|
96
|
+
};
|
|
97
|
+
readonly postProcess: {
|
|
98
|
+
readonly type: "string";
|
|
99
|
+
readonly description: "Optional source of (res: string) => string";
|
|
100
|
+
};
|
|
101
|
+
};
|
|
102
|
+
readonly required: readonly ["pattern"];
|
|
103
|
+
readonly additionalProperties: false;
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
readonly invoke: (ctx: HandlerContext, args: Readonly<Record<string, unknown>>) => Promise<string>;
|
|
107
|
+
}, {
|
|
108
|
+
readonly id: "edit";
|
|
109
|
+
readonly registration: {
|
|
110
|
+
readonly toolId: "edit";
|
|
111
|
+
readonly name: "edit";
|
|
112
|
+
readonly description: "Exact string replace in a file. Fails if oldString is missing or not unique.";
|
|
113
|
+
readonly inputSchema: {
|
|
114
|
+
readonly type: "object";
|
|
115
|
+
readonly properties: {
|
|
116
|
+
readonly path: {
|
|
117
|
+
readonly type: "string";
|
|
118
|
+
readonly description: "Project-relative file path";
|
|
119
|
+
};
|
|
120
|
+
readonly oldString: {
|
|
121
|
+
readonly type: "string";
|
|
122
|
+
readonly description: "Exact text to find";
|
|
123
|
+
};
|
|
124
|
+
readonly newString: {
|
|
125
|
+
readonly type: "string";
|
|
126
|
+
readonly description: "Replacement text";
|
|
127
|
+
};
|
|
128
|
+
};
|
|
129
|
+
readonly required: readonly ["path", "oldString", "newString"];
|
|
130
|
+
readonly additionalProperties: false;
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
readonly invoke: (ctx: HandlerContext, args: Readonly<Record<string, unknown>>) => Promise<string>;
|
|
134
|
+
}, {
|
|
135
|
+
readonly id: "write";
|
|
136
|
+
readonly registration: {
|
|
137
|
+
readonly toolId: "write";
|
|
138
|
+
readonly name: "write";
|
|
139
|
+
readonly description: "Write or overwrite a file (creates parent directories). Prefer create for new-only files.";
|
|
140
|
+
readonly inputSchema: {
|
|
141
|
+
readonly type: "object";
|
|
142
|
+
readonly properties: {
|
|
143
|
+
readonly path: {
|
|
144
|
+
readonly type: "string";
|
|
145
|
+
readonly description: "Project-relative file path";
|
|
146
|
+
};
|
|
147
|
+
readonly content: {
|
|
148
|
+
readonly type: "string";
|
|
149
|
+
readonly description: "Full file contents";
|
|
150
|
+
};
|
|
151
|
+
};
|
|
152
|
+
readonly required: readonly ["path", "content"];
|
|
153
|
+
readonly additionalProperties: false;
|
|
154
|
+
};
|
|
155
|
+
};
|
|
156
|
+
readonly invoke: (ctx: HandlerContext, args: Readonly<Record<string, unknown>>) => Promise<string>;
|
|
157
|
+
}, {
|
|
158
|
+
readonly id: "create";
|
|
159
|
+
readonly registration: {
|
|
160
|
+
readonly toolId: "create";
|
|
161
|
+
readonly name: "create";
|
|
162
|
+
readonly description: "Create a new file. Fails if the path already exists (use write to overwrite).";
|
|
163
|
+
readonly inputSchema: {
|
|
164
|
+
readonly type: "object";
|
|
165
|
+
readonly properties: {
|
|
166
|
+
readonly path: {
|
|
167
|
+
readonly type: "string";
|
|
168
|
+
readonly description: "Project-relative file path";
|
|
169
|
+
};
|
|
170
|
+
readonly content: {
|
|
171
|
+
readonly type: "string";
|
|
172
|
+
readonly description: "Initial file contents";
|
|
173
|
+
};
|
|
174
|
+
};
|
|
175
|
+
readonly required: readonly ["path", "content"];
|
|
176
|
+
readonly additionalProperties: false;
|
|
177
|
+
};
|
|
178
|
+
};
|
|
179
|
+
readonly invoke: (ctx: HandlerContext, args: Readonly<Record<string, unknown>>) => Promise<string>;
|
|
180
|
+
}, {
|
|
181
|
+
readonly id: "delete";
|
|
182
|
+
readonly registration: {
|
|
183
|
+
readonly toolId: "delete";
|
|
184
|
+
readonly name: "delete";
|
|
185
|
+
readonly description: "Delete a file under the project root.";
|
|
186
|
+
readonly inputSchema: {
|
|
187
|
+
readonly type: "object";
|
|
188
|
+
readonly properties: {
|
|
189
|
+
readonly path: {
|
|
190
|
+
readonly type: "string";
|
|
191
|
+
readonly description: "Project-relative file path";
|
|
192
|
+
};
|
|
193
|
+
};
|
|
194
|
+
readonly required: readonly ["path"];
|
|
195
|
+
readonly additionalProperties: false;
|
|
196
|
+
};
|
|
197
|
+
};
|
|
198
|
+
readonly invoke: (ctx: HandlerContext, args: Readonly<Record<string, unknown>>) => Promise<string>;
|
|
199
|
+
}, {
|
|
200
|
+
readonly id: "bash";
|
|
201
|
+
readonly registration: {
|
|
202
|
+
readonly toolId: "bash";
|
|
203
|
+
readonly name: "bash";
|
|
204
|
+
readonly description: "Run a shell command in the project root. Disabled unless the harness enables bash (default-deny). Not read-class — no postProcess.";
|
|
205
|
+
readonly inputSchema: {
|
|
206
|
+
readonly type: "object";
|
|
207
|
+
readonly properties: {
|
|
208
|
+
readonly command: {
|
|
209
|
+
readonly type: "string";
|
|
210
|
+
readonly description: "Shell command to run";
|
|
211
|
+
};
|
|
212
|
+
readonly cwd: {
|
|
213
|
+
readonly type: "string";
|
|
214
|
+
readonly description: "Optional subdirectory relative to project root";
|
|
215
|
+
};
|
|
216
|
+
};
|
|
217
|
+
readonly required: readonly ["command"];
|
|
218
|
+
readonly additionalProperties: false;
|
|
219
|
+
};
|
|
220
|
+
};
|
|
221
|
+
readonly invoke: (ctx: HandlerContext, args: Readonly<Record<string, unknown>>) => Promise<string>;
|
|
222
|
+
}];
|
|
223
|
+
export type BuiltinToolId = (typeof BUILTIN_TOOLS)[number]['id'];
|
|
224
|
+
export declare const BUILTIN_TOOL_IDS: readonly BuiltinToolId[];
|
|
225
|
+
export declare const BUILTIN_REGISTRATIONS: readonly BuiltinToolRegistration[];
|
|
226
|
+
export declare const isBuiltinToolId: (toolId: string) => toolId is BuiltinToolId;
|
|
227
|
+
export declare const invokeBuiltin: (toolId: BuiltinToolId, ctx: HandlerContext, args: Readonly<Record<string, unknown>>) => Promise<string>;
|
|
228
|
+
export type { BuiltinToolRegistration, HandlerContext };
|
|
229
|
+
//# sourceMappingURL=catalog.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catalog.d.ts","sourceRoot":"","sources":["../../src/builtins/catalog.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,uBAAuB,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAG1E,+DAA+D;AAC/D,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAShB,CAAC;AAEX,MAAM,MAAM,aAAa,GAAG,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC;AAEjE,eAAO,MAAM,gBAAgB,EAAE,SAAS,aAAa,EAEpD,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,SAAS,uBAAuB,EACrB,CAAC;AAQhD,eAAO,MAAM,eAAe,GAAI,QAAQ,MAAM,KAAG,MAAM,IAAI,aAC/B,CAAC;AAE7B,eAAO,MAAM,aAAa,GACzB,QAAQ,aAAa,EACrB,KAAK,cAAc,EACnB,MAAM,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,KACrC,OAAO,CAAC,MAAM,CAAmC,CAAC;AAErD,YAAY,EAAE,uBAAuB,EAAE,cAAc,EAAE,CAAC"}
|