mirror of
https://github.com/cline/cline.git
synced 2026-09-21 05:10:09 +08:00
Delete the HTTP-controlled debug harness (src/dev/debug-harness/) and the local MCP OAuth fixture server (src/dev/mcp-oauth-test-server/) plus its package.json script. Neither is referenced by the extension bundle (esbuild excludes src/dev/), by tests, by tsconfig, or by CI — verified there are zero imports of either module anywhere in the codebase. The only touchpoints are env-var-gated runtime hooks in src/utils/env.ts (CLINE_CAPTURE_BROWSER / CLINE_DEBUG_HARNESS_PORT) and src/extension.ts (globalThis.__clineHandleUri, registered only when CLINE_CAPTURE_BROWSER is set). These are pure process.env reads with no import of the harness code and self-disable in production, so they are left intact for local testing. This lessens the SDK-migration review burden by ~3.1K lines of dev-only tooling. The harnesses can be restored locally from history as needed.
The file is empty.