mirror of
https://github.com/cline/cline.git
synced 2026-09-19 02:05:44 +08:00
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.
8 lines
352 B
TypeScript
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")
|
|
}
|