docs/getting-started/installing-cline.mdx
@cline/sdkUse this if you want Cline inside your editor UI.
<Tabs> <Tab title="VS Code / Cursor / Windsurf / VSCodium / Antigravity"> <Steps> <Step title="Open Extensions"> Press `Ctrl/Cmd + Shift + X`. </Step> <Step title="Search for Cline"> Type `Cline`. </Step> <Step title="Install"> Click **Install** on the Cline extension. </Step> <Step title="Open Cline"> Use the Cline activity bar icon, or run `Cline: Open In New Tab` from Command Palette. </Step> <Step title="Authorize with Cline"> After installing the extension, complete provider setup in Cline settings. [Authorize with Cline](/getting-started/authorizing-with-cline)
</Step>
</Steps>
<Note>
Windsurf and VSCodium use Open VSX. The install flow is the same.
</Note>
[Authorize with Cline](/getting-started/authorizing-with-cline)
</Step>
</Steps>
Alternative: install from the [JetBrains Marketplace](https://plugins.jetbrains.com/plugin/28247-cline).
Use this if you want Cline in terminal workflows (interactive + automation).
<Steps> <Step title="Install Node.js"> Install Node.js 20+ (22 recommended). </Step> <Step title="Install CLI"> ```bash npm install -g cline ``` </Step> <Step title="Authenticate"> ```bash cline auth ``` </Step> <Step title="Run Cline"> ```bash cline # or cline "your task" ``` </Step> </Steps>More details: CLI Installation & Setup
Use this if you want task-board workflows with agent execution.
<Steps> <Step title="Install Node.js"> Install Node.js 18+. </Step> <Step title="Launch Kanban"> ```bash npx kanban ``` </Step> </Steps>More details: Kanban
Use this if you are building your own app/agent on top of Cline.
<Steps> <Step title="Create project"> ```bash mkdir my-agent && cd my-agent npm init -y ``` </Step> <Step title="Install SDK"> ```bash npm install @cline/sdk ``` </Step> <Step title="Build and run"> Browse SDK examples to run your first agent. </Step> </Steps>Start here: SDK Examples