@botbotgo/runtime 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yml +46 -0
- package/.github/workflows/release.yml +79 -0
- package/README.md +71 -0
- package/config/examples/memory.yaml +39 -0
- package/config/examples/model.yaml +21 -0
- package/config/examples/runtime.yaml +44 -0
- package/config/examples/skills.yaml +8 -0
- package/config/examples/tool.yaml +16 -0
- package/dist/config/index.d.ts +7 -0
- package/dist/config/index.d.ts.map +1 -0
- package/dist/config/index.js +4 -0
- package/dist/config/index.js.map +1 -0
- package/dist/config/loader.d.ts +41 -0
- package/dist/config/loader.d.ts.map +1 -0
- package/dist/config/loader.js +140 -0
- package/dist/config/loader.js.map +1 -0
- package/dist/config/resolveRuntimeConfig.d.ts +83 -0
- package/dist/config/resolveRuntimeConfig.d.ts.map +1 -0
- package/dist/config/resolveRuntimeConfig.js +85 -0
- package/dist/config/resolveRuntimeConfig.js.map +1 -0
- package/dist/config/resources.d.ts +112 -0
- package/dist/config/resources.d.ts.map +1 -0
- package/dist/config/resources.js +20 -0
- package/dist/config/resources.js.map +1 -0
- package/dist/config/runtimeConfigLoader.d.ts +28 -0
- package/dist/config/runtimeConfigLoader.d.ts.map +1 -0
- package/dist/config/runtimeConfigLoader.js +38 -0
- package/dist/config/runtimeConfigLoader.js.map +1 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -0
- package/dist/runtime/agentMiddleware.d.ts +3 -0
- package/dist/runtime/agentMiddleware.d.ts.map +1 -0
- package/dist/runtime/agentMiddleware.js +2 -0
- package/dist/runtime/agentMiddleware.js.map +1 -0
- package/dist/runtime/bootstrap/runtimeFactory.d.ts +7 -0
- package/dist/runtime/bootstrap/runtimeFactory.d.ts.map +1 -0
- package/dist/runtime/bootstrap/runtimeFactory.js +139 -0
- package/dist/runtime/bootstrap/runtimeFactory.js.map +1 -0
- package/dist/runtime/bootstrap/runtimeModuleInitializer.d.ts +5 -0
- package/dist/runtime/bootstrap/runtimeModuleInitializer.d.ts.map +1 -0
- package/dist/runtime/bootstrap/runtimeModuleInitializer.js +32 -0
- package/dist/runtime/bootstrap/runtimeModuleInitializer.js.map +1 -0
- package/dist/runtime/context/agentContext.d.ts +5 -0
- package/dist/runtime/context/agentContext.d.ts.map +1 -0
- package/dist/runtime/context/agentContext.js +19 -0
- package/dist/runtime/context/agentContext.js.map +1 -0
- package/dist/runtime/context/globalContext.d.ts +19 -0
- package/dist/runtime/context/globalContext.d.ts.map +1 -0
- package/dist/runtime/context/globalContext.js +47 -0
- package/dist/runtime/context/globalContext.js.map +1 -0
- package/dist/runtime/events/eventPublisher.d.ts +15 -0
- package/dist/runtime/events/eventPublisher.d.ts.map +1 -0
- package/dist/runtime/events/eventPublisher.js +23 -0
- package/dist/runtime/events/eventPublisher.js.map +1 -0
- package/dist/runtime/execution/agentRunExecutor.d.ts +38 -0
- package/dist/runtime/execution/agentRunExecutor.d.ts.map +1 -0
- package/dist/runtime/execution/agentRunExecutor.js +378 -0
- package/dist/runtime/execution/agentRunExecutor.js.map +1 -0
- package/dist/runtime/execution/agentRunExecutor.types.d.ts +37 -0
- package/dist/runtime/execution/agentRunExecutor.types.d.ts.map +1 -0
- package/dist/runtime/execution/agentRunExecutor.types.js +2 -0
- package/dist/runtime/execution/agentRunExecutor.types.js.map +1 -0
- package/dist/runtime/execution/agentRunProgress.d.ts +8 -0
- package/dist/runtime/execution/agentRunProgress.d.ts.map +1 -0
- package/dist/runtime/execution/agentRunProgress.js +46 -0
- package/dist/runtime/execution/agentRunProgress.js.map +1 -0
- package/dist/runtime/execution/agentRunState.d.ts +44 -0
- package/dist/runtime/execution/agentRunState.d.ts.map +1 -0
- package/dist/runtime/execution/agentRunState.js +17 -0
- package/dist/runtime/execution/agentRunState.js.map +1 -0
- package/dist/runtime/execution/policies/runCompletionPolicy.d.ts +5 -0
- package/dist/runtime/execution/policies/runCompletionPolicy.d.ts.map +1 -0
- package/dist/runtime/execution/policies/runCompletionPolicy.js +30 -0
- package/dist/runtime/execution/policies/runCompletionPolicy.js.map +1 -0
- package/dist/runtime/execution/policies/runErrorPolicy.d.ts +7 -0
- package/dist/runtime/execution/policies/runErrorPolicy.d.ts.map +1 -0
- package/dist/runtime/execution/policies/runErrorPolicy.js +40 -0
- package/dist/runtime/execution/policies/runErrorPolicy.js.map +1 -0
- package/dist/runtime/execution/policies/runPromptBuilder.d.ts +10 -0
- package/dist/runtime/execution/policies/runPromptBuilder.d.ts.map +1 -0
- package/dist/runtime/execution/policies/runPromptBuilder.js +34 -0
- package/dist/runtime/execution/policies/runPromptBuilder.js.map +1 -0
- package/dist/runtime/execution/policies/runSummaryFormatter.d.ts +6 -0
- package/dist/runtime/execution/policies/runSummaryFormatter.d.ts.map +1 -0
- package/dist/runtime/execution/policies/runSummaryFormatter.js +47 -0
- package/dist/runtime/execution/policies/runSummaryFormatter.js.map +1 -0
- package/dist/runtime/execution/policies/runtimeDelay.d.ts +4 -0
- package/dist/runtime/execution/policies/runtimeDelay.d.ts.map +1 -0
- package/dist/runtime/execution/policies/runtimeDelay.js +6 -0
- package/dist/runtime/execution/policies/runtimeDelay.js.map +1 -0
- package/dist/runtime/execution/policies/toolConfigReader.d.ts +8 -0
- package/dist/runtime/execution/policies/toolConfigReader.d.ts.map +1 -0
- package/dist/runtime/execution/policies/toolConfigReader.js +91 -0
- package/dist/runtime/execution/policies/toolConfigReader.js.map +1 -0
- package/dist/runtime/human-loop/consoleHumanLoop.d.ts +21 -0
- package/dist/runtime/human-loop/consoleHumanLoop.d.ts.map +1 -0
- package/dist/runtime/human-loop/consoleHumanLoop.js +102 -0
- package/dist/runtime/human-loop/consoleHumanLoop.js.map +1 -0
- package/dist/runtime/human-loop/humanLoop.d.ts +44 -0
- package/dist/runtime/human-loop/humanLoop.d.ts.map +1 -0
- package/dist/runtime/human-loop/humanLoop.js +36 -0
- package/dist/runtime/human-loop/humanLoop.js.map +1 -0
- package/dist/runtime/index.d.ts +10 -0
- package/dist/runtime/index.d.ts.map +1 -0
- package/dist/runtime/index.js +6 -0
- package/dist/runtime/index.js.map +1 -0
- package/dist/runtime/middleware/agentToolMiddleware.d.ts +30 -0
- package/dist/runtime/middleware/agentToolMiddleware.d.ts.map +1 -0
- package/dist/runtime/middleware/agentToolMiddleware.js +259 -0
- package/dist/runtime/middleware/agentToolMiddleware.js.map +1 -0
- package/dist/runtime/middleware/commandPolicy.d.ts +8 -0
- package/dist/runtime/middleware/commandPolicy.d.ts.map +1 -0
- package/dist/runtime/middleware/commandPolicy.js +55 -0
- package/dist/runtime/middleware/commandPolicy.js.map +1 -0
- package/dist/runtime/middleware/frameworkPrompt.d.ts +4 -0
- package/dist/runtime/middleware/frameworkPrompt.d.ts.map +1 -0
- package/dist/runtime/middleware/frameworkPrompt.js +44 -0
- package/dist/runtime/middleware/frameworkPrompt.js.map +1 -0
- package/dist/runtime/middleware/index.d.ts +4 -0
- package/dist/runtime/middleware/index.d.ts.map +1 -0
- package/dist/runtime/middleware/index.js +3 -0
- package/dist/runtime/middleware/index.js.map +1 -0
- package/dist/runtime/middleware/skillPathMap.d.ts +3 -0
- package/dist/runtime/middleware/skillPathMap.d.ts.map +1 -0
- package/dist/runtime/middleware/skillPathMap.js +44 -0
- package/dist/runtime/middleware/skillPathMap.js.map +1 -0
- package/dist/runtime/middleware/toolArgsNormalizer.d.ts +21 -0
- package/dist/runtime/middleware/toolArgsNormalizer.d.ts.map +1 -0
- package/dist/runtime/middleware/toolArgsNormalizer.js +227 -0
- package/dist/runtime/middleware/toolArgsNormalizer.js.map +1 -0
- package/dist/runtime/middleware/toolCallGuard.d.ts +8 -0
- package/dist/runtime/middleware/toolCallGuard.d.ts.map +1 -0
- package/dist/runtime/middleware/toolCallGuard.js +60 -0
- package/dist/runtime/middleware/toolCallGuard.js.map +1 -0
- package/dist/runtime/middleware/toolFsHandlers.d.ts +12 -0
- package/dist/runtime/middleware/toolFsHandlers.d.ts.map +1 -0
- package/dist/runtime/middleware/toolFsHandlers.js +79 -0
- package/dist/runtime/middleware/toolFsHandlers.js.map +1 -0
- package/dist/runtime/middleware/toolRequestParser.d.ts +14 -0
- package/dist/runtime/middleware/toolRequestParser.d.ts.map +1 -0
- package/dist/runtime/middleware/toolRequestParser.js +72 -0
- package/dist/runtime/middleware/toolRequestParser.js.map +1 -0
- package/dist/runtime/middleware/types.d.ts +87 -0
- package/dist/runtime/middleware/types.d.ts.map +1 -0
- package/dist/runtime/middleware/types.js +3 -0
- package/dist/runtime/middleware/types.js.map +1 -0
- package/dist/runtime/providers/backendResolver.d.ts +26 -0
- package/dist/runtime/providers/backendResolver.d.ts.map +1 -0
- package/dist/runtime/providers/backendResolver.js +73 -0
- package/dist/runtime/providers/backendResolver.js.map +1 -0
- package/dist/runtime/providers/index.d.ts +14 -0
- package/dist/runtime/providers/index.d.ts.map +1 -0
- package/dist/runtime/providers/index.js +10 -0
- package/dist/runtime/providers/index.js.map +1 -0
- package/dist/runtime/providers/langchainRuntime.d.ts +11 -0
- package/dist/runtime/providers/langchainRuntime.d.ts.map +1 -0
- package/dist/runtime/providers/langchainRuntime.js +45 -0
- package/dist/runtime/providers/langchainRuntime.js.map +1 -0
- package/dist/runtime/providers/localShellBackend.d.ts +10 -0
- package/dist/runtime/providers/localShellBackend.d.ts.map +1 -0
- package/dist/runtime/providers/localShellBackend.js +23 -0
- package/dist/runtime/providers/localShellBackend.js.map +1 -0
- package/dist/runtime/providers/openaiDeepAgent.d.ts +9 -0
- package/dist/runtime/providers/openaiDeepAgent.d.ts.map +1 -0
- package/dist/runtime/providers/openaiDeepAgent.js +7 -0
- package/dist/runtime/providers/openaiDeepAgent.js.map +1 -0
- package/dist/runtime/providers/openaiLocalAgent.d.ts +17 -0
- package/dist/runtime/providers/openaiLocalAgent.d.ts.map +1 -0
- package/dist/runtime/providers/openaiLocalAgent.js +26 -0
- package/dist/runtime/providers/openaiLocalAgent.js.map +1 -0
- package/dist/runtime/providers/openaiLocalAgentFactory.d.ts +36 -0
- package/dist/runtime/providers/openaiLocalAgentFactory.d.ts.map +1 -0
- package/dist/runtime/providers/openaiLocalAgentFactory.js +139 -0
- package/dist/runtime/providers/openaiLocalAgentFactory.js.map +1 -0
- package/dist/runtime/providers/shared/agentProbe.d.ts +4 -0
- package/dist/runtime/providers/shared/agentProbe.d.ts.map +1 -0
- package/dist/runtime/providers/shared/agentProbe.js +17 -0
- package/dist/runtime/providers/shared/agentProbe.js.map +1 -0
- package/dist/runtime/providers/shared/moduleFallback.d.ts +2 -0
- package/dist/runtime/providers/shared/moduleFallback.d.ts.map +1 -0
- package/dist/runtime/providers/shared/moduleFallback.js +34 -0
- package/dist/runtime/providers/shared/moduleFallback.js.map +1 -0
- package/dist/runtime/providers/shared/resourceCloser.d.ts +6 -0
- package/dist/runtime/providers/shared/resourceCloser.d.ts.map +1 -0
- package/dist/runtime/providers/shared/resourceCloser.js +30 -0
- package/dist/runtime/providers/shared/resourceCloser.js.map +1 -0
- package/dist/runtime/runtimeService.d.ts +109 -0
- package/dist/runtime/runtimeService.d.ts.map +1 -0
- package/dist/runtime/runtimeService.js +90 -0
- package/dist/runtime/runtimeService.js.map +1 -0
- package/dist/runtime/stream/agentMessages.d.ts +40 -0
- package/dist/runtime/stream/agentMessages.d.ts.map +1 -0
- package/dist/runtime/stream/agentMessages.js +44 -0
- package/dist/runtime/stream/agentMessages.js.map +1 -0
- package/dist/runtime/stream/agentStream.d.ts +31 -0
- package/dist/runtime/stream/agentStream.d.ts.map +1 -0
- package/dist/runtime/stream/agentStream.js +106 -0
- package/dist/runtime/stream/agentStream.js.map +1 -0
- package/dist/runtime/stream/messageSummary.d.ts +20 -0
- package/dist/runtime/stream/messageSummary.d.ts.map +1 -0
- package/dist/runtime/stream/messageSummary.js +150 -0
- package/dist/runtime/stream/messageSummary.js.map +1 -0
- package/dist/runtime/stream/runArtifacts.d.ts +9 -0
- package/dist/runtime/stream/runArtifacts.d.ts.map +1 -0
- package/dist/runtime/stream/runArtifacts.js +48 -0
- package/dist/runtime/stream/runArtifacts.js.map +1 -0
- package/dist/state/index.d.ts +7 -0
- package/dist/state/index.d.ts.map +1 -0
- package/dist/state/index.js +4 -0
- package/dist/state/index.js.map +1 -0
- package/dist/state/runState.d.ts +36 -0
- package/dist/state/runState.d.ts.map +1 -0
- package/dist/state/runState.js +51 -0
- package/dist/state/runState.js.map +1 -0
- package/dist/state/todos.d.ts +19 -0
- package/dist/state/todos.d.ts.map +1 -0
- package/dist/state/todos.js +45 -0
- package/dist/state/todos.js.map +1 -0
- package/dist/state/workspaceRunSession.d.ts +32 -0
- package/dist/state/workspaceRunSession.d.ts.map +1 -0
- package/dist/state/workspaceRunSession.js +67 -0
- package/dist/state/workspaceRunSession.js.map +1 -0
- package/dist/state/workspaceState.d.ts +94 -0
- package/dist/state/workspaceState.d.ts.map +1 -0
- package/dist/state/workspaceState.js +119 -0
- package/dist/state/workspaceState.js.map +1 -0
- package/dist/types.d.ts +2 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +2 -0
- package/dist/types.js.map +1 -0
- package/example/.tsbuildinfo +1 -0
- package/example/build/.tsbuildinfo +1 -0
- package/example/config/memory.yaml +35 -0
- package/example/config/model.yaml +14 -0
- package/example/config/runtime.yaml +46 -0
- package/example/config/tool.yaml +24 -0
- package/example/index.ts +159 -0
- package/example/package-lock.json +1396 -0
- package/example/package.json +26 -0
- package/example/serve-output.mjs +52 -0
- package/example/tsconfig.json +19 -0
- package/package.json +73 -0
- package/scripts/resolve-deps.js +40 -0
- package/src/config/index.ts +29 -0
- package/src/config/loader.ts +174 -0
- package/src/config/resolveRuntimeConfig.ts +160 -0
- package/src/config/resources.ts +152 -0
- package/src/config/runtimeConfigLoader.ts +68 -0
- package/src/external-modules.d.ts +20 -0
- package/src/index.ts +36 -0
- package/src/runtime/agentMiddleware.ts +6 -0
- package/src/runtime/bootstrap/runtimeFactory.ts +212 -0
- package/src/runtime/bootstrap/runtimeModuleInitializer.ts +34 -0
- package/src/runtime/context/agentContext.ts +24 -0
- package/src/runtime/context/globalContext.ts +70 -0
- package/src/runtime/events/eventPublisher.ts +45 -0
- package/src/runtime/execution/agentRunExecutor.ts +499 -0
- package/src/runtime/execution/agentRunExecutor.types.ts +39 -0
- package/src/runtime/execution/agentRunProgress.ts +67 -0
- package/src/runtime/execution/agentRunState.ts +66 -0
- package/src/runtime/execution/policies/runCompletionPolicy.ts +30 -0
- package/src/runtime/execution/policies/runErrorPolicy.ts +50 -0
- package/src/runtime/execution/policies/runPromptBuilder.ts +39 -0
- package/src/runtime/execution/policies/runSummaryFormatter.ts +57 -0
- package/src/runtime/execution/policies/runtimeDelay.ts +5 -0
- package/src/runtime/execution/policies/toolConfigReader.ts +107 -0
- package/src/runtime/human-loop/consoleHumanLoop.ts +113 -0
- package/src/runtime/human-loop/humanLoop.ts +90 -0
- package/src/runtime/index.ts +36 -0
- package/src/runtime/middleware/agentToolMiddleware.ts +329 -0
- package/src/runtime/middleware/commandPolicy.ts +65 -0
- package/src/runtime/middleware/frameworkPrompt.ts +51 -0
- package/src/runtime/middleware/index.ts +7 -0
- package/src/runtime/middleware/skillPathMap.ts +49 -0
- package/src/runtime/middleware/toolArgsNormalizer.ts +277 -0
- package/src/runtime/middleware/toolCallGuard.ts +73 -0
- package/src/runtime/middleware/toolFsHandlers.ts +94 -0
- package/src/runtime/middleware/toolRequestParser.ts +84 -0
- package/src/runtime/middleware/types.ts +91 -0
- package/src/runtime/providers/backendResolver.ts +127 -0
- package/src/runtime/providers/index.ts +19 -0
- package/src/runtime/providers/langchainRuntime.ts +67 -0
- package/src/runtime/providers/localShellBackend.ts +54 -0
- package/src/runtime/providers/openaiDeepAgent.ts +17 -0
- package/src/runtime/providers/openaiLocalAgent.ts +35 -0
- package/src/runtime/providers/openaiLocalAgentFactory.ts +185 -0
- package/src/runtime/providers/shared/agentProbe.ts +24 -0
- package/src/runtime/providers/shared/moduleFallback.ts +41 -0
- package/src/runtime/providers/shared/resourceCloser.ts +30 -0
- package/src/runtime/runtimeService.ts +205 -0
- package/src/runtime/stream/agentMessages.ts +72 -0
- package/src/runtime/stream/agentStream.ts +168 -0
- package/src/runtime/stream/messageSummary.ts +164 -0
- package/src/runtime/stream/runArtifacts.ts +72 -0
- package/src/state/index.ts +19 -0
- package/src/state/runState.ts +84 -0
- package/src/state/todos.ts +59 -0
- package/src/state/workspaceRunSession.ts +96 -0
- package/src/state/workspaceState.ts +199 -0
- package/src/types/easynet-agent-common.d.ts +62 -0
- package/src/types.ts +1 -0
- package/test/integration/runtime-live.integration.test.ts +30 -0
- package/test/unit/config/loader.test.ts +429 -0
- package/test/unit/runtime/agentContext.test.ts +23 -0
- package/test/unit/runtime/agentRuntime.test.ts +99 -0
- package/test/unit/runtime/consoleHumanLoop.test.ts +52 -0
- package/test/unit/runtime/events.test.ts +11 -0
- package/test/unit/runtime/globalContext.test.ts +34 -0
- package/test/unit/runtime/humanLoop.test.ts +104 -0
- package/test/unit/runtime/toolArgsNormalizer.test.ts +136 -0
- package/tsconfig.json +18 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.es2021.d.ts","./node_modules/typescript/lib/lib.es2022.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.dom.asynciterable.d.ts","./node_modules/typescript/lib/lib.webworker.importscripts.d.ts","./node_modules/typescript/lib/lib.scripthost.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2016.intl.d.ts","./node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","./node_modules/typescript/lib/lib.es2017.date.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.es2021.promise.d.ts","./node_modules/typescript/lib/lib.es2021.string.d.ts","./node_modules/typescript/lib/lib.es2021.weakref.d.ts","./node_modules/typescript/lib/lib.es2021.intl.d.ts","./node_modules/typescript/lib/lib.es2022.array.d.ts","./node_modules/typescript/lib/lib.es2022.error.d.ts","./node_modules/typescript/lib/lib.es2022.intl.d.ts","./node_modules/typescript/lib/lib.es2022.object.d.ts","./node_modules/typescript/lib/lib.es2022.string.d.ts","./node_modules/typescript/lib/lib.es2022.regexp.d.ts","./node_modules/typescript/lib/lib.decorators.d.ts","./node_modules/typescript/lib/lib.decorators.legacy.d.ts","./node_modules/typescript/lib/lib.es2022.full.d.ts","../../agent-common/dist/events/progress-listener.d.ts","../../agent-common/dist/events/runtime2-tree-listener.d.ts","../../agent-common/dist/events/index.d.ts","../dist/runtime/events.d.ts","../dist/runtime/agentmiddleware.d.ts","../dist/runtime/agentstream.d.ts","../dist/state/runstate.d.ts","../dist/state/workspacestate.d.ts","../dist/runtime/providers/backendresolver.d.ts","../dist/runtime/providers/openailocalagent.d.ts","../dist/runtime/providers/localshellbackend.d.ts","../dist/runtime/providers/langchainruntime.d.ts","../dist/runtime/providers/index.d.ts","../dist/config/types.d.ts","../dist/types.d.ts","../dist/config/loader.d.ts","../dist/config/deepagents.d.ts","../dist/config/createagentskills.d.ts","../dist/config/index.d.ts","../dist/runtime/agentruntime.d.ts","../dist/runtime/index.d.ts","../../agent-common/dist/context/tokens.d.ts","../../agent-common/dist/context/default-context.d.ts","../../agent-common/dist/context/index.d.ts","../../agent-common/dist/cli/startup.d.ts","../../agent-common/dist/cli/index.d.ts","../../agent-common/dist/utils/deep-merge.d.ts","../../agent-common/dist/utils/checksum.d.ts","../../agent-common/dist/utils/agent-result.d.ts","../../agent-common/dist/utils/object.d.ts","../../agent-common/dist/utils/log.d.ts","../../agent-common/dist/utils/parsing.d.ts","../../agent-common/dist/utils/tool-registry.d.ts","../../agent-common/dist/utils/override-with-config.d.ts","../../agent-common/dist/utils/frontmatter.d.ts","../../agent-common/dist/utils/tool-choice.d.ts","../../agent-common/dist/utils/index.d.ts","../../agent-common/dist/index.d.ts","../dist/index.d.ts","./index.ts","./node_modules/@types/json-schema/index.d.ts","./node_modules/@types/node/compatibility/disposable.d.ts","./node_modules/@types/node/compatibility/indexable.d.ts","./node_modules/@types/node/compatibility/iterators.d.ts","./node_modules/@types/node/compatibility/index.d.ts","./node_modules/@types/node/globals.typedarray.d.ts","./node_modules/@types/node/buffer.buffer.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/web-globals/abortcontroller.d.ts","./node_modules/@types/node/web-globals/domexception.d.ts","./node_modules/@types/node/web-globals/events.d.ts","../../../../node_modules/buffer/index.d.ts","./node_modules/undici-types/header.d.ts","./node_modules/undici-types/readable.d.ts","./node_modules/undici-types/file.d.ts","./node_modules/undici-types/fetch.d.ts","./node_modules/undici-types/formdata.d.ts","./node_modules/undici-types/connector.d.ts","./node_modules/undici-types/client.d.ts","./node_modules/undici-types/errors.d.ts","./node_modules/undici-types/dispatcher.d.ts","./node_modules/undici-types/global-dispatcher.d.ts","./node_modules/undici-types/global-origin.d.ts","./node_modules/undici-types/pool-stats.d.ts","./node_modules/undici-types/pool.d.ts","./node_modules/undici-types/handlers.d.ts","./node_modules/undici-types/balanced-pool.d.ts","./node_modules/undici-types/agent.d.ts","./node_modules/undici-types/mock-interceptor.d.ts","./node_modules/undici-types/mock-agent.d.ts","./node_modules/undici-types/mock-client.d.ts","./node_modules/undici-types/mock-pool.d.ts","./node_modules/undici-types/mock-errors.d.ts","./node_modules/undici-types/proxy-agent.d.ts","./node_modules/undici-types/env-http-proxy-agent.d.ts","./node_modules/undici-types/retry-handler.d.ts","./node_modules/undici-types/retry-agent.d.ts","./node_modules/undici-types/api.d.ts","./node_modules/undici-types/interceptors.d.ts","./node_modules/undici-types/util.d.ts","./node_modules/undici-types/cookies.d.ts","./node_modules/undici-types/patch.d.ts","./node_modules/undici-types/websocket.d.ts","./node_modules/undici-types/eventsource.d.ts","./node_modules/undici-types/filereader.d.ts","./node_modules/undici-types/diagnostics-channel.d.ts","./node_modules/undici-types/content-type.d.ts","./node_modules/undici-types/cache.d.ts","./node_modules/undici-types/index.d.ts","./node_modules/@types/node/web-globals/fetch.d.ts","./node_modules/@types/node/web-globals/navigator.d.ts","./node_modules/@types/node/web-globals/storage.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/inspector.generated.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/readline/promises.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/sea.d.ts","./node_modules/@types/node/sqlite.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/test.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/index.d.ts","./node_modules/@types/uuid/index.d.ts","../../../../node_modules/@types/asn1/index.d.ts","../../../../node_modules/@babel/types/lib/index.d.ts","../../../../node_modules/@types/babel__generator/index.d.ts","../../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../../node_modules/@types/babel__template/index.d.ts","../../../../node_modules/@types/babel__traverse/index.d.ts","../../../../node_modules/@types/babel__core/index.d.ts","../../../../node_modules/@types/connect/index.d.ts","../../../../node_modules/@types/body-parser/index.d.ts","../../../../node_modules/@types/caseless/index.d.ts","../../../../node_modules/@types/ms/index.d.ts","../../../../node_modules/@types/debug/index.d.ts","../../../../node_modules/@types/send/index.d.ts","../../../../node_modules/@types/qs/index.d.ts","../../../../node_modules/@types/range-parser/index.d.ts","../../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../../node_modules/@types/http-errors/index.d.ts","../../../../node_modules/@types/mime/index.d.ts","../../../../node_modules/@types/serve-static/node_modules/@types/send/index.d.ts","../../../../node_modules/@types/serve-static/index.d.ts","../../../../node_modules/@types/express/index.d.ts","../../../../node_modules/@types/graceful-fs/index.d.ts","../../../../node_modules/@types/http-proxy/index.d.ts","../../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../../node_modules/@types/istanbul-reports/index.d.ts","../../../../node_modules/@types/lodash/common/common.d.ts","../../../../node_modules/@types/lodash/common/array.d.ts","../../../../node_modules/@types/lodash/common/collection.d.ts","../../../../node_modules/@types/lodash/common/date.d.ts","../../../../node_modules/@types/lodash/common/function.d.ts","../../../../node_modules/@types/lodash/common/lang.d.ts","../../../../node_modules/@types/lodash/common/math.d.ts","../../../../node_modules/@types/lodash/common/number.d.ts","../../../../node_modules/@types/lodash/common/object.d.ts","../../../../node_modules/@types/lodash/common/seq.d.ts","../../../../node_modules/@types/lodash/common/string.d.ts","../../../../node_modules/@types/lodash/common/util.d.ts","../../../../node_modules/@types/lodash/index.d.ts","../../../../node_modules/@types/long/index.d.ts","../../../../node_modules/@types/luxon/src/zone.d.ts","../../../../node_modules/@types/luxon/src/settings.d.ts","../../../../node_modules/@types/luxon/src/_util.d.ts","../../../../node_modules/@types/luxon/src/misc.d.ts","../../../../node_modules/@types/luxon/src/duration.d.ts","../../../../node_modules/@types/luxon/src/interval.d.ts","../../../../node_modules/@types/luxon/src/datetime.d.ts","../../../../node_modules/@types/luxon/src/info.d.ts","../../../../node_modules/@types/luxon/src/luxon.d.ts","../../../../node_modules/@types/luxon/index.d.ts","../../../../node_modules/@types/multer/index.d.ts","../../../../node_modules/@types/mysql/index.d.ts","../../../../node_modules/form-data/index.d.ts","../../../../node_modules/@types/node-fetch/externals.d.ts","../../../../node_modules/@types/node-fetch/index.d.ts","../../../../node_modules/pg-types/index.d.ts","../../../../node_modules/pg-protocol/dist/messages.d.ts","../../../../node_modules/pg-protocol/dist/serializer.d.ts","../../../../node_modules/pg-protocol/dist/parser.d.ts","../../../../node_modules/pg-protocol/dist/index.d.ts","../../../../node_modules/@types/pg/index.d.ts","../../../../node_modules/@types/pg-pool/index.d.ts","../../../../node_modules/@types/phoenix/index.d.ts","../../../../node_modules/@types/readable-stream/index.d.ts","../../../../node_modules/@types/request/node_modules/form-data/index.d.ts","../../../../node_modules/@types/tough-cookie/index.d.ts","../../../../node_modules/@types/request/index.d.ts","../../../../node_modules/@types/retry/index.d.ts","../../../../node_modules/@types/shimmer/index.d.ts","../../../../node_modules/@types/stack-utils/index.d.ts","../../../../node_modules/@types/tedious/index.d.ts","../../../../node_modules/@types/triple-beam/index.d.ts","../../../../node_modules/@types/validator/lib/isboolean.d.ts","../../../../node_modules/@types/validator/lib/isemail.d.ts","../../../../node_modules/@types/validator/lib/isfqdn.d.ts","../../../../node_modules/@types/validator/lib/isiban.d.ts","../../../../node_modules/@types/validator/lib/isiso31661alpha2.d.ts","../../../../node_modules/@types/validator/lib/isiso4217.d.ts","../../../../node_modules/@types/validator/lib/isiso6391.d.ts","../../../../node_modules/@types/validator/lib/istaxid.d.ts","../../../../node_modules/@types/validator/lib/isurl.d.ts","../../../../node_modules/@types/validator/index.d.ts","../../../../node_modules/@types/webidl-conversions/index.d.ts","../../../../node_modules/@types/whatwg-url/index.d.ts","../../../../node_modules/@types/ws/index.d.ts","../../../../node_modules/@types/yargs-parser/index.d.ts","../../../../node_modules/@types/yargs/index.d.ts","../../../../node_modules/@types/yauzl/index.d.ts"],"fileIdsList":[[110,159,176,177,212],[110,159,176,177],[110,159,176,177,209],[110,159,176,177,212,213,214,215,216],[110,159,176,177,212,214],[110,159,173,176,177,209,218],[110,159,173,176,177,209],[110,159,176,177,221],[110,159,170,173,176,177,209,223,224,225],[110,159,176,177,219,224,226,230],[110,159,171,176,177,209],[110,159,170,173,175,176,177,179,191,202,209],[110,159,176,177,234],[110,159,176,177,235],[110,159,176,177,237,239,240,241,242,243,244,245,246,247,248,249],[110,159,176,177,237,238,240,241,242,243,244,245,246,247,248,249],[110,159,176,177,238,239,240,241,242,243,244,245,246,247,248,249],[110,159,176,177,237,238,239,241,242,243,244,245,246,247,248,249],[110,159,176,177,237,238,239,240,242,243,244,245,246,247,248,249],[110,159,176,177,237,238,239,240,241,243,244,245,246,247,248,249],[110,159,176,177,237,238,239,240,241,242,244,245,246,247,248,249],[110,159,176,177,237,238,239,240,241,242,243,245,246,247,248,249],[110,159,176,177,237,238,239,240,241,242,243,244,246,247,248,249],[110,159,176,177,237,238,239,240,241,242,243,244,245,247,248,249],[110,159,176,177,237,238,239,240,241,242,243,244,245,246,248,249],[110,159,176,177,237,238,239,240,241,242,243,244,245,246,247,249],[110,159,176,177,237,238,239,240,241,242,243,244,245,246,247,248],[110,159,176,177,259],[110,159,176,177,252],[110,159,176,177,251,253,255,256,260],[110,159,176,177,253,254,257],[110,159,176,177,251,254,257],[110,159,176,177,253,255,257],[110,159,176,177,251,252,254,255,256,257,258],[110,159,176,177,251,257],[110,159,176,177,253],[110,159,176,177,191,231],[110,159,170,176,177,191,199,209],[110,159,173,176,177,202,209,263,264],[110,159,176,177,271],[110,159,170,176,177,191,199,209,266,267,270,271],[110,159,176,177,191,209],[110,159,171,173,175,176,177,179,191,202,209,220,275,276],[110,159,173,176,177,191,209],[110,159,171,176,177,191,209],[110,159,173,176,177,209,227,229],[110,159,171,176,177,191,209,228],[110,159,170,176,177,199,209],[110,159,176,177,283,284,285,286,287,288,289,290,291],[110,159,170,173,175,176,177,179,191,199,202,208,209],[110,159,176,177,296],[110,159,170,176,177,191,209],[110,159,176,177,209,267,268,269],[110,159,176,177,191,209,267],[88,110,159,176,177],[85,86,110,159,176,177],[64,65,110,159,176,177],[66,110,159,176,177],[66,87,89,100,110,159,176,177],[90,91,92,93,94,95,96,97,98,99,110,159,176,177],[78,80,110,159,176,177],[78,110,159,176,177],[79,80,81,110,159,176,177],[82,84,101,110,159,176,177],[67,110,159,176,177],[67,68,69,71,76,82,110,159,176,177],[67,83,110,159,176,177],[72,73,74,75,110,159,176,177],[68,110,159,176,177],[72,110,159,176,177],[67,70,110,159,176,177],[77,110,159,176,177],[102,110,159,171,176,177,181,202],[110,156,157,159,176,177],[110,158,159,176,177],[159,176,177],[110,159,164,176,177,194],[110,159,160,165,170,176,177,179,191,202],[110,159,160,161,170,176,177,179],[105,106,107,110,159,176,177],[110,159,162,176,177,203],[110,159,163,164,171,176,177,180],[110,159,164,176,177,191,199],[110,159,165,167,170,176,177,179],[110,158,159,166,176,177],[110,159,167,168,176,177],[110,159,169,170,176,177],[110,158,159,170,176,177],[110,159,170,171,172,176,177,191,202],[110,159,170,171,172,176,177,186,191,194],[110,152,159,167,170,173,176,177,179,191,202],[110,159,170,171,173,174,176,177,179,191,199,202],[110,159,173,175,176,177,191,199,202],[108,109,110,111,112,113,114,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208],[110,159,170,176,177],[110,159,176,177,178,202],[110,159,167,170,176,177,179,191],[110,159,176,177,180],[110,159,176,177,181],[110,158,159,176,177,182],[110,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208],[110,159,176,177,184],[110,159,176,177,185],[110,159,170,176,177,186,187],[110,159,176,177,186,188,203,205],[110,159,171,176,177],[110,159,170,176,177,191,192,194],[110,159,176,177,193,194],[110,159,176,177,191,192],[110,159,176,177,194],[110,159,176,177,195],[110,156,159,176,177,191,196,202],[110,159,170,176,177,197,198],[110,159,176,177,197,198],[110,159,164,176,177,179,191,199],[110,159,176,177,200],[110,159,176,177,179,201],[110,159,173,176,177,185,202],[110,159,164,176,177,203],[110,159,176,177,191,204],[110,159,176,177,178,205],[110,159,176,177,206],[110,152,159,176,177],[110,152,159,170,172,176,177,182,191,194,202,204,205,207],[110,159,176,177,191,208],[110,124,128,159,176,177,202],[110,124,159,176,177,191,202],[110,119,159,176,177],[110,121,124,159,176,177,199,202],[110,159,176,177,179,199],[110,119,159,176,177,209],[110,121,124,159,176,177,179,202],[110,116,117,120,123,159,170,176,177,191,202],[110,124,131,159,176,177],[110,116,122,159,176,177],[110,124,145,146,159,176,177],[110,120,124,159,176,177,194,202,209],[110,145,159,176,177,209],[110,118,119,159,176,177,209],[110,124,159,176,177],[110,118,119,120,121,122,123,124,125,126,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,146,147,148,149,150,151,159,176,177],[110,124,139,159,176,177],[110,124,131,132,159,176,177],[110,122,124,132,133,159,176,177],[110,123,159,176,177],[110,116,119,124,159,176,177],[110,124,128,132,133,159,176,177],[110,128,159,176,177],[110,122,124,127,159,176,177,202],[110,116,121,124,131,159,176,177],[110,159,176,177,191],[110,119,124,145,159,176,177,207,209]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41","impliedFormat":1},{"version":"bae9c29b001d071cf72b917f1325709603ca401677dc6288c74ebf080f81f262","impliedFormat":99},{"version":"175ae1f750ac395efbac5cf63896ba8c22850d2a0d21251e2bd5d00119999e42","impliedFormat":99},{"version":"9a80211c177a975b31c5df807a0e35e8a7738e3293f2af32801f7ad64b3047c5","impliedFormat":99},{"version":"4220e0e421378c3b667c2790f2f0074daee5aabc66d2bdceb27ea63bbc313efb","impliedFormat":99},{"version":"90ed3c4c245ce4f0d8ba533358b83d25c4a66d337c9b97d7ff4de70a241e8b2d","impliedFormat":99},{"version":"939faace99dcaf6d2f78ef45a21680a08355a4135494f78c2b4c6f4350b4c211","impliedFormat":99},{"version":"b32bfe485ab60e188600687c147b8ec245db1550a2d8b03cf576519c8ae30eab","impliedFormat":99},{"version":"3beafb922264f1d177623fae656d100d612e7c846b0c96955039d2bab8016530","impliedFormat":99},{"version":"e296a1ddf6b37357051d1c7dc133a1e88b016e34d5873160e74fb3829ecb18ff","impliedFormat":99},{"version":"a561cbee7e0753b7aa66b362bd7b07b900766a4209a3066f03f4830dbf8ae1bc","impliedFormat":99},{"version":"93087a3b3f6b47f6894ffc2029a32074a3a175e35ef6e1bbf391c7db7077544f","impliedFormat":99},{"version":"225fa9805776f389a30a9eedfb7fd04dec0ee5f59ce1a3e10265df3adbc53cd9","impliedFormat":99},{"version":"28471c85f10c8c3ee5b99cf966a8e4294077e9ff8a5f9360541c5f5d9f87b8c8","impliedFormat":99},{"version":"c343d5ca2c07d413a89d59597de9e8368f78d50e60f37fa9dda6da68944afd3e","impliedFormat":99},{"version":"a132c3ddb2a21871d9fa2061f09bd79a14f8157be56f644602e687f5377df794","impliedFormat":99},{"version":"2e34080dddb283359fc939ad007298ca7432be196b0f57f2ffbf7e6128e95d4c","impliedFormat":99},{"version":"b5435bce7303be1121652fdfb190e5448c9c5a848c54ad8a26dcc7665e6ac8f8","impliedFormat":99},{"version":"bf3fcd8e88444f39a60625c21d5194bb8030e2bd9c459d81f35ffa2b3937e84c","impliedFormat":99},{"version":"9f70fab63b0eeb768ab16758dac946e387f3c363202c7c5e565254223cc56436","impliedFormat":99},{"version":"414ced37da101232fe90fbc25808cc80e9752abbee60ac56340c98653ac82157","impliedFormat":99},{"version":"e6b4741a5b3b3dc1759d71963d8e01d26e51db094ab6a0b05e978015e7b45abe","impliedFormat":99},{"version":"76f0f737d5c928068e1c1392a9de452456713dbf0329ef32d8abf62f7bbb6a70","impliedFormat":99},{"version":"874f86ecf1b82cf7a6b1a3a434693d86bed30030941cb72d3daa8868c7682fbc","impliedFormat":99},{"version":"fa2d5542712ef871f6ab1b30b226172b59fcdf455c0d5484971488ffcb174ac1","impliedFormat":99},{"version":"1bad86f8df0001947740319708925eded58207c697188c7105dbf540d8f6b0f1","impliedFormat":99},{"version":"24f7076cf1eb4937a7253817981e3c0e0136d3b5e9c5173c6415ddf20b48e4af","impliedFormat":99},{"version":"130374881de4b70e6de6d6825547079b3f1908300d35b988cb41bda33617a410","impliedFormat":99},{"version":"50c082f87da5092f5051062a0b1be7f559847ca145f4e17d6f3a0616f2768f23","impliedFormat":99},{"version":"74dc64d8b389a2a3b712f69bc3feeb3baacb82361974b39551a67830495188b8","impliedFormat":99},{"version":"d521fb9f505feafadb2aa87b592ff7b86986c40c0a7ed26581532edc1dd991d4","impliedFormat":99},{"version":"67c42a7d397e151de8448a16b340d9596269a1c5be9e73ff7f16c4b12c3b8f90","impliedFormat":99},{"version":"baa9b3242256adfc39fa8936bbf291523d99385f9803bbca8c48a2b0823b717e","impliedFormat":99},{"version":"e7e441fc05bb20700f9bada5ed75865b00e81a69c33d1ed6ae957513fde5f322","impliedFormat":99},{"version":"f768faa3454264061ff59dc4b32b088c8d03cc3fbe7982e5c09a01e7813b6f7e","impliedFormat":99},{"version":"f9978f72de24adf178dd960e93c8efd3dd8fa35fe255ca723bfa8d7b1ff952f1","impliedFormat":99},{"version":"9fa4a5135d9b7e88e91f7959984d664742f3b279e785f4a3d6481560e8f9d6a1","impliedFormat":99},{"version":"f9342a911a4f63a371dac7c0912e6324822038b60ce893588f52084a99c0efd8","impliedFormat":99},{"version":"db86d9334ebf575d0ce2186296d36dc76878e4d1e3a78ad1bf7a55f3e91233ef","impliedFormat":99},{"version":"f07c69223be4d3a9803a1167db14a89056ed7c1ac66b09e50e73c86614aebe7f","impliedFormat":99},{"version":"7c573d7b239b454619456f40083ae390845ac0d70f776605dd2bdd46c3e1fd66","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012","impliedFormat":99},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c906fb15bd2aabc9ed1e3f44eb6a8661199d6c320b3aa196b826121552cb3695","impliedFormat":1},{"version":"22295e8103f1d6d8ea4b5d6211e43421fe4564e34d0dd8e09e520e452d89e659","impliedFormat":1},{"version":"f949f7f6c7802a338039cfc2156d1fe285cdd1e092c64437ebe15ae8edc854e0","impliedFormat":1},{"version":"6b4e081d55ac24fc8a4631d5dd77fe249fa25900abd7d046abb87d90e3b45645","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"83e63d6ccf8ec004a3bb6d58b9bb0104f60e002754b1e968024b320730cc5311","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"8b479a130ccb62e98f11f136d3ac80f2984fdc07616516d29881f3061f2dd472","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"bceb58df66ab8fb00170df20cd813978c5ab84be1d285710c4eb005d8e9d8efb","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"a3fc63c0d7b031693f665f5494412ba4b551fe644ededccc0ab5922401079c95","impliedFormat":1},{"version":"f27524f4bef4b6519c604bdb23bf4465bddcccbf3f003abb901acbd0d7404d99","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"6b039f55681caaf111d5eb84d292b9bee9e0131d0db1ad0871eef0964f533c73","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"c8d3e5a18ba35629954e48c4cc8f11dc88224650067a172685c736b27a34a4dc","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"2b55d426ff2b9087485e52ac4bc7cfafe1dc420fc76dad926cd46526567c501a","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"47613031a5a31510831304405af561b0ffaedb734437c595256bb61a90f9311b","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"8a1a0d0a4a06a8d278947fcb66bf684f117bf147f89b06e50662d79a53be3e9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"9f663c2f91127ef7024e8ca4b3b4383ff2770e5f826696005de382282794b127","impliedFormat":1},{"version":"9f55299850d4f0921e79b6bf344b47c420ce0f507b9dcf593e532b09ea7eeea1","impliedFormat":1},{"version":"f874ea4d0091b0a44362a5f74d26caab2e66dec306c2bf7e8965f5106e784c3b","impliedFormat":1},{"version":"21bfe934fb4e01d6270ce97f0b4a3c3a8c2e78b74d10eeb7101485e856f8bb26","impliedFormat":1},{"version":"c2c2a861a338244d7dd700d0c52a78916b4bb75b98fc8ca5e7c501899fc03796","impliedFormat":1},{"version":"b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","impliedFormat":1},{"version":"adb467429462e3891de5bb4a82a4189b92005d61c7f9367c089baf03997c104e","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"82819f9ecc249a6a3e284003540d02ea1b1f56f410c23231797b9e1e4b9622df","impliedFormat":1},{"version":"cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","impliedFormat":1},{"version":"2174e20517788d2a1379fc0aaacd87899a70f9e0197b4295edabfe75c4db03d8","impliedFormat":1},{"version":"fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","impliedFormat":1},{"version":"3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1","impliedFormat":1},{"version":"d34aa8df2d0b18fb56b1d772ff9b3c7aea7256cf0d692f969be6e1d27b74d660","impliedFormat":1},{"version":"baac9896d29bcc55391d769e408ff400d61273d832dd500f21de766205255acb","impliedFormat":1},{"version":"2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","impliedFormat":1},{"version":"94ee9ee71018d54902c3fe6730090a8a421dcad95fc372d9b69a6d5351194885","affectsGlobalScope":true,"impliedFormat":1},{"version":"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","impliedFormat":1},{"version":"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","impliedFormat":1},{"version":"cb90077223cc1365fa21ef0911a1f9b8f2f878943523d97350dc557973ca3823","impliedFormat":1},{"version":"18f1541b81b80d806120a3489af683edfb811deb91aeca19735d9bb2613e6311","impliedFormat":1},{"version":"232f118ae64ab84dcd26ddb60eaed5a6e44302d36249abf05e9e3fc2cbb701a2","impliedFormat":1},{"version":"afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","impliedFormat":1},{"version":"26b7d0cd4b41ab557ef9e3bfeec42dcf24252843633e3d29f38d2c0b13aaa528","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","impliedFormat":1},{"version":"5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","impliedFormat":1},{"version":"380b919bfa0516118edaf25b99e45f855e7bc3fd75ce4163a1cfe4a666388804","impliedFormat":1},{"version":"0b24a72109c8dd1b41f94abfe1bb296ba01b3734b8ac632db2c48ffc5dccaf01","impliedFormat":1},{"version":"fcf79300e5257a23ed3bacaa6861d7c645139c6f7ece134d15e6669447e5e6db","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","impliedFormat":1},{"version":"b88749bdb18fc1398370e33aa72bc4f88274118f4960e61ce26605f9b33c5ba2","impliedFormat":1},{"version":"0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"a873c50d3e47c21aa09fbe1e2023d9a44efb07cc0cb8c72f418bf301b0771fd3","impliedFormat":1},{"version":"7c14ccd2eaa82619fffc1bfa877eb68a012e9fb723d07ee98db451fadb618906","impliedFormat":1},{"version":"49c36529ee09ea9ce19525af5bb84985ea8e782cb7ee8c493d9e36d027a3d019","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","impliedFormat":1},{"version":"0e60e0cbf2283adfd5a15430ae548cd2f662d581b5da6ecd98220203e7067c70","impliedFormat":1},{"version":"5339f84dfcb7b04aa1c2b4d7713d6128039381447f07abc2e48d36685e2eef44","impliedFormat":1},{"version":"fb35a61a39c933d31b5b2549d906b2c932a1486622958586f662dbd4b2fe72e6","impliedFormat":1},{"version":"24e2728268be1ad2407bab004549d2753a49b2acb0f117a04c4e28ffb3ecdd4f","impliedFormat":1},{"version":"aff159b14eba59afe98a88fe6f57881ba02895fb9763512dda9083497bdcd0e6","impliedFormat":1},{"version":"b6bc775d112a7761a50594fc589aeaa8893c139ffe3db2b4999756e17f367a8d","impliedFormat":1},{"version":"0b8f398b88a43f8bf29a50920e7ddef19c06c3008b351e7047e9613d7195c638","impliedFormat":1},{"version":"25d0e0fe3731bc85c7bd2ef7f7e1faf4f5201be1c10ff3a19e1afa6ec4568669","impliedFormat":1},{"version":"26080058b725ac0b480241751255b4391f722263778e84e66a62068705aafd3c","impliedFormat":1},{"version":"46afbf46c3d62eac2afead3a2011d506637bf4f2c05e1fd64bbf7e2bb2947b7c","impliedFormat":1},{"version":"02f634f868780eaaff5e2d3fb4570dac8e7f018a8650bb9a0ac1deb4915df8d1","impliedFormat":1},{"version":"d57be402cf1a3f1bd1852fc71b31ff54da497f64dcdcf8af9ad32435e3f32c1f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6eb639ffa89a206d4eb9e68270ba781caede9fe44aa5dc8f73600a2f6b166715","impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","impliedFormat":1},{"version":"b70c7ea83a7d0de17a791d9b5283f664033a96362c42cc4d2b2e0bdaa65ef7d1","impliedFormat":1},{"version":"f60e3e3060207ac982da13363181fd7ee4beecc19a7c569f0d6bb034331066c2","impliedFormat":1},{"version":"17230b34bb564a3a2e36f9d3985372ccab4ad1722df2c43f7c5c2b553f68e5db","impliedFormat":1},{"version":"6e5c9272f6b3783be7bdddaf207cccdb8e033be3d14c5beacc03ae9d27d50929","impliedFormat":1},{"version":"9b4f7ff9681448c72abe38ea8eefd7ffe0c3aefe495137f02012a08801373f71","impliedFormat":1},{"version":"0dfe35191a04e8f9dc7caeb9f52f2ee07402736563d12cbccd15fb5f31ac877f","impliedFormat":1},{"version":"fd29886b17d20dc9a8145d3476309ac313de0ee3fe57db4ad88de91de1882fd8","impliedFormat":1},{"version":"b3a24e1c22dd4fde2ce413fb8244e5fa8773ffca88e8173c780845c9856aef73","impliedFormat":1},{"version":"f4ae5546352701fd6932fdd86419438bb51253e4627a44808489742035bac644","impliedFormat":1},{"version":"a6a859ff4b9a8a65e24bb1afd1a56296a88502f35a460c16631ddb4c5d435d81","affectsGlobalScope":true,"impliedFormat":1},{"version":"e91ad231af87f864b3f07cd0e39b1cf6c133988156f087c1c3ccb0a5491c9115","impliedFormat":1},{"version":"03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","impliedFormat":1},{"version":"319c37263037e8d9481a3dc7eadf6afa6a5f5c002189ebe28776ac1a62a38e15","impliedFormat":1},{"version":"199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","impliedFormat":1},{"version":"837f5c12e3e94ee97aca37aa2a50ede521e5887fb7fa89330f5625b70597e116","impliedFormat":1},{"version":"ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","impliedFormat":1},{"version":"c130f9616a960edc892aa0eb7a8a59f33e662c561474ed092c43a955cdb91dab","impliedFormat":1},{"version":"908217c4f2244ec402b73533ebfcc46d6dcd34fc1c807ff403d7f98702abb3bc","impliedFormat":1},{"version":"c6cdcd12d577032b84eed1de4d2de2ae343463701a25961b202cff93989439fb","impliedFormat":1},{"version":"3dc633586d48fcd04a4f8acdbf7631b8e4a334632f252d5707e04b299069721e","impliedFormat":1},{"version":"c5b3da7e2ecd5968f723282aba49d8d1a2e178d0afe48998dad93f81e2724091","impliedFormat":1},{"version":"efd2860dc74358ffa01d3de4c8fa2f966ae52c13c12b41ad931c078151b36601","impliedFormat":1},{"version":"09acacae732e3cc67a6415026cfae979ebe900905500147a629837b790a366b3","impliedFormat":1},{"version":"f7b622759e094a3c2e19640e0cb233b21810d2762b3e894ef7f415334125eb22","impliedFormat":1},{"version":"99236ea5c4c583082975823fd19bcce6a44963c5c894e20384bc72e7eccf9b03","impliedFormat":1},{"version":"f6688a02946a3f7490aa9e26d76d1c97a388e42e77388cbab010b69982c86e9e","impliedFormat":1},{"version":"9f642953aba68babd23de41de85d4e97f0c39ef074cb8ab8aa7d55237f62aff6","impliedFormat":1},{"version":"15d1608077da3b5bd79c6dab038e55df1ae286322ffb6361136f93be981a7104","impliedFormat":1},{"version":"f2f23fe34b735887db1d5597714ae37a6ffae530cafd6908c9d79d485667c956","impliedFormat":1},{"version":"5bba0e6cd8375fd37047e99a080d1bd9a808c95ecb7f3043e3adc125196f6607","impliedFormat":1},{"version":"1ba59c8bbeed2cb75b239bb12041582fa3e8ef32f8d0bd0ec802e38442d3f317","impliedFormat":1},{"version":"bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","impliedFormat":1},{"version":"26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7","impliedFormat":1},{"version":"74d5a87c3616cd5d8691059d531504403aa857e09cbaecb1c64dfb9ace0db185","impliedFormat":1}],"root":[103],"options":{"esModuleInterop":true,"module":199,"outDir":"./dist","rootDir":"./","skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[214,1],[212,2],[211,3],[217,4],[213,1],[215,5],[216,1],[219,6],[220,2],[218,7],[222,8],[226,9],[231,10],[232,11],[227,2],[233,12],[234,2],[235,13],[236,14],[238,15],[239,16],[237,17],[240,18],[241,19],[242,20],[243,21],[244,22],[245,23],[246,24],[247,25],[248,26],[249,27],[250,2],[260,28],[253,29],[257,30],[255,31],[258,32],[256,33],[259,34],[254,2],[252,35],[251,36],[228,2],[221,2],[261,37],[262,38],[264,2],[265,39],[272,40],[271,41],[273,2],[224,2],[225,2],[274,42],[277,43],[275,44],[278,2],[223,45],[230,46],[229,47],[279,2],[280,2],[281,48],[276,2],[282,2],[292,49],[283,2],[284,2],[285,2],[286,2],[287,2],[288,2],[289,2],[290,2],[291,2],[293,2],[294,2],[295,50],[296,2],[297,51],[298,52],[115,2],[263,44],[270,53],[267,3],[269,54],[268,2],[266,2],[89,55],[88,2],[86,2],[87,56],[85,2],[66,57],[64,58],[65,58],[101,59],[92,2],[91,2],[90,2],[98,2],[100,60],[94,2],[93,2],[97,2],[95,2],[99,2],[96,2],[81,61],[80,62],[82,63],[79,62],[77,2],[102,64],[68,65],[83,66],[69,2],[67,58],[84,67],[72,2],[76,68],[75,69],[74,2],[73,70],[70,2],[71,71],[78,72],[103,73],[104,2],[156,74],[157,74],[158,75],[110,76],[159,77],[160,78],[161,79],[105,2],[108,80],[106,2],[107,2],[162,81],[163,82],[164,83],[165,84],[166,85],[167,86],[168,86],[169,87],[170,88],[171,89],[172,90],[111,2],[109,2],[173,91],[174,92],[175,93],[209,94],[176,95],[177,2],[178,96],[179,97],[180,98],[181,99],[182,100],[183,101],[184,102],[185,103],[186,104],[187,104],[188,105],[189,2],[190,106],[191,107],[193,108],[192,109],[194,110],[195,111],[196,112],[197,113],[198,114],[199,115],[200,116],[201,117],[202,118],[203,119],[204,120],[205,121],[206,122],[112,2],[113,2],[114,2],[153,123],[154,2],[155,2],[207,124],[208,125],[210,2],[61,2],[62,2],[12,2],[10,2],[11,2],[16,2],[15,2],[2,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[23,2],[24,2],[3,2],[25,2],[26,2],[4,2],[27,2],[31,2],[28,2],[29,2],[30,2],[32,2],[33,2],[34,2],[5,2],[35,2],[36,2],[37,2],[38,2],[6,2],[42,2],[39,2],[40,2],[41,2],[43,2],[7,2],[44,2],[49,2],[50,2],[45,2],[46,2],[47,2],[48,2],[8,2],[54,2],[51,2],[52,2],[53,2],[55,2],[9,2],[56,2],[63,2],[57,2],[58,2],[60,2],[59,2],[1,2],[14,2],[13,2],[131,126],[141,127],[130,126],[151,128],[122,129],[121,130],[150,3],[144,131],[149,132],[124,133],[138,134],[123,135],[147,136],[119,137],[118,3],[148,138],[120,139],[125,140],[126,2],[129,140],[116,2],[152,141],[142,142],[133,143],[134,144],[136,145],[132,146],[135,147],[145,3],[127,148],[128,149],[137,150],[117,151],[140,142],[139,140],[143,2],[146,152]],"version":"5.9.3"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
apiVersion: botbotgo.world/v1
|
|
2
|
+
kind: MemoryConfig
|
|
3
|
+
metadata:
|
|
4
|
+
name: agent-memory-default
|
|
5
|
+
spec:
|
|
6
|
+
memory:
|
|
7
|
+
thread:
|
|
8
|
+
store:
|
|
9
|
+
type: in_memory
|
|
10
|
+
allowWrite: true
|
|
11
|
+
maxItems: 20
|
|
12
|
+
sessionCompaction:
|
|
13
|
+
enabled: true
|
|
14
|
+
maxTokens: 3000
|
|
15
|
+
keepRecentTurns: 12
|
|
16
|
+
summaryKey: __session_summary__
|
|
17
|
+
checkEveryTurns: 3
|
|
18
|
+
cross_thread:
|
|
19
|
+
store:
|
|
20
|
+
type: in_memory
|
|
21
|
+
allowWrite: true
|
|
22
|
+
maxItems: 20
|
|
23
|
+
knowledge:
|
|
24
|
+
store:
|
|
25
|
+
type: in_memory
|
|
26
|
+
allowWrite: true
|
|
27
|
+
maxItems: 20
|
|
28
|
+
observability:
|
|
29
|
+
trace: false
|
|
30
|
+
privacy:
|
|
31
|
+
forbiddenMetadataKeys:
|
|
32
|
+
- password
|
|
33
|
+
- api_key
|
|
34
|
+
- secret
|
|
35
|
+
- token
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
apiVersion: botbotgo.world/v1
|
|
2
|
+
kind: ModelConfig
|
|
3
|
+
metadata:
|
|
4
|
+
name: runtime2-example-model
|
|
5
|
+
spec:
|
|
6
|
+
llm:
|
|
7
|
+
default: gpt_oss
|
|
8
|
+
gpt_oss:
|
|
9
|
+
provider: openai
|
|
10
|
+
base_url: https://ollama-rtx-4070.botbotgo.world/v1
|
|
11
|
+
model: gpt-oss:latest
|
|
12
|
+
apiKey: ollama
|
|
13
|
+
options:
|
|
14
|
+
timeoutMs: 70000
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
apiVersion: botbotgo.world/v1
|
|
2
|
+
kind: AgentRuntimeConfig
|
|
3
|
+
metadata:
|
|
4
|
+
name: example-runtime
|
|
5
|
+
spec:
|
|
6
|
+
# Required outputs for the example skill.
|
|
7
|
+
artifacts:
|
|
8
|
+
- key: companyReport
|
|
9
|
+
path: output/company-report.json
|
|
10
|
+
- key: companyReportHtml
|
|
11
|
+
path: output/company-report.html
|
|
12
|
+
|
|
13
|
+
# Workspace state persisted under the example root.
|
|
14
|
+
stateDirName: .agent
|
|
15
|
+
legacyOutputState: true
|
|
16
|
+
|
|
17
|
+
# The example skill is intended to drive the workflow, so keep the agent
|
|
18
|
+
# focused on execution rather than delegating back into a generic task tool.
|
|
19
|
+
systemPrompt: |
|
|
20
|
+
You are a financial report generation assistant.
|
|
21
|
+
Follow skill instructions exactly and write only required files.
|
|
22
|
+
blockTaskTool: true
|
|
23
|
+
|
|
24
|
+
# Execution limits tuned for a skill-driven report run.
|
|
25
|
+
executeTimeoutMs: 60000
|
|
26
|
+
llmIdleTimeoutMs: 70000
|
|
27
|
+
heartbeatIntervalMs: 5000
|
|
28
|
+
backend:
|
|
29
|
+
type: local_shell
|
|
30
|
+
timeoutMs: 15000
|
|
31
|
+
maxOutputBytes: 1048576
|
|
32
|
+
|
|
33
|
+
# Retry policy stays conservative so bad tool calls fail fast during demos.
|
|
34
|
+
incompleteRunMaxRetries: 1
|
|
35
|
+
emptyRunMaxRetries: 1
|
|
36
|
+
malformedToolCallMaxRetries: 0
|
|
37
|
+
idleTimeoutMaxRetries: 1
|
|
38
|
+
|
|
39
|
+
# Fine-grained event toggles. Prefer this over eventLogLevel when you need
|
|
40
|
+
# explicit control over which runtime events are printed.
|
|
41
|
+
debug:
|
|
42
|
+
run: true
|
|
43
|
+
workspace: false
|
|
44
|
+
toolCall: true
|
|
45
|
+
stream: false
|
|
46
|
+
close: true
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
apiVersion: botbotgo.world/v1
|
|
2
|
+
kind: ToolConfig
|
|
3
|
+
metadata:
|
|
4
|
+
name: runtime2-example-tools
|
|
5
|
+
spec:
|
|
6
|
+
sandboxedPath: .
|
|
7
|
+
cacheDir: ~/.agent/cache
|
|
8
|
+
toolPath: dist/src
|
|
9
|
+
skillPath: skills
|
|
10
|
+
paths:
|
|
11
|
+
file:../../../kit-builtin: {}
|
|
12
|
+
allowedHosts:
|
|
13
|
+
- "*"
|
|
14
|
+
blockedHosts: []
|
|
15
|
+
tools:
|
|
16
|
+
deepagents:
|
|
17
|
+
- write_todos
|
|
18
|
+
- read_file
|
|
19
|
+
- write_file
|
|
20
|
+
- edit_file
|
|
21
|
+
- execute
|
|
22
|
+
customized:
|
|
23
|
+
yahooFinanceQuote: {}
|
|
24
|
+
yahooFinanceNews: {}
|
package/example/index.ts
ADDED
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* Example: OpenAI-compatible LLM + company-report skill (Workday).
|
|
4
|
+
* Default model/provider comes from config/model.yaml.
|
|
5
|
+
* Run: npx tsx index.ts [prompt] or npm run dev
|
|
6
|
+
*/
|
|
7
|
+
import { existsSync, readdirSync } from "node:fs";
|
|
8
|
+
import { readFileSync } from "node:fs";
|
|
9
|
+
import { dirname, resolve } from "node:path";
|
|
10
|
+
import { fileURLToPath } from "node:url";
|
|
11
|
+
import { AgentContextTokens, getDefaultAgentContext } from "@botbotgo/common/context";
|
|
12
|
+
import { parseYamlContent } from "@botbotgo/common/config";
|
|
13
|
+
import { createAgentTools, resolveAgentSkillRoots } from "@botbotgo/kit";
|
|
14
|
+
import {
|
|
15
|
+
ConsoleHumanLoopService,
|
|
16
|
+
createAgentRuntime2,
|
|
17
|
+
createRuntime2TreeEventListener,
|
|
18
|
+
} from "@botbotgo/runtime";
|
|
19
|
+
|
|
20
|
+
function readAllowedToolNames(toolConfigPath: string): string[] {
|
|
21
|
+
if (!existsSync(toolConfigPath)) return [];
|
|
22
|
+
const parsed = parseYamlContent(readFileSync(toolConfigPath, "utf8"), {
|
|
23
|
+
substituteEnv: false,
|
|
24
|
+
});
|
|
25
|
+
if (!parsed || typeof parsed !== "object" || Array.isArray(parsed)) return [];
|
|
26
|
+
const parsedRecord = parsed as Record<string, unknown>;
|
|
27
|
+
const source = (
|
|
28
|
+
parsedRecord.spec && typeof parsedRecord.spec === "object" && !Array.isArray(parsedRecord.spec)
|
|
29
|
+
? parsedRecord.spec
|
|
30
|
+
: parsedRecord
|
|
31
|
+
) as Record<string, unknown>;
|
|
32
|
+
const toolsNode = (
|
|
33
|
+
source.tools && typeof source.tools === "object" && !Array.isArray(source.tools)
|
|
34
|
+
? source.tools
|
|
35
|
+
: undefined
|
|
36
|
+
) as Record<string, unknown> | undefined;
|
|
37
|
+
const names = new Set<string>();
|
|
38
|
+
|
|
39
|
+
const addStringItems = (items: unknown[] | undefined) => {
|
|
40
|
+
if (!items) return;
|
|
41
|
+
for (const item of items) {
|
|
42
|
+
if (typeof item === "string" && item.trim()) names.add(item.trim());
|
|
43
|
+
}
|
|
44
|
+
};
|
|
45
|
+
const addObjectKeys = (value: unknown) => {
|
|
46
|
+
if (!value || typeof value !== "object" || Array.isArray(value)) return;
|
|
47
|
+
for (const key of Object.keys(value as Record<string, unknown>)) {
|
|
48
|
+
if (key.trim()) names.add(key.trim());
|
|
49
|
+
}
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
const deepagents = toolsNode?.deepagents;
|
|
53
|
+
const legacyDeepagents = (
|
|
54
|
+
source.deepagents && typeof source.deepagents === "object" && !Array.isArray(source.deepagents)
|
|
55
|
+
? source.deepagents
|
|
56
|
+
: undefined
|
|
57
|
+
) as Record<string, unknown> | undefined;
|
|
58
|
+
if (Array.isArray(deepagents)) {
|
|
59
|
+
addStringItems(deepagents);
|
|
60
|
+
} else if (
|
|
61
|
+
deepagents &&
|
|
62
|
+
typeof deepagents === "object" &&
|
|
63
|
+
!Array.isArray(deepagents) &&
|
|
64
|
+
Array.isArray((deepagents as Record<string, unknown>).tools)
|
|
65
|
+
) {
|
|
66
|
+
addStringItems((deepagents as { tools: unknown[] }).tools);
|
|
67
|
+
} else if (Array.isArray(legacyDeepagents?.tools)) {
|
|
68
|
+
addStringItems(legacyDeepagents.tools);
|
|
69
|
+
} else if (Array.isArray(source.allowedToolNames)) {
|
|
70
|
+
addStringItems(source.allowedToolNames);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
const customized = toolsNode?.customized;
|
|
74
|
+
if (customized && typeof customized === "object" && !Array.isArray(customized)) {
|
|
75
|
+
const customizedSource = customized as Record<string, unknown>;
|
|
76
|
+
const descriptorGrouped = Object.keys(customizedSource).some((key) => /^(npm|file):/.test(key));
|
|
77
|
+
if (descriptorGrouped) {
|
|
78
|
+
for (const value of Object.values(customizedSource)) addObjectKeys(value);
|
|
79
|
+
} else {
|
|
80
|
+
addObjectKeys(customizedSource);
|
|
81
|
+
}
|
|
82
|
+
} else if (toolsNode) {
|
|
83
|
+
for (const value of Object.values(toolsNode)) addObjectKeys(value);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
return [...names];
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
const appDir = dirname(fileURLToPath(import.meta.url));
|
|
90
|
+
const root = existsSync(resolve(appDir, "config")) ? appDir : resolve(appDir, "..");
|
|
91
|
+
const toolConfigPath = resolve(root, "config/tool.yaml");
|
|
92
|
+
const humanLoop = process.env.AGENT_RUNTIME_HUMAN_LOOP === "1"
|
|
93
|
+
? new ConsoleHumanLoopService({
|
|
94
|
+
writer: (line) => process.stderr.write(`${line}\n`),
|
|
95
|
+
})
|
|
96
|
+
: undefined;
|
|
97
|
+
|
|
98
|
+
await createAgentTools(toolConfigPath);
|
|
99
|
+
const runtime = await createAgentRuntime2({
|
|
100
|
+
rootDir: root,
|
|
101
|
+
modelConfigPath: resolve(root, "config/model.yaml"),
|
|
102
|
+
memoryConfigPath: resolve(root, "config/memory.yaml"),
|
|
103
|
+
toolConfigPath,
|
|
104
|
+
modelCheckConnectivity: false,
|
|
105
|
+
humanLoop,
|
|
106
|
+
});
|
|
107
|
+
runtime.eventListener = createRuntime2TreeEventListener({
|
|
108
|
+
runtimeConfig: runtime.runtimeConfig,
|
|
109
|
+
writer: (line) => process.stderr.write(`${line}\n`),
|
|
110
|
+
});
|
|
111
|
+
|
|
112
|
+
const skillRoots = resolveAgentSkillRoots({ configFilePath: toolConfigPath });
|
|
113
|
+
const resolvedSkills = skillRoots.flatMap((skillRoot) => {
|
|
114
|
+
try {
|
|
115
|
+
return readdirSync(skillRoot, { withFileTypes: true })
|
|
116
|
+
.filter((entry) => entry.isDirectory() && existsSync(resolve(skillRoot, entry.name, "SKILL.md")))
|
|
117
|
+
.map((entry) => resolve(skillRoot, entry.name));
|
|
118
|
+
} catch {
|
|
119
|
+
return [];
|
|
120
|
+
}
|
|
121
|
+
});
|
|
122
|
+
const tools = getDefaultAgentContext().get<Array<{ name?: unknown }>>(AgentContextTokens.Tools);
|
|
123
|
+
const allowedToolNames = readAllowedToolNames(toolConfigPath);
|
|
124
|
+
const filteredTools = tools
|
|
125
|
+
.map((tool) => tool?.name)
|
|
126
|
+
.filter((name): name is string => typeof name === "string")
|
|
127
|
+
.filter((candidate) =>
|
|
128
|
+
allowedToolNames.some((allowed) => allowed === candidate || candidate.endsWith(`.${allowed}`))
|
|
129
|
+
)
|
|
130
|
+
.sort();
|
|
131
|
+
process.stderr.write(`[debug] deepagent.skills.roots=${JSON.stringify(skillRoots)}\n`);
|
|
132
|
+
process.stderr.write(`[debug] deepagent.skills.entries=${JSON.stringify(resolvedSkills)}\n`);
|
|
133
|
+
process.stderr.write(`[debug] deepagent.allowedToolNames=${JSON.stringify(allowedToolNames.sort())}\n`);
|
|
134
|
+
process.stderr.write(
|
|
135
|
+
`[debug] context.tools=${JSON.stringify(
|
|
136
|
+
tools
|
|
137
|
+
.map((tool) => tool?.name)
|
|
138
|
+
.filter((name): name is string => typeof name === "string")
|
|
139
|
+
.sort(),
|
|
140
|
+
)}\n`,
|
|
141
|
+
);
|
|
142
|
+
process.stderr.write(`[debug] deepagent.filteredTools=${JSON.stringify(filteredTools)}\n`);
|
|
143
|
+
if (humanLoop) {
|
|
144
|
+
process.stderr.write("[debug] human-loop=console\n");
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
// ── Run ────────────────────────────────────────────────────────────────────────
|
|
148
|
+
const prompt =
|
|
149
|
+
`Generate a structured company report dataset for Workday, Inc. (ticker: WDAY). ` +
|
|
150
|
+
`Follow the company-report skill and produce the required output.`;
|
|
151
|
+
|
|
152
|
+
try {
|
|
153
|
+
await runtime.run(prompt);
|
|
154
|
+
await runtime.close();
|
|
155
|
+
process.exit(0);
|
|
156
|
+
} catch (error) {
|
|
157
|
+
await runtime.close().catch(() => {});
|
|
158
|
+
throw error;
|
|
159
|
+
}
|