Files
openclaw/src/plugin-sdk/proxy-capture.ts
Tak Hoffman 958c34e82c feat(qa-lab): Add proxy capture stack and QA Lab inspector (#64895)
* Add proxy capture core and CLI

* Expand transport capture coverage

* Add QA Lab capture backend

* Refine QA Lab capture UI

* Fix proxy capture review feedback

* Fix proxy run cleanup and TTS capture

* Fix proxy capture transport follow-ups

* Fix debug proxy CONNECT target parsing

* Harden QA Lab asset path containment
2026-04-11 12:34:57 -05:00

21 lines
513 B
TypeScript

export {
createDebugProxyWebSocketAgent,
resolveDebugProxySettings,
resolveEffectiveDebugProxyUrl,
} from "../proxy-capture/env.js";
export {
DebugProxyCaptureStore,
getDebugProxyCaptureStore,
} from "../proxy-capture/store.sqlite.js";
export {
captureHttpExchange,
captureWsEvent,
isDebugProxyGlobalFetchPatchInstalled,
} from "../proxy-capture/runtime.js";
export type {
CaptureEventRecord,
CaptureQueryPreset,
CaptureQueryRow,
CaptureSessionSummary,
} from "../proxy-capture/types.js";