Files
cline/src/core/controller/browser/getDetectedChromePath.ts
T
Dominic Cooney dbd8604bd4 phase 0: remove browser automation, shadow git checkpoints, focus chain, deep planning, /reportbug
Removed implementations and replaced with no-op stubs:
- Browser automation (BrowserSession, BrowserDiscovery, BrowserToolHandler)
- Shadow git checkpoints (CheckpointTracker, factory, initializer, etc.)
- Focus chain (FocusChainManager, tool variants)
- Deep planning (/deep-planning slash command)
- /reportbug slash command
- Go CLI artifacts (go.work.sum)

~15,500 lines deleted across 88 files. Build and type-check pass.
Debug harness is unaffected.
2026-04-10 19:09:21 +09:00

8 lines
352 B
TypeScript

// Browser automation has been removed. Stub for generated protobus compatibility.
import { Controller } from "../index"
// biome-ignore lint/suspicious/noExplicitAny: stub for removed feature
export async function getDetectedChromePath(_controller: Controller, _request: any): Promise<any> {
throw new Error("Browser automation has been removed")
}