Claude Vs Ext Web
Description
Web-based Claude Code interface - Run VSCode Claude Code extension in browser
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
claude-vs-ext-web — Web-Based Claude Code
[English](README.md) | [简体中文](README.zh-CN.md)
A standalone web interface for [Claude Code](https://claude.ai/code) that runs in any modern browser. claude-vs-ext-web reuses the official VSCode Claude Code extension's React chat UI through a custom shim layer, with a Node.js backend managing `claude` processes via WebSocket.
Screenshots
![]() |
![]() |
How It Works
graph TB
subgraph Browser
A[VSCode Extension Webview
React, unmodified]
B[shim.js
replaces acquireVsCodeApi with WS]
A --> B
end
subgraph "Node.js Server"
C[Express + WebSocket Server]
D[Routes API]
E[Message Handler]
F[Session Manager]
G[claude binary
stream-json protocol]
C --> D
C --> E
E --> F
F -->|stdin/stdout| G
end
B -->|WebSocket /ws| C
**Key Insight**: Instead of rebuilding the chat UI from scratch, claude-vs-ext-web serves the extension's original webview files and injects a shim that replaces VSCode's `acquireVsCodeApi()` with a WebSocket bridge. The extension's React app works unmodified in the browser.
Features
- Full Claude Code Chat UI — The same React-based interface from the VSCode extension
- Project Discovery — Auto-discovers projects from
~/.claude/projects/session history - Session Resume — Resume previous conversations from saved history
- Permission Control — Tool permission request/response flow with user approval
- Model Selection — Switch between Claude models (Sonnet, Opus, etc.)
- Theme Switching — GitHub Dark / GitHub Light themes, persisted in localStorage
- Multi-Session — Each project gets its own isolated
claudeproces
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11

