Files
brother7 e97a7ce9df feat: 增加共享 Agent Browser 调试能力
需求:在 AI 编程会话中让用户与 Agent 共享同一浏览器页面,并查看控制台与网络信息。

实现:新增沙箱浏览器内核、Host API/渲染器面板、OpenCode 工具接入及安全边界测试。
2026-07-31 14:53:36 +08:00

27 lines
821 B
TypeScript

export type {
AgentBrowserAdapter,
AgentBrowserDebuggerPort,
AgentBrowserNavigationPort,
AgentBrowserViewPort,
AgentBrowserWebContentsPort,
} from './adapter';
export { AgentBrowserCdpGuard } from './cdp-guard';
export { ElectronAgentBrowserAdapter } from './electron-adapter';
export { AgentBrowserEventBuffer } from './event-buffer';
export { AgentBrowserFault } from './fault';
export {
AgentBrowserModule,
agentBrowserPartition,
} from './module';
export type {
AgentBrowserModuleOptions,
AgentBrowserNavigateInput,
AgentBrowserOpenInput,
AgentBrowserPresentInput,
AgentBrowserReadEventsInput,
AgentBrowserReadPayloadInput,
AgentBrowserSendCdpInput,
} from './module';
export { AgentBrowserPayloadStore } from './payload-store';
export type { PayloadStoreOptions } from './payload-store';