@nexus-cortex/executors 4.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +202 -0
- package/NOTICE +2 -0
- package/README.md +13 -0
- package/dist/ExecutorRegistry.d.ts +89 -0
- package/dist/ExecutorRegistry.d.ts.map +1 -0
- package/dist/ExecutorRegistry.js +219 -0
- package/dist/ExecutorRegistry.js.map +1 -0
- package/dist/base/BaseTool.d.ts +108 -0
- package/dist/base/BaseTool.d.ts.map +1 -0
- package/dist/base/BaseTool.js +111 -0
- package/dist/base/BaseTool.js.map +1 -0
- package/dist/base/ToolRegistry.d.ts +141 -0
- package/dist/base/ToolRegistry.d.ts.map +1 -0
- package/dist/base/ToolRegistry.js +241 -0
- package/dist/base/ToolRegistry.js.map +1 -0
- package/dist/base/ToolResult.d.ts +63 -0
- package/dist/base/ToolResult.d.ts.map +1 -0
- package/dist/base/ToolResult.js +8 -0
- package/dist/base/ToolResult.js.map +1 -0
- package/dist/base/index.d.ts +10 -0
- package/dist/base/index.d.ts.map +1 -0
- package/dist/base/index.js +8 -0
- package/dist/base/index.js.map +1 -0
- package/dist/implementations/addon/CreateArtifactTool.d.ts +221 -0
- package/dist/implementations/addon/CreateArtifactTool.d.ts.map +1 -0
- package/dist/implementations/addon/CreateArtifactTool.js +1042 -0
- package/dist/implementations/addon/CreateArtifactTool.js.map +1 -0
- package/dist/implementations/addon/FrameDiffCache.d.ts +166 -0
- package/dist/implementations/addon/FrameDiffCache.d.ts.map +1 -0
- package/dist/implementations/addon/FrameDiffCache.js +395 -0
- package/dist/implementations/addon/FrameDiffCache.js.map +1 -0
- package/dist/implementations/addon/H264StreamEncoder.d.ts +84 -0
- package/dist/implementations/addon/H264StreamEncoder.d.ts.map +1 -0
- package/dist/implementations/addon/H264StreamEncoder.js +203 -0
- package/dist/implementations/addon/H264StreamEncoder.js.map +1 -0
- package/dist/implementations/addon/HybridScreenshotManager.d.ts +197 -0
- package/dist/implementations/addon/HybridScreenshotManager.d.ts.map +1 -0
- package/dist/implementations/addon/HybridScreenshotManager.js +415 -0
- package/dist/implementations/addon/HybridScreenshotManager.js.map +1 -0
- package/dist/implementations/addon/InspectSandboxTool.d.ts +54 -0
- package/dist/implementations/addon/InspectSandboxTool.d.ts.map +1 -0
- package/dist/implementations/addon/InspectSandboxTool.js +226 -0
- package/dist/implementations/addon/InspectSandboxTool.js.map +1 -0
- package/dist/implementations/addon/InteractWithSandboxTool.d.ts +90 -0
- package/dist/implementations/addon/InteractWithSandboxTool.d.ts.map +1 -0
- package/dist/implementations/addon/InteractWithSandboxTool.js +367 -0
- package/dist/implementations/addon/InteractWithSandboxTool.js.map +1 -0
- package/dist/implementations/addon/KeyframeDetector.d.ts +140 -0
- package/dist/implementations/addon/KeyframeDetector.d.ts.map +1 -0
- package/dist/implementations/addon/KeyframeDetector.js +390 -0
- package/dist/implementations/addon/KeyframeDetector.js.map +1 -0
- package/dist/implementations/addon/ModifySandboxTool.d.ts +62 -0
- package/dist/implementations/addon/ModifySandboxTool.d.ts.map +1 -0
- package/dist/implementations/addon/ModifySandboxTool.js +266 -0
- package/dist/implementations/addon/ModifySandboxTool.js.map +1 -0
- package/dist/implementations/addon/ReactArtifactBuilder.d.ts +27 -0
- package/dist/implementations/addon/ReactArtifactBuilder.d.ts.map +1 -0
- package/dist/implementations/addon/ReactArtifactBuilder.js +198 -0
- package/dist/implementations/addon/ReactArtifactBuilder.js.map +1 -0
- package/dist/implementations/addon/SandboxEventBroadcaster.d.ts +143 -0
- package/dist/implementations/addon/SandboxEventBroadcaster.d.ts.map +1 -0
- package/dist/implementations/addon/SandboxEventBroadcaster.js +258 -0
- package/dist/implementations/addon/SandboxEventBroadcaster.js.map +1 -0
- package/dist/implementations/addon/SandboxIntrospectionTools.d.ts +77 -0
- package/dist/implementations/addon/SandboxIntrospectionTools.d.ts.map +1 -0
- package/dist/implementations/addon/SandboxIntrospectionTools.js +292 -0
- package/dist/implementations/addon/SandboxIntrospectionTools.js.map +1 -0
- package/dist/implementations/addon/SandboxViewServer.d.ts +127 -0
- package/dist/implementations/addon/SandboxViewServer.d.ts.map +1 -0
- package/dist/implementations/addon/SandboxViewServer.js +775 -0
- package/dist/implementations/addon/SandboxViewServer.js.map +1 -0
- package/dist/implementations/addon/ScreenStream.d.ts +149 -0
- package/dist/implementations/addon/ScreenStream.d.ts.map +1 -0
- package/dist/implementations/addon/ScreenStream.js +306 -0
- package/dist/implementations/addon/ScreenStream.js.map +1 -0
- package/dist/implementations/addon/StopSandboxTool.d.ts +61 -0
- package/dist/implementations/addon/StopSandboxTool.d.ts.map +1 -0
- package/dist/implementations/addon/StopSandboxTool.js +252 -0
- package/dist/implementations/addon/StopSandboxTool.js.map +1 -0
- package/dist/implementations/addon/TerminalSandbox.d.ts +111 -0
- package/dist/implementations/addon/TerminalSandbox.d.ts.map +1 -0
- package/dist/implementations/addon/TerminalSandbox.js +345 -0
- package/dist/implementations/addon/TerminalSandbox.js.map +1 -0
- package/dist/implementations/addon/VisualFeedbackBridge.d.ts +367 -0
- package/dist/implementations/addon/VisualFeedbackBridge.d.ts.map +1 -0
- package/dist/implementations/addon/VisualFeedbackBridge.js +888 -0
- package/dist/implementations/addon/VisualFeedbackBridge.js.map +1 -0
- package/dist/implementations/addon/WindowManager.d.ts +138 -0
- package/dist/implementations/addon/WindowManager.d.ts.map +1 -0
- package/dist/implementations/addon/WindowManager.js +276 -0
- package/dist/implementations/addon/WindowManager.js.map +1 -0
- package/dist/implementations/addon/index.d.ts +29 -0
- package/dist/implementations/addon/index.d.ts.map +1 -0
- package/dist/implementations/addon/index.js +29 -0
- package/dist/implementations/addon/index.js.map +1 -0
- package/dist/implementations/addon/injectables/reactIntrospection.d.ts +57 -0
- package/dist/implementations/addon/injectables/reactIntrospection.d.ts.map +1 -0
- package/dist/implementations/addon/injectables/reactIntrospection.js +480 -0
- package/dist/implementations/addon/injectables/reactIntrospection.js.map +1 -0
- package/dist/implementations/addon/terminal-client.html +253 -0
- package/dist/implementations/agent/PRAgentTool.d.ts +37 -0
- package/dist/implementations/agent/PRAgentTool.d.ts.map +1 -0
- package/dist/implementations/agent/PRAgentTool.js +257 -0
- package/dist/implementations/agent/PRAgentTool.js.map +1 -0
- package/dist/implementations/agent/TaskTool.d.ts +76 -0
- package/dist/implementations/agent/TaskTool.d.ts.map +1 -0
- package/dist/implementations/agent/TaskTool.js +424 -0
- package/dist/implementations/agent/TaskTool.js.map +1 -0
- package/dist/implementations/agent/index.d.ts +5 -0
- package/dist/implementations/agent/index.d.ts.map +1 -0
- package/dist/implementations/agent/index.js +3 -0
- package/dist/implementations/agent/index.js.map +1 -0
- package/dist/implementations/execution/BackgroundProcessRegistry.d.ts +68 -0
- package/dist/implementations/execution/BackgroundProcessRegistry.d.ts.map +1 -0
- package/dist/implementations/execution/BackgroundProcessRegistry.js +146 -0
- package/dist/implementations/execution/BackgroundProcessRegistry.js.map +1 -0
- package/dist/implementations/execution/BashOutputTool.d.ts +42 -0
- package/dist/implementations/execution/BashOutputTool.d.ts.map +1 -0
- package/dist/implementations/execution/BashOutputTool.js +168 -0
- package/dist/implementations/execution/BashOutputTool.js.map +1 -0
- package/dist/implementations/execution/CodeExecuteTool.d.ts +31 -0
- package/dist/implementations/execution/CodeExecuteTool.d.ts.map +1 -0
- package/dist/implementations/execution/CodeExecuteTool.js +127 -0
- package/dist/implementations/execution/CodeExecuteTool.js.map +1 -0
- package/dist/implementations/execution/KillShellTool.d.ts +37 -0
- package/dist/implementations/execution/KillShellTool.d.ts.map +1 -0
- package/dist/implementations/execution/KillShellTool.js +144 -0
- package/dist/implementations/execution/KillShellTool.js.map +1 -0
- package/dist/implementations/execution/SearchToolsTool.d.ts +32 -0
- package/dist/implementations/execution/SearchToolsTool.d.ts.map +1 -0
- package/dist/implementations/execution/SearchToolsTool.js +109 -0
- package/dist/implementations/execution/SearchToolsTool.js.map +1 -0
- package/dist/implementations/execution/ShellTool.d.ts +108 -0
- package/dist/implementations/execution/ShellTool.d.ts.map +1 -0
- package/dist/implementations/execution/ShellTool.js +546 -0
- package/dist/implementations/execution/ShellTool.js.map +1 -0
- package/dist/implementations/execution/WorkspaceManagerTool.d.ts +40 -0
- package/dist/implementations/execution/WorkspaceManagerTool.d.ts.map +1 -0
- package/dist/implementations/execution/WorkspaceManagerTool.js +370 -0
- package/dist/implementations/execution/WorkspaceManagerTool.js.map +1 -0
- package/dist/implementations/execution/index.d.ts +13 -0
- package/dist/implementations/execution/index.d.ts.map +1 -0
- package/dist/implementations/execution/index.js +13 -0
- package/dist/implementations/execution/index.js.map +1 -0
- package/dist/implementations/extensions/EndTurnTool.d.ts +62 -0
- package/dist/implementations/extensions/EndTurnTool.d.ts.map +1 -0
- package/dist/implementations/extensions/EndTurnTool.js +172 -0
- package/dist/implementations/extensions/EndTurnTool.js.map +1 -0
- package/dist/implementations/extensions/ResearchBacklogTool.d.ts +37 -0
- package/dist/implementations/extensions/ResearchBacklogTool.d.ts.map +1 -0
- package/dist/implementations/extensions/ResearchBacklogTool.js +102 -0
- package/dist/implementations/extensions/ResearchBacklogTool.js.map +1 -0
- package/dist/implementations/extensions/SkillTool.d.ts +108 -0
- package/dist/implementations/extensions/SkillTool.d.ts.map +1 -0
- package/dist/implementations/extensions/SkillTool.js +351 -0
- package/dist/implementations/extensions/SkillTool.js.map +1 -0
- package/dist/implementations/extensions/SlashCommandTool.d.ts +112 -0
- package/dist/implementations/extensions/SlashCommandTool.d.ts.map +1 -0
- package/dist/implementations/extensions/SlashCommandTool.js +315 -0
- package/dist/implementations/extensions/SlashCommandTool.js.map +1 -0
- package/dist/implementations/extensions/index.d.ts +14 -0
- package/dist/implementations/extensions/index.d.ts.map +1 -0
- package/dist/implementations/extensions/index.js +10 -0
- package/dist/implementations/extensions/index.js.map +1 -0
- package/dist/implementations/file/EditTool.d.ts +232 -0
- package/dist/implementations/file/EditTool.d.ts.map +1 -0
- package/dist/implementations/file/EditTool.js +707 -0
- package/dist/implementations/file/EditTool.js.map +1 -0
- package/dist/implementations/file/ReadFileTool.d.ts +49 -0
- package/dist/implementations/file/ReadFileTool.d.ts.map +1 -0
- package/dist/implementations/file/ReadFileTool.js +225 -0
- package/dist/implementations/file/ReadFileTool.js.map +1 -0
- package/dist/implementations/file/WriteBinaryTool.d.ts +21 -0
- package/dist/implementations/file/WriteBinaryTool.d.ts.map +1 -0
- package/dist/implementations/file/WriteBinaryTool.js +153 -0
- package/dist/implementations/file/WriteBinaryTool.js.map +1 -0
- package/dist/implementations/file/WriteFileTool.d.ts +41 -0
- package/dist/implementations/file/WriteFileTool.d.ts.map +1 -0
- package/dist/implementations/file/WriteFileTool.js +220 -0
- package/dist/implementations/file/WriteFileTool.js.map +1 -0
- package/dist/implementations/file/index.d.ts +8 -0
- package/dist/implementations/file/index.d.ts.map +1 -0
- package/dist/implementations/file/index.js +8 -0
- package/dist/implementations/file/index.js.map +1 -0
- package/dist/implementations/historical/GetConversationSegmentTool.d.ts +44 -0
- package/dist/implementations/historical/GetConversationSegmentTool.d.ts.map +1 -0
- package/dist/implementations/historical/GetConversationSegmentTool.js +220 -0
- package/dist/implementations/historical/GetConversationSegmentTool.js.map +1 -0
- package/dist/implementations/historical/ListCompactionBoundariesTool.d.ts +36 -0
- package/dist/implementations/historical/ListCompactionBoundariesTool.d.ts.map +1 -0
- package/dist/implementations/historical/ListCompactionBoundariesTool.js +174 -0
- package/dist/implementations/historical/ListCompactionBoundariesTool.js.map +1 -0
- package/dist/implementations/historical/ListSessionsTool.d.ts +38 -0
- package/dist/implementations/historical/ListSessionsTool.d.ts.map +1 -0
- package/dist/implementations/historical/ListSessionsTool.js +140 -0
- package/dist/implementations/historical/ListSessionsTool.js.map +1 -0
- package/dist/implementations/historical/LoadSessionTool.d.ts +39 -0
- package/dist/implementations/historical/LoadSessionTool.d.ts.map +1 -0
- package/dist/implementations/historical/LoadSessionTool.js +171 -0
- package/dist/implementations/historical/LoadSessionTool.js.map +1 -0
- package/dist/implementations/historical/RequestHistoricalContextTool.d.ts +46 -0
- package/dist/implementations/historical/RequestHistoricalContextTool.d.ts.map +1 -0
- package/dist/implementations/historical/RequestHistoricalContextTool.js +224 -0
- package/dist/implementations/historical/RequestHistoricalContextTool.js.map +1 -0
- package/dist/implementations/historical/SearchConversationHistoryTool.d.ts +51 -0
- package/dist/implementations/historical/SearchConversationHistoryTool.d.ts.map +1 -0
- package/dist/implementations/historical/SearchConversationHistoryTool.js +306 -0
- package/dist/implementations/historical/SearchConversationHistoryTool.js.map +1 -0
- package/dist/implementations/historical/index.d.ts +12 -0
- package/dist/implementations/historical/index.d.ts.map +1 -0
- package/dist/implementations/historical/index.js +12 -0
- package/dist/implementations/historical/index.js.map +1 -0
- package/dist/implementations/index.d.ts +16 -0
- package/dist/implementations/index.d.ts.map +1 -0
- package/dist/implementations/index.js +28 -0
- package/dist/implementations/index.js.map +1 -0
- package/dist/implementations/mcp/DiscoveredMcpTool.d.ts +58 -0
- package/dist/implementations/mcp/DiscoveredMcpTool.d.ts.map +1 -0
- package/dist/implementations/mcp/DiscoveredMcpTool.js +269 -0
- package/dist/implementations/mcp/DiscoveredMcpTool.js.map +1 -0
- package/dist/implementations/mcp/index.d.ts +9 -0
- package/dist/implementations/mcp/index.d.ts.map +1 -0
- package/dist/implementations/mcp/index.js +8 -0
- package/dist/implementations/mcp/index.js.map +1 -0
- package/dist/implementations/notebook/NotebookEditTool.d.ts +96 -0
- package/dist/implementations/notebook/NotebookEditTool.d.ts.map +1 -0
- package/dist/implementations/notebook/NotebookEditTool.js +390 -0
- package/dist/implementations/notebook/NotebookEditTool.js.map +1 -0
- package/dist/implementations/notebook/index.d.ts +7 -0
- package/dist/implementations/notebook/index.d.ts.map +1 -0
- package/dist/implementations/notebook/index.js +7 -0
- package/dist/implementations/notebook/index.js.map +1 -0
- package/dist/implementations/search/GlobTool.d.ts +73 -0
- package/dist/implementations/search/GlobTool.d.ts.map +1 -0
- package/dist/implementations/search/GlobTool.js +213 -0
- package/dist/implementations/search/GlobTool.js.map +1 -0
- package/dist/implementations/search/GrepTool.d.ts +102 -0
- package/dist/implementations/search/GrepTool.d.ts.map +1 -0
- package/dist/implementations/search/GrepTool.js +754 -0
- package/dist/implementations/search/GrepTool.js.map +1 -0
- package/dist/implementations/search/index.d.ts +6 -0
- package/dist/implementations/search/index.d.ts.map +1 -0
- package/dist/implementations/search/index.js +6 -0
- package/dist/implementations/search/index.js.map +1 -0
- package/dist/implementations/tmux/TmuxSessionTool.d.ts +82 -0
- package/dist/implementations/tmux/TmuxSessionTool.d.ts.map +1 -0
- package/dist/implementations/tmux/TmuxSessionTool.js +371 -0
- package/dist/implementations/tmux/TmuxSessionTool.js.map +1 -0
- package/dist/implementations/tmux/TmuxViewServer.d.ts +86 -0
- package/dist/implementations/tmux/TmuxViewServer.d.ts.map +1 -0
- package/dist/implementations/tmux/TmuxViewServer.js +480 -0
- package/dist/implementations/tmux/TmuxViewServer.js.map +1 -0
- package/dist/implementations/tmux/index.d.ts +6 -0
- package/dist/implementations/tmux/index.d.ts.map +1 -0
- package/dist/implementations/tmux/index.js +6 -0
- package/dist/implementations/tmux/index.js.map +1 -0
- package/dist/implementations/ui/AskUserQuestionTool.d.ts +77 -0
- package/dist/implementations/ui/AskUserQuestionTool.d.ts.map +1 -0
- package/dist/implementations/ui/AskUserQuestionTool.js +241 -0
- package/dist/implementations/ui/AskUserQuestionTool.js.map +1 -0
- package/dist/implementations/ui/ExitPlanModeTool.d.ts +44 -0
- package/dist/implementations/ui/ExitPlanModeTool.d.ts.map +1 -0
- package/dist/implementations/ui/ExitPlanModeTool.js +150 -0
- package/dist/implementations/ui/ExitPlanModeTool.js.map +1 -0
- package/dist/implementations/ui/TodoWriteTool.d.ts +59 -0
- package/dist/implementations/ui/TodoWriteTool.d.ts.map +1 -0
- package/dist/implementations/ui/TodoWriteTool.js +315 -0
- package/dist/implementations/ui/TodoWriteTool.js.map +1 -0
- package/dist/implementations/ui/index.d.ts +9 -0
- package/dist/implementations/ui/index.d.ts.map +1 -0
- package/dist/implementations/ui/index.js +9 -0
- package/dist/implementations/ui/index.js.map +1 -0
- package/dist/implementations/web/BrowseTool.d.ts +43 -0
- package/dist/implementations/web/BrowseTool.d.ts.map +1 -0
- package/dist/implementations/web/BrowseTool.js +181 -0
- package/dist/implementations/web/BrowseTool.js.map +1 -0
- package/dist/implementations/web/SandboxTransferTool.d.ts +30 -0
- package/dist/implementations/web/SandboxTransferTool.d.ts.map +1 -0
- package/dist/implementations/web/SandboxTransferTool.js +261 -0
- package/dist/implementations/web/SandboxTransferTool.js.map +1 -0
- package/dist/implementations/web/WebFetchTool.d.ts +93 -0
- package/dist/implementations/web/WebFetchTool.d.ts.map +1 -0
- package/dist/implementations/web/WebFetchTool.js +484 -0
- package/dist/implementations/web/WebFetchTool.js.map +1 -0
- package/dist/implementations/web/WebSearchTool.d.ts +53 -0
- package/dist/implementations/web/WebSearchTool.d.ts.map +1 -0
- package/dist/implementations/web/WebSearchTool.js +227 -0
- package/dist/implementations/web/WebSearchTool.js.map +1 -0
- package/dist/implementations/web/escalateDirective.d.ts +11 -0
- package/dist/implementations/web/escalateDirective.d.ts.map +1 -0
- package/dist/implementations/web/escalateDirective.js +20 -0
- package/dist/implementations/web/escalateDirective.js.map +1 -0
- package/dist/implementations/web/index.d.ts +10 -0
- package/dist/implementations/web/index.d.ts.map +1 -0
- package/dist/implementations/web/index.js +10 -0
- package/dist/implementations/web/index.js.map +1 -0
- package/dist/implementations/web/webBackends.d.ts +65 -0
- package/dist/implementations/web/webBackends.d.ts.map +1 -0
- package/dist/implementations/web/webBackends.js +430 -0
- package/dist/implementations/web/webBackends.js.map +1 -0
- package/dist/implementations/web/webFetchRequestInit.d.ts +9 -0
- package/dist/implementations/web/webFetchRequestInit.d.ts.map +1 -0
- package/dist/implementations/web/webFetchRequestInit.js +21 -0
- package/dist/implementations/web/webFetchRequestInit.js.map +1 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +18 -0
- package/dist/index.js.map +1 -0
- package/dist/utils/ArtifactRegistry.d.ts +138 -0
- package/dist/utils/ArtifactRegistry.d.ts.map +1 -0
- package/dist/utils/ArtifactRegistry.js +259 -0
- package/dist/utils/ArtifactRegistry.js.map +1 -0
- package/dist/utils/ChromiumBrowserManager.d.ts +56 -0
- package/dist/utils/ChromiumBrowserManager.d.ts.map +1 -0
- package/dist/utils/ChromiumBrowserManager.js +243 -0
- package/dist/utils/ChromiumBrowserManager.js.map +1 -0
- package/dist/utils/FileUtils.d.ts +81 -0
- package/dist/utils/FileUtils.d.ts.map +1 -0
- package/dist/utils/FileUtils.js +148 -0
- package/dist/utils/FileUtils.js.map +1 -0
- package/dist/utils/GitPolicy.d.ts +70 -0
- package/dist/utils/GitPolicy.d.ts.map +1 -0
- package/dist/utils/GitPolicy.js +166 -0
- package/dist/utils/GitPolicy.js.map +1 -0
- package/dist/utils/GitUtils.d.ts +18 -0
- package/dist/utils/GitUtils.d.ts.map +1 -0
- package/dist/utils/GitUtils.js +62 -0
- package/dist/utils/GitUtils.js.map +1 -0
- package/dist/utils/SandboxRegistry.d.ts +110 -0
- package/dist/utils/SandboxRegistry.d.ts.map +1 -0
- package/dist/utils/SandboxRegistry.js +220 -0
- package/dist/utils/SandboxRegistry.js.map +1 -0
- package/dist/utils/SchemaValidator.d.ts +21 -0
- package/dist/utils/SchemaValidator.d.ts.map +1 -0
- package/dist/utils/SchemaValidator.js +67 -0
- package/dist/utils/SchemaValidator.js.map +1 -0
- package/dist/utils/SessionLock.d.ts +96 -0
- package/dist/utils/SessionLock.d.ts.map +1 -0
- package/dist/utils/SessionLock.js +276 -0
- package/dist/utils/SessionLock.js.map +1 -0
- package/dist/utils/SessionPersistence.d.ts +89 -0
- package/dist/utils/SessionPersistence.d.ts.map +1 -0
- package/dist/utils/SessionPersistence.js +244 -0
- package/dist/utils/SessionPersistence.js.map +1 -0
- package/dist/utils/TextUtils.d.ts +77 -0
- package/dist/utils/TextUtils.d.ts.map +1 -0
- package/dist/utils/TextUtils.js +112 -0
- package/dist/utils/TextUtils.js.map +1 -0
- package/dist/utils/TmuxCapture.d.ts +94 -0
- package/dist/utils/TmuxCapture.d.ts.map +1 -0
- package/dist/utils/TmuxCapture.js +131 -0
- package/dist/utils/TmuxCapture.js.map +1 -0
- package/dist/utils/TmuxManager.d.ts +65 -0
- package/dist/utils/TmuxManager.d.ts.map +1 -0
- package/dist/utils/TmuxManager.js +304 -0
- package/dist/utils/TmuxManager.js.map +1 -0
- package/dist/utils/autoResearchPlanGate.d.ts +10 -0
- package/dist/utils/autoResearchPlanGate.d.ts.map +1 -0
- package/dist/utils/autoResearchPlanGate.js +57 -0
- package/dist/utils/autoResearchPlanGate.js.map +1 -0
- package/dist/utils/index.d.ts +19 -0
- package/dist/utils/index.d.ts.map +1 -0
- package/dist/utils/index.js +13 -0
- package/dist/utils/index.js.map +1 -0
- package/package.json +83 -0
|
@@ -0,0 +1,367 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Visual Feedback Bridge
|
|
3
|
+
*
|
|
4
|
+
* Enables the MODEL to see and interact with tools it creates.
|
|
5
|
+
*
|
|
6
|
+
* Flow:
|
|
7
|
+
* 1. Model creates tool → UI spins up
|
|
8
|
+
* 2. Bridge captures screenshot/DOM
|
|
9
|
+
* 3. Returns visual data to model
|
|
10
|
+
* 4. Model analyzes output
|
|
11
|
+
* 5. Model edits code or spawns interaction agent
|
|
12
|
+
* 6. Hot reload applies changes
|
|
13
|
+
* 7. Repeat until satisfied
|
|
14
|
+
*/
|
|
15
|
+
import { Page } from 'playwright';
|
|
16
|
+
export interface VisualBridgeConfig {
|
|
17
|
+
headless?: boolean;
|
|
18
|
+
slowMo?: number;
|
|
19
|
+
userDataDir?: string;
|
|
20
|
+
executablePath?: string;
|
|
21
|
+
}
|
|
22
|
+
export interface VisualSnapshot {
|
|
23
|
+
screenshot: string;
|
|
24
|
+
dom: string;
|
|
25
|
+
console: string[];
|
|
26
|
+
network: NetworkRequest[];
|
|
27
|
+
performance: PerformanceMetrics;
|
|
28
|
+
accessibility: AccessibilityTree;
|
|
29
|
+
react?: FrameworkReport;
|
|
30
|
+
}
|
|
31
|
+
/** detect_framework-compatible report (same schema as the nexus-browser MCP tool). */
|
|
32
|
+
export interface FrameworkReport {
|
|
33
|
+
react: boolean;
|
|
34
|
+
reactVersion: string | null;
|
|
35
|
+
next: boolean;
|
|
36
|
+
remix: boolean;
|
|
37
|
+
gatsby: boolean;
|
|
38
|
+
vue: boolean;
|
|
39
|
+
svelte: boolean;
|
|
40
|
+
angular: boolean;
|
|
41
|
+
compiler: boolean;
|
|
42
|
+
hasDevTools: boolean;
|
|
43
|
+
rendererCount: number;
|
|
44
|
+
heavyLibraries: string[];
|
|
45
|
+
}
|
|
46
|
+
export interface NetworkRequest {
|
|
47
|
+
url: string;
|
|
48
|
+
method: string;
|
|
49
|
+
status: number;
|
|
50
|
+
timing: number;
|
|
51
|
+
}
|
|
52
|
+
export interface PerformanceMetrics {
|
|
53
|
+
loadTime: number;
|
|
54
|
+
renderTime: number;
|
|
55
|
+
memoryUsage: number;
|
|
56
|
+
}
|
|
57
|
+
export interface AccessibilityTree {
|
|
58
|
+
roles: string[];
|
|
59
|
+
labels: string[];
|
|
60
|
+
structure: any;
|
|
61
|
+
}
|
|
62
|
+
export interface PageState {
|
|
63
|
+
buttons: Array<{
|
|
64
|
+
text: string | null;
|
|
65
|
+
id: string;
|
|
66
|
+
className: string;
|
|
67
|
+
disabled: boolean;
|
|
68
|
+
visible: boolean;
|
|
69
|
+
position: DOMRect;
|
|
70
|
+
}>;
|
|
71
|
+
inputs: Array<{
|
|
72
|
+
type: string;
|
|
73
|
+
name: string;
|
|
74
|
+
id: string;
|
|
75
|
+
value: string;
|
|
76
|
+
placeholder: string;
|
|
77
|
+
required: boolean;
|
|
78
|
+
disabled: boolean;
|
|
79
|
+
}>;
|
|
80
|
+
forms: Array<{
|
|
81
|
+
id: string;
|
|
82
|
+
name: string;
|
|
83
|
+
action: string;
|
|
84
|
+
method: string;
|
|
85
|
+
elements: number;
|
|
86
|
+
}>;
|
|
87
|
+
links: Array<{
|
|
88
|
+
text: string | null;
|
|
89
|
+
href: string;
|
|
90
|
+
target: string;
|
|
91
|
+
}>;
|
|
92
|
+
meta: {
|
|
93
|
+
title: string;
|
|
94
|
+
url: string;
|
|
95
|
+
referrer: string;
|
|
96
|
+
readyState: string;
|
|
97
|
+
};
|
|
98
|
+
storage: {
|
|
99
|
+
localStorage: Record<string, any>;
|
|
100
|
+
sessionStorage: Record<string, any>;
|
|
101
|
+
cookies: string;
|
|
102
|
+
};
|
|
103
|
+
resources: {
|
|
104
|
+
scripts: Array<{
|
|
105
|
+
src: string;
|
|
106
|
+
type: string;
|
|
107
|
+
async: boolean;
|
|
108
|
+
defer: boolean;
|
|
109
|
+
}>;
|
|
110
|
+
stylesheets: Array<{
|
|
111
|
+
href: string;
|
|
112
|
+
disabled: boolean;
|
|
113
|
+
}>;
|
|
114
|
+
};
|
|
115
|
+
viewport: {
|
|
116
|
+
width: number;
|
|
117
|
+
height: number;
|
|
118
|
+
scrollX: number;
|
|
119
|
+
scrollY: number;
|
|
120
|
+
scrollHeight: number;
|
|
121
|
+
scrollWidth: number;
|
|
122
|
+
};
|
|
123
|
+
}
|
|
124
|
+
export interface JavaScriptError {
|
|
125
|
+
message: string;
|
|
126
|
+
stack: string;
|
|
127
|
+
timestamp: number;
|
|
128
|
+
}
|
|
129
|
+
export interface DetailedPerformanceMetrics {
|
|
130
|
+
scriptDuration: number;
|
|
131
|
+
layoutDuration: number;
|
|
132
|
+
recalcStyleDuration: number;
|
|
133
|
+
taskDuration: number;
|
|
134
|
+
jsHeapUsedSize: number;
|
|
135
|
+
jsHeapTotalSize: number;
|
|
136
|
+
domNodes: number;
|
|
137
|
+
layoutCount: number;
|
|
138
|
+
recalcStyleCount: number;
|
|
139
|
+
}
|
|
140
|
+
export interface ComprehensiveSnapshot {
|
|
141
|
+
url: string;
|
|
142
|
+
timestamp: number;
|
|
143
|
+
visual: {
|
|
144
|
+
screenshot: string;
|
|
145
|
+
viewport: PageState['viewport'];
|
|
146
|
+
};
|
|
147
|
+
structural: {
|
|
148
|
+
dom: string;
|
|
149
|
+
pageState: PageState;
|
|
150
|
+
accessibility: AccessibilityTree;
|
|
151
|
+
};
|
|
152
|
+
runtime: {
|
|
153
|
+
console: string[];
|
|
154
|
+
network: NetworkRequest[];
|
|
155
|
+
performance: DetailedPerformanceMetrics;
|
|
156
|
+
};
|
|
157
|
+
}
|
|
158
|
+
export interface InteractionCommand {
|
|
159
|
+
type: 'click' | 'type' | 'navigate' | 'scroll' | 'select' | 'hover' | 'keypress' | 'zoom';
|
|
160
|
+
selector?: string;
|
|
161
|
+
value?: string;
|
|
162
|
+
coordinates?: {
|
|
163
|
+
x: number;
|
|
164
|
+
y: number;
|
|
165
|
+
};
|
|
166
|
+
key?: string;
|
|
167
|
+
modifiers?: string[];
|
|
168
|
+
zoomLevel?: number;
|
|
169
|
+
deltaX?: number;
|
|
170
|
+
deltaY?: number;
|
|
171
|
+
}
|
|
172
|
+
/**
|
|
173
|
+
* Visual Feedback Bridge
|
|
174
|
+
*
|
|
175
|
+
* Allows model to:
|
|
176
|
+
* - See its creations (screenshot + DOM)
|
|
177
|
+
* - Interact with UI (Playwright automation)
|
|
178
|
+
* - Iterate rapidly (hot reload + visual diff)
|
|
179
|
+
* - Delegate to sub-agents (complex interactions)
|
|
180
|
+
*/
|
|
181
|
+
export declare class VisualFeedbackBridge {
|
|
182
|
+
private browser;
|
|
183
|
+
private page;
|
|
184
|
+
private consoleLogs;
|
|
185
|
+
private networkRequests;
|
|
186
|
+
private reactIntrospection;
|
|
187
|
+
/**
|
|
188
|
+
* Enable React introspection for all SUBSEQUENT navigations: installs the
|
|
189
|
+
* DevTools-hook shim + fiber utilities via addInitScript (must run before the
|
|
190
|
+
* page's React loads — addInitScript guarantees pre-script execution).
|
|
191
|
+
* Idempotent; safe to call lazily because captureSnapshot/sandboxScan/etc.
|
|
192
|
+
* always navigate after this.
|
|
193
|
+
*/
|
|
194
|
+
enableReactIntrospection(): Promise<void>;
|
|
195
|
+
isReactIntrospectionEnabled(): boolean;
|
|
196
|
+
/** Ensure the page is on the given URL (navigates only when needed). */
|
|
197
|
+
private ensureOnUrl;
|
|
198
|
+
/**
|
|
199
|
+
* Wait for React to have committed at least once (the introspection commit hook sets
|
|
200
|
+
* __lastRoot) — runs even when ensureOnUrl did NOT navigate, so a tree/scan/grab/trace
|
|
201
|
+
* call on an already-loaded page doesn't race a still-mounting app. No-op for non-React.
|
|
202
|
+
*/
|
|
203
|
+
private awaitReactReady;
|
|
204
|
+
/** Is a render trace currently active on the live page? (no navigation) */
|
|
205
|
+
isTraceActive(): Promise<boolean>;
|
|
206
|
+
/** detect_framework against the given sandbox URL (nexus-browser schema). */
|
|
207
|
+
sandboxDetect(url: string): Promise<FrameworkReport>;
|
|
208
|
+
/**
|
|
209
|
+
* Element discovery (nexus-browser scan contract): elements carry a unique
|
|
210
|
+
* cssSelector + isInteractive/relevanceScore, and componentName on React pages.
|
|
211
|
+
*/
|
|
212
|
+
sandboxScan(url: string, args?: Record<string, unknown>): Promise<any>;
|
|
213
|
+
/**
|
|
214
|
+
* Single-element query by selector or coordinates (nexus-browser grab contract),
|
|
215
|
+
* auto-enriched with react:{componentName,componentStack,props,sourceLocation}.
|
|
216
|
+
*/
|
|
217
|
+
sandboxGrab(url: string, args: Record<string, unknown>): Promise<any>;
|
|
218
|
+
/** Component hierarchy of the React tree (component-tree role). */
|
|
219
|
+
sandboxComponentTree(url: string, args?: Record<string, unknown>): Promise<any>;
|
|
220
|
+
/** Begin a render trace (react-scan role). Resets + enables the commit interceptor. */
|
|
221
|
+
sandboxTraceStart(url: string): Promise<any>;
|
|
222
|
+
/** Stop (or peek) a render trace and return per-component render counts/timings. */
|
|
223
|
+
sandboxTraceReport(url: string, args?: Record<string, unknown>): Promise<any>;
|
|
224
|
+
/**
|
|
225
|
+
* Initialize browser for visual feedback
|
|
226
|
+
* @param config Optional configuration for browser launch
|
|
227
|
+
*/
|
|
228
|
+
initialize(config?: VisualBridgeConfig): Promise<void>;
|
|
229
|
+
/**
|
|
230
|
+
* Get the Playwright page instance
|
|
231
|
+
*/
|
|
232
|
+
getPage(): Page | null;
|
|
233
|
+
/**
|
|
234
|
+
* Navigate to a URL
|
|
235
|
+
*/
|
|
236
|
+
navigate(url: string): Promise<void>;
|
|
237
|
+
/**
|
|
238
|
+
* Capture screenshot of current page
|
|
239
|
+
*/
|
|
240
|
+
captureScreenshot(): Promise<Buffer>;
|
|
241
|
+
/**
|
|
242
|
+
* Navigate to tool URL and capture snapshot
|
|
243
|
+
*/
|
|
244
|
+
captureSnapshot(url: string): Promise<VisualSnapshot>;
|
|
245
|
+
/**
|
|
246
|
+
* Capture accessibility tree for semantic understanding
|
|
247
|
+
*/
|
|
248
|
+
private captureAccessibilityTree;
|
|
249
|
+
/**
|
|
250
|
+
* Execute interaction command
|
|
251
|
+
*/
|
|
252
|
+
interact(command: InteractionCommand): Promise<void>;
|
|
253
|
+
/**
|
|
254
|
+
* Press keyboard key or key combination
|
|
255
|
+
* @param key Key to press ('Enter', 'Escape', 'a', 'Ctrl+V', etc.)
|
|
256
|
+
* @param modifiers Optional modifier keys (['Control', 'Shift', 'Alt', 'Meta'])
|
|
257
|
+
*/
|
|
258
|
+
keyPress(key: string, modifiers?: string[]): Promise<void>;
|
|
259
|
+
/**
|
|
260
|
+
* Scroll the page
|
|
261
|
+
* @param delta Scroll delta { deltaX, deltaY }
|
|
262
|
+
*/
|
|
263
|
+
scroll(delta: {
|
|
264
|
+
deltaX?: number;
|
|
265
|
+
deltaY?: number;
|
|
266
|
+
}): Promise<void>;
|
|
267
|
+
/**
|
|
268
|
+
* Zoom the page
|
|
269
|
+
* @param level Zoom level (1.0 = 100%, 1.5 = 150%, 0.5 = 50%)
|
|
270
|
+
*/
|
|
271
|
+
zoom(level: number): Promise<void>;
|
|
272
|
+
/**
|
|
273
|
+
* Copy text to clipboard
|
|
274
|
+
* @param text Text to copy to clipboard
|
|
275
|
+
*/
|
|
276
|
+
copyToClipboard(text: string): Promise<void>;
|
|
277
|
+
/**
|
|
278
|
+
* Get text from clipboard
|
|
279
|
+
* @returns Text from clipboard
|
|
280
|
+
*/
|
|
281
|
+
getClipboard(): Promise<string>;
|
|
282
|
+
/**
|
|
283
|
+
* Paste text from clipboard at current focus
|
|
284
|
+
* Combines clipboard.writeText() with Ctrl+V keypress
|
|
285
|
+
* @param text Text to paste
|
|
286
|
+
*/
|
|
287
|
+
paste(text: string): Promise<void>;
|
|
288
|
+
/**
|
|
289
|
+
* Execute JavaScript code in page context
|
|
290
|
+
* Much faster than visual parsing for data extraction
|
|
291
|
+
*
|
|
292
|
+
* @param code JavaScript code to execute (string or function)
|
|
293
|
+
* @returns Result of the execution
|
|
294
|
+
*
|
|
295
|
+
* @example
|
|
296
|
+
* // Get all button texts
|
|
297
|
+
* const buttons = await executeJS(() => {
|
|
298
|
+
* return Array.from(document.querySelectorAll('button'))
|
|
299
|
+
* .map(b => b.textContent);
|
|
300
|
+
* });
|
|
301
|
+
*/
|
|
302
|
+
executeJS<T = any>(code: string | (() => T | Promise<T>)): Promise<T>;
|
|
303
|
+
/**
|
|
304
|
+
* Execute JavaScript with arguments
|
|
305
|
+
* @param fn Function to execute in page context
|
|
306
|
+
* @param args Arguments to pass to the function
|
|
307
|
+
*/
|
|
308
|
+
executeJSWithArgs<T = any>(fn: any, ...args: any[]): Promise<T>;
|
|
309
|
+
/**
|
|
310
|
+
* Get complete page state including JavaScript runtime data
|
|
311
|
+
* Much faster and more comprehensive than visual parsing
|
|
312
|
+
*/
|
|
313
|
+
getPageState(): Promise<PageState>;
|
|
314
|
+
/**
|
|
315
|
+
* Get JavaScript errors from the page
|
|
316
|
+
* Uses Chrome DevTools Protocol for deep inspection
|
|
317
|
+
*/
|
|
318
|
+
getJavaScriptErrors(): Promise<JavaScriptError[]>;
|
|
319
|
+
/**
|
|
320
|
+
* Enable Chrome DevTools Protocol for advanced debugging
|
|
321
|
+
* Returns CDP session for direct protocol access
|
|
322
|
+
*/
|
|
323
|
+
enableDevTools(): Promise<any>;
|
|
324
|
+
/**
|
|
325
|
+
* Get detailed performance metrics from browser
|
|
326
|
+
* Uses Chrome DevTools Protocol Performance domain
|
|
327
|
+
*/
|
|
328
|
+
getDetailedPerformanceMetrics(): Promise<DetailedPerformanceMetrics>;
|
|
329
|
+
/**
|
|
330
|
+
* Comprehensive parallel analysis - visual + structural + performance
|
|
331
|
+
* Runs all analysis types simultaneously for maximum speed
|
|
332
|
+
*/
|
|
333
|
+
comprehensiveAnalysis(): Promise<ComprehensiveSnapshot>;
|
|
334
|
+
/**
|
|
335
|
+
* Execute batch of interactions
|
|
336
|
+
*/
|
|
337
|
+
interactBatch(commands: InteractionCommand[]): Promise<VisualSnapshot>;
|
|
338
|
+
/**
|
|
339
|
+
* Extract structured data from page
|
|
340
|
+
*/
|
|
341
|
+
extractData(selector?: string): Promise<any>;
|
|
342
|
+
/**
|
|
343
|
+
* Get visual diff between snapshots
|
|
344
|
+
*/
|
|
345
|
+
compareSnapshots(before: VisualSnapshot, after: VisualSnapshot): Promise<{
|
|
346
|
+
imageDiff: string;
|
|
347
|
+
domDiff: string[];
|
|
348
|
+
behaviorDiff: string[];
|
|
349
|
+
}>;
|
|
350
|
+
/**
|
|
351
|
+
* Cleanup
|
|
352
|
+
*/
|
|
353
|
+
close(): Promise<void>;
|
|
354
|
+
/**
|
|
355
|
+
* Format snapshot for model consumption
|
|
356
|
+
*/
|
|
357
|
+
formatForModel(snapshot: VisualSnapshot): string;
|
|
358
|
+
/**
|
|
359
|
+
* Simplify DOM for model understanding
|
|
360
|
+
*/
|
|
361
|
+
private simplifyDOM;
|
|
362
|
+
}
|
|
363
|
+
/**
|
|
364
|
+
* Singleton instance
|
|
365
|
+
*/
|
|
366
|
+
export declare const visualBridge: VisualFeedbackBridge;
|
|
367
|
+
//# sourceMappingURL=VisualFeedbackBridge.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VisualFeedbackBridge.d.ts","sourceRoot":"","sources":["../../../src/implementations/addon/VisualFeedbackBridge.ts"],"names":[],"mappings":"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"}
|