Cline
An AI agent inside the editor you already use.
What it is
Cline is an open-source coding agent that runs inside VS Code (and JetBrains). Its Plan / Act workflow shows you a plan, waits for approval, then makes changes as inline diffs you review line by line.
It is the gentlest on-ramp if you are new to agentic coding — you watch every edit before it lands.
Cline now also ships an open-source SDK and a CLI, so the same agent can run headless in scripts and CI — not just inside the editor.
Install & set up
Open the Extensions panel in VS Code, search 'Cline', and install.
code --install-extension saoudrizwan.claude-devCline now has an open-source CLI and SDK for headless and CI runs. Install it globally with npm.
npm install -g @cline/cliOpen Cline, pick a provider (e.g. Anthropic), and paste your key. To use a Claude subscription instead of pay-as-you-go, use Claude Code.
Describe the task; Cline proposes a plan. Read it, refine it, approve it.
Cline makes changes as inline diffs. Approve or reject each one — this is your Inspect step.
From install to your first verified proof
The tool drafts; you stay accountable. Here is the path from a fresh install to a proof you can defend.
Strengths & gotchas
Strengths
- See and approve every change before it lands
- Lives in your existing editor
- Now ships an open-source SDK + CLI for headless and CI runs
- Plan-then-Act keeps you in control
- Great for learning what the AI is actually doing
Gotchas
- BYOK — you pay per token in USD
- To use a Claude subscription you need Claude Code
- Requires VS Code or JetBrains