Files
cline/sdk/apps/examples/vscode
BeeandSaoud Rizwan fad8271f41 feat: Cline Hub web app (#10969)
* feat: Cline Hub web app

Add a Cline Hub app for monitoring connected clients, viewing and driving sessions, streaming assistant output, and restarting the local hub. Document local, LAN, and tunnel usage with room-secret gating, ignore generated Cline cache/config data, and update lockfile entries.

* feat: Cline Hub UI

* feat: provider config schema

* run command update

* Use Workspace versions

* fix: rename routines to schedules

* feat(schedule): add routine summary and update support

Include last execution data in routine schedule overviews and cache the
summary state in the UI to reduce unnecessary reloads.

Add support for updating routine schedules from the hub server, validate
required fields, and trigger schedules asynchronously after confirming they
exist.

* UI for Connectors

* Fix UI switch for telemetryOptOut

* Expands Recent Sessions UI - allow title update

* feat: Cline Hub routes

* Add "health" and "version" routes

* Refactor server.ts nto 17 focused modules

* Provider Model list search box

* Extensions -> Customizations

* fix: restore discord connector catalog

* fix

---------

Co-authored-by: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com>
2026-05-29 11:25:50 -07:00
..
2026-05-29 11:25:50 -07:00
2026-05-12 21:53:13 -03:00
2026-05-12 11:32:20 -07:00

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

  • cline must already be installed and available on PATH.
  • 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:

  1. Build the extension: bun -F @cline/vscode build.
  2. Open apps/examples/vscode in VS Code.
  3. Press F5 to launch the Extension Development Host.
  4. Run command Cline: Open Chat in Editor.