mirror of
https://github.com/cline/cline.git
synced 2026-09-21 05:10:09 +08:00
* feat(branding): add canonical Cline logo assets * feat(vscode): refresh extension logo surfaces * feat(web): update Hub and example branding * docs: update Mintlify branding assets * build(brand): lock asset generator tooling * chore(branding): limit logo refresh to assets and required wiring * fix(vscode): restore accessible logo names * fix(branding): retain favicon contrast in dark browser tabs * [2/3] Refresh desktop logo assets (#13966) * chore(desktop): refresh native logo assets * chore(menubar): refresh native logo assets (#13967) part of logo migration * docs: use latest adjusted navigation logo * fix(hub): keep favicon visible in dark browser tabs Point the Hub favicon at the dedicated favicon.svg and give it the same prefers-color-scheme fallback as the example app. cline-logo-filled.svg stays untouched since the sidebar renders it with dark:invert. Co-authored-by: Saoud Rizwan <saoudrizwan@users.noreply.github.com> --------- Co-authored-by: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com> Co-authored-by: Saoud Rizwan <saoudrizwan@users.noreply.github.com>
apps/examples/vscode (@cline/vscode)
VS Code extension that opens a chat webview and runs Cline sessions over the RPC runtime.
What it does
- Opens a webview panel via
Cline: Open Chat in Editor. - Ensures a compatible owner-scoped RPC sidecar by running
cline rpc ensure --json. - Starts/sends/aborts chat turns using RPC runtime methods (
StartRuntimeSession,SendRuntimeSession,AbortRuntimeSession). - Streams runtime events into the webview for incremental assistant output.
Requirements
clinemust already be installed and available onPATH.- A provider/model should be configured in Cline provider settings.
Development
# Build extension bundle
bun -F @cline/vscode build
# Typecheck
bun -F @cline/vscode typecheck
To run locally in VS Code:
- Build the extension:
bun -F @cline/vscode build. - Open
apps/examples/vscodein VS Code. - Press
F5to launch the Extension Development Host. - Run command
Cline: Open Chat in Editor.