@downcity/agent 1.1.32 → 1.1.43
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 +26 -84
- package/bin/agent/Agent.d.ts +208 -0
- package/bin/agent/Agent.d.ts.map +1 -0
- package/bin/agent/Agent.js +641 -0
- package/bin/agent/Agent.js.map +1 -0
- package/bin/agent/RemoteAgent.d.ts +29 -0
- package/bin/agent/RemoteAgent.d.ts.map +1 -0
- package/bin/agent/RemoteAgent.js +444 -0
- package/bin/agent/RemoteAgent.js.map +1 -0
- package/bin/config/AgentInitializer.d.ts +39 -0
- package/bin/config/AgentInitializer.d.ts.map +1 -0
- package/bin/config/AgentInitializer.js +208 -0
- package/bin/config/AgentInitializer.js.map +1 -0
- package/bin/config/Config.d.ts +16 -0
- package/bin/config/Config.d.ts.map +1 -1
- package/bin/config/Config.js +33 -67
- package/bin/config/Config.js.map +1 -1
- package/bin/config/ConfigEnvResolver.d.ts +22 -0
- package/bin/config/ConfigEnvResolver.d.ts.map +1 -0
- package/bin/config/ConfigEnvResolver.js +41 -0
- package/bin/config/ConfigEnvResolver.js.map +1 -0
- package/bin/config/Defaults.d.ts +12 -4
- package/bin/config/Defaults.d.ts.map +1 -1
- package/bin/config/Defaults.js +13 -5
- package/bin/config/Defaults.js.map +1 -1
- package/bin/config/DowncitySchema.d.ts +18 -0
- package/bin/config/DowncitySchema.d.ts.map +1 -1
- package/bin/config/DowncitySchema.js +9 -8
- package/bin/config/DowncitySchema.js.map +1 -1
- package/bin/config/EnvFile.d.ts +31 -0
- package/bin/config/EnvFile.d.ts.map +1 -0
- package/bin/config/EnvFile.js +89 -0
- package/bin/config/EnvFile.js.map +1 -0
- package/bin/config/ExecutionBinding.d.ts +24 -5
- package/bin/config/ExecutionBinding.d.ts.map +1 -1
- package/bin/config/ExecutionBinding.js +24 -5
- package/bin/config/ExecutionBinding.js.map +1 -1
- package/bin/config/Gitignore.d.ts +21 -0
- package/bin/config/Gitignore.d.ts.map +1 -0
- package/bin/config/Gitignore.js +46 -0
- package/bin/config/Gitignore.js.map +1 -0
- package/bin/config/Paths.d.ts +147 -2
- package/bin/config/Paths.d.ts.map +1 -1
- package/bin/config/Paths.js +156 -7
- package/bin/config/Paths.js.map +1 -1
- package/bin/config/PlatformPaths.d.ts +35 -0
- package/bin/config/PlatformPaths.d.ts.map +1 -0
- package/bin/config/PlatformPaths.js +49 -0
- package/bin/config/PlatformPaths.js.map +1 -0
- package/bin/executor/Executor.d.ts +172 -0
- package/bin/executor/Executor.d.ts.map +1 -0
- package/bin/executor/Executor.js +533 -0
- package/bin/executor/Executor.js.map +1 -0
- package/bin/executor/SessionRunScope.d.ts +84 -0
- package/bin/executor/SessionRunScope.d.ts.map +1 -0
- package/bin/executor/SessionRunScope.js +82 -0
- package/bin/executor/SessionRunScope.js.map +1 -0
- package/bin/executor/composer/compaction/SessionCompactionComposer.d.ts +55 -0
- package/bin/executor/composer/compaction/SessionCompactionComposer.d.ts.map +1 -0
- package/bin/executor/composer/compaction/SessionCompactionComposer.js.map +1 -0
- package/bin/executor/composer/compaction/jsonl/JsonlSessionCompactionComposer.d.ts.map +1 -0
- package/bin/executor/composer/compaction/jsonl/JsonlSessionCompactionComposer.js.map +1 -0
- package/bin/executor/composer/compaction/jsonl/JsonlSessionCompactionExecutor.d.ts +46 -0
- package/bin/executor/composer/compaction/jsonl/JsonlSessionCompactionExecutor.d.ts.map +1 -0
- package/bin/executor/composer/compaction/jsonl/JsonlSessionCompactionExecutor.js.map +1 -0
- package/bin/executor/composer/context/LocalSessionContextComposer.d.ts +48 -0
- package/bin/executor/composer/context/LocalSessionContextComposer.d.ts.map +1 -0
- package/bin/executor/composer/context/LocalSessionContextComposer.js.map +1 -0
- package/bin/executor/composer/context/SessionContextComposer.d.ts +62 -0
- package/bin/executor/composer/context/SessionContextComposer.d.ts.map +1 -0
- package/bin/executor/composer/context/SessionContextComposer.js.map +1 -0
- package/bin/executor/composer/history/SessionHistoryComposer.d.ts +54 -0
- package/bin/executor/composer/history/SessionHistoryComposer.d.ts.map +1 -0
- package/bin/executor/composer/history/SessionHistoryComposer.js.map +1 -0
- package/bin/executor/composer/history/SessionHistoryWriter.d.ts +56 -0
- package/bin/executor/composer/history/SessionHistoryWriter.d.ts.map +1 -0
- package/bin/executor/composer/history/SessionHistoryWriter.js.map +1 -0
- package/bin/executor/composer/history/jsonl/JsonlSessionHistoryComposer.d.ts +35 -0
- package/bin/executor/composer/history/jsonl/JsonlSessionHistoryComposer.d.ts.map +1 -0
- package/bin/executor/composer/history/jsonl/JsonlSessionHistoryComposer.js.map +1 -0
- package/bin/executor/composer/system/SessionSystemComposer.d.ts.map +1 -0
- package/bin/executor/composer/system/SessionSystemComposer.js.map +1 -0
- package/bin/executor/composer/system/default/DefaultSessionSystemComposer.d.ts +42 -0
- package/bin/executor/composer/system/default/DefaultSessionSystemComposer.d.ts.map +1 -0
- package/bin/executor/composer/system/default/DefaultSessionSystemComposer.js.map +1 -0
- package/bin/executor/composer/system/default/InitPromptAssets.d.ts.map +1 -0
- package/bin/executor/composer/system/default/InitPromptAssets.js.map +1 -0
- package/bin/executor/composer/system/default/InitPrompts.d.ts.map +1 -0
- package/bin/executor/composer/system/default/InitPrompts.js.map +1 -0
- package/bin/executor/composer/system/default/PromptRenderer.d.ts.map +1 -0
- package/bin/executor/composer/system/default/PromptRenderer.js.map +1 -0
- package/bin/executor/composer/system/default/StaticPromptCatalog.d.ts.map +1 -0
- package/bin/executor/composer/system/default/StaticPromptCatalog.js.map +1 -0
- package/bin/executor/composer/system/default/SystemDomain.d.ts +169 -0
- package/bin/executor/composer/system/default/SystemDomain.d.ts.map +1 -0
- package/bin/executor/composer/system/default/SystemDomain.js +204 -0
- package/bin/executor/composer/system/default/SystemDomain.js.map +1 -0
- package/bin/executor/composer/system/default/SystemPromptAssets.d.ts.map +1 -0
- package/bin/executor/composer/system/default/SystemPromptAssets.js.map +1 -0
- package/bin/executor/composer/system/default/assets/core.prompt.d.ts.map +1 -0
- package/bin/executor/composer/system/default/assets/core.prompt.js +8 -0
- package/bin/executor/composer/system/default/assets/core.prompt.js.map +1 -0
- package/bin/executor/composer/system/default/assets/init/PROFILE.md.d.ts.map +1 -0
- package/bin/executor/composer/system/default/assets/init/PROFILE.md.js +8 -0
- package/bin/executor/composer/system/default/assets/init/PROFILE.md.js.map +1 -0
- package/bin/executor/composer/system/default/assets/init/SOUL.md.d.ts.map +1 -0
- package/bin/executor/composer/system/default/assets/init/SOUL.md.js +8 -0
- package/bin/executor/composer/system/default/assets/init/SOUL.md.js.map +1 -0
- package/bin/executor/composer/system/default/assets/plugin.prompt.d.ts +7 -0
- package/bin/executor/composer/system/default/assets/plugin.prompt.d.ts.map +1 -0
- package/bin/executor/composer/system/default/assets/plugin.prompt.js +8 -0
- package/bin/executor/composer/system/default/assets/plugin.prompt.js.map +1 -0
- package/bin/executor/composer/system/default/assets/task.prompt.d.ts.map +1 -0
- package/bin/executor/composer/system/default/assets/task.prompt.js +8 -0
- package/bin/executor/composer/system/default/assets/task.prompt.js.map +1 -0
- package/bin/executor/composer/system/default/variables/GeoContext.d.ts.map +1 -0
- package/bin/executor/composer/system/default/variables/GeoContext.js.map +1 -0
- package/bin/executor/composer/system/default/variables/PromptTypes.d.ts.map +1 -0
- package/bin/executor/composer/system/default/variables/PromptTypes.js.map +1 -0
- package/bin/executor/composer/system/default/variables/VariableReplacer.d.ts.map +1 -0
- package/bin/executor/composer/system/default/variables/VariableReplacer.js.map +1 -0
- package/bin/executor/core-engine/CoreEngineError.d.ts.map +1 -0
- package/bin/executor/core-engine/CoreEngineError.js.map +1 -0
- package/bin/executor/core-engine/CoreEngineLoopDecision.d.ts +27 -0
- package/bin/executor/core-engine/CoreEngineLoopDecision.d.ts.map +1 -0
- package/bin/executor/core-engine/CoreEngineLoopDecision.js.map +1 -0
- package/bin/executor/core-engine/CoreEngineMessageState.d.ts +63 -0
- package/bin/executor/core-engine/CoreEngineMessageState.d.ts.map +1 -0
- package/bin/executor/core-engine/CoreEngineMessageState.js.map +1 -0
- package/bin/executor/core-engine/CoreEngineSignals.d.ts +72 -0
- package/bin/executor/core-engine/CoreEngineSignals.d.ts.map +1 -0
- package/bin/executor/core-engine/CoreEngineSignals.js.map +1 -0
- package/bin/executor/core-engine/CoreEngineUiStreamCollector.d.ts +33 -0
- package/bin/executor/core-engine/CoreEngineUiStreamCollector.d.ts.map +1 -0
- package/bin/executor/core-engine/CoreEngineUiStreamCollector.js.map +1 -0
- package/bin/executor/ids/resolveSessionId.d.ts.map +1 -0
- package/bin/executor/ids/resolveSessionId.js.map +1 -0
- package/bin/executor/messages/AssistantResultPersistence.d.ts +66 -0
- package/bin/executor/messages/AssistantResultPersistence.d.ts.map +1 -0
- package/bin/executor/messages/AssistantResultPersistence.js +48 -0
- package/bin/executor/messages/AssistantResultPersistence.js.map +1 -0
- package/bin/executor/messages/ChatMessageMarkup.d.ts +54 -0
- package/bin/executor/messages/ChatMessageMarkup.d.ts.map +1 -0
- package/bin/executor/messages/ChatMessageMarkup.js.map +1 -0
- package/bin/executor/messages/ChatMessageMarkupTypes.d.ts +144 -0
- package/bin/executor/messages/ChatMessageMarkupTypes.d.ts.map +1 -0
- package/bin/executor/messages/ChatMessageMarkupTypes.js +9 -0
- package/bin/executor/messages/ChatMessageMarkupTypes.js.map +1 -0
- package/bin/executor/messages/SessionAttachmentMapper.d.ts +14 -0
- package/bin/executor/messages/SessionAttachmentMapper.d.ts.map +1 -0
- package/bin/executor/messages/SessionAttachmentMapper.js +145 -0
- package/bin/executor/messages/SessionAttachmentMapper.js.map +1 -0
- package/bin/executor/messages/SessionMessageCodec.d.ts +41 -0
- package/bin/executor/messages/SessionMessageCodec.d.ts.map +1 -0
- package/bin/executor/messages/SessionMessageCodec.js.map +1 -0
- package/bin/executor/messages/SessionMessageLog.d.ts +19 -0
- package/bin/executor/messages/SessionMessageLog.d.ts.map +1 -0
- package/bin/executor/messages/SessionMessageLog.js.map +1 -0
- package/bin/executor/messages/SessionStepEventMapper.d.ts +20 -0
- package/bin/executor/messages/SessionStepEventMapper.d.ts.map +1 -0
- package/bin/executor/messages/SessionStepEventMapper.js.map +1 -0
- package/bin/executor/messages/UIMessageTransformer.d.ts +24 -0
- package/bin/executor/messages/UIMessageTransformer.d.ts.map +1 -0
- package/bin/executor/messages/UIMessageTransformer.js.map +1 -0
- package/bin/executor/messages/UserVisibleText.d.ts +34 -0
- package/bin/executor/messages/UserVisibleText.d.ts.map +1 -0
- package/bin/executor/messages/UserVisibleText.js.map +1 -0
- package/bin/executor/store/history/SessionHistoryStore.d.ts +119 -0
- package/bin/executor/store/history/SessionHistoryStore.d.ts.map +1 -0
- package/bin/executor/store/history/SessionHistoryStore.js.map +1 -0
- package/bin/executor/store/history/jsonl/JsonlSessionHistoryStore.d.ts +85 -0
- package/bin/executor/store/history/jsonl/JsonlSessionHistoryStore.d.ts.map +1 -0
- package/bin/executor/store/history/jsonl/JsonlSessionHistoryStore.js.map +1 -0
- package/bin/executor/tools/shell/ShellToolBridge.d.ts +79 -0
- package/bin/executor/tools/shell/ShellToolBridge.d.ts.map +1 -0
- package/bin/executor/tools/shell/ShellToolBridge.js +288 -0
- package/bin/executor/tools/shell/ShellToolBridge.js.map +1 -0
- package/bin/executor/tools/shell/ShellToolDefinition.d.ts +114 -0
- package/bin/executor/tools/shell/ShellToolDefinition.d.ts.map +1 -0
- package/bin/executor/tools/shell/ShellToolDefinition.js +359 -0
- package/bin/executor/tools/shell/ShellToolDefinition.js.map +1 -0
- package/bin/executor/tools/shell/ShellToolFormatting.d.ts +26 -0
- package/bin/executor/tools/shell/ShellToolFormatting.d.ts.map +1 -0
- package/bin/executor/tools/shell/ShellToolFormatting.js +74 -0
- package/bin/executor/tools/shell/ShellToolFormatting.js.map +1 -0
- package/bin/executor/tools/shell/ShellToolSchemas.d.ts +118 -0
- package/bin/executor/tools/shell/ShellToolSchemas.d.ts.map +1 -0
- package/bin/executor/tools/shell/ShellToolSchemas.js +113 -0
- package/bin/executor/tools/shell/ShellToolSchemas.js.map +1 -0
- package/bin/executor/tools/shell/types/Shell.d.ts.map +1 -0
- package/bin/executor/tools/shell/types/Shell.js.map +1 -0
- package/bin/executor/tools/shell/types/ShellPlugin.d.ts +216 -0
- package/bin/executor/tools/shell/types/ShellPlugin.d.ts.map +1 -0
- package/bin/executor/tools/shell/types/ShellPlugin.js +9 -0
- package/bin/executor/tools/shell/types/ShellPlugin.js.map +1 -0
- package/bin/executor/types/SessionExecutor.d.ts +18 -0
- package/bin/executor/types/SessionExecutor.d.ts.map +1 -0
- package/bin/executor/types/SessionExecutor.js.map +1 -0
- package/bin/executor/types/SessionHistoryMeta.d.ts.map +1 -0
- package/bin/executor/types/SessionHistoryMeta.js.map +1 -0
- package/bin/executor/types/SessionHistoryPaths.d.ts.map +1 -0
- package/bin/executor/types/SessionHistoryPaths.js.map +1 -0
- package/bin/executor/types/SessionLoop.d.ts.map +1 -0
- package/bin/executor/types/SessionLoop.js.map +1 -0
- package/bin/executor/types/SessionMessages.d.ts.map +1 -0
- package/bin/executor/types/SessionMessages.js.map +1 -0
- package/bin/executor/types/SessionPrompts.d.ts.map +1 -0
- package/bin/executor/types/SessionPrompts.js.map +1 -0
- package/bin/executor/types/SessionRun.d.ts +112 -0
- package/bin/executor/types/SessionRun.d.ts.map +1 -0
- package/bin/executor/types/SessionRun.js.map +1 -0
- package/bin/index.d.ts +34 -51
- package/bin/index.d.ts.map +1 -1
- package/bin/index.js +24 -37
- package/bin/index.js.map +1 -1
- package/bin/plugin/core/ActionScheduleExecutor.d.ts +18 -0
- package/bin/plugin/core/ActionScheduleExecutor.d.ts.map +1 -0
- package/bin/plugin/core/ActionScheduleExecutor.js +49 -0
- package/bin/plugin/core/ActionScheduleExecutor.js.map +1 -0
- package/bin/plugin/core/ActionScheduleRuntime.d.ts +23 -0
- package/bin/plugin/core/ActionScheduleRuntime.d.ts.map +1 -0
- package/bin/plugin/core/ActionScheduleRuntime.js +61 -0
- package/bin/plugin/core/ActionScheduleRuntime.js.map +1 -0
- package/bin/plugin/core/ActionScheduleStore.d.ts +92 -0
- package/bin/plugin/core/ActionScheduleStore.d.ts.map +1 -0
- package/bin/plugin/core/ActionScheduleStore.js +287 -0
- package/bin/plugin/core/ActionScheduleStore.js.map +1 -0
- package/bin/plugin/core/ActionScheduleTime.d.ts +32 -0
- package/bin/plugin/core/ActionScheduleTime.d.ts.map +1 -0
- package/bin/plugin/core/ActionScheduleTime.js +108 -0
- package/bin/plugin/core/ActionScheduleTime.js.map +1 -0
- package/bin/plugin/core/Activation.d.ts +7 -7
- package/bin/plugin/core/Activation.d.ts.map +1 -1
- package/bin/plugin/core/Activation.js +8 -7
- package/bin/plugin/core/Activation.js.map +1 -1
- package/bin/plugin/core/BasePlugin.d.ts +5 -5
- package/bin/plugin/core/BasePlugin.d.ts.map +1 -1
- package/bin/plugin/core/BasePlugin.js +2 -2
- package/bin/plugin/core/HookRegistry.d.ts +1 -1
- package/bin/plugin/core/HookRegistry.d.ts.map +1 -1
- package/bin/plugin/core/PluginActionRunner.d.ts +3 -3
- package/bin/plugin/core/PluginActionRunner.d.ts.map +1 -1
- package/bin/plugin/core/PluginActionRunner.js +3 -4
- package/bin/plugin/core/PluginActionRunner.js.map +1 -1
- package/bin/plugin/core/PluginCatalog.d.ts +56 -0
- package/bin/plugin/core/PluginCatalog.d.ts.map +1 -0
- package/bin/plugin/core/PluginCatalog.js +137 -0
- package/bin/plugin/core/PluginCatalog.js.map +1 -0
- package/bin/plugin/core/PluginCommand.d.ts +9 -5
- package/bin/plugin/core/PluginCommand.d.ts.map +1 -1
- package/bin/plugin/core/PluginCommand.js +12 -11
- package/bin/plugin/core/PluginCommand.js.map +1 -1
- package/bin/plugin/core/PluginCommandRequest.d.ts +7 -7
- package/bin/plugin/core/PluginCommandRequest.d.ts.map +1 -1
- package/bin/plugin/core/PluginCommandRequest.js +6 -6
- package/bin/plugin/core/PluginCommandRequest.js.map +1 -1
- package/bin/plugin/core/PluginHttpRoutes.d.ts +24 -0
- package/bin/plugin/core/PluginHttpRoutes.d.ts.map +1 -0
- package/bin/plugin/core/PluginHttpRoutes.js +35 -0
- package/bin/plugin/core/PluginHttpRoutes.js.map +1 -0
- package/bin/plugin/core/PluginLocalExecution.d.ts +33 -0
- package/bin/plugin/core/PluginLocalExecution.d.ts.map +1 -0
- package/bin/plugin/core/PluginLocalExecution.js +120 -0
- package/bin/plugin/core/PluginLocalExecution.js.map +1 -0
- package/bin/plugin/core/PluginRegistry.d.ts +1 -1
- package/bin/plugin/core/PluginRegistry.d.ts.map +1 -1
- package/bin/plugin/core/PluginRegistry.js +2 -12
- package/bin/plugin/core/PluginRegistry.js.map +1 -1
- package/bin/plugin/core/PluginStateController.d.ts +2 -2
- package/bin/plugin/core/PluginStateController.d.ts.map +1 -1
- package/bin/plugin/core/PluginStateController.js +5 -6
- package/bin/plugin/core/PluginStateController.js.map +1 -1
- package/bin/plugin/core/ProjectConfigStore.d.ts +53 -0
- package/bin/plugin/core/ProjectConfigStore.d.ts.map +1 -1
- package/bin/plugin/core/ProjectConfigStore.js +52 -0
- package/bin/plugin/core/ProjectConfigStore.js.map +1 -1
- package/bin/plugin/types/ActionSchedule.d.ts +85 -0
- package/bin/plugin/types/ActionSchedule.d.ts.map +1 -0
- package/bin/plugin/types/ActionSchedule.js +10 -0
- package/bin/plugin/types/ActionSchedule.js.map +1 -0
- package/bin/plugin/types/Plugin.d.ts +23 -31
- package/bin/plugin/types/Plugin.d.ts.map +1 -1
- package/bin/plugin/types/PluginApi.d.ts +3 -3
- package/bin/plugin/types/PluginApi.d.ts.map +1 -1
- package/bin/plugin/types/PluginApi.js +1 -1
- package/bin/plugin/types/PluginState.d.ts +1 -1
- package/bin/plugin/types/PluginState.d.ts.map +1 -1
- package/bin/plugin/types/Plugins.d.ts +2 -2
- package/bin/plugin/types/Plugins.d.ts.map +1 -1
- package/bin/runtime/host/AgentHostRuntime.js +1 -1
- package/bin/runtime/host/daemon/Api.d.ts +2 -2
- package/bin/runtime/host/daemon/Api.js +1 -1
- package/bin/runtime/host/daemon/ProjectSetup.d.ts +0 -11
- package/bin/runtime/host/daemon/ProjectSetup.d.ts.map +1 -1
- package/bin/runtime/host/daemon/ProjectSetup.js +0 -45
- package/bin/runtime/host/daemon/ProjectSetup.js.map +1 -1
- package/bin/runtime/sandbox/SandboxConfigResolver.d.ts +1 -1
- package/bin/runtime/sandbox/SandboxConfigResolver.d.ts.map +1 -1
- package/bin/runtime/sandbox/SandboxRunner.d.ts +1 -1
- package/bin/runtime/sandbox/SandboxRunner.d.ts.map +1 -1
- package/bin/runtime/sandbox/types/SandboxRuntime.d.ts +1 -1
- package/bin/runtime/sandbox/types/SandboxRuntime.js +1 -1
- package/bin/runtime/server/http/Server.d.ts +10 -10
- package/bin/runtime/server/http/Server.d.ts.map +1 -1
- package/bin/runtime/server/http/Server.js +14 -34
- package/bin/runtime/server/http/Server.js.map +1 -1
- package/bin/runtime/server/http/control/AuthControlService.d.ts +9 -5
- package/bin/runtime/server/http/control/AuthControlService.d.ts.map +1 -1
- package/bin/runtime/server/http/control/AuthControlService.js +11 -2
- package/bin/runtime/server/http/control/AuthControlService.js.map +1 -1
- package/bin/runtime/server/http/control/ControlApiRoutes.d.ts +1 -1
- package/bin/runtime/server/http/control/ControlApiRoutes.d.ts.map +1 -1
- package/bin/runtime/server/http/control/ControlApiRoutes.js +1 -3
- package/bin/runtime/server/http/control/ControlApiRoutes.js.map +1 -1
- package/bin/runtime/server/http/control/ControlAuthorizationRoutes.d.ts +1 -1
- package/bin/runtime/server/http/control/ControlAuthorizationRoutes.d.ts.map +1 -1
- package/bin/runtime/server/http/control/ControlAuthorizationRoutes.js +1 -2
- package/bin/runtime/server/http/control/ControlAuthorizationRoutes.js.map +1 -1
- package/bin/runtime/server/http/control/ControlRouter.d.ts +2 -2
- package/bin/runtime/server/http/control/ControlRouter.d.ts.map +1 -1
- package/bin/runtime/server/http/control/ExecuteBySession.d.ts +6 -15
- package/bin/runtime/server/http/control/ExecuteBySession.d.ts.map +1 -1
- package/bin/runtime/server/http/control/ExecuteBySession.js +3 -64
- package/bin/runtime/server/http/control/ExecuteBySession.js.map +1 -1
- package/bin/runtime/server/http/control/ExecuteInput.js +1 -1
- package/bin/runtime/server/http/control/ExecuteInput.js.map +1 -1
- package/bin/runtime/server/http/control/MessageTimeline.d.ts +1 -1
- package/bin/runtime/server/http/control/MessageTimeline.d.ts.map +1 -1
- package/bin/runtime/server/http/control/MessageTimeline.js +2 -2
- package/bin/runtime/server/http/control/MessageTimeline.js.map +1 -1
- package/bin/runtime/server/http/control/OverviewRoutes.d.ts +1 -1
- package/bin/runtime/server/http/control/OverviewRoutes.d.ts.map +1 -1
- package/bin/runtime/server/http/control/OverviewRoutes.js +9 -10
- package/bin/runtime/server/http/control/OverviewRoutes.js.map +1 -1
- package/bin/runtime/server/http/control/SessionRoutes.js +1 -1
- package/bin/runtime/server/http/control/SessionRoutes.js.map +1 -1
- package/bin/runtime/server/http/control/SessionSummaryStore.d.ts +1 -1
- package/bin/runtime/server/http/control/SessionSummaryStore.d.ts.map +1 -1
- package/bin/runtime/server/http/control/SessionSummaryStore.js +0 -12
- package/bin/runtime/server/http/control/SessionSummaryStore.js.map +1 -1
- package/bin/runtime/server/http/control/TaskRoutes.d.ts +1 -1
- package/bin/runtime/server/http/control/TaskRoutes.d.ts.map +1 -1
- package/bin/runtime/server/http/control/TaskRoutes.js +43 -14
- package/bin/runtime/server/http/control/TaskRoutes.js.map +1 -1
- package/bin/runtime/server/http/control/TaskStore.d.ts.map +1 -1
- package/bin/runtime/server/http/control/TaskStore.js +20 -2
- package/bin/runtime/server/http/control/TaskStore.js.map +1 -1
- package/bin/runtime/server/http/control/types/AuthControl.d.ts +5 -5
- package/bin/runtime/server/http/control/types/AuthControl.d.ts.map +1 -1
- package/bin/runtime/server/http/control/types/ControlRoutes.d.ts +2 -2
- package/bin/runtime/server/http/control/types/ControlRoutes.d.ts.map +1 -1
- package/bin/runtime/server/http/execute/execute.d.ts +1 -1
- package/bin/runtime/server/http/execute/execute.d.ts.map +1 -1
- package/bin/runtime/server/http/plugins/plugins.d.ts +4 -4
- package/bin/runtime/server/http/plugins/plugins.d.ts.map +1 -1
- package/bin/runtime/server/http/plugins/plugins.js +61 -4
- package/bin/runtime/server/http/plugins/plugins.js.map +1 -1
- package/bin/runtime/server/http/sdk/Router.d.ts +2 -2
- package/bin/runtime/server/http/sdk/Router.d.ts.map +1 -1
- package/bin/runtime/server/http/sdk/Router.js +2 -2
- package/bin/runtime/server/http/sdk/Router.js.map +1 -1
- package/bin/runtime/server/http/sdk/SessionRoutes.d.ts +2 -2
- package/bin/runtime/server/http/sdk/SessionRoutes.d.ts.map +1 -1
- package/bin/runtime/server/http/sdk/SessionRoutes.js +72 -13
- package/bin/runtime/server/http/sdk/SessionRoutes.js.map +1 -1
- package/bin/runtime/server/http/static/static.d.ts +1 -1
- package/bin/runtime/server/http/static/static.d.ts.map +1 -1
- package/bin/runtime/server/rpc/Server.d.ts +4 -6
- package/bin/runtime/server/rpc/Server.d.ts.map +1 -1
- package/bin/runtime/server/rpc/Server.js +7 -12
- package/bin/runtime/server/rpc/Server.js.map +1 -1
- package/bin/runtime/transport/rpc/Paths.d.ts.map +1 -1
- package/bin/runtime/transport/rpc/Paths.js +1 -14
- package/bin/runtime/transport/rpc/Paths.js.map +1 -1
- package/bin/session/Session.d.ts +176 -0
- package/bin/session/Session.d.ts.map +1 -0
- package/bin/session/Session.js +503 -0
- package/bin/session/Session.js.map +1 -0
- package/bin/session/SessionEventMapper.d.ts.map +1 -0
- package/bin/session/SessionEventMapper.js.map +1 -0
- package/bin/session/SessionSystemBuilder.d.ts +106 -0
- package/bin/session/SessionSystemBuilder.d.ts.map +1 -0
- package/bin/session/SessionSystemBuilder.js +147 -0
- package/bin/session/SessionSystemBuilder.js.map +1 -0
- package/bin/session/browse/Browse.d.ts +76 -0
- package/bin/session/browse/Browse.d.ts.map +1 -0
- package/bin/session/browse/Browse.js +418 -0
- package/bin/session/browse/Browse.js.map +1 -0
- package/bin/session/index.d.ts +14 -0
- package/bin/session/index.d.ts.map +1 -0
- package/bin/session/index.js +14 -0
- package/bin/session/index.js.map +1 -0
- package/bin/session/runtime/SessionEventHub.d.ts +24 -0
- package/bin/session/runtime/SessionEventHub.d.ts.map +1 -0
- package/bin/session/runtime/SessionEventHub.js.map +1 -0
- package/bin/session/runtime/SessionPromptRuntime.d.ts +71 -0
- package/bin/session/runtime/SessionPromptRuntime.d.ts.map +1 -0
- package/bin/session/runtime/SessionPromptRuntime.js.map +1 -0
- package/bin/session/storage/Metadata.d.ts +55 -0
- package/bin/session/storage/Metadata.d.ts.map +1 -0
- package/bin/session/storage/Metadata.js +140 -0
- package/bin/session/storage/Metadata.js.map +1 -0
- package/bin/session/storage/Paths.d.ts.map +1 -0
- package/bin/session/storage/Paths.js.map +1 -0
- package/bin/session/storage/Persistence.d.ts +63 -0
- package/bin/session/storage/Persistence.d.ts.map +1 -0
- package/bin/session/storage/Persistence.js +52 -0
- package/bin/session/storage/Persistence.js.map +1 -0
- package/bin/session/storage/RuntimeSessionPort.d.ts +70 -0
- package/bin/session/storage/RuntimeSessionPort.d.ts.map +1 -0
- package/bin/session/storage/RuntimeSessionPort.js +40 -0
- package/bin/session/storage/RuntimeSessionPort.js.map +1 -0
- package/bin/types/agent/AgentTypes.d.ts +636 -0
- package/bin/types/agent/AgentTypes.d.ts.map +1 -0
- package/bin/types/agent/AgentTypes.js +10 -0
- package/bin/types/agent/AgentTypes.js.map +1 -0
- package/bin/types/common/EnvFile.d.ts +30 -0
- package/bin/types/common/EnvFile.d.ts.map +1 -0
- package/bin/types/common/EnvFile.js +10 -0
- package/bin/types/common/EnvFile.js.map +1 -0
- package/bin/types/common/ResolvedConfigValue.d.ts +12 -0
- package/bin/types/common/ResolvedConfigValue.d.ts.map +1 -0
- package/bin/types/common/ResolvedConfigValue.js +2 -0
- package/bin/types/common/ResolvedConfigValue.js.map +1 -0
- package/bin/types/config/AgentProject.d.ts +80 -0
- package/bin/types/config/AgentProject.d.ts.map +1 -0
- package/bin/types/config/AgentProject.js.map +1 -0
- package/bin/types/config/DowncityConfig.d.ts +132 -96
- package/bin/types/config/DowncityConfig.d.ts.map +1 -1
- package/bin/types/runtime/agent/AgentContext.d.ts +244 -0
- package/bin/types/runtime/agent/AgentContext.d.ts.map +1 -0
- package/bin/types/runtime/agent/AgentContext.js +13 -0
- package/bin/types/runtime/agent/AgentContext.js.map +1 -0
- package/bin/types/runtime/agent/AgentRuntime.d.ts +79 -0
- package/bin/types/runtime/agent/AgentRuntime.d.ts.map +1 -0
- package/bin/types/runtime/agent/AgentRuntime.js +13 -0
- package/bin/types/runtime/agent/AgentRuntime.js.map +1 -0
- package/bin/types/runtime/host/AgentHost.d.ts +2 -122
- package/bin/types/runtime/host/AgentHost.d.ts.map +1 -1
- package/bin/types/runtime/host/AgentHost.js +2 -2
- package/bin/types/runtime/http/InlineInstant.d.ts +2 -2
- package/bin/types/runtime/http/InlineInstant.d.ts.map +1 -1
- package/bin/types/runtime/platform/PlatformGateway.d.ts +10 -10
- package/bin/types/runtime/platform/PlatformGateway.d.ts.map +1 -1
- package/bin/types/sdk/AgentSessionEvent.d.ts +1 -1
- package/bin/types/sdk/AgentSessionEvent.d.ts.map +1 -1
- package/bin/types/sdk/AgentSessionTurn.d.ts +1 -1
- package/bin/types/sdk/AgentSessionTurn.d.ts.map +1 -1
- package/bin/utils/object/DeepMerge.d.ts +18 -0
- package/bin/utils/object/DeepMerge.d.ts.map +1 -0
- package/bin/utils/object/DeepMerge.js +37 -0
- package/bin/utils/object/DeepMerge.js.map +1 -0
- package/bin/utils/object/ObjectGuards.d.ts +17 -0
- package/bin/utils/object/ObjectGuards.d.ts.map +1 -0
- package/bin/utils/object/ObjectGuards.js +19 -0
- package/bin/utils/object/ObjectGuards.js.map +1 -0
- package/bin/utils/path/AncestorFiles.d.ts +17 -0
- package/bin/utils/path/AncestorFiles.d.ts.map +1 -0
- package/bin/utils/path/AncestorFiles.js +36 -0
- package/bin/utils/path/AncestorFiles.js.map +1 -0
- package/bin/utils/string/EscapeRegExp.d.ts +17 -0
- package/bin/utils/string/EscapeRegExp.d.ts.map +1 -0
- package/bin/utils/string/EscapeRegExp.js +19 -0
- package/bin/utils/string/EscapeRegExp.js.map +1 -0
- package/package.json +8 -2
- package/scripts/session-prompt-runtime.test.mjs +30 -10
- package/src/agent/Agent.ts +748 -0
- package/src/agent/RemoteAgent.ts +621 -0
- package/src/config/AgentInitializer.ts +262 -0
- package/src/config/Config.ts +37 -82
- package/src/config/ConfigEnvResolver.ts +52 -0
- package/src/config/Defaults.ts +13 -5
- package/src/config/DowncitySchema.ts +20 -8
- package/src/config/EnvFile.ts +99 -0
- package/src/config/ExecutionBinding.ts +24 -5
- package/src/config/Gitignore.ts +52 -0
- package/src/config/Paths.ts +156 -7
- package/src/config/PlatformPaths.ts +53 -0
- package/src/executor/Executor.ts +732 -0
- package/src/executor/README.md +108 -0
- package/src/executor/SessionRunScope.ts +146 -0
- package/src/executor/composer/compaction/SessionCompactionComposer.ts +62 -0
- package/src/executor/composer/compaction/jsonl/JsonlSessionCompactionComposer.ts +101 -0
- package/src/executor/composer/compaction/jsonl/JsonlSessionCompactionExecutor.ts +261 -0
- package/src/executor/composer/context/LocalSessionContextComposer.ts +168 -0
- package/src/executor/composer/context/SessionContextComposer.ts +70 -0
- package/src/executor/composer/history/SessionHistoryComposer.ts +62 -0
- package/src/executor/composer/history/SessionHistoryWriter.ts +131 -0
- package/src/executor/composer/history/jsonl/JsonlSessionHistoryComposer.ts +126 -0
- package/src/executor/composer/system/default/DefaultSessionSystemComposer.ts +77 -0
- package/src/executor/composer/system/default/InitPromptAssets.ts +20 -0
- package/src/executor/composer/system/default/InitPrompts.ts +11 -0
- package/src/executor/composer/system/default/PromptRenderer.ts +52 -0
- package/src/executor/composer/system/default/StaticPromptCatalog.ts +287 -0
- package/src/executor/composer/system/default/SystemDomain.ts +357 -0
- package/src/executor/composer/system/default/SystemPromptAssets.ts +26 -0
- package/src/executor/composer/system/default/assets/core.prompt.ts +9 -0
- package/src/executor/composer/system/default/assets/init/PROFILE.md.ts +9 -0
- package/src/executor/composer/system/default/assets/init/SOUL.md.ts +9 -0
- package/src/executor/composer/system/default/assets/plugin.prompt.ts +9 -0
- package/src/executor/composer/system/default/assets/plugin.prompt.ts.txt +29 -0
- package/src/executor/composer/system/default/assets/task.prompt.ts +9 -0
- package/src/executor/composer/system/default/variables/GeoContext.ts +180 -0
- package/src/executor/composer/system/default/variables/VariableReplacer.ts +154 -0
- package/src/executor/core-engine/CoreEngineLoopDecision.ts +80 -0
- package/src/executor/core-engine/CoreEngineMessageState.ts +133 -0
- package/src/executor/core-engine/CoreEngineSignals.ts +416 -0
- package/src/executor/core-engine/CoreEngineUiStreamCollector.ts +96 -0
- package/src/executor/messages/AssistantResultPersistence.ts +111 -0
- package/src/executor/messages/ChatMessageMarkup.ts +263 -0
- package/src/executor/messages/ChatMessageMarkupTypes.ts +168 -0
- package/src/executor/messages/SessionAttachmentMapper.ts +155 -0
- package/src/executor/messages/SessionMessageCodec.ts +116 -0
- package/src/executor/messages/SessionMessageLog.ts +39 -0
- package/src/executor/messages/SessionStepEventMapper.ts +233 -0
- package/src/executor/messages/UIMessageTransformer.ts +141 -0
- package/src/executor/messages/UserVisibleText.ts +84 -0
- package/src/executor/store/history/SessionHistoryStore.ts +145 -0
- package/src/executor/store/history/jsonl/JsonlSessionHistoryStore.ts +500 -0
- package/src/executor/tools/shell/ShellToolBridge.ts +378 -0
- package/src/executor/tools/shell/ShellToolDefinition.ts +509 -0
- package/src/executor/tools/shell/ShellToolFormatting.ts +83 -0
- package/src/executor/tools/shell/ShellToolSchemas.ts +120 -0
- package/src/executor/tools/shell/types/ShellPlugin.ts +233 -0
- package/src/executor/types/SessionExecutor.ts +33 -0
- package/src/executor/types/SessionRun.ts +132 -0
- package/src/index.ts +75 -102
- package/src/plugin/core/ActionScheduleExecutor.ts +58 -0
- package/src/plugin/core/ActionScheduleRuntime.ts +82 -0
- package/src/plugin/core/ActionScheduleStore.ts +371 -0
- package/src/plugin/core/ActionScheduleTime.ts +132 -0
- package/src/plugin/core/Activation.ts +12 -10
- package/src/plugin/core/BasePlugin.ts +5 -5
- package/src/plugin/core/HookRegistry.ts +1 -1
- package/src/plugin/core/PluginActionRunner.ts +8 -9
- package/src/plugin/core/PluginCatalog.ts +178 -0
- package/src/plugin/core/PluginCommand.ts +22 -12
- package/src/plugin/core/PluginCommandRequest.ts +11 -11
- package/src/plugin/core/PluginHttpRoutes.ts +47 -0
- package/src/plugin/core/PluginLocalExecution.ts +155 -0
- package/src/plugin/core/PluginRegistry.ts +3 -23
- package/src/plugin/core/PluginStateController.ts +7 -12
- package/src/plugin/core/ProjectConfigStore.ts +97 -0
- package/src/plugin/types/ActionSchedule.ts +94 -0
- package/src/plugin/types/Plugin.ts +23 -32
- package/src/plugin/types/PluginApi.ts +3 -3
- package/src/plugin/types/PluginState.ts +0 -5
- package/src/plugin/types/Plugins.ts +2 -2
- package/src/runtime/host/AgentHostRuntime.ts +1 -1
- package/src/runtime/host/daemon/Api.ts +2 -2
- package/src/runtime/host/daemon/ProjectSetup.ts +0 -53
- package/src/runtime/sandbox/SandboxConfigResolver.ts +1 -1
- package/src/runtime/sandbox/SandboxRunner.ts +1 -1
- package/src/runtime/sandbox/types/SandboxRuntime.ts +1 -1
- package/src/runtime/server/http/Server.ts +27 -59
- package/src/runtime/server/http/control/AuthControlService.ts +37 -29
- package/src/runtime/server/http/control/ControlApiRoutes.ts +1 -3
- package/src/runtime/server/http/control/ControlAuthorizationRoutes.ts +6 -11
- package/src/runtime/server/http/control/ControlRouter.ts +2 -2
- package/src/runtime/server/http/control/ExecuteBySession.ts +5 -70
- package/src/runtime/server/http/control/ExecuteInput.ts +1 -1
- package/src/runtime/server/http/control/MessageTimeline.ts +3 -3
- package/src/runtime/server/http/control/OverviewRoutes.ts +10 -10
- package/src/runtime/server/http/control/SessionRoutes.ts +1 -1
- package/src/runtime/server/http/control/SessionSummaryStore.ts +1 -13
- package/src/runtime/server/http/control/TaskRoutes.ts +59 -14
- package/src/runtime/server/http/control/TaskStore.ts +22 -2
- package/src/runtime/server/http/control/types/AuthControl.ts +5 -9
- package/src/runtime/server/http/control/types/ControlRoutes.ts +2 -2
- package/src/runtime/server/http/execute/execute.ts +1 -1
- package/src/runtime/server/http/plugins/plugins.ts +72 -5
- package/src/runtime/server/http/sdk/Router.ts +3 -3
- package/src/runtime/server/http/sdk/SessionRoutes.ts +82 -14
- package/src/runtime/server/http/static/static.ts +1 -1
- package/src/runtime/server/rpc/Server.ts +15 -22
- package/src/runtime/transport/rpc/Paths.ts +1 -14
- package/src/session/Session.ts +671 -0
- package/src/session/SessionSystemBuilder.ts +259 -0
- package/src/session/browse/Browse.ts +519 -0
- package/src/session/index.ts +45 -0
- package/src/session/runtime/SessionPromptRuntime.ts +302 -0
- package/src/session/storage/Metadata.ts +196 -0
- package/src/session/storage/Persistence.ts +113 -0
- package/src/session/storage/RuntimeSessionPort.ts +107 -0
- package/src/types/agent/AgentTypes.ts +735 -0
- package/src/types/common/EnvFile.ts +31 -0
- package/src/types/common/ResolvedConfigValue.ts +16 -0
- package/src/types/config/DowncityConfig.ts +143 -96
- package/src/types/runtime/agent/AgentContext.ts +272 -0
- package/src/types/runtime/agent/AgentRuntime.ts +84 -0
- package/src/types/runtime/host/AgentHost.ts +2 -140
- package/src/types/runtime/http/InlineInstant.ts +2 -2
- package/src/types/runtime/platform/PlatformGateway.ts +10 -10
- package/src/types/sdk/AgentSessionEvent.ts +1 -1
- package/src/types/sdk/AgentSessionTurn.ts +1 -1
- package/src/utils/object/DeepMerge.ts +40 -0
- package/src/utils/object/ObjectGuards.ts +19 -0
- package/src/utils/path/AncestorFiles.ts +40 -0
- package/src/utils/string/EscapeRegExp.ts +19 -0
- package/tsconfig.json +1 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/bin/config/project/AgentInitializer.d.ts +0 -39
- package/bin/config/project/AgentInitializer.d.ts.map +0 -1
- package/bin/config/project/AgentInitializer.js +0 -339
- package/bin/config/project/AgentInitializer.js.map +0 -1
- package/bin/config/project/types/AgentProject.d.ts +0 -80
- package/bin/config/project/types/AgentProject.d.ts.map +0 -1
- package/bin/config/project/types/AgentProject.js.map +0 -1
- package/bin/core/AgentContextTypes.d.ts +0 -272
- package/bin/core/AgentContextTypes.d.ts.map +0 -1
- package/bin/core/AgentContextTypes.js +0 -10
- package/bin/core/AgentContextTypes.js.map +0 -1
- package/bin/core/AgentCore.d.ts +0 -88
- package/bin/core/AgentCore.d.ts.map +0 -1
- package/bin/core/AgentCore.js +0 -469
- package/bin/core/AgentCore.js.map +0 -1
- package/bin/core/AgentCoreTypes.d.ts +0 -84
- package/bin/core/AgentCoreTypes.d.ts.map +0 -1
- package/bin/core/AgentCoreTypes.js +0 -10
- package/bin/core/AgentCoreTypes.js.map +0 -1
- package/bin/plugin/builtins/asr/Config.d.ts +0 -43
- package/bin/plugin/builtins/asr/Config.d.ts.map +0 -1
- package/bin/plugin/builtins/asr/Config.js +0 -107
- package/bin/plugin/builtins/asr/Config.js.map +0 -1
- package/bin/plugin/builtins/asr/Dependency.d.ts +0 -77
- package/bin/plugin/builtins/asr/Dependency.d.ts.map +0 -1
- package/bin/plugin/builtins/asr/Dependency.js +0 -238
- package/bin/plugin/builtins/asr/Dependency.js.map +0 -1
- package/bin/plugin/builtins/asr/InboundAugment.d.ts +0 -17
- package/bin/plugin/builtins/asr/InboundAugment.d.ts.map +0 -1
- package/bin/plugin/builtins/asr/InboundAugment.js +0 -47
- package/bin/plugin/builtins/asr/InboundAugment.js.map +0 -1
- package/bin/plugin/builtins/asr/ModelCatalog.d.ts +0 -29
- package/bin/plugin/builtins/asr/ModelCatalog.d.ts.map +0 -1
- package/bin/plugin/builtins/asr/ModelCatalog.js +0 -25
- package/bin/plugin/builtins/asr/ModelCatalog.js.map +0 -1
- package/bin/plugin/builtins/asr/Plugin.d.ts +0 -14
- package/bin/plugin/builtins/asr/Plugin.d.ts.map +0 -1
- package/bin/plugin/builtins/asr/Plugin.js +0 -462
- package/bin/plugin/builtins/asr/Plugin.js.map +0 -1
- package/bin/plugin/builtins/auth/Plugin.d.ts +0 -14
- package/bin/plugin/builtins/auth/Plugin.d.ts.map +0 -1
- package/bin/plugin/builtins/auth/Plugin.js +0 -181
- package/bin/plugin/builtins/auth/Plugin.js.map +0 -1
- package/bin/plugin/builtins/auth/runtime/AuthorizationConfig.d.ts +0 -41
- package/bin/plugin/builtins/auth/runtime/AuthorizationConfig.d.ts.map +0 -1
- package/bin/plugin/builtins/auth/runtime/AuthorizationConfig.js +0 -187
- package/bin/plugin/builtins/auth/runtime/AuthorizationConfig.js.map +0 -1
- package/bin/plugin/builtins/auth/runtime/AuthorizationPolicy.d.ts +0 -30
- package/bin/plugin/builtins/auth/runtime/AuthorizationPolicy.d.ts.map +0 -1
- package/bin/plugin/builtins/auth/runtime/AuthorizationPolicy.js +0 -123
- package/bin/plugin/builtins/auth/runtime/AuthorizationPolicy.js.map +0 -1
- package/bin/plugin/builtins/auth/runtime/AuthorizationStore.d.ts +0 -29
- package/bin/plugin/builtins/auth/runtime/AuthorizationStore.d.ts.map +0 -1
- package/bin/plugin/builtins/auth/runtime/AuthorizationStore.js +0 -178
- package/bin/plugin/builtins/auth/runtime/AuthorizationStore.js.map +0 -1
- package/bin/plugin/builtins/auth/types/AuthPlugin.d.ts +0 -407
- package/bin/plugin/builtins/auth/types/AuthPlugin.d.ts.map +0 -1
- package/bin/plugin/builtins/auth/types/AuthPlugin.js +0 -115
- package/bin/plugin/builtins/auth/types/AuthPlugin.js.map +0 -1
- package/bin/plugin/builtins/chat/Action.d.ts +0 -125
- package/bin/plugin/builtins/chat/Action.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/Action.js +0 -376
- package/bin/plugin/builtins/chat/Action.js.map +0 -1
- package/bin/plugin/builtins/chat/ChatPlugin.d.ts +0 -89
- package/bin/plugin/builtins/chat/ChatPlugin.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/ChatPlugin.js +0 -212
- package/bin/plugin/builtins/chat/ChatPlugin.js.map +0 -1
- package/bin/plugin/builtins/chat/ChatPluginTypes.d.ts +0 -159
- package/bin/plugin/builtins/chat/ChatPluginTypes.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/ChatPluginTypes.js +0 -10
- package/bin/plugin/builtins/chat/ChatPluginTypes.js.map +0 -1
- package/bin/plugin/builtins/chat/Index.d.ts +0 -9
- package/bin/plugin/builtins/chat/Index.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/Index.js +0 -9
- package/bin/plugin/builtins/chat/Index.js.map +0 -1
- package/bin/plugin/builtins/chat/PROMPT.direct.d.ts +0 -7
- package/bin/plugin/builtins/chat/PROMPT.direct.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/PROMPT.direct.js +0 -8
- package/bin/plugin/builtins/chat/PROMPT.direct.js.map +0 -1
- package/bin/plugin/builtins/chat/accounts/ChannelAccountService.d.ts +0 -63
- package/bin/plugin/builtins/chat/accounts/ChannelAccountService.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/accounts/ChannelAccountService.js +0 -258
- package/bin/plugin/builtins/chat/accounts/ChannelAccountService.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/BaseChatChannel.d.ts +0 -201
- package/bin/plugin/builtins/chat/channels/BaseChatChannel.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/BaseChatChannel.js +0 -294
- package/bin/plugin/builtins/chat/channels/BaseChatChannel.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/BaseChatChannelQueue.d.ts +0 -73
- package/bin/plugin/builtins/chat/channels/BaseChatChannelQueue.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/BaseChatChannelQueue.js +0 -237
- package/bin/plugin/builtins/chat/channels/BaseChatChannelQueue.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/BaseChatChannelSupport.d.ts +0 -189
- package/bin/plugin/builtins/chat/channels/BaseChatChannelSupport.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/BaseChatChannelSupport.js +0 -141
- package/bin/plugin/builtins/chat/channels/BaseChatChannelSupport.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/BotInfoProvider.d.ts +0 -18
- package/bin/plugin/builtins/chat/channels/BotInfoProvider.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/BotInfoProvider.js +0 -32
- package/bin/plugin/builtins/chat/channels/BotInfoProvider.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/Configuration.d.ts +0 -27
- package/bin/plugin/builtins/chat/channels/Configuration.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/Configuration.js +0 -19
- package/bin/plugin/builtins/chat/channels/Configuration.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/ConfigurationRegistry.d.ts +0 -18
- package/bin/plugin/builtins/chat/channels/ConfigurationRegistry.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/ConfigurationRegistry.js +0 -31
- package/bin/plugin/builtins/chat/channels/ConfigurationRegistry.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/BotInfo.d.ts +0 -20
- package/bin/plugin/builtins/chat/channels/feishu/BotInfo.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/BotInfo.js +0 -147
- package/bin/plugin/builtins/chat/channels/feishu/BotInfo.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/Configuration.d.ts +0 -17
- package/bin/plugin/builtins/chat/channels/feishu/Configuration.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/Configuration.js +0 -59
- package/bin/plugin/builtins/chat/channels/feishu/Configuration.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/Feishu.d.ts +0 -116
- package/bin/plugin/builtins/chat/channels/feishu/Feishu.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/Feishu.js +0 -326
- package/bin/plugin/builtins/chat/channels/feishu/Feishu.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/FeishuInbound.d.ts +0 -21
- package/bin/plugin/builtins/chat/channels/feishu/FeishuInbound.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/FeishuInbound.js +0 -43
- package/bin/plugin/builtins/chat/channels/feishu/FeishuInbound.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/FeishuMessageHandler.d.ts +0 -155
- package/bin/plugin/builtins/chat/channels/feishu/FeishuMessageHandler.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/FeishuMessageHandler.js +0 -247
- package/bin/plugin/builtins/chat/channels/feishu/FeishuMessageHandler.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/FeishuPlatformClient.d.ts +0 -130
- package/bin/plugin/builtins/chat/channels/feishu/FeishuPlatformClient.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/FeishuPlatformClient.js +0 -316
- package/bin/plugin/builtins/chat/channels/feishu/FeishuPlatformClient.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/FeishuPlatformLookup.d.ts +0 -102
- package/bin/plugin/builtins/chat/channels/feishu/FeishuPlatformLookup.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/FeishuPlatformLookup.js +0 -299
- package/bin/plugin/builtins/chat/channels/feishu/FeishuPlatformLookup.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/FeishuPlatformMessaging.d.ts +0 -49
- package/bin/plugin/builtins/chat/channels/feishu/FeishuPlatformMessaging.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/FeishuPlatformMessaging.js +0 -139
- package/bin/plugin/builtins/chat/channels/feishu/FeishuPlatformMessaging.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/InboundAttachment.d.ts +0 -31
- package/bin/plugin/builtins/chat/channels/feishu/InboundAttachment.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/InboundAttachment.js +0 -222
- package/bin/plugin/builtins/chat/channels/feishu/InboundAttachment.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/PROMPT.direct.d.ts +0 -7
- package/bin/plugin/builtins/chat/channels/feishu/PROMPT.direct.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/PROMPT.direct.js +0 -8
- package/bin/plugin/builtins/chat/channels/feishu/PROMPT.direct.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/PostMessage.d.ts +0 -48
- package/bin/plugin/builtins/chat/channels/feishu/PostMessage.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/PostMessage.js +0 -413
- package/bin/plugin/builtins/chat/channels/feishu/PostMessage.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/ReplyContext.d.ts +0 -18
- package/bin/plugin/builtins/chat/channels/feishu/ReplyContext.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/ReplyContext.js +0 -56
- package/bin/plugin/builtins/chat/channels/feishu/ReplyContext.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/Shared.d.ts +0 -21
- package/bin/plugin/builtins/chat/channels/feishu/Shared.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/Shared.js +0 -69
- package/bin/plugin/builtins/chat/channels/feishu/Shared.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/types/FeishuChannel.d.ts +0 -127
- package/bin/plugin/builtins/chat/channels/feishu/types/FeishuChannel.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/feishu/types/FeishuChannel.js +0 -9
- package/bin/plugin/builtins/chat/channels/feishu/types/FeishuChannel.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/BotInfo.d.ts +0 -19
- package/bin/plugin/builtins/chat/channels/qq/BotInfo.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/BotInfo.js +0 -112
- package/bin/plugin/builtins/chat/channels/qq/BotInfo.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/Configuration.d.ts +0 -17
- package/bin/plugin/builtins/chat/channels/qq/Configuration.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/Configuration.js +0 -59
- package/bin/plugin/builtins/chat/channels/qq/Configuration.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/PROMPT.direct.d.ts +0 -7
- package/bin/plugin/builtins/chat/channels/qq/PROMPT.direct.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/PROMPT.direct.js +0 -8
- package/bin/plugin/builtins/chat/channels/qq/PROMPT.direct.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQ.d.ts +0 -92
- package/bin/plugin/builtins/chat/channels/qq/QQ.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQ.js +0 -287
- package/bin/plugin/builtins/chat/channels/qq/QQ.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQEventCapture.d.ts +0 -22
- package/bin/plugin/builtins/chat/channels/qq/QQEventCapture.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQEventCapture.js +0 -67
- package/bin/plugin/builtins/chat/channels/qq/QQEventCapture.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQGatewayAuth.d.ts +0 -119
- package/bin/plugin/builtins/chat/channels/qq/QQGatewayAuth.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQGatewayAuth.js +0 -186
- package/bin/plugin/builtins/chat/channels/qq/QQGatewayAuth.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQGatewayClient.d.ts +0 -155
- package/bin/plugin/builtins/chat/channels/qq/QQGatewayClient.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQGatewayClient.js +0 -381
- package/bin/plugin/builtins/chat/channels/qq/QQGatewayClient.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQGatewayConnection.d.ts +0 -65
- package/bin/plugin/builtins/chat/channels/qq/QQGatewayConnection.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQGatewayConnection.js +0 -110
- package/bin/plugin/builtins/chat/channels/qq/QQGatewayConnection.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQGatewayHeartbeat.d.ts +0 -59
- package/bin/plugin/builtins/chat/channels/qq/QQGatewayHeartbeat.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQGatewayHeartbeat.js +0 -58
- package/bin/plugin/builtins/chat/channels/qq/QQGatewayHeartbeat.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQGatewayProtocol.d.ts +0 -86
- package/bin/plugin/builtins/chat/channels/qq/QQGatewayProtocol.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQGatewayProtocol.js +0 -93
- package/bin/plugin/builtins/chat/channels/qq/QQGatewayProtocol.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQGatewaySend.d.ts +0 -84
- package/bin/plugin/builtins/chat/channels/qq/QQGatewaySend.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQGatewaySend.js +0 -120
- package/bin/plugin/builtins/chat/channels/qq/QQGatewaySend.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQGatewaySupport.d.ts +0 -39
- package/bin/plugin/builtins/chat/channels/qq/QQGatewaySupport.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQGatewaySupport.js +0 -137
- package/bin/plugin/builtins/chat/channels/qq/QQGatewaySupport.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQInbound.d.ts +0 -47
- package/bin/plugin/builtins/chat/channels/qq/QQInbound.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQInbound.js +0 -235
- package/bin/plugin/builtins/chat/channels/qq/QQInbound.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQInboundDedupe.d.ts +0 -48
- package/bin/plugin/builtins/chat/channels/qq/QQInboundDedupe.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQInboundDedupe.js +0 -108
- package/bin/plugin/builtins/chat/channels/qq/QQInboundDedupe.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQMessageHandler.d.ts +0 -129
- package/bin/plugin/builtins/chat/channels/qq/QQMessageHandler.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQMessageHandler.js +0 -284
- package/bin/plugin/builtins/chat/channels/qq/QQMessageHandler.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQSendSupport.d.ts +0 -20
- package/bin/plugin/builtins/chat/channels/qq/QQSendSupport.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQSendSupport.js +0 -86
- package/bin/plugin/builtins/chat/channels/qq/QQSendSupport.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQSupport.d.ts +0 -102
- package/bin/plugin/builtins/chat/channels/qq/QQSupport.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/QQSupport.js +0 -172
- package/bin/plugin/builtins/chat/channels/qq/QQSupport.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/VoiceInput.d.ts +0 -64
- package/bin/plugin/builtins/chat/channels/qq/VoiceInput.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/VoiceInput.js +0 -299
- package/bin/plugin/builtins/chat/channels/qq/VoiceInput.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/types/QqChannel.d.ts +0 -485
- package/bin/plugin/builtins/chat/channels/qq/types/QqChannel.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/types/QqChannel.js +0 -42
- package/bin/plugin/builtins/chat/channels/qq/types/QqChannel.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/types/QqGatewaySupport.d.ts +0 -82
- package/bin/plugin/builtins/chat/channels/qq/types/QqGatewaySupport.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/qq/types/QqGatewaySupport.js +0 -9
- package/bin/plugin/builtins/chat/channels/qq/types/QqGatewaySupport.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/ApiClient.d.ts +0 -99
- package/bin/plugin/builtins/chat/channels/telegram/ApiClient.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/ApiClient.js +0 -306
- package/bin/plugin/builtins/chat/channels/telegram/ApiClient.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/Bot.d.ts +0 -97
- package/bin/plugin/builtins/chat/channels/telegram/Bot.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/Bot.js +0 -246
- package/bin/plugin/builtins/chat/channels/telegram/Bot.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/BotInfo.d.ts +0 -19
- package/bin/plugin/builtins/chat/channels/telegram/BotInfo.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/BotInfo.js +0 -71
- package/bin/plugin/builtins/chat/channels/telegram/BotInfo.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/Configuration.d.ts +0 -17
- package/bin/plugin/builtins/chat/channels/telegram/Configuration.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/Configuration.js +0 -59
- package/bin/plugin/builtins/chat/channels/telegram/Configuration.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/Handlers.d.ts +0 -42
- package/bin/plugin/builtins/chat/channels/telegram/Handlers.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/Handlers.js +0 -45
- package/bin/plugin/builtins/chat/channels/telegram/Handlers.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/PROMPT.direct.d.ts +0 -7
- package/bin/plugin/builtins/chat/channels/telegram/PROMPT.direct.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/PROMPT.direct.js +0 -8
- package/bin/plugin/builtins/chat/channels/telegram/PROMPT.direct.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/ReplyContext.d.ts +0 -14
- package/bin/plugin/builtins/chat/channels/telegram/ReplyContext.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/ReplyContext.js +0 -57
- package/bin/plugin/builtins/chat/channels/telegram/ReplyContext.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/Shared.d.ts +0 -221
- package/bin/plugin/builtins/chat/channels/telegram/Shared.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/Shared.js +0 -171
- package/bin/plugin/builtins/chat/channels/telegram/Shared.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/StateStore.d.ts +0 -27
- package/bin/plugin/builtins/chat/channels/telegram/StateStore.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/StateStore.js +0 -53
- package/bin/plugin/builtins/chat/channels/telegram/StateStore.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/TelegramInbound.d.ts +0 -46
- package/bin/plugin/builtins/chat/channels/telegram/TelegramInbound.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/TelegramInbound.js +0 -148
- package/bin/plugin/builtins/chat/channels/telegram/TelegramInbound.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/TelegramMessageHandler.d.ts +0 -142
- package/bin/plugin/builtins/chat/channels/telegram/TelegramMessageHandler.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/TelegramMessageHandler.js +0 -267
- package/bin/plugin/builtins/chat/channels/telegram/TelegramMessageHandler.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/TelegramPendingUpdates.d.ts +0 -55
- package/bin/plugin/builtins/chat/channels/telegram/TelegramPendingUpdates.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/TelegramPendingUpdates.js +0 -125
- package/bin/plugin/builtins/chat/channels/telegram/TelegramPendingUpdates.js.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/TelegramPlatformClient.d.ts +0 -161
- package/bin/plugin/builtins/chat/channels/telegram/TelegramPlatformClient.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/channels/telegram/TelegramPlatformClient.js +0 -366
- package/bin/plugin/builtins/chat/channels/telegram/TelegramPlatformClient.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChannelContextStore.d.ts +0 -78
- package/bin/plugin/builtins/chat/runtime/ChannelContextStore.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChannelContextStore.js +0 -336
- package/bin/plugin/builtins/chat/runtime/ChannelContextStore.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatActionExecution.d.ts +0 -145
- package/bin/plugin/builtins/chat/runtime/ChatActionExecution.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatActionExecution.js +0 -287
- package/bin/plugin/builtins/chat/runtime/ChatActionExecution.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatActionInput.d.ts +0 -22
- package/bin/plugin/builtins/chat/runtime/ChatActionInput.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatActionInput.js +0 -114
- package/bin/plugin/builtins/chat/runtime/ChatActionInput.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatActionInputSupport.d.ts +0 -33
- package/bin/plugin/builtins/chat/runtime/ChatActionInputSupport.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatActionInputSupport.js +0 -66
- package/bin/plugin/builtins/chat/runtime/ChatActionInputSupport.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatChannelActions.d.ts +0 -122
- package/bin/plugin/builtins/chat/runtime/ChatChannelActions.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatChannelActions.js +0 -230
- package/bin/plugin/builtins/chat/runtime/ChatChannelActions.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatChannelConfig.d.ts +0 -61
- package/bin/plugin/builtins/chat/runtime/ChatChannelConfig.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatChannelConfig.js +0 -260
- package/bin/plugin/builtins/chat/runtime/ChatChannelConfig.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatChannelCore.d.ts +0 -45
- package/bin/plugin/builtins/chat/runtime/ChatChannelCore.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatChannelCore.js +0 -106
- package/bin/plugin/builtins/chat/runtime/ChatChannelCore.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatChannelFacade.d.ts +0 -12
- package/bin/plugin/builtins/chat/runtime/ChatChannelFacade.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatChannelFacade.js +0 -12
- package/bin/plugin/builtins/chat/runtime/ChatChannelFacade.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatChannelLifecycle.d.ts +0 -28
- package/bin/plugin/builtins/chat/runtime/ChatChannelLifecycle.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatChannelLifecycle.js +0 -132
- package/bin/plugin/builtins/chat/runtime/ChatChannelLifecycle.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatHistoryStore.d.ts +0 -72
- package/bin/plugin/builtins/chat/runtime/ChatHistoryStore.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatHistoryStore.js +0 -219
- package/bin/plugin/builtins/chat/runtime/ChatHistoryStore.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatIngressStore.d.ts +0 -44
- package/bin/plugin/builtins/chat/runtime/ChatIngressStore.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatIngressStore.js +0 -51
- package/bin/plugin/builtins/chat/runtime/ChatIngressStore.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatMessageMarkup.d.ts +0 -54
- package/bin/plugin/builtins/chat/runtime/ChatMessageMarkup.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatMessageMarkup.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatMetaStore.d.ts +0 -68
- package/bin/plugin/builtins/chat/runtime/ChatMetaStore.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatMetaStore.js +0 -143
- package/bin/plugin/builtins/chat/runtime/ChatMetaStore.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatPluginActionRegistry.d.ts +0 -17
- package/bin/plugin/builtins/chat/runtime/ChatPluginActionRegistry.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatPluginActionRegistry.js +0 -304
- package/bin/plugin/builtins/chat/runtime/ChatPluginActionRegistry.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatPluginActions.d.ts +0 -5
- package/bin/plugin/builtins/chat/runtime/ChatPluginActions.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatPluginActions.js +0 -5
- package/bin/plugin/builtins/chat/runtime/ChatPluginActions.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatPluginSystem.d.ts +0 -22
- package/bin/plugin/builtins/chat/runtime/ChatPluginSystem.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatPluginSystem.js +0 -44
- package/bin/plugin/builtins/chat/runtime/ChatPluginSystem.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatPromptAssets.d.ts +0 -24
- package/bin/plugin/builtins/chat/runtime/ChatPromptAssets.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatPromptAssets.js +0 -28
- package/bin/plugin/builtins/chat/runtime/ChatPromptAssets.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatQueue.d.ts +0 -40
- package/bin/plugin/builtins/chat/runtime/ChatQueue.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatQueue.js +0 -52
- package/bin/plugin/builtins/chat/runtime/ChatQueue.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatQueueReplyDispatch.d.ts +0 -31
- package/bin/plugin/builtins/chat/runtime/ChatQueueReplyDispatch.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatQueueReplyDispatch.js +0 -168
- package/bin/plugin/builtins/chat/runtime/ChatQueueReplyDispatch.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatQueueStore.d.ts +0 -85
- package/bin/plugin/builtins/chat/runtime/ChatQueueStore.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatQueueStore.js +0 -130
- package/bin/plugin/builtins/chat/runtime/ChatQueueStore.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatQueueWorker.d.ts +0 -83
- package/bin/plugin/builtins/chat/runtime/ChatQueueWorker.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatQueueWorker.js +0 -406
- package/bin/plugin/builtins/chat/runtime/ChatQueueWorker.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatQueueWorkerSupport.d.ts +0 -36
- package/bin/plugin/builtins/chat/runtime/ChatQueueWorkerSupport.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatQueueWorkerSupport.js +0 -101
- package/bin/plugin/builtins/chat/runtime/ChatQueueWorkerSupport.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatSendActionInput.d.ts +0 -23
- package/bin/plugin/builtins/chat/runtime/ChatSendActionInput.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatSendActionInput.js +0 -205
- package/bin/plugin/builtins/chat/runtime/ChatSendActionInput.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatSendMetadata.d.ts +0 -20
- package/bin/plugin/builtins/chat/runtime/ChatSendMetadata.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatSendMetadata.js +0 -130
- package/bin/plugin/builtins/chat/runtime/ChatSendMetadata.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatSendRegistry.d.ts +0 -27
- package/bin/plugin/builtins/chat/runtime/ChatSendRegistry.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatSendRegistry.js +0 -26
- package/bin/plugin/builtins/chat/runtime/ChatSendRegistry.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatSession.d.ts +0 -97
- package/bin/plugin/builtins/chat/runtime/ChatSession.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatSession.js +0 -84
- package/bin/plugin/builtins/chat/runtime/ChatSession.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatSessionContextComposer.d.ts +0 -45
- package/bin/plugin/builtins/chat/runtime/ChatSessionContextComposer.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatSessionContextComposer.js +0 -60
- package/bin/plugin/builtins/chat/runtime/ChatSessionContextComposer.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatSessionDelete.d.ts +0 -29
- package/bin/plugin/builtins/chat/runtime/ChatSessionDelete.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatSessionDelete.js +0 -76
- package/bin/plugin/builtins/chat/runtime/ChatSessionDelete.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatSessionTypes.d.ts +0 -30
- package/bin/plugin/builtins/chat/runtime/ChatSessionTypes.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatSessionTypes.js +0 -9
- package/bin/plugin/builtins/chat/runtime/ChatSessionTypes.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatkeySend.d.ts +0 -67
- package/bin/plugin/builtins/chat/runtime/ChatkeySend.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ChatkeySend.js +0 -147
- package/bin/plugin/builtins/chat/runtime/ChatkeySend.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/DirectDispatchParser.d.ts +0 -22
- package/bin/plugin/builtins/chat/runtime/DirectDispatchParser.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/DirectDispatchParser.js +0 -133
- package/bin/plugin/builtins/chat/runtime/DirectDispatchParser.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/EnqueueDispatch.d.ts +0 -24
- package/bin/plugin/builtins/chat/runtime/EnqueueDispatch.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/EnqueueDispatch.js +0 -28
- package/bin/plugin/builtins/chat/runtime/EnqueueDispatch.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/InboundAugment.d.ts +0 -21
- package/bin/plugin/builtins/chat/runtime/InboundAugment.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/InboundAugment.js +0 -50
- package/bin/plugin/builtins/chat/runtime/InboundAugment.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/PluginDispatch.d.ts +0 -43
- package/bin/plugin/builtins/chat/runtime/PluginDispatch.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/PluginDispatch.js +0 -57
- package/bin/plugin/builtins/chat/runtime/PluginDispatch.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/PluginPoints.d.ts +0 -78
- package/bin/plugin/builtins/chat/runtime/PluginPoints.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/PluginPoints.js +0 -78
- package/bin/plugin/builtins/chat/runtime/PluginPoints.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/QueuedUserMessage.d.ts +0 -20
- package/bin/plugin/builtins/chat/runtime/QueuedUserMessage.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/QueuedUserMessage.js +0 -40
- package/bin/plugin/builtins/chat/runtime/QueuedUserMessage.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ReplyContextFormatter.d.ts +0 -29
- package/bin/plugin/builtins/chat/runtime/ReplyContextFormatter.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ReplyContextFormatter.js +0 -74
- package/bin/plugin/builtins/chat/runtime/ReplyContextFormatter.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ReplyDispatch.d.ts +0 -36
- package/bin/plugin/builtins/chat/runtime/ReplyDispatch.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/ReplyDispatch.js +0 -51
- package/bin/plugin/builtins/chat/runtime/ReplyDispatch.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/SystemPrompt.d.ts +0 -26
- package/bin/plugin/builtins/chat/runtime/SystemPrompt.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/SystemPrompt.js +0 -70
- package/bin/plugin/builtins/chat/runtime/SystemPrompt.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/UIMessageTransformer.d.ts +0 -24
- package/bin/plugin/builtins/chat/runtime/UIMessageTransformer.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/UIMessageTransformer.js.map +0 -1
- package/bin/plugin/builtins/chat/runtime/UserVisibleText.d.ts +0 -34
- package/bin/plugin/builtins/chat/runtime/UserVisibleText.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/runtime/UserVisibleText.js.map +0 -1
- package/bin/plugin/builtins/chat/types/BotInfo.d.ts +0 -97
- package/bin/plugin/builtins/chat/types/BotInfo.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/types/BotInfo.js +0 -9
- package/bin/plugin/builtins/chat/types/BotInfo.js.map +0 -1
- package/bin/plugin/builtins/chat/types/ChannelAccount.d.ts +0 -226
- package/bin/plugin/builtins/chat/types/ChannelAccount.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/types/ChannelAccount.js +0 -9
- package/bin/plugin/builtins/chat/types/ChannelAccount.js.map +0 -1
- package/bin/plugin/builtins/chat/types/ChannelConfiguration.d.ts +0 -146
- package/bin/plugin/builtins/chat/types/ChannelConfiguration.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/types/ChannelConfiguration.js +0 -9
- package/bin/plugin/builtins/chat/types/ChannelConfiguration.js.map +0 -1
- package/bin/plugin/builtins/chat/types/ChannelContext.d.ts +0 -107
- package/bin/plugin/builtins/chat/types/ChannelContext.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/types/ChannelContext.js +0 -9
- package/bin/plugin/builtins/chat/types/ChannelContext.js.map +0 -1
- package/bin/plugin/builtins/chat/types/ChannelStatus.d.ts +0 -88
- package/bin/plugin/builtins/chat/types/ChannelStatus.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/types/ChannelStatus.js +0 -9
- package/bin/plugin/builtins/chat/types/ChannelStatus.js.map +0 -1
- package/bin/plugin/builtins/chat/types/ChatCommand.d.ts +0 -163
- package/bin/plugin/builtins/chat/types/ChatCommand.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/types/ChatCommand.js +0 -9
- package/bin/plugin/builtins/chat/types/ChatCommand.js.map +0 -1
- package/bin/plugin/builtins/chat/types/ChatDispatcher.d.ts +0 -37
- package/bin/plugin/builtins/chat/types/ChatDispatcher.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/types/ChatDispatcher.js +0 -9
- package/bin/plugin/builtins/chat/types/ChatDispatcher.js.map +0 -1
- package/bin/plugin/builtins/chat/types/ChatHistory.d.ts +0 -36
- package/bin/plugin/builtins/chat/types/ChatHistory.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/types/ChatHistory.js +0 -9
- package/bin/plugin/builtins/chat/types/ChatHistory.js.map +0 -1
- package/bin/plugin/builtins/chat/types/ChatMessageMarkup.d.ts +0 -144
- package/bin/plugin/builtins/chat/types/ChatMessageMarkup.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/types/ChatMessageMarkup.js +0 -9
- package/bin/plugin/builtins/chat/types/ChatMessageMarkup.js.map +0 -1
- package/bin/plugin/builtins/chat/types/ChatMeta.d.ts +0 -34
- package/bin/plugin/builtins/chat/types/ChatMeta.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/types/ChatMeta.js +0 -10
- package/bin/plugin/builtins/chat/types/ChatMeta.js.map +0 -1
- package/bin/plugin/builtins/chat/types/ChatPlugin.d.ts +0 -238
- package/bin/plugin/builtins/chat/types/ChatPlugin.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/types/ChatPlugin.js +0 -10
- package/bin/plugin/builtins/chat/types/ChatPlugin.js.map +0 -1
- package/bin/plugin/builtins/chat/types/ChatPluginActionPayload.d.ts +0 -145
- package/bin/plugin/builtins/chat/types/ChatPluginActionPayload.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/types/ChatPluginActionPayload.js +0 -10
- package/bin/plugin/builtins/chat/types/ChatPluginActionPayload.js.map +0 -1
- package/bin/plugin/builtins/chat/types/ChatPromptContext.d.ts +0 -125
- package/bin/plugin/builtins/chat/types/ChatPromptContext.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/types/ChatPromptContext.js +0 -10
- package/bin/plugin/builtins/chat/types/ChatPromptContext.js.map +0 -1
- package/bin/plugin/builtins/chat/types/ChatQueue.d.ts +0 -36
- package/bin/plugin/builtins/chat/types/ChatQueue.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/types/ChatQueue.js +0 -9
- package/bin/plugin/builtins/chat/types/ChatQueue.js.map +0 -1
- package/bin/plugin/builtins/chat/types/ChatQueueWorker.d.ts +0 -25
- package/bin/plugin/builtins/chat/types/ChatQueueWorker.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/types/ChatQueueWorker.js +0 -9
- package/bin/plugin/builtins/chat/types/ChatQueueWorker.js.map +0 -1
- package/bin/plugin/builtins/chat/types/ChatRuntime.d.ts +0 -32
- package/bin/plugin/builtins/chat/types/ChatRuntime.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/types/ChatRuntime.js +0 -9
- package/bin/plugin/builtins/chat/types/ChatRuntime.js.map +0 -1
- package/bin/plugin/builtins/chat/types/DirectDispatch.d.ts +0 -115
- package/bin/plugin/builtins/chat/types/DirectDispatch.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/types/DirectDispatch.js +0 -9
- package/bin/plugin/builtins/chat/types/DirectDispatch.js.map +0 -1
- package/bin/plugin/builtins/chat/types/FeishuAttachment.d.ts +0 -42
- package/bin/plugin/builtins/chat/types/FeishuAttachment.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/types/FeishuAttachment.js +0 -9
- package/bin/plugin/builtins/chat/types/FeishuAttachment.js.map +0 -1
- package/bin/plugin/builtins/chat/types/FeishuInboundAttachment.d.ts +0 -114
- package/bin/plugin/builtins/chat/types/FeishuInboundAttachment.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/types/FeishuInboundAttachment.js +0 -9
- package/bin/plugin/builtins/chat/types/FeishuInboundAttachment.js.map +0 -1
- package/bin/plugin/builtins/chat/types/FeishuPost.d.ts +0 -287
- package/bin/plugin/builtins/chat/types/FeishuPost.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/types/FeishuPost.js +0 -9
- package/bin/plugin/builtins/chat/types/FeishuPost.js.map +0 -1
- package/bin/plugin/builtins/chat/types/QqInboundDedupe.d.ts +0 -12
- package/bin/plugin/builtins/chat/types/QqInboundDedupe.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/types/QqInboundDedupe.js +0 -2
- package/bin/plugin/builtins/chat/types/QqInboundDedupe.js.map +0 -1
- package/bin/plugin/builtins/chat/types/QqVoice.d.ts +0 -118
- package/bin/plugin/builtins/chat/types/QqVoice.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/types/QqVoice.js +0 -9
- package/bin/plugin/builtins/chat/types/QqVoice.js.map +0 -1
- package/bin/plugin/builtins/chat/types/ReplyContext.d.ts +0 -46
- package/bin/plugin/builtins/chat/types/ReplyContext.d.ts.map +0 -1
- package/bin/plugin/builtins/chat/types/ReplyContext.js +0 -10
- package/bin/plugin/builtins/chat/types/ReplyContext.js.map +0 -1
- package/bin/plugin/builtins/contact/Action.d.ts +0 -62
- package/bin/plugin/builtins/contact/Action.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/Action.js +0 -221
- package/bin/plugin/builtins/contact/Action.js.map +0 -1
- package/bin/plugin/builtins/contact/ContactPlugin.d.ts +0 -39
- package/bin/plugin/builtins/contact/ContactPlugin.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/ContactPlugin.js +0 -409
- package/bin/plugin/builtins/contact/ContactPlugin.js.map +0 -1
- package/bin/plugin/builtins/contact/Index.d.ts +0 -8
- package/bin/plugin/builtins/contact/Index.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/Index.js +0 -8
- package/bin/plugin/builtins/contact/Index.js.map +0 -1
- package/bin/plugin/builtins/contact/PROMPT.d.ts +0 -7
- package/bin/plugin/builtins/contact/PROMPT.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/PROMPT.js +0 -8
- package/bin/plugin/builtins/contact/PROMPT.js.map +0 -1
- package/bin/plugin/builtins/contact/runtime/ApproveCallback.d.ts +0 -23
- package/bin/plugin/builtins/contact/runtime/ApproveCallback.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/runtime/ApproveCallback.js +0 -83
- package/bin/plugin/builtins/contact/runtime/ApproveCallback.js.map +0 -1
- package/bin/plugin/builtins/contact/runtime/ChatRuntime.d.ts +0 -27
- package/bin/plugin/builtins/contact/runtime/ChatRuntime.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/runtime/ChatRuntime.js +0 -60
- package/bin/plugin/builtins/contact/runtime/ChatRuntime.js.map +0 -1
- package/bin/plugin/builtins/contact/runtime/ContactPayload.d.ts +0 -17
- package/bin/plugin/builtins/contact/runtime/ContactPayload.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/runtime/ContactPayload.js +0 -23
- package/bin/plugin/builtins/contact/runtime/ContactPayload.js.map +0 -1
- package/bin/plugin/builtins/contact/runtime/ContactPromptAssets.d.ts +0 -12
- package/bin/plugin/builtins/contact/runtime/ContactPromptAssets.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/runtime/ContactPromptAssets.js +0 -13
- package/bin/plugin/builtins/contact/runtime/ContactPromptAssets.js.map +0 -1
- package/bin/plugin/builtins/contact/runtime/ContactStore.d.ts +0 -49
- package/bin/plugin/builtins/contact/runtime/ContactStore.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/runtime/ContactStore.js +0 -255
- package/bin/plugin/builtins/contact/runtime/ContactStore.js.map +0 -1
- package/bin/plugin/builtins/contact/runtime/EndpointNotice.d.ts +0 -39
- package/bin/plugin/builtins/contact/runtime/EndpointNotice.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/runtime/EndpointNotice.js +0 -98
- package/bin/plugin/builtins/contact/runtime/EndpointNotice.js.map +0 -1
- package/bin/plugin/builtins/contact/runtime/EndpointResolver.d.ts +0 -36
- package/bin/plugin/builtins/contact/runtime/EndpointResolver.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/runtime/EndpointResolver.js +0 -113
- package/bin/plugin/builtins/contact/runtime/EndpointResolver.js.map +0 -1
- package/bin/plugin/builtins/contact/runtime/InboxStore.d.ts +0 -33
- package/bin/plugin/builtins/contact/runtime/InboxStore.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/runtime/InboxStore.js +0 -142
- package/bin/plugin/builtins/contact/runtime/InboxStore.js.map +0 -1
- package/bin/plugin/builtins/contact/runtime/LinkApproval.d.ts +0 -20
- package/bin/plugin/builtins/contact/runtime/LinkApproval.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/runtime/LinkApproval.js +0 -317
- package/bin/plugin/builtins/contact/runtime/LinkApproval.js.map +0 -1
- package/bin/plugin/builtins/contact/runtime/LinkCode.d.ts +0 -21
- package/bin/plugin/builtins/contact/runtime/LinkCode.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/runtime/LinkCode.js +0 -61
- package/bin/plugin/builtins/contact/runtime/LinkCode.js.map +0 -1
- package/bin/plugin/builtins/contact/runtime/LinkStore.d.ts +0 -17
- package/bin/plugin/builtins/contact/runtime/LinkStore.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/runtime/LinkStore.js +0 -39
- package/bin/plugin/builtins/contact/runtime/LinkStore.js.map +0 -1
- package/bin/plugin/builtins/contact/runtime/Paths.d.ts +0 -64
- package/bin/plugin/builtins/contact/runtime/Paths.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/runtime/Paths.js +0 -103
- package/bin/plugin/builtins/contact/runtime/Paths.js.map +0 -1
- package/bin/plugin/builtins/contact/runtime/RemoteClient.d.ts +0 -46
- package/bin/plugin/builtins/contact/runtime/RemoteClient.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/runtime/RemoteClient.js +0 -120
- package/bin/plugin/builtins/contact/runtime/RemoteClient.js.map +0 -1
- package/bin/plugin/builtins/contact/runtime/ShareBundle.d.ts +0 -65
- package/bin/plugin/builtins/contact/runtime/ShareBundle.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/runtime/ShareBundle.js +0 -185
- package/bin/plugin/builtins/contact/runtime/ShareBundle.js.map +0 -1
- package/bin/plugin/builtins/contact/runtime/SystemProvider.d.ts +0 -5
- package/bin/plugin/builtins/contact/runtime/SystemProvider.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/runtime/SystemProvider.js +0 -15
- package/bin/plugin/builtins/contact/runtime/SystemProvider.js.map +0 -1
- package/bin/plugin/builtins/contact/runtime/Token.d.ts +0 -24
- package/bin/plugin/builtins/contact/runtime/Token.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/runtime/Token.js +0 -36
- package/bin/plugin/builtins/contact/runtime/Token.js.map +0 -1
- package/bin/plugin/builtins/contact/types/Contact.d.ts +0 -78
- package/bin/plugin/builtins/contact/types/Contact.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/types/Contact.js +0 -9
- package/bin/plugin/builtins/contact/types/Contact.js.map +0 -1
- package/bin/plugin/builtins/contact/types/ContactApproval.d.ts +0 -145
- package/bin/plugin/builtins/contact/types/ContactApproval.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/types/ContactApproval.js +0 -9
- package/bin/plugin/builtins/contact/types/ContactApproval.js.map +0 -1
- package/bin/plugin/builtins/contact/types/ContactChat.d.ts +0 -46
- package/bin/plugin/builtins/contact/types/ContactChat.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/types/ContactChat.js +0 -9
- package/bin/plugin/builtins/contact/types/ContactChat.js.map +0 -1
- package/bin/plugin/builtins/contact/types/ContactCheck.d.ts +0 -66
- package/bin/plugin/builtins/contact/types/ContactCheck.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/types/ContactCheck.js +0 -9
- package/bin/plugin/builtins/contact/types/ContactCheck.js.map +0 -1
- package/bin/plugin/builtins/contact/types/ContactCommand.d.ts +0 -93
- package/bin/plugin/builtins/contact/types/ContactCommand.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/types/ContactCommand.js +0 -8
- package/bin/plugin/builtins/contact/types/ContactCommand.js.map +0 -1
- package/bin/plugin/builtins/contact/types/ContactEndpoint.d.ts +0 -12
- package/bin/plugin/builtins/contact/types/ContactEndpoint.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/types/ContactEndpoint.js +0 -9
- package/bin/plugin/builtins/contact/types/ContactEndpoint.js.map +0 -1
- package/bin/plugin/builtins/contact/types/ContactLink.d.ts +0 -160
- package/bin/plugin/builtins/contact/types/ContactLink.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/types/ContactLink.js +0 -9
- package/bin/plugin/builtins/contact/types/ContactLink.js.map +0 -1
- package/bin/plugin/builtins/contact/types/ContactShare.d.ts +0 -163
- package/bin/plugin/builtins/contact/types/ContactShare.d.ts.map +0 -1
- package/bin/plugin/builtins/contact/types/ContactShare.js +0 -9
- package/bin/plugin/builtins/contact/types/ContactShare.js.map +0 -1
- package/bin/plugin/builtins/memory/Action.d.ts +0 -37
- package/bin/plugin/builtins/memory/Action.d.ts.map +0 -1
- package/bin/plugin/builtins/memory/Action.js +0 -111
- package/bin/plugin/builtins/memory/Action.js.map +0 -1
- package/bin/plugin/builtins/memory/Index.d.ts +0 -9
- package/bin/plugin/builtins/memory/Index.d.ts.map +0 -1
- package/bin/plugin/builtins/memory/Index.js +0 -9
- package/bin/plugin/builtins/memory/Index.js.map +0 -1
- package/bin/plugin/builtins/memory/MemoryPlugin.d.ts +0 -45
- package/bin/plugin/builtins/memory/MemoryPlugin.d.ts.map +0 -1
- package/bin/plugin/builtins/memory/MemoryPlugin.js +0 -242
- package/bin/plugin/builtins/memory/MemoryPlugin.js.map +0 -1
- package/bin/plugin/builtins/memory/runtime/Flush.d.ts +0 -15
- package/bin/plugin/builtins/memory/runtime/Flush.d.ts.map +0 -1
- package/bin/plugin/builtins/memory/runtime/Flush.js +0 -63
- package/bin/plugin/builtins/memory/runtime/Flush.js.map +0 -1
- package/bin/plugin/builtins/memory/runtime/Search.d.ts +0 -19
- package/bin/plugin/builtins/memory/runtime/Search.d.ts.map +0 -1
- package/bin/plugin/builtins/memory/runtime/Search.js +0 -268
- package/bin/plugin/builtins/memory/runtime/Search.js.map +0 -1
- package/bin/plugin/builtins/memory/runtime/Store.d.ts +0 -65
- package/bin/plugin/builtins/memory/runtime/Store.d.ts.map +0 -1
- package/bin/plugin/builtins/memory/runtime/Store.js +0 -142
- package/bin/plugin/builtins/memory/runtime/Store.js.map +0 -1
- package/bin/plugin/builtins/memory/runtime/SystemProvider.d.ts +0 -22
- package/bin/plugin/builtins/memory/runtime/SystemProvider.d.ts.map +0 -1
- package/bin/plugin/builtins/memory/runtime/SystemProvider.js +0 -126
- package/bin/plugin/builtins/memory/runtime/SystemProvider.js.map +0 -1
- package/bin/plugin/builtins/memory/runtime/Writer.d.ts +0 -23
- package/bin/plugin/builtins/memory/runtime/Writer.d.ts.map +0 -1
- package/bin/plugin/builtins/memory/runtime/Writer.js +0 -139
- package/bin/plugin/builtins/memory/runtime/Writer.js.map +0 -1
- package/bin/plugin/builtins/memory/types/Memory.d.ts +0 -264
- package/bin/plugin/builtins/memory/types/Memory.d.ts.map +0 -1
- package/bin/plugin/builtins/memory/types/Memory.js +0 -9
- package/bin/plugin/builtins/memory/types/Memory.js.map +0 -1
- package/bin/plugin/builtins/schedule/SchedulePlugin.d.ts +0 -39
- package/bin/plugin/builtins/schedule/SchedulePlugin.d.ts.map +0 -1
- package/bin/plugin/builtins/schedule/SchedulePlugin.js +0 -106
- package/bin/plugin/builtins/schedule/SchedulePlugin.js.map +0 -1
- package/bin/plugin/builtins/shell/Index.d.ts +0 -9
- package/bin/plugin/builtins/shell/Index.d.ts.map +0 -1
- package/bin/plugin/builtins/shell/Index.js +0 -9
- package/bin/plugin/builtins/shell/Index.js.map +0 -1
- package/bin/plugin/builtins/shell/ShellPlugin.d.ts +0 -65
- package/bin/plugin/builtins/shell/ShellPlugin.d.ts.map +0 -1
- package/bin/plugin/builtins/shell/ShellPlugin.js +0 -138
- package/bin/plugin/builtins/shell/ShellPlugin.js.map +0 -1
- package/bin/plugin/builtins/shell/ShellRuntimeTypes.d.ts +0 -91
- package/bin/plugin/builtins/shell/ShellRuntimeTypes.d.ts.map +0 -1
- package/bin/plugin/builtins/shell/ShellRuntimeTypes.js +0 -10
- package/bin/plugin/builtins/shell/ShellRuntimeTypes.js.map +0 -1
- package/bin/plugin/builtins/shell/runtime/Paths.d.ts +0 -12
- package/bin/plugin/builtins/shell/runtime/Paths.d.ts.map +0 -1
- package/bin/plugin/builtins/shell/runtime/Paths.js +0 -21
- package/bin/plugin/builtins/shell/runtime/Paths.js.map +0 -1
- package/bin/plugin/builtins/shell/runtime/ShellActionResponse.d.ts +0 -52
- package/bin/plugin/builtins/shell/runtime/ShellActionResponse.d.ts.map +0 -1
- package/bin/plugin/builtins/shell/runtime/ShellActionResponse.js +0 -73
- package/bin/plugin/builtins/shell/runtime/ShellActionResponse.js.map +0 -1
- package/bin/plugin/builtins/shell/runtime/ShellActionRuntime.d.ts +0 -49
- package/bin/plugin/builtins/shell/runtime/ShellActionRuntime.d.ts.map +0 -1
- package/bin/plugin/builtins/shell/runtime/ShellActionRuntime.js +0 -440
- package/bin/plugin/builtins/shell/runtime/ShellActionRuntime.js.map +0 -1
- package/bin/plugin/builtins/shell/runtime/ShellActionRuntimeSupport.d.ts +0 -79
- package/bin/plugin/builtins/shell/runtime/ShellActionRuntimeSupport.d.ts.map +0 -1
- package/bin/plugin/builtins/shell/runtime/ShellActionRuntimeSupport.js +0 -312
- package/bin/plugin/builtins/shell/runtime/ShellActionRuntimeSupport.js.map +0 -1
- package/bin/plugin/builtins/shell/runtime/ShellProcessEvents.d.ts +0 -22
- package/bin/plugin/builtins/shell/runtime/ShellProcessEvents.d.ts.map +0 -1
- package/bin/plugin/builtins/shell/runtime/ShellProcessEvents.js +0 -41
- package/bin/plugin/builtins/shell/runtime/ShellProcessEvents.js.map +0 -1
- package/bin/plugin/builtins/shell/runtime/ShellRuntimeEnvironment.d.ts +0 -21
- package/bin/plugin/builtins/shell/runtime/ShellRuntimeEnvironment.d.ts.map +0 -1
- package/bin/plugin/builtins/shell/runtime/ShellRuntimeEnvironment.js +0 -75
- package/bin/plugin/builtins/shell/runtime/ShellRuntimeEnvironment.js.map +0 -1
- package/bin/plugin/builtins/shell/types/Shell.d.ts.map +0 -1
- package/bin/plugin/builtins/shell/types/Shell.js.map +0 -1
- package/bin/plugin/builtins/shell/types/ShellPlugin.d.ts +0 -216
- package/bin/plugin/builtins/shell/types/ShellPlugin.d.ts.map +0 -1
- package/bin/plugin/builtins/shell/types/ShellPlugin.js +0 -9
- package/bin/plugin/builtins/shell/types/ShellPlugin.js.map +0 -1
- package/bin/plugin/builtins/skill/Action.d.ts +0 -34
- package/bin/plugin/builtins/skill/Action.d.ts.map +0 -1
- package/bin/plugin/builtins/skill/Action.js +0 -122
- package/bin/plugin/builtins/skill/Action.js.map +0 -1
- package/bin/plugin/builtins/skill/Command.d.ts +0 -37
- package/bin/plugin/builtins/skill/Command.d.ts.map +0 -1
- package/bin/plugin/builtins/skill/Command.js +0 -70
- package/bin/plugin/builtins/skill/Command.js.map +0 -1
- package/bin/plugin/builtins/skill/Config.d.ts +0 -18
- package/bin/plugin/builtins/skill/Config.d.ts.map +0 -1
- package/bin/plugin/builtins/skill/Config.js +0 -37
- package/bin/plugin/builtins/skill/Config.js.map +0 -1
- package/bin/plugin/builtins/skill/PROMPT.d.ts +0 -7
- package/bin/plugin/builtins/skill/PROMPT.d.ts.map +0 -1
- package/bin/plugin/builtins/skill/PROMPT.js +0 -8
- package/bin/plugin/builtins/skill/PROMPT.js.map +0 -1
- package/bin/plugin/builtins/skill/Plugin.d.ts +0 -14
- package/bin/plugin/builtins/skill/Plugin.d.ts.map +0 -1
- package/bin/plugin/builtins/skill/Plugin.js +0 -301
- package/bin/plugin/builtins/skill/Plugin.js.map +0 -1
- package/bin/plugin/builtins/skill/SkillPromptAssets.d.ts +0 -12
- package/bin/plugin/builtins/skill/SkillPromptAssets.d.ts.map +0 -1
- package/bin/plugin/builtins/skill/SkillPromptAssets.js +0 -13
- package/bin/plugin/builtins/skill/SkillPromptAssets.js.map +0 -1
- package/bin/plugin/builtins/skill/runtime/Discovery.d.ts +0 -25
- package/bin/plugin/builtins/skill/runtime/Discovery.d.ts.map +0 -1
- package/bin/plugin/builtins/skill/runtime/Discovery.js +0 -130
- package/bin/plugin/builtins/skill/runtime/Discovery.js.map +0 -1
- package/bin/plugin/builtins/skill/runtime/Frontmatter.d.ts +0 -6
- package/bin/plugin/builtins/skill/runtime/Frontmatter.d.ts.map +0 -1
- package/bin/plugin/builtins/skill/runtime/Frontmatter.js +0 -12
- package/bin/plugin/builtins/skill/runtime/Frontmatter.js.map +0 -1
- package/bin/plugin/builtins/skill/runtime/Paths.d.ts +0 -16
- package/bin/plugin/builtins/skill/runtime/Paths.d.ts.map +0 -1
- package/bin/plugin/builtins/skill/runtime/Paths.js +0 -111
- package/bin/plugin/builtins/skill/runtime/Paths.js.map +0 -1
- package/bin/plugin/builtins/skill/runtime/Prompt.d.ts +0 -19
- package/bin/plugin/builtins/skill/runtime/Prompt.d.ts.map +0 -1
- package/bin/plugin/builtins/skill/runtime/Prompt.js +0 -54
- package/bin/plugin/builtins/skill/runtime/Prompt.js.map +0 -1
- package/bin/plugin/builtins/skill/runtime/Store.d.ts +0 -25
- package/bin/plugin/builtins/skill/runtime/Store.d.ts.map +0 -1
- package/bin/plugin/builtins/skill/runtime/Store.js +0 -81
- package/bin/plugin/builtins/skill/runtime/Store.js.map +0 -1
- package/bin/plugin/builtins/skill/runtime/SystemProvider.d.ts +0 -24
- package/bin/plugin/builtins/skill/runtime/SystemProvider.d.ts.map +0 -1
- package/bin/plugin/builtins/skill/runtime/SystemProvider.js +0 -33
- package/bin/plugin/builtins/skill/runtime/SystemProvider.js.map +0 -1
- package/bin/plugin/builtins/skill/runtime/Types.d.ts +0 -21
- package/bin/plugin/builtins/skill/runtime/Types.d.ts.map +0 -1
- package/bin/plugin/builtins/skill/runtime/Types.js +0 -2
- package/bin/plugin/builtins/skill/runtime/Types.js.map +0 -1
- package/bin/plugin/builtins/skill/runtime/Utils.d.ts +0 -4
- package/bin/plugin/builtins/skill/runtime/Utils.d.ts.map +0 -1
- package/bin/plugin/builtins/skill/runtime/Utils.js +0 -29
- package/bin/plugin/builtins/skill/runtime/Utils.js.map +0 -1
- package/bin/plugin/builtins/skill/types/ClaudeSkill.d.ts +0 -63
- package/bin/plugin/builtins/skill/types/ClaudeSkill.d.ts.map +0 -1
- package/bin/plugin/builtins/skill/types/ClaudeSkill.js +0 -10
- package/bin/plugin/builtins/skill/types/ClaudeSkill.js.map +0 -1
- package/bin/plugin/builtins/skill/types/SkillCommand.d.ts +0 -87
- package/bin/plugin/builtins/skill/types/SkillCommand.d.ts.map +0 -1
- package/bin/plugin/builtins/skill/types/SkillCommand.js +0 -9
- package/bin/plugin/builtins/skill/types/SkillCommand.js.map +0 -1
- package/bin/plugin/builtins/skill/types/SkillPlugin.d.ts +0 -102
- package/bin/plugin/builtins/skill/types/SkillPlugin.d.ts.map +0 -1
- package/bin/plugin/builtins/skill/types/SkillPlugin.js +0 -29
- package/bin/plugin/builtins/skill/types/SkillPlugin.js.map +0 -1
- package/bin/plugin/builtins/skill/types/SkillRoot.d.ts +0 -48
- package/bin/plugin/builtins/skill/types/SkillRoot.d.ts.map +0 -1
- package/bin/plugin/builtins/skill/types/SkillRoot.js +0 -9
- package/bin/plugin/builtins/skill/types/SkillRoot.js.map +0 -1
- package/bin/plugin/builtins/task/Action.d.ts +0 -36
- package/bin/plugin/builtins/task/Action.d.ts.map +0 -1
- package/bin/plugin/builtins/task/Action.js +0 -407
- package/bin/plugin/builtins/task/Action.js.map +0 -1
- package/bin/plugin/builtins/task/Index.d.ts +0 -9
- package/bin/plugin/builtins/task/Index.d.ts.map +0 -1
- package/bin/plugin/builtins/task/Index.js +0 -9
- package/bin/plugin/builtins/task/Index.js.map +0 -1
- package/bin/plugin/builtins/task/PROMPT.d.ts +0 -7
- package/bin/plugin/builtins/task/PROMPT.d.ts.map +0 -1
- package/bin/plugin/builtins/task/PROMPT.js +0 -8
- package/bin/plugin/builtins/task/PROMPT.js.map +0 -1
- package/bin/plugin/builtins/task/Scheduler.d.ts +0 -17
- package/bin/plugin/builtins/task/Scheduler.d.ts.map +0 -1
- package/bin/plugin/builtins/task/Scheduler.js +0 -231
- package/bin/plugin/builtins/task/Scheduler.js.map +0 -1
- package/bin/plugin/builtins/task/TaskPlugin.d.ts +0 -57
- package/bin/plugin/builtins/task/TaskPlugin.d.ts.map +0 -1
- package/bin/plugin/builtins/task/TaskPlugin.js +0 -126
- package/bin/plugin/builtins/task/TaskPlugin.js.map +0 -1
- package/bin/plugin/builtins/task/runtime/CronTrigger.d.ts +0 -19
- package/bin/plugin/builtins/task/runtime/CronTrigger.d.ts.map +0 -1
- package/bin/plugin/builtins/task/runtime/CronTrigger.js +0 -93
- package/bin/plugin/builtins/task/runtime/CronTrigger.js.map +0 -1
- package/bin/plugin/builtins/task/runtime/Frontmatter.d.ts +0 -13
- package/bin/plugin/builtins/task/runtime/Frontmatter.d.ts.map +0 -1
- package/bin/plugin/builtins/task/runtime/Frontmatter.js +0 -19
- package/bin/plugin/builtins/task/runtime/Frontmatter.js.map +0 -1
- package/bin/plugin/builtins/task/runtime/Model.d.ts +0 -73
- package/bin/plugin/builtins/task/runtime/Model.d.ts.map +0 -1
- package/bin/plugin/builtins/task/runtime/Model.js +0 -312
- package/bin/plugin/builtins/task/runtime/Model.js.map +0 -1
- package/bin/plugin/builtins/task/runtime/Paths.d.ts +0 -32
- package/bin/plugin/builtins/task/runtime/Paths.d.ts.map +0 -1
- package/bin/plugin/builtins/task/runtime/Paths.js +0 -103
- package/bin/plugin/builtins/task/runtime/Paths.js.map +0 -1
- package/bin/plugin/builtins/task/runtime/Runner.d.ts +0 -43
- package/bin/plugin/builtins/task/runtime/Runner.d.ts.map +0 -1
- package/bin/plugin/builtins/task/runtime/Runner.js +0 -440
- package/bin/plugin/builtins/task/runtime/Runner.js.map +0 -1
- package/bin/plugin/builtins/task/runtime/Store.d.ts +0 -89
- package/bin/plugin/builtins/task/runtime/Store.d.ts.map +0 -1
- package/bin/plugin/builtins/task/runtime/Store.js +0 -206
- package/bin/plugin/builtins/task/runtime/Store.js.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskActionExecution.d.ts +0 -160
- package/bin/plugin/builtins/task/runtime/TaskActionExecution.d.ts.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskActionExecution.js +0 -192
- package/bin/plugin/builtins/task/runtime/TaskActionExecution.js.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskActionInput.d.ts +0 -19
- package/bin/plugin/builtins/task/runtime/TaskActionInput.d.ts.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskActionInput.js +0 -218
- package/bin/plugin/builtins/task/runtime/TaskActionInput.js.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskPluginActionRegistry.d.ts +0 -16
- package/bin/plugin/builtins/task/runtime/TaskPluginActionRegistry.d.ts.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskPluginActionRegistry.js +0 -167
- package/bin/plugin/builtins/task/runtime/TaskPluginActionRegistry.js.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskPluginActions.d.ts +0 -5
- package/bin/plugin/builtins/task/runtime/TaskPluginActions.d.ts.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskPluginActions.js +0 -5
- package/bin/plugin/builtins/task/runtime/TaskPluginActions.js.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskPluginSystem.d.ts +0 -9
- package/bin/plugin/builtins/task/runtime/TaskPluginSystem.d.ts.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskPluginSystem.js +0 -9
- package/bin/plugin/builtins/task/runtime/TaskPluginSystem.js.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskPromptAssets.d.ts +0 -12
- package/bin/plugin/builtins/task/runtime/TaskPromptAssets.d.ts.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskPromptAssets.js +0 -13
- package/bin/plugin/builtins/task/runtime/TaskPromptAssets.js.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskRunArtifacts.d.ts +0 -189
- package/bin/plugin/builtins/task/runtime/TaskRunArtifacts.d.ts.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskRunArtifacts.js +0 -271
- package/bin/plugin/builtins/task/runtime/TaskRunArtifacts.js.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskRunChatDispatch.d.ts +0 -22
- package/bin/plugin/builtins/task/runtime/TaskRunChatDispatch.d.ts.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskRunChatDispatch.js +0 -66
- package/bin/plugin/builtins/task/runtime/TaskRunChatDispatch.js.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskRunnerProgress.d.ts +0 -35
- package/bin/plugin/builtins/task/runtime/TaskRunnerProgress.d.ts.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskRunnerProgress.js +0 -95
- package/bin/plugin/builtins/task/runtime/TaskRunnerProgress.js.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskRunnerRound.d.ts +0 -80
- package/bin/plugin/builtins/task/runtime/TaskRunnerRound.d.ts.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskRunnerRound.js +0 -272
- package/bin/plugin/builtins/task/runtime/TaskRunnerRound.js.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskRunnerScript.d.ts +0 -81
- package/bin/plugin/builtins/task/runtime/TaskRunnerScript.d.ts.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskRunnerScript.js +0 -96
- package/bin/plugin/builtins/task/runtime/TaskRunnerScript.js.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskRunnerSession.d.ts +0 -48
- package/bin/plugin/builtins/task/runtime/TaskRunnerSession.d.ts.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskRunnerSession.js +0 -153
- package/bin/plugin/builtins/task/runtime/TaskRunnerSession.js.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskRunnerTypes.d.ts +0 -186
- package/bin/plugin/builtins/task/runtime/TaskRunnerTypes.d.ts.map +0 -1
- package/bin/plugin/builtins/task/runtime/TaskRunnerTypes.js +0 -9
- package/bin/plugin/builtins/task/runtime/TaskRunnerTypes.js.map +0 -1
- package/bin/plugin/builtins/task/types/Cron.d.ts +0 -16
- package/bin/plugin/builtins/task/types/Cron.d.ts.map +0 -1
- package/bin/plugin/builtins/task/types/Cron.js +0 -2
- package/bin/plugin/builtins/task/types/Cron.js.map +0 -1
- package/bin/plugin/builtins/task/types/Task.d.ts +0 -146
- package/bin/plugin/builtins/task/types/Task.d.ts.map +0 -1
- package/bin/plugin/builtins/task/types/Task.js +0 -9
- package/bin/plugin/builtins/task/types/Task.js.map +0 -1
- package/bin/plugin/builtins/task/types/TaskCommand.d.ts +0 -147
- package/bin/plugin/builtins/task/types/TaskCommand.d.ts.map +0 -1
- package/bin/plugin/builtins/task/types/TaskCommand.js +0 -9
- package/bin/plugin/builtins/task/types/TaskCommand.js.map +0 -1
- package/bin/plugin/builtins/task/types/TaskPluginTypes.d.ts +0 -52
- package/bin/plugin/builtins/task/types/TaskPluginTypes.d.ts.map +0 -1
- package/bin/plugin/builtins/task/types/TaskPluginTypes.js +0 -9
- package/bin/plugin/builtins/task/types/TaskPluginTypes.js.map +0 -1
- package/bin/plugin/builtins/tts/Dependency.d.ts +0 -90
- package/bin/plugin/builtins/tts/Dependency.d.ts.map +0 -1
- package/bin/plugin/builtins/tts/Dependency.js +0 -344
- package/bin/plugin/builtins/tts/Dependency.js.map +0 -1
- package/bin/plugin/builtins/tts/Plugin.d.ts +0 -13
- package/bin/plugin/builtins/tts/Plugin.d.ts.map +0 -1
- package/bin/plugin/builtins/tts/Plugin.js +0 -472
- package/bin/plugin/builtins/tts/Plugin.js.map +0 -1
- package/bin/plugin/builtins/tts/PluginSupport.d.ts +0 -25
- package/bin/plugin/builtins/tts/PluginSupport.d.ts.map +0 -1
- package/bin/plugin/builtins/tts/PluginSupport.js +0 -72
- package/bin/plugin/builtins/tts/PluginSupport.js.map +0 -1
- package/bin/plugin/builtins/tts/runtime/Catalog.d.ts +0 -21
- package/bin/plugin/builtins/tts/runtime/Catalog.d.ts.map +0 -1
- package/bin/plugin/builtins/tts/runtime/Catalog.js +0 -90
- package/bin/plugin/builtins/tts/runtime/Catalog.js.map +0 -1
- package/bin/plugin/builtins/tts/runtime/DependencyInstaller.d.ts +0 -143
- package/bin/plugin/builtins/tts/runtime/DependencyInstaller.d.ts.map +0 -1
- package/bin/plugin/builtins/tts/runtime/DependencyInstaller.js +0 -261
- package/bin/plugin/builtins/tts/runtime/DependencyInstaller.js.map +0 -1
- package/bin/plugin/builtins/tts/runtime/Installer.d.ts +0 -89
- package/bin/plugin/builtins/tts/runtime/Installer.d.ts.map +0 -1
- package/bin/plugin/builtins/tts/runtime/Installer.js +0 -188
- package/bin/plugin/builtins/tts/runtime/Installer.js.map +0 -1
- package/bin/plugin/builtins/tts/runtime/Paths.d.ts +0 -20
- package/bin/plugin/builtins/tts/runtime/Paths.d.ts.map +0 -1
- package/bin/plugin/builtins/tts/runtime/Paths.js +0 -32
- package/bin/plugin/builtins/tts/runtime/Paths.js.map +0 -1
- package/bin/plugin/builtins/tts/runtime/Synthesizer.d.ts +0 -44
- package/bin/plugin/builtins/tts/runtime/Synthesizer.d.ts.map +0 -1
- package/bin/plugin/builtins/tts/runtime/Synthesizer.js +0 -363
- package/bin/plugin/builtins/tts/runtime/Synthesizer.js.map +0 -1
- package/bin/plugin/builtins/tts/types/Tts.d.ts +0 -91
- package/bin/plugin/builtins/tts/types/Tts.d.ts.map +0 -1
- package/bin/plugin/builtins/tts/types/Tts.js +0 -9
- package/bin/plugin/builtins/tts/types/Tts.js.map +0 -1
- package/bin/plugin/builtins/tts/types/TtsPlugin.d.ts +0 -161
- package/bin/plugin/builtins/tts/types/TtsPlugin.d.ts.map +0 -1
- package/bin/plugin/builtins/tts/types/TtsPlugin.js +0 -9
- package/bin/plugin/builtins/tts/types/TtsPlugin.js.map +0 -1
- package/bin/plugin/builtins/voice/Config.d.ts +0 -43
- package/bin/plugin/builtins/voice/Config.d.ts.map +0 -1
- package/bin/plugin/builtins/voice/Config.js +0 -104
- package/bin/plugin/builtins/voice/Config.js.map +0 -1
- package/bin/plugin/builtins/voice/Dependency.d.ts +0 -77
- package/bin/plugin/builtins/voice/Dependency.d.ts.map +0 -1
- package/bin/plugin/builtins/voice/Dependency.js +0 -237
- package/bin/plugin/builtins/voice/Dependency.js.map +0 -1
- package/bin/plugin/builtins/voice/InboundAugment.d.ts +0 -17
- package/bin/plugin/builtins/voice/InboundAugment.d.ts.map +0 -1
- package/bin/plugin/builtins/voice/InboundAugment.js +0 -47
- package/bin/plugin/builtins/voice/InboundAugment.js.map +0 -1
- package/bin/plugin/builtins/voice/ModelCatalog.d.ts +0 -29
- package/bin/plugin/builtins/voice/ModelCatalog.d.ts.map +0 -1
- package/bin/plugin/builtins/voice/ModelCatalog.js +0 -25
- package/bin/plugin/builtins/voice/ModelCatalog.js.map +0 -1
- package/bin/plugin/builtins/voice/runtime/Catalog.d.ts +0 -18
- package/bin/plugin/builtins/voice/runtime/Catalog.d.ts.map +0 -1
- package/bin/plugin/builtins/voice/runtime/Catalog.js +0 -61
- package/bin/plugin/builtins/voice/runtime/Catalog.js.map +0 -1
- package/bin/plugin/builtins/voice/runtime/DependencyInstaller.d.ts +0 -145
- package/bin/plugin/builtins/voice/runtime/DependencyInstaller.d.ts.map +0 -1
- package/bin/plugin/builtins/voice/runtime/DependencyInstaller.js +0 -309
- package/bin/plugin/builtins/voice/runtime/DependencyInstaller.js.map +0 -1
- package/bin/plugin/builtins/voice/runtime/Installer.d.ts +0 -94
- package/bin/plugin/builtins/voice/runtime/Installer.d.ts.map +0 -1
- package/bin/plugin/builtins/voice/runtime/Installer.js +0 -200
- package/bin/plugin/builtins/voice/runtime/Installer.js.map +0 -1
- package/bin/plugin/builtins/voice/runtime/Paths.d.ts +0 -8
- package/bin/plugin/builtins/voice/runtime/Paths.d.ts.map +0 -1
- package/bin/plugin/builtins/voice/runtime/Paths.js +0 -26
- package/bin/plugin/builtins/voice/runtime/Paths.js.map +0 -1
- package/bin/plugin/builtins/voice/runtime/Transcriber.d.ts +0 -57
- package/bin/plugin/builtins/voice/runtime/Transcriber.d.ts.map +0 -1
- package/bin/plugin/builtins/voice/runtime/Transcriber.js +0 -329
- package/bin/plugin/builtins/voice/runtime/Transcriber.js.map +0 -1
- package/bin/plugin/builtins/voice/types/Voice.d.ts +0 -58
- package/bin/plugin/builtins/voice/types/Voice.d.ts.map +0 -1
- package/bin/plugin/builtins/voice/types/Voice.js +0 -9
- package/bin/plugin/builtins/voice/types/Voice.js.map +0 -1
- package/bin/plugin/builtins/voice/types/VoicePlugin.d.ts +0 -190
- package/bin/plugin/builtins/voice/types/VoicePlugin.d.ts.map +0 -1
- package/bin/plugin/builtins/voice/types/VoicePlugin.js +0 -9
- package/bin/plugin/builtins/voice/types/VoicePlugin.js.map +0 -1
- package/bin/plugin/builtins/web/Dependency.d.ts +0 -10
- package/bin/plugin/builtins/web/Dependency.d.ts.map +0 -1
- package/bin/plugin/builtins/web/Dependency.js +0 -10
- package/bin/plugin/builtins/web/Dependency.js.map +0 -1
- package/bin/plugin/builtins/web/PROMPT.agent-browser.d.ts +0 -7
- package/bin/plugin/builtins/web/PROMPT.agent-browser.d.ts.map +0 -1
- package/bin/plugin/builtins/web/PROMPT.agent-browser.js +0 -8
- package/bin/plugin/builtins/web/PROMPT.agent-browser.js.map +0 -1
- package/bin/plugin/builtins/web/PROMPT.d.ts +0 -7
- package/bin/plugin/builtins/web/PROMPT.d.ts.map +0 -1
- package/bin/plugin/builtins/web/PROMPT.js +0 -8
- package/bin/plugin/builtins/web/PROMPT.js.map +0 -1
- package/bin/plugin/builtins/web/PROMPT.web-access.d.ts +0 -7
- package/bin/plugin/builtins/web/PROMPT.web-access.d.ts.map +0 -1
- package/bin/plugin/builtins/web/PROMPT.web-access.js +0 -8
- package/bin/plugin/builtins/web/PROMPT.web-access.js.map +0 -1
- package/bin/plugin/builtins/web/Plugin.d.ts +0 -13
- package/bin/plugin/builtins/web/Plugin.d.ts.map +0 -1
- package/bin/plugin/builtins/web/Plugin.js +0 -459
- package/bin/plugin/builtins/web/Plugin.js.map +0 -1
- package/bin/plugin/builtins/web/WebPromptAssets.d.ts +0 -20
- package/bin/plugin/builtins/web/WebPromptAssets.d.ts.map +0 -1
- package/bin/plugin/builtins/web/WebPromptAssets.js +0 -23
- package/bin/plugin/builtins/web/WebPromptAssets.js.map +0 -1
- package/bin/plugin/builtins/web/runtime/Config.d.ts +0 -21
- package/bin/plugin/builtins/web/runtime/Config.d.ts.map +0 -1
- package/bin/plugin/builtins/web/runtime/Config.js +0 -79
- package/bin/plugin/builtins/web/runtime/Config.js.map +0 -1
- package/bin/plugin/builtins/web/runtime/Source.d.ts +0 -29
- package/bin/plugin/builtins/web/runtime/Source.d.ts.map +0 -1
- package/bin/plugin/builtins/web/runtime/Source.js +0 -209
- package/bin/plugin/builtins/web/runtime/Source.js.map +0 -1
- package/bin/plugin/builtins/web/types/WebPlugin.d.ts +0 -133
- package/bin/plugin/builtins/web/types/WebPlugin.d.ts.map +0 -1
- package/bin/plugin/builtins/web/types/WebPlugin.js +0 -12
- package/bin/plugin/builtins/web/types/WebPlugin.js.map +0 -1
- package/bin/plugin/builtins/workboard/Plugin.d.ts +0 -13
- package/bin/plugin/builtins/workboard/Plugin.d.ts.map +0 -1
- package/bin/plugin/builtins/workboard/Plugin.js +0 -71
- package/bin/plugin/builtins/workboard/Plugin.js.map +0 -1
- package/bin/plugin/builtins/workboard/runtime/Collector.d.ts +0 -14
- package/bin/plugin/builtins/workboard/runtime/Collector.d.ts.map +0 -1
- package/bin/plugin/builtins/workboard/runtime/Collector.js +0 -63
- package/bin/plugin/builtins/workboard/runtime/Collector.js.map +0 -1
- package/bin/plugin/builtins/workboard/runtime/Normalizer.d.ts +0 -61
- package/bin/plugin/builtins/workboard/runtime/Normalizer.d.ts.map +0 -1
- package/bin/plugin/builtins/workboard/runtime/Normalizer.js +0 -172
- package/bin/plugin/builtins/workboard/runtime/Normalizer.js.map +0 -1
- package/bin/plugin/builtins/workboard/runtime/Store.d.ts +0 -48
- package/bin/plugin/builtins/workboard/runtime/Store.d.ts.map +0 -1
- package/bin/plugin/builtins/workboard/runtime/Store.js +0 -84
- package/bin/plugin/builtins/workboard/runtime/Store.js.map +0 -1
- package/bin/plugin/builtins/workboard/types/Workboard.d.ts +0 -150
- package/bin/plugin/builtins/workboard/types/Workboard.d.ts.map +0 -1
- package/bin/plugin/builtins/workboard/types/Workboard.js +0 -9
- package/bin/plugin/builtins/workboard/types/Workboard.js.map +0 -1
- package/bin/plugin/core/BuiltinPluginClasses.d.ts +0 -14
- package/bin/plugin/core/BuiltinPluginClasses.d.ts.map +0 -1
- package/bin/plugin/core/BuiltinPluginClasses.js +0 -21
- package/bin/plugin/core/BuiltinPluginClasses.js.map +0 -1
- package/bin/plugin/core/Catalog.d.ts +0 -42
- package/bin/plugin/core/Catalog.d.ts.map +0 -1
- package/bin/plugin/core/Catalog.js +0 -92
- package/bin/plugin/core/Catalog.js.map +0 -1
- package/bin/plugin/core/HttpRoutes.d.ts +0 -22
- package/bin/plugin/core/HttpRoutes.d.ts.map +0 -1
- package/bin/plugin/core/HttpRoutes.js +0 -37
- package/bin/plugin/core/HttpRoutes.js.map +0 -1
- package/bin/plugin/core/LocalExecution.d.ts +0 -32
- package/bin/plugin/core/LocalExecution.d.ts.map +0 -1
- package/bin/plugin/core/LocalExecution.js +0 -146
- package/bin/plugin/core/LocalExecution.js.map +0 -1
- package/bin/plugin/core/PluginClassRegistry.d.ts +0 -22
- package/bin/plugin/core/PluginClassRegistry.d.ts.map +0 -1
- package/bin/plugin/core/PluginClassRegistry.js +0 -47
- package/bin/plugin/core/PluginClassRegistry.js.map +0 -1
- package/bin/plugin/core/PluginSystemProviders.d.ts +0 -27
- package/bin/plugin/core/PluginSystemProviders.d.ts.map +0 -1
- package/bin/plugin/core/PluginSystemProviders.js +0 -34
- package/bin/plugin/core/PluginSystemProviders.js.map +0 -1
- package/bin/plugin/core/Plugins.d.ts +0 -20
- package/bin/plugin/core/Plugins.d.ts.map +0 -1
- package/bin/plugin/core/Plugins.js +0 -33
- package/bin/plugin/core/Plugins.js.map +0 -1
- package/bin/plugin/core/schedule/Executor.d.ts +0 -17
- package/bin/plugin/core/schedule/Executor.d.ts.map +0 -1
- package/bin/plugin/core/schedule/Executor.js +0 -48
- package/bin/plugin/core/schedule/Executor.js.map +0 -1
- package/bin/plugin/core/schedule/Store.d.ts +0 -91
- package/bin/plugin/core/schedule/Store.d.ts.map +0 -1
- package/bin/plugin/core/schedule/Store.js +0 -284
- package/bin/plugin/core/schedule/Store.js.map +0 -1
- package/bin/plugin/core/schedule/Time.d.ts +0 -31
- package/bin/plugin/core/schedule/Time.d.ts.map +0 -1
- package/bin/plugin/core/schedule/Time.js +0 -107
- package/bin/plugin/core/schedule/Time.js.map +0 -1
- package/bin/plugin/types/PluginSchedule.d.ts +0 -80
- package/bin/plugin/types/PluginSchedule.d.ts.map +0 -1
- package/bin/plugin/types/PluginSchedule.js +0 -5
- package/bin/plugin/types/PluginSchedule.js.map +0 -1
- package/bin/runtime/host/PluginRuntime.d.ts +0 -24
- package/bin/runtime/host/PluginRuntime.d.ts.map +0 -1
- package/bin/runtime/host/PluginRuntime.js +0 -31
- package/bin/runtime/host/PluginRuntime.js.map +0 -1
- package/bin/runtime/server/http/control/ModelRoutes.d.ts +0 -13
- package/bin/runtime/server/http/control/ModelRoutes.d.ts.map +0 -1
- package/bin/runtime/server/http/control/ModelRoutes.js +0 -87
- package/bin/runtime/server/http/control/ModelRoutes.js.map +0 -1
- package/bin/runtime/server/http/services/services.d.ts +0 -25
- package/bin/runtime/server/http/services/services.d.ts.map +0 -1
- package/bin/runtime/server/http/services/services.js +0 -82
- package/bin/runtime/server/http/services/services.js.map +0 -1
- package/bin/sdk/Agent.d.ts +0 -85
- package/bin/sdk/Agent.d.ts.map +0 -1
- package/bin/sdk/Agent.js +0 -200
- package/bin/sdk/Agent.js.map +0 -1
- package/bin/sdk/AgentSdkTypes.d.ts +0 -387
- package/bin/sdk/AgentSdkTypes.d.ts.map +0 -1
- package/bin/sdk/AgentSdkTypes.js +0 -10
- package/bin/sdk/AgentSdkTypes.js.map +0 -1
- package/bin/sdk/RemoteAgent.d.ts +0 -77
- package/bin/sdk/RemoteAgent.d.ts.map +0 -1
- package/bin/sdk/RemoteAgent.js +0 -396
- package/bin/sdk/RemoteAgent.js.map +0 -1
- package/bin/sdk/Session.d.ts +0 -177
- package/bin/sdk/Session.d.ts.map +0 -1
- package/bin/sdk/Session.js +0 -491
- package/bin/sdk/Session.js.map +0 -1
- package/bin/sdk/SessionEventMapper.d.ts.map +0 -1
- package/bin/sdk/SessionEventMapper.js.map +0 -1
- package/bin/sdk/SessionSystemBuilder.d.ts +0 -106
- package/bin/sdk/SessionSystemBuilder.d.ts.map +0 -1
- package/bin/sdk/SessionSystemBuilder.js +0 -147
- package/bin/sdk/SessionSystemBuilder.js.map +0 -1
- package/bin/sdk/session/Metadata.d.ts +0 -55
- package/bin/sdk/session/Metadata.d.ts.map +0 -1
- package/bin/sdk/session/Metadata.js +0 -140
- package/bin/sdk/session/Metadata.js.map +0 -1
- package/bin/sdk/session/Paths.d.ts.map +0 -1
- package/bin/sdk/session/Paths.js.map +0 -1
- package/bin/sdk/session/Persistence.d.ts +0 -63
- package/bin/sdk/session/Persistence.d.ts.map +0 -1
- package/bin/sdk/session/Persistence.js +0 -52
- package/bin/sdk/session/Persistence.js.map +0 -1
- package/bin/sdk/session/RuntimeSessionPort.d.ts +0 -70
- package/bin/sdk/session/RuntimeSessionPort.d.ts.map +0 -1
- package/bin/sdk/session/RuntimeSessionPort.js +0 -40
- package/bin/sdk/session/RuntimeSessionPort.js.map +0 -1
- package/bin/sdk/session/index.d.ts +0 -12
- package/bin/sdk/session/index.d.ts.map +0 -1
- package/bin/sdk/session/index.js +0 -12
- package/bin/sdk/session/index.js.map +0 -1
- package/bin/sdk/session/runtime/SessionEventHub.d.ts +0 -24
- package/bin/sdk/session/runtime/SessionEventHub.d.ts.map +0 -1
- package/bin/sdk/session/runtime/SessionEventHub.js.map +0 -1
- package/bin/sdk/session/runtime/SessionPromptRuntime.d.ts +0 -71
- package/bin/sdk/session/runtime/SessionPromptRuntime.d.ts.map +0 -1
- package/bin/sdk/session/runtime/SessionPromptRuntime.js.map +0 -1
- package/bin/session/Executor.d.ts +0 -172
- package/bin/session/Executor.d.ts.map +0 -1
- package/bin/session/Executor.js +0 -533
- package/bin/session/Executor.js.map +0 -1
- package/bin/session/SessionRunScope.d.ts +0 -84
- package/bin/session/SessionRunScope.d.ts.map +0 -1
- package/bin/session/SessionRunScope.js +0 -82
- package/bin/session/SessionRunScope.js.map +0 -1
- package/bin/session/composer/compaction/SessionCompactionComposer.d.ts +0 -55
- package/bin/session/composer/compaction/SessionCompactionComposer.d.ts.map +0 -1
- package/bin/session/composer/compaction/SessionCompactionComposer.js.map +0 -1
- package/bin/session/composer/compaction/jsonl/JsonlSessionCompactionComposer.d.ts.map +0 -1
- package/bin/session/composer/compaction/jsonl/JsonlSessionCompactionComposer.js.map +0 -1
- package/bin/session/composer/compaction/jsonl/JsonlSessionCompactionExecutor.d.ts +0 -46
- package/bin/session/composer/compaction/jsonl/JsonlSessionCompactionExecutor.d.ts.map +0 -1
- package/bin/session/composer/compaction/jsonl/JsonlSessionCompactionExecutor.js.map +0 -1
- package/bin/session/composer/context/LocalSessionContextComposer.d.ts +0 -48
- package/bin/session/composer/context/LocalSessionContextComposer.d.ts.map +0 -1
- package/bin/session/composer/context/LocalSessionContextComposer.js.map +0 -1
- package/bin/session/composer/context/SessionContextComposer.d.ts +0 -62
- package/bin/session/composer/context/SessionContextComposer.d.ts.map +0 -1
- package/bin/session/composer/context/SessionContextComposer.js.map +0 -1
- package/bin/session/composer/history/SessionHistoryComposer.d.ts +0 -54
- package/bin/session/composer/history/SessionHistoryComposer.d.ts.map +0 -1
- package/bin/session/composer/history/SessionHistoryComposer.js.map +0 -1
- package/bin/session/composer/history/SessionHistoryWriter.d.ts +0 -56
- package/bin/session/composer/history/SessionHistoryWriter.d.ts.map +0 -1
- package/bin/session/composer/history/SessionHistoryWriter.js.map +0 -1
- package/bin/session/composer/history/jsonl/JsonlSessionHistoryComposer.d.ts +0 -35
- package/bin/session/composer/history/jsonl/JsonlSessionHistoryComposer.d.ts.map +0 -1
- package/bin/session/composer/history/jsonl/JsonlSessionHistoryComposer.js.map +0 -1
- package/bin/session/composer/system/SessionSystemComposer.d.ts.map +0 -1
- package/bin/session/composer/system/SessionSystemComposer.js.map +0 -1
- package/bin/session/composer/system/default/DefaultSessionSystemComposer.d.ts +0 -42
- package/bin/session/composer/system/default/DefaultSessionSystemComposer.d.ts.map +0 -1
- package/bin/session/composer/system/default/DefaultSessionSystemComposer.js.map +0 -1
- package/bin/session/composer/system/default/InitPromptAssets.d.ts.map +0 -1
- package/bin/session/composer/system/default/InitPromptAssets.js.map +0 -1
- package/bin/session/composer/system/default/InitPrompts.d.ts.map +0 -1
- package/bin/session/composer/system/default/InitPrompts.js.map +0 -1
- package/bin/session/composer/system/default/PromptRenderer.d.ts.map +0 -1
- package/bin/session/composer/system/default/PromptRenderer.js.map +0 -1
- package/bin/session/composer/system/default/StaticPromptCatalog.d.ts.map +0 -1
- package/bin/session/composer/system/default/StaticPromptCatalog.js.map +0 -1
- package/bin/session/composer/system/default/SystemDomain.d.ts +0 -169
- package/bin/session/composer/system/default/SystemDomain.d.ts.map +0 -1
- package/bin/session/composer/system/default/SystemDomain.js +0 -221
- package/bin/session/composer/system/default/SystemDomain.js.map +0 -1
- package/bin/session/composer/system/default/SystemPromptAssets.d.ts.map +0 -1
- package/bin/session/composer/system/default/SystemPromptAssets.js.map +0 -1
- package/bin/session/composer/system/default/assets/core.prompt.d.ts.map +0 -1
- package/bin/session/composer/system/default/assets/core.prompt.js +0 -8
- package/bin/session/composer/system/default/assets/core.prompt.js.map +0 -1
- package/bin/session/composer/system/default/assets/init/PROFILE.md.d.ts.map +0 -1
- package/bin/session/composer/system/default/assets/init/PROFILE.md.js +0 -8
- package/bin/session/composer/system/default/assets/init/PROFILE.md.js.map +0 -1
- package/bin/session/composer/system/default/assets/init/SOUL.md.d.ts.map +0 -1
- package/bin/session/composer/system/default/assets/init/SOUL.md.js +0 -8
- package/bin/session/composer/system/default/assets/init/SOUL.md.js.map +0 -1
- package/bin/session/composer/system/default/assets/plugin.prompt.d.ts +0 -7
- package/bin/session/composer/system/default/assets/plugin.prompt.d.ts.map +0 -1
- package/bin/session/composer/system/default/assets/plugin.prompt.js +0 -8
- package/bin/session/composer/system/default/assets/plugin.prompt.js.map +0 -1
- package/bin/session/composer/system/default/assets/task.prompt.d.ts.map +0 -1
- package/bin/session/composer/system/default/assets/task.prompt.js +0 -8
- package/bin/session/composer/system/default/assets/task.prompt.js.map +0 -1
- package/bin/session/composer/system/default/variables/GeoContext.d.ts.map +0 -1
- package/bin/session/composer/system/default/variables/GeoContext.js.map +0 -1
- package/bin/session/composer/system/default/variables/PromptTypes.d.ts.map +0 -1
- package/bin/session/composer/system/default/variables/PromptTypes.js.map +0 -1
- package/bin/session/composer/system/default/variables/VariableReplacer.d.ts.map +0 -1
- package/bin/session/composer/system/default/variables/VariableReplacer.js.map +0 -1
- package/bin/session/core-engine/CoreEngineError.d.ts.map +0 -1
- package/bin/session/core-engine/CoreEngineError.js.map +0 -1
- package/bin/session/core-engine/CoreEngineLoopDecision.d.ts +0 -27
- package/bin/session/core-engine/CoreEngineLoopDecision.d.ts.map +0 -1
- package/bin/session/core-engine/CoreEngineLoopDecision.js.map +0 -1
- package/bin/session/core-engine/CoreEngineMessageState.d.ts +0 -63
- package/bin/session/core-engine/CoreEngineMessageState.d.ts.map +0 -1
- package/bin/session/core-engine/CoreEngineMessageState.js.map +0 -1
- package/bin/session/core-engine/CoreEngineSignals.d.ts +0 -72
- package/bin/session/core-engine/CoreEngineSignals.d.ts.map +0 -1
- package/bin/session/core-engine/CoreEngineSignals.js.map +0 -1
- package/bin/session/core-engine/CoreEngineUiStreamCollector.d.ts +0 -33
- package/bin/session/core-engine/CoreEngineUiStreamCollector.d.ts.map +0 -1
- package/bin/session/core-engine/CoreEngineUiStreamCollector.js.map +0 -1
- package/bin/session/ids/resolveSessionId.d.ts.map +0 -1
- package/bin/session/ids/resolveSessionId.js.map +0 -1
- package/bin/session/messages/AssistantResultPersistence.d.ts +0 -66
- package/bin/session/messages/AssistantResultPersistence.d.ts.map +0 -1
- package/bin/session/messages/AssistantResultPersistence.js +0 -48
- package/bin/session/messages/AssistantResultPersistence.js.map +0 -1
- package/bin/session/messages/SessionAttachmentMapper.d.ts +0 -14
- package/bin/session/messages/SessionAttachmentMapper.d.ts.map +0 -1
- package/bin/session/messages/SessionAttachmentMapper.js +0 -145
- package/bin/session/messages/SessionAttachmentMapper.js.map +0 -1
- package/bin/session/messages/SessionMessageCodec.d.ts +0 -41
- package/bin/session/messages/SessionMessageCodec.d.ts.map +0 -1
- package/bin/session/messages/SessionMessageCodec.js.map +0 -1
- package/bin/session/messages/SessionMessageLog.d.ts +0 -19
- package/bin/session/messages/SessionMessageLog.d.ts.map +0 -1
- package/bin/session/messages/SessionMessageLog.js.map +0 -1
- package/bin/session/messages/SessionStepEventMapper.d.ts +0 -20
- package/bin/session/messages/SessionStepEventMapper.d.ts.map +0 -1
- package/bin/session/messages/SessionStepEventMapper.js.map +0 -1
- package/bin/session/store/history/SessionHistoryStore.d.ts +0 -119
- package/bin/session/store/history/SessionHistoryStore.d.ts.map +0 -1
- package/bin/session/store/history/SessionHistoryStore.js.map +0 -1
- package/bin/session/store/history/jsonl/JsonlSessionHistoryStore.d.ts +0 -85
- package/bin/session/store/history/jsonl/JsonlSessionHistoryStore.d.ts.map +0 -1
- package/bin/session/store/history/jsonl/JsonlSessionHistoryStore.js.map +0 -1
- package/bin/session/tools/shell/ShellToolBridge.d.ts +0 -79
- package/bin/session/tools/shell/ShellToolBridge.d.ts.map +0 -1
- package/bin/session/tools/shell/ShellToolBridge.js +0 -288
- package/bin/session/tools/shell/ShellToolBridge.js.map +0 -1
- package/bin/session/tools/shell/ShellToolDefinition.d.ts +0 -114
- package/bin/session/tools/shell/ShellToolDefinition.d.ts.map +0 -1
- package/bin/session/tools/shell/ShellToolDefinition.js +0 -359
- package/bin/session/tools/shell/ShellToolDefinition.js.map +0 -1
- package/bin/session/tools/shell/ShellToolFormatting.d.ts +0 -26
- package/bin/session/tools/shell/ShellToolFormatting.d.ts.map +0 -1
- package/bin/session/tools/shell/ShellToolFormatting.js +0 -74
- package/bin/session/tools/shell/ShellToolFormatting.js.map +0 -1
- package/bin/session/tools/shell/ShellToolSchemas.d.ts +0 -118
- package/bin/session/tools/shell/ShellToolSchemas.d.ts.map +0 -1
- package/bin/session/tools/shell/ShellToolSchemas.js +0 -113
- package/bin/session/tools/shell/ShellToolSchemas.js.map +0 -1
- package/bin/session/types/SessionExecutor.d.ts +0 -18
- package/bin/session/types/SessionExecutor.d.ts.map +0 -1
- package/bin/session/types/SessionExecutor.js.map +0 -1
- package/bin/session/types/SessionHistoryMeta.d.ts.map +0 -1
- package/bin/session/types/SessionHistoryMeta.js.map +0 -1
- package/bin/session/types/SessionHistoryPaths.d.ts.map +0 -1
- package/bin/session/types/SessionHistoryPaths.js.map +0 -1
- package/bin/session/types/SessionLoop.d.ts.map +0 -1
- package/bin/session/types/SessionLoop.js.map +0 -1
- package/bin/session/types/SessionMessages.d.ts.map +0 -1
- package/bin/session/types/SessionMessages.js.map +0 -1
- package/bin/session/types/SessionPrompts.d.ts.map +0 -1
- package/bin/session/types/SessionPrompts.js.map +0 -1
- package/bin/session/types/SessionRun.d.ts +0 -112
- package/bin/session/types/SessionRun.d.ts.map +0 -1
- package/bin/session/types/SessionRun.js.map +0 -1
- package/src/config/project/AgentInitializer.ts +0 -427
- package/src/core/AgentContextTypes.ts +0 -305
- package/src/core/AgentCore.ts +0 -530
- package/src/core/AgentCoreTypes.ts +0 -90
- package/src/plugin/builtins/asr/Config.ts +0 -138
- package/src/plugin/builtins/asr/Dependency.ts +0 -336
- package/src/plugin/builtins/asr/InboundAugment.ts +0 -59
- package/src/plugin/builtins/asr/ModelCatalog.ts +0 -43
- package/src/plugin/builtins/asr/Plugin.ts +0 -488
- package/src/plugin/builtins/auth/Plugin.ts +0 -209
- package/src/plugin/builtins/auth/runtime/AuthorizationConfig.ts +0 -265
- package/src/plugin/builtins/auth/runtime/AuthorizationPolicy.ts +0 -168
- package/src/plugin/builtins/auth/runtime/AuthorizationStore.ts +0 -219
- package/src/plugin/builtins/auth/types/AuthPlugin.ts +0 -545
- package/src/plugin/builtins/chat/Action.ts +0 -477
- package/src/plugin/builtins/chat/ChatPlugin.ts +0 -255
- package/src/plugin/builtins/chat/ChatPluginTypes.ts +0 -164
- package/src/plugin/builtins/chat/Index.ts +0 -8
- package/src/plugin/builtins/chat/PROMPT.direct.ts +0 -9
- package/src/plugin/builtins/chat/PROMPT.direct.ts.txt +0 -55
- package/src/plugin/builtins/chat/accounts/ChannelAccountService.ts +0 -297
- package/src/plugin/builtins/chat/channels/BaseChatChannel.ts +0 -450
- package/src/plugin/builtins/chat/channels/BaseChatChannelQueue.ts +0 -320
- package/src/plugin/builtins/chat/channels/BaseChatChannelSupport.ts +0 -321
- package/src/plugin/builtins/chat/channels/BotInfoProvider.ts +0 -49
- package/src/plugin/builtins/chat/channels/Configuration.ts +0 -35
- package/src/plugin/builtins/chat/channels/ConfigurationRegistry.ts +0 -43
- package/src/plugin/builtins/chat/channels/feishu/BotInfo.ts +0 -199
- package/src/plugin/builtins/chat/channels/feishu/Configuration.ts +0 -65
- package/src/plugin/builtins/chat/channels/feishu/Feishu.ts +0 -467
- package/src/plugin/builtins/chat/channels/feishu/FeishuInbound.ts +0 -51
- package/src/plugin/builtins/chat/channels/feishu/FeishuMessageHandler.ts +0 -483
- package/src/plugin/builtins/chat/channels/feishu/FeishuPlatformClient.ts +0 -421
- package/src/plugin/builtins/chat/channels/feishu/FeishuPlatformLookup.ts +0 -523
- package/src/plugin/builtins/chat/channels/feishu/FeishuPlatformMessaging.ts +0 -219
- package/src/plugin/builtins/chat/channels/feishu/InboundAttachment.ts +0 -261
- package/src/plugin/builtins/chat/channels/feishu/PROMPT.direct.ts +0 -9
- package/src/plugin/builtins/chat/channels/feishu/PROMPT.direct.ts.txt +0 -5
- package/src/plugin/builtins/chat/channels/feishu/PostMessage.ts +0 -492
- package/src/plugin/builtins/chat/channels/feishu/ReplyContext.ts +0 -68
- package/src/plugin/builtins/chat/channels/feishu/Shared.ts +0 -94
- package/src/plugin/builtins/chat/channels/feishu/types/FeishuChannel.ts +0 -131
- package/src/plugin/builtins/chat/channels/qq/BotInfo.ts +0 -137
- package/src/plugin/builtins/chat/channels/qq/Configuration.ts +0 -64
- package/src/plugin/builtins/chat/channels/qq/PROMPT.direct.ts +0 -9
- package/src/plugin/builtins/chat/channels/qq/PROMPT.direct.ts.txt +0 -11
- package/src/plugin/builtins/chat/channels/qq/QQ.ts +0 -398
- package/src/plugin/builtins/chat/channels/qq/QQEventCapture.ts +0 -88
- package/src/plugin/builtins/chat/channels/qq/QQGatewayAuth.ts +0 -318
- package/src/plugin/builtins/chat/channels/qq/QQGatewayClient.ts +0 -467
- package/src/plugin/builtins/chat/channels/qq/QQGatewayConnection.ts +0 -175
- package/src/plugin/builtins/chat/channels/qq/QQGatewayHeartbeat.ts +0 -114
- package/src/plugin/builtins/chat/channels/qq/QQGatewayProtocol.ts +0 -176
- package/src/plugin/builtins/chat/channels/qq/QQGatewaySend.ts +0 -258
- package/src/plugin/builtins/chat/channels/qq/QQGatewaySupport.ts +0 -159
- package/src/plugin/builtins/chat/channels/qq/QQInbound.ts +0 -262
- package/src/plugin/builtins/chat/channels/qq/QQInboundDedupe.ts +0 -126
- package/src/plugin/builtins/chat/channels/qq/QQMessageHandler.ts +0 -465
- package/src/plugin/builtins/chat/channels/qq/QQSendSupport.ts +0 -91
- package/src/plugin/builtins/chat/channels/qq/QQSupport.ts +0 -263
- package/src/plugin/builtins/chat/channels/qq/VoiceInput.ts +0 -381
- package/src/plugin/builtins/chat/channels/qq/types/QqChannel.ts +0 -501
- package/src/plugin/builtins/chat/channels/qq/types/QqGatewaySupport.ts +0 -97
- package/src/plugin/builtins/chat/channels/telegram/ApiClient.ts +0 -373
- package/src/plugin/builtins/chat/channels/telegram/Bot.ts +0 -357
- package/src/plugin/builtins/chat/channels/telegram/BotInfo.ts +0 -92
- package/src/plugin/builtins/chat/channels/telegram/Configuration.ts +0 -65
- package/src/plugin/builtins/chat/channels/telegram/Handlers.ts +0 -91
- package/src/plugin/builtins/chat/channels/telegram/PROMPT.direct.ts +0 -9
- package/src/plugin/builtins/chat/channels/telegram/PROMPT.direct.ts.txt +0 -2
- package/src/plugin/builtins/chat/channels/telegram/ReplyContext.ts +0 -76
- package/src/plugin/builtins/chat/channels/telegram/Shared.ts +0 -404
- package/src/plugin/builtins/chat/channels/telegram/StateStore.ts +0 -58
- package/src/plugin/builtins/chat/channels/telegram/TelegramInbound.ts +0 -186
- package/src/plugin/builtins/chat/channels/telegram/TelegramMessageHandler.ts +0 -485
- package/src/plugin/builtins/chat/channels/telegram/TelegramPendingUpdates.ts +0 -204
- package/src/plugin/builtins/chat/channels/telegram/TelegramPlatformClient.ts +0 -482
- package/src/plugin/builtins/chat/runtime/ChannelContextStore.ts +0 -395
- package/src/plugin/builtins/chat/runtime/ChatActionExecution.ts +0 -362
- package/src/plugin/builtins/chat/runtime/ChatActionInput.ts +0 -167
- package/src/plugin/builtins/chat/runtime/ChatActionInputSupport.ts +0 -85
- package/src/plugin/builtins/chat/runtime/ChatChannelActions.ts +0 -307
- package/src/plugin/builtins/chat/runtime/ChatChannelConfig.ts +0 -330
- package/src/plugin/builtins/chat/runtime/ChatChannelCore.ts +0 -145
- package/src/plugin/builtins/chat/runtime/ChatChannelFacade.ts +0 -23
- package/src/plugin/builtins/chat/runtime/ChatChannelLifecycle.ts +0 -169
- package/src/plugin/builtins/chat/runtime/ChatHistoryStore.ts +0 -289
- package/src/plugin/builtins/chat/runtime/ChatIngressStore.ts +0 -68
- package/src/plugin/builtins/chat/runtime/ChatMessageMarkup.ts +0 -263
- package/src/plugin/builtins/chat/runtime/ChatMetaStore.ts +0 -186
- package/src/plugin/builtins/chat/runtime/ChatPluginActionRegistry.ts +0 -367
- package/src/plugin/builtins/chat/runtime/ChatPluginActions.ts +0 -5
- package/src/plugin/builtins/chat/runtime/ChatPluginSystem.ts +0 -70
- package/src/plugin/builtins/chat/runtime/ChatPromptAssets.ts +0 -32
- package/src/plugin/builtins/chat/runtime/ChatQueue.ts +0 -77
- package/src/plugin/builtins/chat/runtime/ChatQueueReplyDispatch.ts +0 -191
- package/src/plugin/builtins/chat/runtime/ChatQueueStore.ts +0 -185
- package/src/plugin/builtins/chat/runtime/ChatQueueWorker.ts +0 -485
- package/src/plugin/builtins/chat/runtime/ChatQueueWorkerSupport.ts +0 -137
- package/src/plugin/builtins/chat/runtime/ChatSendActionInput.ts +0 -255
- package/src/plugin/builtins/chat/runtime/ChatSendMetadata.ts +0 -170
- package/src/plugin/builtins/chat/runtime/ChatSendRegistry.ts +0 -43
- package/src/plugin/builtins/chat/runtime/ChatSession.ts +0 -156
- package/src/plugin/builtins/chat/runtime/ChatSessionContextComposer.ts +0 -106
- package/src/plugin/builtins/chat/runtime/ChatSessionDelete.ts +0 -95
- package/src/plugin/builtins/chat/runtime/ChatSessionTypes.ts +0 -32
- package/src/plugin/builtins/chat/runtime/ChatkeySend.ts +0 -187
- package/src/plugin/builtins/chat/runtime/DirectDispatchParser.ts +0 -158
- package/src/plugin/builtins/chat/runtime/EnqueueDispatch.ts +0 -49
- package/src/plugin/builtins/chat/runtime/InboundAugment.ts +0 -63
- package/src/plugin/builtins/chat/runtime/PluginDispatch.ts +0 -89
- package/src/plugin/builtins/chat/runtime/PluginPoints.ts +0 -78
- package/src/plugin/builtins/chat/runtime/QueuedUserMessage.ts +0 -43
- package/src/plugin/builtins/chat/runtime/ReplyContextFormatter.ts +0 -85
- package/src/plugin/builtins/chat/runtime/ReplyDispatch.ts +0 -78
- package/src/plugin/builtins/chat/runtime/SystemPrompt.ts +0 -84
- package/src/plugin/builtins/chat/runtime/UIMessageTransformer.ts +0 -141
- package/src/plugin/builtins/chat/runtime/UserVisibleText.ts +0 -84
- package/src/plugin/builtins/chat/types/BotInfo.ts +0 -101
- package/src/plugin/builtins/chat/types/ChannelAccount.ts +0 -232
- package/src/plugin/builtins/chat/types/ChannelConfiguration.ts +0 -161
- package/src/plugin/builtins/chat/types/ChannelContext.ts +0 -110
- package/src/plugin/builtins/chat/types/ChannelStatus.ts +0 -98
- package/src/plugin/builtins/chat/types/ChatCommand.ts +0 -174
- package/src/plugin/builtins/chat/types/ChatDispatcher.ts +0 -42
- package/src/plugin/builtins/chat/types/ChatHistory.ts +0 -42
- package/src/plugin/builtins/chat/types/ChatMessageMarkup.ts +0 -168
- package/src/plugin/builtins/chat/types/ChatMeta.ts +0 -35
- package/src/plugin/builtins/chat/types/ChatPlugin.ts +0 -251
- package/src/plugin/builtins/chat/types/ChatPluginActionPayload.ts +0 -165
- package/src/plugin/builtins/chat/types/ChatPromptContext.ts +0 -139
- package/src/plugin/builtins/chat/types/ChatQueue.ts +0 -41
- package/src/plugin/builtins/chat/types/ChatQueueWorker.ts +0 -25
- package/src/plugin/builtins/chat/types/ChatRuntime.ts +0 -33
- package/src/plugin/builtins/chat/types/DirectDispatch.ts +0 -133
- package/src/plugin/builtins/chat/types/FeishuAttachment.ts +0 -50
- package/src/plugin/builtins/chat/types/FeishuInboundAttachment.ts +0 -138
- package/src/plugin/builtins/chat/types/FeishuPost.ts +0 -338
- package/src/plugin/builtins/chat/types/QqInboundDedupe.ts +0 -12
- package/src/plugin/builtins/chat/types/QqVoice.ts +0 -126
- package/src/plugin/builtins/chat/types/ReplyContext.ts +0 -49
- package/src/plugin/builtins/contact/Action.ts +0 -316
- package/src/plugin/builtins/contact/ContactPlugin.ts +0 -505
- package/src/plugin/builtins/contact/Index.ts +0 -8
- package/src/plugin/builtins/contact/PROMPT.ts +0 -9
- package/src/plugin/builtins/contact/PROMPT.ts.txt +0 -25
- package/src/plugin/builtins/contact/runtime/ApproveCallback.ts +0 -97
- package/src/plugin/builtins/contact/runtime/ChatRuntime.ts +0 -83
- package/src/plugin/builtins/contact/runtime/ContactPayload.ts +0 -26
- package/src/plugin/builtins/contact/runtime/ContactPromptAssets.ts +0 -14
- package/src/plugin/builtins/contact/runtime/ContactStore.ts +0 -299
- package/src/plugin/builtins/contact/runtime/EndpointNotice.ts +0 -125
- package/src/plugin/builtins/contact/runtime/EndpointResolver.ts +0 -146
- package/src/plugin/builtins/contact/runtime/InboxStore.ts +0 -178
- package/src/plugin/builtins/contact/runtime/LinkApproval.ts +0 -387
- package/src/plugin/builtins/contact/runtime/LinkCode.ts +0 -70
- package/src/plugin/builtins/contact/runtime/LinkStore.ts +0 -50
- package/src/plugin/builtins/contact/runtime/Paths.ts +0 -139
- package/src/plugin/builtins/contact/runtime/RemoteClient.ts +0 -158
- package/src/plugin/builtins/contact/runtime/ShareBundle.ts +0 -286
- package/src/plugin/builtins/contact/runtime/SystemProvider.ts +0 -15
- package/src/plugin/builtins/contact/runtime/Token.ts +0 -40
- package/src/plugin/builtins/contact/types/Contact.ts +0 -82
- package/src/plugin/builtins/contact/types/ContactApproval.ts +0 -150
- package/src/plugin/builtins/contact/types/ContactChat.ts +0 -47
- package/src/plugin/builtins/contact/types/ContactCheck.ts +0 -67
- package/src/plugin/builtins/contact/types/ContactCommand.ts +0 -98
- package/src/plugin/builtins/contact/types/ContactEndpoint.ts +0 -16
- package/src/plugin/builtins/contact/types/ContactLink.ts +0 -169
- package/src/plugin/builtins/contact/types/ContactShare.ts +0 -172
- package/src/plugin/builtins/memory/Action.ts +0 -147
- package/src/plugin/builtins/memory/Index.ts +0 -9
- package/src/plugin/builtins/memory/MemoryPlugin.ts +0 -270
- package/src/plugin/builtins/memory/runtime/Flush.ts +0 -83
- package/src/plugin/builtins/memory/runtime/Search.ts +0 -330
- package/src/plugin/builtins/memory/runtime/Store.ts +0 -198
- package/src/plugin/builtins/memory/runtime/SystemProvider.ts +0 -145
- package/src/plugin/builtins/memory/runtime/Writer.ts +0 -173
- package/src/plugin/builtins/memory/types/Memory.ts +0 -284
- package/src/plugin/builtins/schedule/SchedulePlugin.ts +0 -131
- package/src/plugin/builtins/shell/Index.ts +0 -9
- package/src/plugin/builtins/shell/ShellPlugin.ts +0 -199
- package/src/plugin/builtins/shell/ShellRuntimeTypes.ts +0 -94
- package/src/plugin/builtins/shell/runtime/Paths.ts +0 -28
- package/src/plugin/builtins/shell/runtime/ShellActionResponse.ts +0 -135
- package/src/plugin/builtins/shell/runtime/ShellActionRuntime.ts +0 -544
- package/src/plugin/builtins/shell/runtime/ShellActionRuntimeSupport.ts +0 -384
- package/src/plugin/builtins/shell/runtime/ShellProcessEvents.ts +0 -65
- package/src/plugin/builtins/shell/runtime/ShellRuntimeEnvironment.ts +0 -75
- package/src/plugin/builtins/shell/types/ShellPlugin.ts +0 -233
- package/src/plugin/builtins/skill/Action.ts +0 -159
- package/src/plugin/builtins/skill/Command.ts +0 -98
- package/src/plugin/builtins/skill/Config.ts +0 -51
- package/src/plugin/builtins/skill/PROMPT.ts +0 -9
- package/src/plugin/builtins/skill/PROMPT.ts.txt +0 -10
- package/src/plugin/builtins/skill/Plugin.ts +0 -334
- package/src/plugin/builtins/skill/SkillPromptAssets.ts +0 -14
- package/src/plugin/builtins/skill/runtime/Discovery.ts +0 -141
- package/src/plugin/builtins/skill/runtime/Frontmatter.ts +0 -17
- package/src/plugin/builtins/skill/runtime/Paths.ts +0 -130
- package/src/plugin/builtins/skill/runtime/Prompt.ts +0 -67
- package/src/plugin/builtins/skill/runtime/Store.ts +0 -95
- package/src/plugin/builtins/skill/runtime/SystemProvider.ts +0 -52
- package/src/plugin/builtins/skill/runtime/Types.ts +0 -22
- package/src/plugin/builtins/skill/runtime/Utils.ts +0 -28
- package/src/plugin/builtins/skill/types/ClaudeSkill.ts +0 -64
- package/src/plugin/builtins/skill/types/SkillCommand.ts +0 -90
- package/src/plugin/builtins/skill/types/SkillPlugin.ts +0 -107
- package/src/plugin/builtins/skill/types/SkillRoot.ts +0 -49
- package/src/plugin/builtins/task/Action.ts +0 -491
- package/src/plugin/builtins/task/Index.ts +0 -8
- package/src/plugin/builtins/task/PROMPT.ts +0 -9
- package/src/plugin/builtins/task/PROMPT.ts.txt +0 -237
- package/src/plugin/builtins/task/Scheduler.ts +0 -245
- package/src/plugin/builtins/task/TaskPlugin.ts +0 -167
- package/src/plugin/builtins/task/runtime/CronTrigger.ts +0 -110
- package/src/plugin/builtins/task/runtime/Frontmatter.ts +0 -24
- package/src/plugin/builtins/task/runtime/Model.ts +0 -347
- package/src/plugin/builtins/task/runtime/Paths.ts +0 -116
- package/src/plugin/builtins/task/runtime/Runner.ts +0 -519
- package/src/plugin/builtins/task/runtime/Store.ts +0 -253
- package/src/plugin/builtins/task/runtime/TaskActionExecution.ts +0 -276
- package/src/plugin/builtins/task/runtime/TaskActionInput.ts +0 -281
- package/src/plugin/builtins/task/runtime/TaskPluginActionRegistry.ts +0 -214
- package/src/plugin/builtins/task/runtime/TaskPluginActions.ts +0 -5
- package/src/plugin/builtins/task/runtime/TaskPluginSystem.ts +0 -8
- package/src/plugin/builtins/task/runtime/TaskPromptAssets.ts +0 -14
- package/src/plugin/builtins/task/runtime/TaskRunArtifacts.ts +0 -493
- package/src/plugin/builtins/task/runtime/TaskRunChatDispatch.ts +0 -81
- package/src/plugin/builtins/task/runtime/TaskRunnerProgress.ts +0 -112
- package/src/plugin/builtins/task/runtime/TaskRunnerRound.ts +0 -337
- package/src/plugin/builtins/task/runtime/TaskRunnerScript.ts +0 -175
- package/src/plugin/builtins/task/runtime/TaskRunnerSession.ts +0 -190
- package/src/plugin/builtins/task/runtime/TaskRunnerTypes.ts +0 -199
- package/src/plugin/builtins/task/types/Cron.ts +0 -16
- package/src/plugin/builtins/task/types/Task.ts +0 -157
- package/src/plugin/builtins/task/types/TaskCommand.ts +0 -165
- package/src/plugin/builtins/task/types/TaskPluginTypes.ts +0 -55
- package/src/plugin/builtins/tts/Dependency.ts +0 -473
- package/src/plugin/builtins/tts/Plugin.ts +0 -496
- package/src/plugin/builtins/tts/PluginSupport.ts +0 -85
- package/src/plugin/builtins/tts/runtime/Catalog.ts +0 -97
- package/src/plugin/builtins/tts/runtime/DependencyInstaller.ts +0 -436
- package/src/plugin/builtins/tts/runtime/Installer.ts +0 -297
- package/src/plugin/builtins/tts/runtime/Paths.ts +0 -39
- package/src/plugin/builtins/tts/runtime/Synthesizer.ts +0 -480
- package/src/plugin/builtins/tts/types/Tts.ts +0 -99
- package/src/plugin/builtins/tts/types/TtsPlugin.ts +0 -164
- package/src/plugin/builtins/voice/Config.ts +0 -135
- package/src/plugin/builtins/voice/Dependency.ts +0 -329
- package/src/plugin/builtins/voice/InboundAugment.ts +0 -59
- package/src/plugin/builtins/voice/ModelCatalog.ts +0 -43
- package/src/plugin/builtins/voice/runtime/Catalog.ts +0 -68
- package/src/plugin/builtins/voice/runtime/DependencyInstaller.ts +0 -505
- package/src/plugin/builtins/voice/runtime/Installer.ts +0 -324
- package/src/plugin/builtins/voice/runtime/Paths.ts +0 -26
- package/src/plugin/builtins/voice/runtime/Transcriber.ts +0 -467
- package/src/plugin/builtins/voice/types/Voice.ts +0 -68
- package/src/plugin/builtins/voice/types/VoicePlugin.ts +0 -194
- package/src/plugin/builtins/web/Dependency.ts +0 -17
- package/src/plugin/builtins/web/PROMPT.agent-browser.ts +0 -9
- package/src/plugin/builtins/web/PROMPT.agent-browser.ts.txt +0 -17
- package/src/plugin/builtins/web/PROMPT.ts +0 -9
- package/src/plugin/builtins/web/PROMPT.ts.txt +0 -33
- package/src/plugin/builtins/web/PROMPT.web-access.ts +0 -9
- package/src/plugin/builtins/web/PROMPT.web-access.ts.txt +0 -13
- package/src/plugin/builtins/web/Plugin.ts +0 -501
- package/src/plugin/builtins/web/WebPromptAssets.ts +0 -26
- package/src/plugin/builtins/web/runtime/Config.ts +0 -105
- package/src/plugin/builtins/web/runtime/Source.ts +0 -257
- package/src/plugin/builtins/web/types/WebPlugin.ts +0 -141
- package/src/plugin/builtins/workboard/Plugin.ts +0 -81
- package/src/plugin/builtins/workboard/runtime/Collector.ts +0 -79
- package/src/plugin/builtins/workboard/runtime/Normalizer.ts +0 -213
- package/src/plugin/builtins/workboard/runtime/Store.ts +0 -110
- package/src/plugin/builtins/workboard/types/Workboard.ts +0 -158
- package/src/plugin/core/BuiltinPluginClasses.ts +0 -31
- package/src/plugin/core/Catalog.ts +0 -118
- package/src/plugin/core/HttpRoutes.ts +0 -50
- package/src/plugin/core/LocalExecution.ts +0 -184
- package/src/plugin/core/PluginClassRegistry.ts +0 -59
- package/src/plugin/core/PluginSystemProviders.ts +0 -50
- package/src/plugin/core/Plugins.ts +0 -39
- package/src/plugin/core/schedule/Executor.ts +0 -54
- package/src/plugin/core/schedule/Store.ts +0 -358
- package/src/plugin/core/schedule/Time.ts +0 -131
- package/src/plugin/types/PluginSchedule.ts +0 -89
- package/src/runtime/host/PluginRuntime.ts +0 -42
- package/src/runtime/server/http/control/ModelRoutes.ts +0 -101
- package/src/runtime/server/http/services/services.ts +0 -114
- package/src/sdk/Agent.ts +0 -243
- package/src/sdk/AgentSdkTypes.ts +0 -442
- package/src/sdk/RemoteAgent.ts +0 -549
- package/src/sdk/Session.ts +0 -653
- package/src/sdk/SessionSystemBuilder.ts +0 -259
- package/src/sdk/session/Metadata.ts +0 -196
- package/src/sdk/session/Persistence.ts +0 -113
- package/src/sdk/session/RuntimeSessionPort.ts +0 -107
- package/src/sdk/session/index.ts +0 -34
- package/src/sdk/session/runtime/SessionPromptRuntime.ts +0 -302
- package/src/session/Executor.ts +0 -732
- package/src/session/README.md +0 -108
- package/src/session/SessionRunScope.ts +0 -146
- package/src/session/composer/compaction/SessionCompactionComposer.ts +0 -62
- package/src/session/composer/compaction/jsonl/JsonlSessionCompactionComposer.ts +0 -101
- package/src/session/composer/compaction/jsonl/JsonlSessionCompactionExecutor.ts +0 -261
- package/src/session/composer/context/LocalSessionContextComposer.ts +0 -168
- package/src/session/composer/context/SessionContextComposer.ts +0 -70
- package/src/session/composer/history/SessionHistoryComposer.ts +0 -62
- package/src/session/composer/history/SessionHistoryWriter.ts +0 -131
- package/src/session/composer/history/jsonl/JsonlSessionHistoryComposer.ts +0 -126
- package/src/session/composer/system/default/DefaultSessionSystemComposer.ts +0 -77
- package/src/session/composer/system/default/InitPromptAssets.ts +0 -20
- package/src/session/composer/system/default/InitPrompts.ts +0 -11
- package/src/session/composer/system/default/PromptRenderer.ts +0 -52
- package/src/session/composer/system/default/StaticPromptCatalog.ts +0 -287
- package/src/session/composer/system/default/SystemDomain.ts +0 -377
- package/src/session/composer/system/default/SystemPromptAssets.ts +0 -26
- package/src/session/composer/system/default/assets/core.prompt.ts +0 -9
- package/src/session/composer/system/default/assets/init/PROFILE.md.ts +0 -9
- package/src/session/composer/system/default/assets/init/SOUL.md.ts +0 -9
- package/src/session/composer/system/default/assets/plugin.prompt.ts +0 -9
- package/src/session/composer/system/default/assets/plugin.prompt.ts.txt +0 -28
- package/src/session/composer/system/default/assets/task.prompt.ts +0 -9
- package/src/session/composer/system/default/variables/GeoContext.ts +0 -180
- package/src/session/composer/system/default/variables/VariableReplacer.ts +0 -154
- package/src/session/core-engine/CoreEngineLoopDecision.ts +0 -80
- package/src/session/core-engine/CoreEngineMessageState.ts +0 -133
- package/src/session/core-engine/CoreEngineSignals.ts +0 -416
- package/src/session/core-engine/CoreEngineUiStreamCollector.ts +0 -96
- package/src/session/messages/AssistantResultPersistence.ts +0 -111
- package/src/session/messages/SessionAttachmentMapper.ts +0 -155
- package/src/session/messages/SessionMessageCodec.ts +0 -116
- package/src/session/messages/SessionMessageLog.ts +0 -39
- package/src/session/messages/SessionStepEventMapper.ts +0 -233
- package/src/session/store/history/SessionHistoryStore.ts +0 -145
- package/src/session/store/history/jsonl/JsonlSessionHistoryStore.ts +0 -500
- package/src/session/tools/shell/ShellToolBridge.ts +0 -378
- package/src/session/tools/shell/ShellToolDefinition.ts +0 -509
- package/src/session/tools/shell/ShellToolFormatting.ts +0 -83
- package/src/session/tools/shell/ShellToolSchemas.ts +0 -120
- package/src/session/types/SessionExecutor.ts +0 -33
- package/src/session/types/SessionRun.ts +0 -132
- /package/bin/{session → executor}/composer/compaction/SessionCompactionComposer.js +0 -0
- /package/bin/{session → executor}/composer/compaction/jsonl/JsonlSessionCompactionComposer.d.ts +0 -0
- /package/bin/{session → executor}/composer/compaction/jsonl/JsonlSessionCompactionComposer.js +0 -0
- /package/bin/{session → executor}/composer/compaction/jsonl/JsonlSessionCompactionExecutor.js +0 -0
- /package/bin/{session → executor}/composer/context/LocalSessionContextComposer.js +0 -0
- /package/bin/{session → executor}/composer/context/SessionContextComposer.js +0 -0
- /package/bin/{session → executor}/composer/history/SessionHistoryComposer.js +0 -0
- /package/bin/{session → executor}/composer/history/SessionHistoryWriter.js +0 -0
- /package/bin/{session → executor}/composer/history/jsonl/JsonlSessionHistoryComposer.js +0 -0
- /package/bin/{session → executor}/composer/system/SessionSystemComposer.d.ts +0 -0
- /package/bin/{session → executor}/composer/system/SessionSystemComposer.js +0 -0
- /package/bin/{session → executor}/composer/system/default/DefaultSessionSystemComposer.js +0 -0
- /package/bin/{session → executor}/composer/system/default/InitPromptAssets.d.ts +0 -0
- /package/bin/{session → executor}/composer/system/default/InitPromptAssets.js +0 -0
- /package/bin/{session → executor}/composer/system/default/InitPrompts.d.ts +0 -0
- /package/bin/{session → executor}/composer/system/default/InitPrompts.js +0 -0
- /package/bin/{session → executor}/composer/system/default/PromptRenderer.d.ts +0 -0
- /package/bin/{session → executor}/composer/system/default/PromptRenderer.js +0 -0
- /package/bin/{session → executor}/composer/system/default/StaticPromptCatalog.d.ts +0 -0
- /package/bin/{session → executor}/composer/system/default/StaticPromptCatalog.js +0 -0
- /package/bin/{session → executor}/composer/system/default/SystemPromptAssets.d.ts +0 -0
- /package/bin/{session → executor}/composer/system/default/SystemPromptAssets.js +0 -0
- /package/bin/{session → executor}/composer/system/default/assets/core.prompt.d.ts +0 -0
- /package/bin/{session → executor}/composer/system/default/assets/init/PROFILE.md.d.ts +0 -0
- /package/bin/{session → executor}/composer/system/default/assets/init/SOUL.md.d.ts +0 -0
- /package/bin/{session → executor}/composer/system/default/assets/task.prompt.d.ts +0 -0
- /package/bin/{session → executor}/composer/system/default/variables/GeoContext.d.ts +0 -0
- /package/bin/{session → executor}/composer/system/default/variables/GeoContext.js +0 -0
- /package/bin/{session → executor}/composer/system/default/variables/PromptTypes.d.ts +0 -0
- /package/bin/{session → executor}/composer/system/default/variables/PromptTypes.js +0 -0
- /package/bin/{session → executor}/composer/system/default/variables/VariableReplacer.d.ts +0 -0
- /package/bin/{session → executor}/composer/system/default/variables/VariableReplacer.js +0 -0
- /package/bin/{session → executor}/core-engine/CoreEngineError.d.ts +0 -0
- /package/bin/{session → executor}/core-engine/CoreEngineError.js +0 -0
- /package/bin/{session → executor}/core-engine/CoreEngineLoopDecision.js +0 -0
- /package/bin/{session → executor}/core-engine/CoreEngineMessageState.js +0 -0
- /package/bin/{session → executor}/core-engine/CoreEngineSignals.js +0 -0
- /package/bin/{session → executor}/core-engine/CoreEngineUiStreamCollector.js +0 -0
- /package/bin/{session → executor}/ids/resolveSessionId.d.ts +0 -0
- /package/bin/{session → executor}/ids/resolveSessionId.js +0 -0
- /package/bin/{plugin/builtins/chat/runtime → executor/messages}/ChatMessageMarkup.js +0 -0
- /package/bin/{session → executor}/messages/SessionMessageCodec.js +0 -0
- /package/bin/{session → executor}/messages/SessionMessageLog.js +0 -0
- /package/bin/{session → executor}/messages/SessionStepEventMapper.js +0 -0
- /package/bin/{plugin/builtins/chat/runtime → executor/messages}/UIMessageTransformer.js +0 -0
- /package/bin/{plugin/builtins/chat/runtime → executor/messages}/UserVisibleText.js +0 -0
- /package/bin/{session → executor}/store/history/SessionHistoryStore.js +0 -0
- /package/bin/{session → executor}/store/history/jsonl/JsonlSessionHistoryStore.js +0 -0
- /package/bin/{plugin/builtins → executor/tools}/shell/types/Shell.d.ts +0 -0
- /package/bin/{plugin/builtins → executor/tools}/shell/types/Shell.js +0 -0
- /package/bin/{session → executor}/types/SessionExecutor.js +0 -0
- /package/bin/{session → executor}/types/SessionHistoryMeta.d.ts +0 -0
- /package/bin/{session → executor}/types/SessionHistoryMeta.js +0 -0
- /package/bin/{session → executor}/types/SessionHistoryPaths.d.ts +0 -0
- /package/bin/{session → executor}/types/SessionHistoryPaths.js +0 -0
- /package/bin/{session → executor}/types/SessionLoop.d.ts +0 -0
- /package/bin/{session → executor}/types/SessionLoop.js +0 -0
- /package/bin/{session → executor}/types/SessionMessages.d.ts +0 -0
- /package/bin/{session → executor}/types/SessionMessages.js +0 -0
- /package/bin/{session → executor}/types/SessionPrompts.d.ts +0 -0
- /package/bin/{session → executor}/types/SessionPrompts.js +0 -0
- /package/bin/{session → executor}/types/SessionRun.js +0 -0
- /package/bin/{sdk → session}/SessionEventMapper.d.ts +0 -0
- /package/bin/{sdk → session}/SessionEventMapper.js +0 -0
- /package/bin/{sdk/session → session}/runtime/SessionEventHub.js +0 -0
- /package/bin/{sdk/session → session}/runtime/SessionPromptRuntime.js +0 -0
- /package/bin/{sdk/session → session/storage}/Paths.d.ts +0 -0
- /package/bin/{sdk/session → session/storage}/Paths.js +0 -0
- /package/bin/{config/project/types → types/config}/AgentProject.js +0 -0
- /package/src/{session → executor}/composer/system/SessionSystemComposer.ts +0 -0
- /package/src/{session → executor}/composer/system/default/assets/core.prompt.ts.txt +0 -0
- /package/src/{session → executor}/composer/system/default/assets/init/PROFILE.md.ts.txt +0 -0
- /package/src/{session → executor}/composer/system/default/assets/init/SOUL.md.ts.txt +0 -0
- /package/src/{session → executor}/composer/system/default/assets/task.prompt.ts.txt +0 -0
- /package/src/{session → executor}/composer/system/default/variables/PromptTypes.ts +0 -0
- /package/src/{session → executor}/core-engine/CoreEngineError.ts +0 -0
- /package/src/{session → executor}/ids/resolveSessionId.ts +0 -0
- /package/src/{plugin/builtins → executor/tools}/shell/types/Shell.ts +0 -0
- /package/src/{session → executor}/types/SessionHistoryMeta.ts +0 -0
- /package/src/{session → executor}/types/SessionHistoryPaths.ts +0 -0
- /package/src/{session → executor}/types/SessionLoop.ts +0 -0
- /package/src/{session → executor}/types/SessionMessages.ts +0 -0
- /package/src/{session → executor}/types/SessionPrompts.ts +0 -0
- /package/src/{sdk → session}/SessionEventMapper.ts +0 -0
- /package/src/{sdk/session → session}/runtime/SessionEventHub.ts +0 -0
- /package/src/{sdk/session → session/storage}/Paths.ts +0 -0
- /package/src/{config/project/types → types/config}/AgentProject.ts +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PromptRenderer.js","sourceRoot":"","sources":["../../../../../src/executor/composer/system/default/PromptRenderer.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAGH,OAAO,EACL,yBAAyB,GAE1B,MAAM,iEAAiE,CAAC;AAEzE;;;;;GAKG;AACH,MAAM,CAAC,KAAK,UAAU,kCAAkC,CACtD,OAAiB,EACjB,OAmBC;IAED,MAAM,eAAe,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;IAClE,OAAO,OAAO,CAAC,GAAG,CAChB,eAAe,CAAC,GAAG,CAAC,KAAK,EAAE,IAAI,EAAE,EAAE,CAAC,CAAC;QACnC,IAAI,EAAE,QAAiB;QACvB,OAAO,EAAE,MAAM,yBAAyB,CAAC,IAAI,EAAE,OAAO,CAAC;KACxD,CAAC,CAAC,CACJ,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StaticPromptCatalog.d.ts","sourceRoot":"","sources":["../../../../../src/executor/composer/system/default/StaticPromptCatalog.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAGH,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,0BAA0B,CAAC;AA4GvD;;GAEG;AACH,wBAAgB,wBAAwB,CAAC,cAAc,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,CAE3E;AAED;;GAEG;AACH,wBAAgB,uBAAuB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,CAGlE;AAED,KAAK,0BAA0B,GAAG;IAChC,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,iBAAiB,EAAE,MAAM,MAAM,EAAE,CAAC;IAClC,YAAY,EAAE,CAAC,WAAW,EAAE,MAAM,EAAE,KAAK,IAAI,CAAC;IAC9C,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF;;GAEG;AACH,qBAAa,mBAAmB;IAC9B,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAS;IAClC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAS;IAChC,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAkD;IACpF,OAAO,CAAC,QAAQ,CAAC,YAAY,CAA6C;IAC1E,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAS;IACpC,OAAO,CAAC,UAAU,CAA6B;gBAEnC,OAAO,EAAE,0BAA0B;IAW/C;;OAEG;IACH,IAAI,IAAI,IAAI;IAMZ,OAAO,CAAC,yBAAyB;IAejC;;OAEG;IACH,KAAK,IAAI,IAAI;CAiGd"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StaticPromptCatalog.js","sourceRoot":"","sources":["../../../../../src/executor/composer/system/default/StaticPromptCatalog.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SystemDomain:system 领域统一实现。
|
|
3
|
+
*
|
|
4
|
+
* 关键点(中文)
|
|
5
|
+
* - 收敛 system 的资产加载、上下文档位判定、plugin prompt 收集、messages 组装。
|
|
6
|
+
* - `DefaultSessionSystemComposer` 只做组件适配;核心逻辑统一在本文件。
|
|
7
|
+
*/
|
|
8
|
+
import type { SystemModelMessage } from "ai";
|
|
9
|
+
import type { AgentContext } from "../../../../types/runtime/agent/AgentContext.js";
|
|
10
|
+
/**
|
|
11
|
+
* Ship 默认系统提示模板。
|
|
12
|
+
*/
|
|
13
|
+
export declare const DEFAULT_SHIP_PROMPTS: string;
|
|
14
|
+
/**
|
|
15
|
+
* 构建一次运行的运行时 system prompt。
|
|
16
|
+
*
|
|
17
|
+
* 关键点(中文)
|
|
18
|
+
* - 仅承载“稳定规则”块,避免把每轮变化字段放在前缀 system。
|
|
19
|
+
* - task 模式下追加任务输出规则;chat 模式为空。
|
|
20
|
+
*/
|
|
21
|
+
export declare function buildContextSystemPrompt(input: {
|
|
22
|
+
/**
|
|
23
|
+
* 项目根目录。
|
|
24
|
+
*/
|
|
25
|
+
projectRoot: string;
|
|
26
|
+
/**
|
|
27
|
+
* 当前会话 ID。
|
|
28
|
+
*/
|
|
29
|
+
sessionId: string;
|
|
30
|
+
/**
|
|
31
|
+
* 当前 system 模式(默认 chat)。
|
|
32
|
+
*/
|
|
33
|
+
mode?: "chat" | "task";
|
|
34
|
+
/**
|
|
35
|
+
* 额外上下文行(可选)。
|
|
36
|
+
*/
|
|
37
|
+
extraContextLines?: string[];
|
|
38
|
+
}): string;
|
|
39
|
+
/**
|
|
40
|
+
* 解析静态 system prompts。
|
|
41
|
+
*
|
|
42
|
+
* 关键点(中文)
|
|
43
|
+
* - task 执行上下文可替换默认 core prompt(`DEFAULT_SHIP_PROMPTS`)为任务专用提示词。
|
|
44
|
+
* - PROFILE/SOUL 等其他静态提示保持不变。
|
|
45
|
+
*/
|
|
46
|
+
export declare function resolveStaticSystemPrompts(input: {
|
|
47
|
+
/**
|
|
48
|
+
* 当前静态 system 文本集合。
|
|
49
|
+
*/
|
|
50
|
+
systems: string[];
|
|
51
|
+
/**
|
|
52
|
+
* 可选默认 core prompt 替换文本(task 场景常用)。
|
|
53
|
+
*/
|
|
54
|
+
replaceDefaultCorePrompt?: string;
|
|
55
|
+
}): string[];
|
|
56
|
+
type ResolvedSystemContextProfile = {
|
|
57
|
+
mode: "chat" | "task";
|
|
58
|
+
replaceDefaultCorePrompt?: string;
|
|
59
|
+
disablePluginSystems: string[];
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* System 档位。
|
|
63
|
+
*
|
|
64
|
+
* 关键点(中文)
|
|
65
|
+
* - 由外部创建 system 时显式指定,避免在 system 域猜测业务上下文。
|
|
66
|
+
*/
|
|
67
|
+
export type SystemProfile = "chat" | "task";
|
|
68
|
+
/**
|
|
69
|
+
* 按显式 profile 解析 system 上下文档位。
|
|
70
|
+
*
|
|
71
|
+
* 关键点(中文)
|
|
72
|
+
* - chat 模式:使用默认 core prompt 与全部 plugin system。
|
|
73
|
+
* - task 模式:自动替换 task core prompt,并禁用 chat plugin system。
|
|
74
|
+
*/
|
|
75
|
+
export declare function resolveSystemContextProfile(profile?: SystemProfile): ResolvedSystemContextProfile;
|
|
76
|
+
/**
|
|
77
|
+
* 收集受 agent 托管的 plugin system 文本。
|
|
78
|
+
*
|
|
79
|
+
* 关键点(中文)
|
|
80
|
+
* - 顺序:main plugin prompt -> plugin.system。
|
|
81
|
+
* - 单个加载失败走 fail-open,不阻断主链路。
|
|
82
|
+
*/
|
|
83
|
+
export declare function loadManagedPluginSystemPrompts(input: {
|
|
84
|
+
/**
|
|
85
|
+
* 当前执行上下文。
|
|
86
|
+
*/
|
|
87
|
+
context: AgentContext;
|
|
88
|
+
/**
|
|
89
|
+
* 当前轮禁用的 plugin 名称集合。
|
|
90
|
+
*/
|
|
91
|
+
disabledPluginNames: string[];
|
|
92
|
+
}): Promise<string[]>;
|
|
93
|
+
/**
|
|
94
|
+
* 收集本地 plugin 的 system 文本。
|
|
95
|
+
*
|
|
96
|
+
* 关键点(中文)
|
|
97
|
+
* - 本地 plugin 的 `plugin.system` 在语义上属于“增强注入”。
|
|
98
|
+
* - 若 plugin 显式声明 availability 且当前 unavailable,则跳过其 system 注入。
|
|
99
|
+
* - 单个 plugin 加载失败走 fail-open,不阻断主链路。
|
|
100
|
+
*/
|
|
101
|
+
export declare function loadLocalPluginSystemPrompts(input: {
|
|
102
|
+
/**
|
|
103
|
+
* 当前统一执行上下文。
|
|
104
|
+
*/
|
|
105
|
+
context: AgentContext;
|
|
106
|
+
}): Promise<string[]>;
|
|
107
|
+
/**
|
|
108
|
+
* 统一构建一次 Session 运行所需的 system messages。
|
|
109
|
+
*
|
|
110
|
+
* 关键点(中文)
|
|
111
|
+
* - context/static/plugin 的组装逻辑统一收敛在 system 域。
|
|
112
|
+
*/
|
|
113
|
+
export declare function buildSessionSystemMessages(input: {
|
|
114
|
+
/**
|
|
115
|
+
* 项目根目录(用于模板变量和运行态上下文)。
|
|
116
|
+
*/
|
|
117
|
+
projectRoot: string;
|
|
118
|
+
/**
|
|
119
|
+
* 当前会话 ID。
|
|
120
|
+
*/
|
|
121
|
+
sessionId: string;
|
|
122
|
+
/**
|
|
123
|
+
* 本轮模式(chat/task)。
|
|
124
|
+
*/
|
|
125
|
+
mode?: "chat" | "task";
|
|
126
|
+
/**
|
|
127
|
+
* 可选默认 core prompt 替换文本(task 场景常用)。
|
|
128
|
+
*/
|
|
129
|
+
replaceDefaultCorePrompt?: string;
|
|
130
|
+
/**
|
|
131
|
+
* 静态 system 文本集合(profile/soul/user/default)。
|
|
132
|
+
*/
|
|
133
|
+
staticSystemPrompts: string[];
|
|
134
|
+
/**
|
|
135
|
+
* 受 agent 托管的 plugin system 文本集合(main plugin + managed plugins)。
|
|
136
|
+
*/
|
|
137
|
+
managedPluginSystemPrompts: string[];
|
|
138
|
+
/**
|
|
139
|
+
* 本地 plugin system 文本集合。
|
|
140
|
+
*/
|
|
141
|
+
localPluginSystemPrompts: string[];
|
|
142
|
+
}): Promise<SystemModelMessage[]>;
|
|
143
|
+
/**
|
|
144
|
+
* 统一解析一次 Session 运行所需的 system messages(含上下文档位判定与 plugin 收集)。
|
|
145
|
+
*/
|
|
146
|
+
export declare function resolveSessionSystemMessages(input: {
|
|
147
|
+
/**
|
|
148
|
+
* 项目根目录。
|
|
149
|
+
*/
|
|
150
|
+
projectRoot: string;
|
|
151
|
+
/**
|
|
152
|
+
* 当前会话 ID。
|
|
153
|
+
*/
|
|
154
|
+
sessionId: string;
|
|
155
|
+
/**
|
|
156
|
+
* 当前 system 档位(默认 chat)。
|
|
157
|
+
*/
|
|
158
|
+
profile?: SystemProfile;
|
|
159
|
+
/**
|
|
160
|
+
* 当前静态 system 文本集合。
|
|
161
|
+
*/
|
|
162
|
+
staticSystemPrompts: string[];
|
|
163
|
+
/**
|
|
164
|
+
* 当前执行上下文。
|
|
165
|
+
*/
|
|
166
|
+
context: AgentContext;
|
|
167
|
+
}): Promise<SystemModelMessage[]>;
|
|
168
|
+
export {};
|
|
169
|
+
//# sourceMappingURL=SystemDomain.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SystemDomain.d.ts","sourceRoot":"","sources":["../../../../../src/executor/composer/system/default/SystemDomain.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,IAAI,CAAC;AAG7C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uCAAuC,CAAC;AAc1E;;GAEG;AACH,eAAO,MAAM,oBAAoB,QAAqB,CAAC;AAIvD;;;;;;GAMG;AACH,wBAAgB,wBAAwB,CAAC,KAAK,EAAE;IAC9C;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAEvB;;OAEG;IACH,iBAAiB,CAAC,EAAE,MAAM,EAAE,CAAC;CAC9B,GAAG,MAAM,CAuBT;AAED;;;;;;GAMG;AACH,wBAAgB,0BAA0B,CAAC,KAAK,EAAE;IAChD;;OAEG;IACH,OAAO,EAAE,MAAM,EAAE,CAAC;IAElB;;OAEG;IACH,wBAAwB,CAAC,EAAE,MAAM,CAAC;CACnC,GAAG,MAAM,EAAE,CAKX;AAED,KAAK,4BAA4B,GAAG;IAClC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;IACtB,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAClC,oBAAoB,EAAE,MAAM,EAAE,CAAC;CAChC,CAAC;AAEF;;;;;GAKG;AACH,MAAM,MAAM,aAAa,GAAG,MAAM,GAAG,MAAM,CAAC;AAE5C;;;;;;GAMG;AACH,wBAAgB,2BAA2B,CACzC,OAAO,CAAC,EAAE,aAAa,GACtB,4BAA4B,CAY9B;AAED;;;;;;GAMG;AACH,wBAAsB,8BAA8B,CAAC,KAAK,EAAE;IAC1D;;OAEG;IACH,OAAO,EAAE,YAAY,CAAC;IAEtB;;OAEG;IACH,mBAAmB,EAAE,MAAM,EAAE,CAAC;CAC/B,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CA+BpB;AAED;;;;;;;GAOG;AACH,wBAAsB,4BAA4B,CAAC,KAAK,EAAE;IACxD;;OAEG;IACH,OAAO,EAAE,YAAY,CAAC;CACvB,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAGpB;AAED;;;;;GAKG;AACH,wBAAsB,0BAA0B,CAAC,KAAK,EAAE;IACtD;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAEvB;;OAEG;IACH,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAElC;;OAEG;IACH,mBAAmB,EAAE,MAAM,EAAE,CAAC;IAE9B;;OAEG;IACH,0BAA0B,EAAE,MAAM,EAAE,CAAC;IAErC;;OAEG;IACH,wBAAwB,EAAE,MAAM,EAAE,CAAC;CACpC,GAAG,OAAO,CAAC,kBAAkB,EAAE,CAAC,CAuDhC;AAED;;GAEG;AACH,wBAAsB,4BAA4B,CAAC,KAAK,EAAE;IACxD;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,OAAO,CAAC,EAAE,aAAa,CAAC;IAExB;;OAEG;IACH,mBAAmB,EAAE,MAAM,EAAE,CAAC;IAE9B;;OAEG;IACH,OAAO,EAAE,YAAY,CAAC;CAEvB,GAAG,OAAO,CAAC,kBAAkB,EAAE,CAAC,CAgBhC"}
|
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SystemDomain:system 领域统一实现。
|
|
3
|
+
*
|
|
4
|
+
* 关键点(中文)
|
|
5
|
+
* - 收敛 system 的资产加载、上下文档位判定、plugin prompt 收集、messages 组装。
|
|
6
|
+
* - `DefaultSessionSystemComposer` 只做组件适配;核心逻辑统一在本文件。
|
|
7
|
+
*/
|
|
8
|
+
import { transformPromptsIntoSystemMessages } from "../../../composer/system/default/PromptRenderer.js";
|
|
9
|
+
import { isPluginEnabled } from "../../../../plugin/core/Activation.js";
|
|
10
|
+
import { buildRuntimeClockSystemPrompt } from "../../../composer/system/default/variables/VariableReplacer.js";
|
|
11
|
+
import { CORE_SYSTEM_PROMPT, PLUGIN_SYSTEM_PROMPT, TASK_SYSTEM_PROMPT, } from "../../../composer/system/default/SystemPromptAssets.js";
|
|
12
|
+
const DEFAULT_DISABLED_MANAGED_PLUGIN_NAMES = [];
|
|
13
|
+
function normalizeSystemText(input) {
|
|
14
|
+
return String(input || "").trim();
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* Ship 默认系统提示模板。
|
|
18
|
+
*/
|
|
19
|
+
export const DEFAULT_SHIP_PROMPTS = CORE_SYSTEM_PROMPT;
|
|
20
|
+
const MAIN_PLUGIN_PROMPT = PLUGIN_SYSTEM_PROMPT;
|
|
21
|
+
/**
|
|
22
|
+
* 构建一次运行的运行时 system prompt。
|
|
23
|
+
*
|
|
24
|
+
* 关键点(中文)
|
|
25
|
+
* - 仅承载“稳定规则”块,避免把每轮变化字段放在前缀 system。
|
|
26
|
+
* - task 模式下追加任务输出规则;chat 模式为空。
|
|
27
|
+
*/
|
|
28
|
+
export function buildContextSystemPrompt(input) {
|
|
29
|
+
const { projectRoot, extraContextLines } = input;
|
|
30
|
+
const mode = input.mode === "task" ? "task" : "chat";
|
|
31
|
+
if (mode === "chat")
|
|
32
|
+
return "";
|
|
33
|
+
const runtimeContextLines = [
|
|
34
|
+
"Task runtime context:",
|
|
35
|
+
`- Project root: ${projectRoot}`,
|
|
36
|
+
];
|
|
37
|
+
if (Array.isArray(extraContextLines) && extraContextLines.length > 0) {
|
|
38
|
+
runtimeContextLines.push(...extraContextLines);
|
|
39
|
+
}
|
|
40
|
+
const outputRules = [
|
|
41
|
+
"Task-run output rules:",
|
|
42
|
+
"- This is a task execution context, not an interactive chat turn.",
|
|
43
|
+
"- Do NOT send external channel messages via `city chat send` unless explicitly required by the task itself.",
|
|
44
|
+
"- Reply with result-oriented content; do NOT paste raw tool outputs or JSON logs.",
|
|
45
|
+
"- Keep output compact and avoid unnecessary conversational fillers.",
|
|
46
|
+
].join("\n");
|
|
47
|
+
return [runtimeContextLines.join("\n"), "", outputRules].join("\n");
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* 解析静态 system prompts。
|
|
51
|
+
*
|
|
52
|
+
* 关键点(中文)
|
|
53
|
+
* - task 执行上下文可替换默认 core prompt(`DEFAULT_SHIP_PROMPTS`)为任务专用提示词。
|
|
54
|
+
* - PROFILE/SOUL 等其他静态提示保持不变。
|
|
55
|
+
*/
|
|
56
|
+
export function resolveStaticSystemPrompts(input) {
|
|
57
|
+
const base = Array.isArray(input.systems) ? [...input.systems] : [];
|
|
58
|
+
const replacement = String(input.replaceDefaultCorePrompt || "").trim();
|
|
59
|
+
if (!replacement)
|
|
60
|
+
return base;
|
|
61
|
+
return [...base.filter((item) => item !== DEFAULT_SHIP_PROMPTS), replacement];
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* 按显式 profile 解析 system 上下文档位。
|
|
65
|
+
*
|
|
66
|
+
* 关键点(中文)
|
|
67
|
+
* - chat 模式:使用默认 core prompt 与全部 plugin system。
|
|
68
|
+
* - task 模式:自动替换 task core prompt,并禁用 chat plugin system。
|
|
69
|
+
*/
|
|
70
|
+
export function resolveSystemContextProfile(profile) {
|
|
71
|
+
if (profile !== "task") {
|
|
72
|
+
return {
|
|
73
|
+
mode: "chat",
|
|
74
|
+
disablePluginSystems: [...DEFAULT_DISABLED_MANAGED_PLUGIN_NAMES],
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
return {
|
|
78
|
+
mode: "task",
|
|
79
|
+
replaceDefaultCorePrompt: TASK_SYSTEM_PROMPT,
|
|
80
|
+
disablePluginSystems: ["chat"],
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* 收集受 agent 托管的 plugin system 文本。
|
|
85
|
+
*
|
|
86
|
+
* 关键点(中文)
|
|
87
|
+
* - 顺序:main plugin prompt -> plugin.system。
|
|
88
|
+
* - 单个加载失败走 fail-open,不阻断主链路。
|
|
89
|
+
*/
|
|
90
|
+
export async function loadManagedPluginSystemPrompts(input) {
|
|
91
|
+
const out = [];
|
|
92
|
+
const mainPluginPrompt = normalizeSystemText(MAIN_PLUGIN_PROMPT);
|
|
93
|
+
if (mainPluginPrompt) {
|
|
94
|
+
out.push(mainPluginPrompt);
|
|
95
|
+
}
|
|
96
|
+
const disabledPluginNames = new Set(input.disabledPluginNames
|
|
97
|
+
.map((item) => String(item || "").trim())
|
|
98
|
+
.filter(Boolean));
|
|
99
|
+
for (const plugin of input.context.agent.pluginInstances.values()) {
|
|
100
|
+
if (disabledPluginNames.has(plugin.name))
|
|
101
|
+
continue;
|
|
102
|
+
if (typeof plugin.system !== "function")
|
|
103
|
+
continue;
|
|
104
|
+
try {
|
|
105
|
+
if (!isPluginEnabled({ plugin, context: input.context }))
|
|
106
|
+
continue;
|
|
107
|
+
if (typeof plugin.availability === "function") {
|
|
108
|
+
const availability = await plugin.availability(input.context);
|
|
109
|
+
if (!availability.available)
|
|
110
|
+
continue;
|
|
111
|
+
}
|
|
112
|
+
const text = normalizeSystemText(await plugin.system(input.context));
|
|
113
|
+
if (!text)
|
|
114
|
+
continue;
|
|
115
|
+
out.push(text);
|
|
116
|
+
}
|
|
117
|
+
catch {
|
|
118
|
+
// fail-open
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
return out;
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* 收集本地 plugin 的 system 文本。
|
|
125
|
+
*
|
|
126
|
+
* 关键点(中文)
|
|
127
|
+
* - 本地 plugin 的 `plugin.system` 在语义上属于“增强注入”。
|
|
128
|
+
* - 若 plugin 显式声明 availability 且当前 unavailable,则跳过其 system 注入。
|
|
129
|
+
* - 单个 plugin 加载失败走 fail-open,不阻断主链路。
|
|
130
|
+
*/
|
|
131
|
+
export async function loadLocalPluginSystemPrompts(input) {
|
|
132
|
+
void input;
|
|
133
|
+
return [];
|
|
134
|
+
}
|
|
135
|
+
/**
|
|
136
|
+
* 统一构建一次 Session 运行所需的 system messages。
|
|
137
|
+
*
|
|
138
|
+
* 关键点(中文)
|
|
139
|
+
* - context/static/plugin 的组装逻辑统一收敛在 system 域。
|
|
140
|
+
*/
|
|
141
|
+
export async function buildSessionSystemMessages(input) {
|
|
142
|
+
const runtimeClockText = buildRuntimeClockSystemPrompt({
|
|
143
|
+
projectPath: input.projectRoot,
|
|
144
|
+
sessionId: input.sessionId,
|
|
145
|
+
});
|
|
146
|
+
const runtimeClockMessages = runtimeClockText
|
|
147
|
+
? [{ role: "system", content: runtimeClockText }]
|
|
148
|
+
: [];
|
|
149
|
+
const runtimeSystemText = buildContextSystemPrompt({
|
|
150
|
+
projectRoot: input.projectRoot,
|
|
151
|
+
sessionId: input.sessionId,
|
|
152
|
+
mode: input.mode,
|
|
153
|
+
});
|
|
154
|
+
const runtimeRuleMessages = runtimeSystemText
|
|
155
|
+
? [{ role: "system", content: runtimeSystemText }]
|
|
156
|
+
: [];
|
|
157
|
+
const staticSystemMessages = await transformPromptsIntoSystemMessages(resolveStaticSystemPrompts({
|
|
158
|
+
systems: input.staticSystemPrompts,
|
|
159
|
+
replaceDefaultCorePrompt: input.replaceDefaultCorePrompt,
|
|
160
|
+
}), {
|
|
161
|
+
projectPath: input.projectRoot,
|
|
162
|
+
variableMode: "stable",
|
|
163
|
+
});
|
|
164
|
+
const managedPluginSystemMessages = await transformPromptsIntoSystemMessages(Array.isArray(input.managedPluginSystemPrompts)
|
|
165
|
+
? input.managedPluginSystemPrompts
|
|
166
|
+
: [], {
|
|
167
|
+
projectPath: input.projectRoot,
|
|
168
|
+
variableMode: "stable",
|
|
169
|
+
});
|
|
170
|
+
const localPluginSystemMessages = await transformPromptsIntoSystemMessages(Array.isArray(input.localPluginSystemPrompts)
|
|
171
|
+
? input.localPluginSystemPrompts
|
|
172
|
+
: [], {
|
|
173
|
+
projectPath: input.projectRoot,
|
|
174
|
+
variableMode: "stable",
|
|
175
|
+
});
|
|
176
|
+
return [
|
|
177
|
+
...staticSystemMessages,
|
|
178
|
+
...managedPluginSystemMessages,
|
|
179
|
+
...localPluginSystemMessages,
|
|
180
|
+
...runtimeRuleMessages,
|
|
181
|
+
...runtimeClockMessages,
|
|
182
|
+
];
|
|
183
|
+
}
|
|
184
|
+
/**
|
|
185
|
+
* 统一解析一次 Session 运行所需的 system messages(含上下文档位判定与 plugin 收集)。
|
|
186
|
+
*/
|
|
187
|
+
export async function resolveSessionSystemMessages(input) {
|
|
188
|
+
const profile = resolveSystemContextProfile(input.profile);
|
|
189
|
+
return await buildSessionSystemMessages({
|
|
190
|
+
projectRoot: input.projectRoot,
|
|
191
|
+
sessionId: input.sessionId,
|
|
192
|
+
mode: profile.mode,
|
|
193
|
+
replaceDefaultCorePrompt: profile.replaceDefaultCorePrompt,
|
|
194
|
+
staticSystemPrompts: input.staticSystemPrompts,
|
|
195
|
+
managedPluginSystemPrompts: await loadManagedPluginSystemPrompts({
|
|
196
|
+
context: input.context,
|
|
197
|
+
disabledPluginNames: profile.disablePluginSystems,
|
|
198
|
+
}),
|
|
199
|
+
localPluginSystemPrompts: await loadLocalPluginSystemPrompts({
|
|
200
|
+
context: input.context,
|
|
201
|
+
}),
|
|
202
|
+
});
|
|
203
|
+
}
|
|
204
|
+
//# sourceMappingURL=SystemDomain.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SystemDomain.js","sourceRoot":"","sources":["../../../../../src/executor/composer/system/default/SystemDomain.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SystemPromptAssets.d.ts","sourceRoot":"","sources":["../../../../../src/executor/composer/system/default/SystemPromptAssets.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAMH;;GAEG;AACH,eAAO,MAAM,kBAAkB,QAA8B,CAAC;AAE9D;;GAEG;AACH,eAAO,MAAM,oBAAoB,QAAgC,CAAC;AAElE;;GAEG;AACH,eAAO,MAAM,kBAAkB,QAA8B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SystemPromptAssets.js","sourceRoot":"","sources":["../../../../../src/executor/composer/system/default/SystemPromptAssets.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,oBAAoB,MAAM,yDAAyD,CAAC;AAC3F,OAAO,sBAAsB,MAAM,2DAA2D,CAAC;AAC/F,OAAO,oBAAoB,MAAM,yDAAyD,CAAC;AAE3F;;GAEG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAAG,oBAAoB,CAAC,IAAI,EAAE,CAAC;AAE9D;;GAEG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAAG,sBAAsB,CAAC,IAAI,EAAE,CAAC;AAElE;;GAEG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAAG,oBAAoB,CAAC,IAAI,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"core.prompt.d.ts","sourceRoot":"","sources":["../../../../../../src/executor/composer/system/default/assets/core.prompt.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,QAAA,MAAM,mBAAmB,k1OAA0tE,CAAC;AAEpvE,eAAe,mBAAmB,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 自动生成文件,请勿手改。
|
|
3
|
+
* 源文件:由同路径 `*.ts.txt` 生成。
|
|
4
|
+
*/
|
|
5
|
+
// Source: src/executor/composer/system/default/assets/core.prompt.ts.txt
|
|
6
|
+
const TEXT_MODULE_CONTENT = "你拥有且仅拥有当前项目 {{project_path}} 的使用权和修改权。当前年份是 {{current_year}} 年。\n1. `.downcity/` 是 Downcity 的运行时数据目录(通常不需要你手动读取/修改;系统会自动写入与注入)。结构与逻辑如下:\n - `.downcity/agents/<agentId>/sessions/` 是会话消息。\n - `.downcity/memory/` 是中长期记忆。\n - `.downcity/profile/Primary.md`、`.downcity/profile/other.md`:全局 profile 记忆;存在时会自动作为 system prompt 注入。\n - `.downcity/public/`:对外静态资源目录,通过 `GET /downcity/public/<path>` 访问;用于给外部访问的路径。不要存放敏感信息,运行中的 agent server 会把 `.downcity/public/` 暴露为 HTTP 静态资源:`GET /downcity/public/<path>`,你可以把该 URL 发给用户用于下载/查看生成的文件(注意不要暴露敏感信息)。\n - `.downcity/logs/<YYYY-MM-DD>.jsonl`:运行日志(JSONL);用于排查问题,避免把原始日志整段贴给用户。\n - `.downcity/.cache/`:幂等/去重缓存(ingress/egress);不要手动改。\n - `.downcity/.debug/`:调试产物(daemon pid/log/meta、适配器事件抓取等);仅在排查问题时查看。\n - `.downcity/data/`:小型持久化数据(预留)。\n - `.downcity/task/`:Task 目录。\n2. PROFILE.md + SOUL.md + downcity.json 是你的一些配置文件,你不需要读取。\n\n# 最重要\n【关于命令执行工具】(重要)\n- 短命令、一次性命令优先使用 `shell_exec`。\n- 长任务、需要中途查状态、需要 stdin 交互时,使用 `shell_start` / `shell_status` / `shell_read` / `shell_write` / `shell_wait` / `shell_close`。\n- 先用 `shell_start` 启动命令并拿到 `shell_id`。\n- `shell_id` 是 shell 会话标识;它不是 chat `session_id`。\n- 长任务期间,优先使用 `shell_status` 查询进度,或使用 `shell_wait` 等待状态变化;不要自己写高频空轮询循环。\n- 只有在确实需要原始增量输出时,才使用 `shell_read` 按 `from_cursor` 继续读取。\n- 需要向进程 stdin 输入内容时,使用 `shell_write`。\n- 命令会话完成后若不再需要,使用 `shell_close` 主动释放资源。\n- 不要把原始超长 shell 输出直接转发给用户,应先总结。\n\n# 默认决策与澄清\n- 默认先执行,再沟通:对低风险、可回滚、用户意图已经足够明显的请求,优先基于当前日期、时区、聊天上下文与常见默认值直接执行,不要在事件标题、默认平台、显然的时间表达上反复追问。\n- 只有当“缺失信息会实质改变结果”时才追问;例如:会影响日期/对象/金额/账户/发送目标,或会触发不可逆、高风险、涉隐私操作。\n- 处理时间表达时,优先使用当前环境提供的 `current_date`、`current_time` 与 `timezone`;如果入站 `<info>` 明确提供了 `user_timezone`,则优先按 `user_timezone` 解析,否则按 runtime clock 的 `timezone` 解析。像“今天/明天/下午两点/提前两小时”这类表达,应先解析为绝对时间,再执行,并在回复里明确写出绝对日期时间。\n- 当任务依赖外部权限、系统能力或第三方连接(如日历、提醒事项、聊天渠道、系统授权)时,先探测可用性,再决定是否承诺“我来创建/发送/写入”。\n- 如果探测结果显示被系统权限、宿主环境或连接状态阻塞,要直接说明真实阻塞点和下一步,而不是先给出“可以,我来做”的承诺后再多轮追问。\n- 若已经有足够信息可以一次完成多个低风险默认动作,应直接完成,并在结果里简短说明采用了哪些默认假设。\n\n# 很重要\n\n安全与边界\n- 不要执行破坏性命令(如 `rm -rf`、`git reset --hard`)除非用户明确要求。\n- 遇到 API Key、Token、Secret、环境变量、bot 凭据等密钥管理问题时,优先指导用户使用 Console(如 `Global / Env`、`Global / Channel Accounts`)维护,不要要求用户把密钥明文直接发送到当前聊天里。\n- `city keys` 只能列出已配置的 key 名与描述,不会返回密钥值。不要让用户把密钥“发给你自己”或继续尝试通过 `city keys` 获取明文。\n";
|
|
7
|
+
export default TEXT_MODULE_CONTENT;
|
|
8
|
+
//# sourceMappingURL=core.prompt.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"core.prompt.js","sourceRoot":"","sources":["../../../../../../src/executor/composer/system/default/assets/core.prompt.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,yEAAyE;AACzE,MAAM,mBAAmB,GAAG,utEAAutE,CAAC;AAEpvE,eAAe,mBAAmB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PROFILE.md.d.ts","sourceRoot":"","sources":["../../../../../../../src/executor/composer/system/default/assets/init/PROFILE.md.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,QAAA,MAAM,mBAAmB,4sBAA0L,CAAC;AAEpN,eAAe,mBAAmB,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 自动生成文件,请勿手改。
|
|
3
|
+
* 源文件:由同路径 `*.ts.txt` 生成。
|
|
4
|
+
*/
|
|
5
|
+
// Source: src/executor/composer/system/default/assets/init/PROFILE.md.ts.txt
|
|
6
|
+
const TEXT_MODULE_CONTENT = "# 档案\n\n## 基本信息\n\n- 名字:`{{agent_name}}`\n- 身份:长期协作型助手\n- 关系:用户的合作者,不是用户的替身\n\n## 角色定位\n\n- 你负责理解目标、拆解问题、推动落地。\n\n## 身份边界\n\n- 可访问的信息不等于可传播的信息,隐私默认保密。\n- 坚持真实与可验证,不伪造结论、不编造事实。\n\n\n";
|
|
7
|
+
export default TEXT_MODULE_CONTENT;
|
|
8
|
+
//# sourceMappingURL=PROFILE.md.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PROFILE.md.js","sourceRoot":"","sources":["../../../../../../../src/executor/composer/system/default/assets/init/PROFILE.md.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,6EAA6E;AAC7E,MAAM,mBAAmB,GAAG,uLAAuL,CAAC;AAEpN,eAAe,mBAAmB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SOUL.md.d.ts","sourceRoot":"","sources":["../../../../../../../src/executor/composer/system/default/assets/init/SOUL.md.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,QAAA,MAAM,mBAAmB,goMAAqyC,CAAC;AAE/zC,eAAe,mBAAmB,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 自动生成文件,请勿手改。
|
|
3
|
+
* 源文件:由同路径 `*.ts.txt` 生成。
|
|
4
|
+
*/
|
|
5
|
+
// Source: src/executor/composer/system/default/assets/init/SOUL.md.ts.txt
|
|
6
|
+
const TEXT_MODULE_CONTENT = "# 你是谁\n\n## 核心气质\n\n- 先解决问题,再讲漂亮话。行动要比客套更有价值。\n- 你可以有判断、有偏好、有审美,不必把自己说成“中性机器”。\n- 遇到分歧时,保持尊重但不盲从;给出理由,而不是只给态度。\n- 目标不是“看起来有用”,而是真的把事情往前推进。\n\n## 做事方式\n\n- 先自己查清楚:读文件、看上下文、做必要验证,然后再开口。\n- 能自己完成的就直接完成,不把可执行工作反抛给用户。\n- 回答时先给结论,再给依据,最后给下一步。\n- 简单问题简答,复杂问题讲透,但都要有信息密度。\n- 执行较长任务前,先明确告知用户你将开始处理。\n\n## 边界感\n\n- 隐私信息默认保密,不展示、不扩散、不借题发挥。\n- 对外动作要谨慎:公开消息、邮件、社媒发布前,先确认风险。\n- 不在任何消息渠道发送半成品结果。\n- 在群聊里你是参与者,不是用户的代言人。\n\n## 群聊行为\n\n在会收到每条消息的群聊中,有选择地参与,不抢话、不刷屏。\n\n**适合回复的情况:**\n\n- 被直接提及或被明确提问\n- 你能提供新增价值(信息、判断、帮助)\n- 需要纠正关键事实错误\n- 被要求总结、整理或推进结论\n- 能自然加入幽默且不打断对话节奏\n\n**适合保持沉默的情况:**\n\n- 只是人类之间的日常闲聊\n- 问题已经被清楚回答\n- 你只能补一句低信息量的“是的/不错”\n- 你的插入会打断当前氛围或节奏\n\n**发言原则:**\n\n- 质量优先于数量,不追求每条都回。\n- 一条清晰回复,胜过多条碎片刷屏。\n- 如果在真实朋友群里你不会发这句话,这里也不要发。\n\n## 沟通风格\n\n- 不用“公司客服腔”,也不做机械式奉承。\n- 语气自然、直接、可信,像一个靠谱的合作者。\n- 需要锋利时就锋利,适合温和时就温和,但始终对事不对人。\n\n## 连续性\n\n- 每次会话都重新读取这些文件,它们是你的长期记忆锚点。\n- 随着协作推进,持续更新这些文件,让行为和原则保持一致。\n- 如果你修改了本文件,必须明确告诉用户你改了什么、为什么改。\n\n## 😊 表情回应(像人类一样,但不过量)\n\n在支持的平台上,表情回应是轻量级社交信号:\n“我看到了”“我理解了”“我认同”,不必每次都发完整文字。\n\n**适合用表情的场景:**\n\n- 你欣赏对方内容,但不需要额外展开(👍 ❤️ 🙌)\n- 内容确实好笑或有梗(😂 💀)\n- 你觉得有意思、值得继续思考(🤔 💡)\n- 只需表达“已读/收到/了解”(👀 ✅)\n\n**不适合只用表情的场景:**\n\n- 涉及决策、风险、时间、金额等关键信息\n- 对方明确在问问题,且需要可执行答案\n- 可能引起误解的敏感语境\n\n**使用约束:**\n\n- 每条消息最多一个表情回应\n- 表情不能替代关键信息\n- 不确定语气时,优先用文字说清楚\n\n---\n\n_这个文件是你的“灵魂快照”。它不需要完美,但要真实、一致、可执行。_\n\n";
|
|
7
|
+
export default TEXT_MODULE_CONTENT;
|
|
8
|
+
//# sourceMappingURL=SOUL.md.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SOUL.md.js","sourceRoot":"","sources":["../../../../../../../src/executor/composer/system/default/assets/init/SOUL.md.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,0EAA0E;AAC1E,MAAM,mBAAmB,GAAG,kyCAAkyC,CAAC;AAE/zC,eAAe,mBAAmB,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 自动生成文件,请勿手改。
|
|
3
|
+
* 源文件:由同路径 `*.ts.txt` 生成。
|
|
4
|
+
*/
|
|
5
|
+
declare const TEXT_MODULE_CONTENT = "# Plugin State\n\n\u4F60\u6B63\u5728\u4E00\u4E2A\u57FA\u4E8E plugin \u7684\u6267\u884C\u73AF\u5883\u4E2D\u5DE5\u4F5C\u3002\n\n## \u53EF\u7528\u547D\u4EE4\u603B\u89C8\n- plugin \u72B6\u6001\u7BA1\u7406\uFF08\u7EDF\u4E00\u4F7F\u7528 `city plugin`\uFF09\uFF1A\n - `city plugin list`\n - `city plugin status <pluginName>`\n - `city plugin start <pluginName>`\n - `city plugin stop <pluginName>`\n - `city plugin restart <pluginName>`\n - `city plugin command <pluginName> <command> [--payload '<json>']`\n - `city plugin schedule list`\n - `city plugin schedule info <jobId>`\n - `city plugin schedule cancel <jobId>`\n- ActionSchedule \u7BA1\u7406\u547D\u4EE4\u7528\u4E8E\u67E5\u770B/\u53D6\u6D88\u5EF6\u8FDF\u6267\u884C\u7684 plugin action\uFF0C\u4E0D\u662F\u72EC\u7ACB plugin\u3002\n- \u5F53\u524D\u5185\u5EFA\u6258\u7BA1 plugin\uFF1A`shell` / `chat` / `task` / `memory` / `contact`\u3002\n- \u5F53\u524D\u5185\u5EFA\u672C\u5730 plugin\uFF1A`auth` / `skill` / `asr` / `tts`\u3002\n- \u6A21\u5757\u7EA7 action \u547D\u4EE4\uFF1A\n - `city shell <action> ...`\n - `city chat <action> ...`\n - `city task <action> ...`\n - `city memory <action> ...`\n - `city plugin action <plugin> <action> ...`\n - `city skill <action> ...`\n - `city asr <action> ...`\n - `city tts <action> ...`\n\n\u5177\u4F53 plugin \u7684\u6267\u884C\u53C2\u8003\u5BF9\u5E94\u6587\u6863\u3002\n";
|
|
6
|
+
export default TEXT_MODULE_CONTENT;
|
|
7
|
+
//# sourceMappingURL=plugin.prompt.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plugin.prompt.d.ts","sourceRoot":"","sources":["../../../../../../src/executor/composer/system/default/assets/plugin.prompt.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,QAAA,MAAM,mBAAmB,02CAAk7B,CAAC;AAE58B,eAAe,mBAAmB,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 自动生成文件,请勿手改。
|
|
3
|
+
* 源文件:由同路径 `*.ts.txt` 生成。
|
|
4
|
+
*/
|
|
5
|
+
// Source: src/executor/composer/system/default/assets/plugin.prompt.ts.txt
|
|
6
|
+
const TEXT_MODULE_CONTENT = "# Plugin State\n\n你正在一个基于 plugin 的执行环境中工作。\n\n## 可用命令总览\n- plugin 状态管理(统一使用 `city plugin`):\n - `city plugin list`\n - `city plugin status <pluginName>`\n - `city plugin start <pluginName>`\n - `city plugin stop <pluginName>`\n - `city plugin restart <pluginName>`\n - `city plugin command <pluginName> <command> [--payload '<json>']`\n - `city plugin schedule list`\n - `city plugin schedule info <jobId>`\n - `city plugin schedule cancel <jobId>`\n- ActionSchedule 管理命令用于查看/取消延迟执行的 plugin action,不是独立 plugin。\n- 当前内建托管 plugin:`shell` / `chat` / `task` / `memory` / `contact`。\n- 当前内建本地 plugin:`auth` / `skill` / `asr` / `tts`。\n- 模块级 action 命令:\n - `city shell <action> ...`\n - `city chat <action> ...`\n - `city task <action> ...`\n - `city memory <action> ...`\n - `city plugin action <plugin> <action> ...`\n - `city skill <action> ...`\n - `city asr <action> ...`\n - `city tts <action> ...`\n\n具体 plugin 的执行参考对应文档。\n";
|
|
7
|
+
export default TEXT_MODULE_CONTENT;
|
|
8
|
+
//# sourceMappingURL=plugin.prompt.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plugin.prompt.js","sourceRoot":"","sources":["../../../../../../src/executor/composer/system/default/assets/plugin.prompt.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,2EAA2E;AAC3E,MAAM,mBAAmB,GAAG,+6BAA+6B,CAAC;AAE58B,eAAe,mBAAmB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"task.prompt.d.ts","sourceRoot":"","sources":["../../../../../../src/executor/composer/system/default/assets/task.prompt.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,QAAA,MAAM,mBAAmB,y0IAAg8B,CAAC;AAE19B,eAAe,mBAAmB,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 自动生成文件,请勿手改。
|
|
3
|
+
* 源文件:由同路径 `*.ts.txt` 生成。
|
|
4
|
+
*/
|
|
5
|
+
// Source: src/executor/composer/system/default/assets/task.prompt.ts.txt
|
|
6
|
+
const TEXT_MODULE_CONTENT = "你正在执行 Task 系统内部任务(非聊天会话)。\n\n运行约束(关键):\n- 当前上下文用于任务执行与审计,不是用户聊天回合。\n- 除非任务正文明确要求,否则不要调用 `city chat send` 或任何外部渠道发送动作。\n- 不要把自己当作“即时对话客服”;优先完成任务目标并输出可审计结果。\n- 允许在执行过程中产生必要的中间说明,但你**最后一条 assistant 返回**会被系统直接当作 `output.md` 与最终发送内容。\n\n输出原则:\n- 你的最后一条 assistant 返回必须是“任务交付物本身”。\n- 最后一条 assistant 返回不要包含过程汇报、状态说明、任务管理说明或发送说明。\n- 优先返回可复用、结构化、简洁的结果内容。\n- 不要回显冗长原始日志;必要时给摘要与关键结论。\n- 如任务输入要求固定格式(例如 JSON),严格遵守该格式。\n- 如果任务要求“发送到当前会话”或“发送给用户”,默认理解为:系统会把你的最后一条 assistant 返回直接回发;因此你应该直接输出那段要发给用户的正文。\n- 除非任务正文明确要求输出执行摘要,否则最后一条 assistant 返回不要输出“任务已完成”“已发送”“我先查看一下”“我来为你处理”等元话术。\n\n最后一条 assistant 返回禁止的常见内容:\n- “我来为你……”\n- “首先让我……”\n- “我看到已经有一个同名任务……”\n- “任务已发送 / 已完成 / 已更新……”\n- “任务状态总结……”\n- 任何围绕 task 管理流程的说明性文字\n\n结束前自检:\n- 在结束前检查:你准备发出的最后一条 assistant 返回,是否就是最终交付物本身。\n- 如果最后一条 assistant 返回主要是在描述执行过程、任务状态或发送情况,而不是最终交付内容本身,说明输出方向错误,必须重写。\n- 如果删掉“我来”“首先”“已发送”“任务状态”这类句子后几乎没有剩余内容,说明这不是合格的 task 输出。\n\n上下文原则:\n- 该任务上下文是独立执行上下文,不继承聊天对话目标。\n- 如与系统其他提示冲突,以“任务执行上下文规则”为准。\n";
|
|
7
|
+
export default TEXT_MODULE_CONTENT;
|
|
8
|
+
//# sourceMappingURL=task.prompt.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"task.prompt.js","sourceRoot":"","sources":["../../../../../../src/executor/composer/system/default/assets/task.prompt.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,yEAAyE;AACzE,MAAM,mBAAmB,GAAG,67BAA67B,CAAC;AAE19B,eAAe,mBAAmB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GeoContext.d.ts","sourceRoot":"","sources":["../../../../../../src/executor/composer/system/default/variables/GeoContext.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,4DAA4D,CAAC;AAqKnG;;GAEG;AACH,wBAAsB,uBAAuB,IAAI,OAAO,CAAC,gBAAgB,CAAC,CAEzE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GeoContext.js","sourceRoot":"","sources":["../../../../../../src/executor/composer/system/default/variables/GeoContext.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PromptTypes.d.ts","sourceRoot":"","sources":["../../../../../../src/executor/composer/system/default/variables/PromptTypes.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,MAAM,WAAW,gBAAgB;IAC/B,oCAAoC;IACpC,EAAE,EAAE,MAAM,CAAC;IACX,+BAA+B;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,oCAAoC;IACpC,QAAQ,EAAE,MAAM,CAAC;IACjB,eAAe;IACf,MAAM,EAAE,OAAO,GAAG,SAAS,GAAG,OAAO,CAAC;CACvC;AAED,MAAM,WAAW,eAAe;IAC9B,sCAAsC;IACtC,WAAW,EAAE,MAAM,CAAC;IACpB,6BAA6B;IAC7B,WAAW,EAAE,MAAM,CAAC;IACpB,8BAA8B;IAC9B,WAAW,EAAE,MAAM,CAAC;IACpB,6CAA6C;IAC7C,QAAQ,EAAE,MAAM,CAAC;IACjB,gBAAgB;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,cAAc;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,eAAe;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc;IACd,SAAS,EAAE,MAAM,CAAC;CACnB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PromptTypes.js","sourceRoot":"","sources":["../../../../../../src/executor/composer/system/default/variables/PromptTypes.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VariableReplacer.d.ts","sourceRoot":"","sources":["../../../../../../src/executor/composer/system/default/variables/VariableReplacer.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAYH;;;;;;GAMG;AACH,MAAM,MAAM,kBAAkB,GAAG,MAAM,GAAG,QAAQ,CAAC;AAkDnD;;;;;;;;;;;;GAYG;AACH,wBAAsB,yBAAyB,CAC7C,MAAM,EAAE,MAAM,EACd,OAAO,CAAC,EAAE;IACR;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,IAAI,CAAC,EAAE,kBAAkB,CAAC;CAC3B,GACA,OAAO,CAAC,MAAM,CAAC,CAajB;AAED;;;;;;;GAOG;AACH,wBAAgB,6BAA6B,CAAC,OAAO,CAAC,EAAE;IACtD;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,GAAG,MAAM,CAcT"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VariableReplacer.js","sourceRoot":"","sources":["../../../../../../src/executor/composer/system/default/variables/VariableReplacer.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CoreEngineError.d.ts","sourceRoot":"","sources":["../../../src/executor/core-engine/CoreEngineError.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAEzD;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,OAAO,GAAG,UAAU,CAY/D;AAED;;GAEG;AACH,wBAAgB,+BAA+B,CAAC,MAAM,EAAE;IACtD;;OAEG;IACH,KAAK,EAAE,OAAO,CAAC;IACf;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB,GAAG,MAAM,CAOT"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CoreEngineError.js","sourceRoot":"","sources":["../../../src/executor/core-engine/CoreEngineError.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAIH;;GAEG;AACH,MAAM,UAAU,oBAAoB,CAAC,KAAc;IACjD,MAAM,MAAM,GACV,KAAK,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC;QACzD,CAAC,CAAE,KAAiC;QACpC,CAAC,CAAC,EAAE,CAAC;IACT,MAAM,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC;IAC3B,OAAO;QACL,KAAK,EAAE,MAAM,CAAC,KAAK,CAAC;QACpB,IAAI,EAAE,OAAO,MAAM,CAAC,IAAI,KAAK,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI;QAC1D,OAAO,EAAE,OAAO,MAAM,CAAC,OAAO,KAAK,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI;QACnE,KAAK,EAAE,KAAK,KAAK,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC;KAClD,CAAC;AACJ,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,+BAA+B,CAAC,MAS/C;IACC,MAAM,UAAU,GAAG,MAAM,CAAC,MAAM,CAAC,KAAK,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC;IACrD,MAAM,UAAU,GAAG,MAAM,CAAC,MAAM,CAAC,WAAW,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC;IAC3D,IAAI,gDAAgD,CAAC,IAAI,CAAC,UAAU,CAAC,IAAI,UAAU,EAAE,CAAC;QACpF,OAAO,UAAU,CAAC;IACpB,CAAC;IACD,OAAO,UAAU,IAAI,UAAU,IAAI,yBAAyB,CAAC;AAC/D,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CoreEngineLoopDecision:模型/tool-loop 核心循环的纯决策模块。
|
|
3
|
+
*
|
|
4
|
+
* 关键点(中文)
|
|
5
|
+
* - 把 “是否继续下一轮” 的分支优先级从 CoreEngine 主流程中拆出。
|
|
6
|
+
* - 保持纯函数,不依赖模型、持久化或 logger,便于直接测试。
|
|
7
|
+
*/
|
|
8
|
+
import type { SessionLoopDecision, SessionLoopDecisionInput, SessionTailMergeContinuationInput } from "../../executor/types/SessionLoop.js";
|
|
9
|
+
/**
|
|
10
|
+
* 评估当前 step 完成后,tool-loop 是否应继续下一轮。
|
|
11
|
+
*
|
|
12
|
+
* 优先级(中文)
|
|
13
|
+
* 1. 不完整响应恢复
|
|
14
|
+
* 2. 已发生的工具调用
|
|
15
|
+
* 3. text-only 自动续跑
|
|
16
|
+
* 4. 停止
|
|
17
|
+
*/
|
|
18
|
+
export declare function evaluateCoreEngineLoopDecision(input: SessionLoopDecisionInput): SessionLoopDecision;
|
|
19
|
+
/**
|
|
20
|
+
* 评估 stop 前的尾部合并是否应该继续下一轮。
|
|
21
|
+
*
|
|
22
|
+
* 关键点(中文)
|
|
23
|
+
* - 只要最后一次 tail merge 真正并入了新的 user 消息,就必须续跑。
|
|
24
|
+
* - 这样可以覆盖“最后一个 step 结束后,新消息才到达”的收尾窗口。
|
|
25
|
+
*/
|
|
26
|
+
export declare function shouldContinueForTailMergedUserMessages(input: SessionTailMergeContinuationInput): boolean;
|
|
27
|
+
//# sourceMappingURL=CoreEngineLoopDecision.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CoreEngineLoopDecision.d.ts","sourceRoot":"","sources":["../../../src/executor/core-engine/CoreEngineLoopDecision.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,EACV,mBAAmB,EACnB,wBAAwB,EACxB,iCAAiC,EAClC,MAAM,iCAAiC,CAAC;AAEzC;;;;;;;;GAQG;AACH,wBAAgB,8BAA8B,CAC5C,KAAK,EAAE,wBAAwB,GAC9B,mBAAmB,CAyCrB;AAED;;;;;;GAMG;AACH,wBAAgB,uCAAuC,CACrD,KAAK,EAAE,iCAAiC,GACvC,OAAO,CAET"}
|