Bridges browser-based AI chats (Claude, ChatGPT, Gemini, others) with local CLI tools like Claude Code through shared markdown control files. The Chrome extension auto-copies AI responses to clipboard, while the VS Code extension writes them to instruction files and watches for CLI state updates in real time. Works bidirectionally: AI responses flow to your CLI's instruction file, terminal output flows back to a state file you can paste into your next chat. Includes MCP tools for Claude Code CLI integration (update_state, read_instructions, get_context). Eliminates the copy-paste loop when you're bouncing between a long browser chat session and actually building in your editor. The Chrome extension works standalone if you just want cross-AI context migration without the CLI sync.
You're 30 messages deep with Claude. The plan is solid. Now you need to build it in your editor. So you copy. You paste. You lose half the context. Your editor doesn't know what Claude knows. And next time you go back to Claude, it doesn't know what your editor did.
Syncbridge fixes this — automatically, for free, no CLI required.
Every developer using AI chat faces the same daily toil:
This is the copy-paste tax. It compounds every single day.
Syncbridge eliminates it.
Built independently to solve a daily frustration. Turns out even well-funded teams with dedicated AI editors only solved half this problem. Syncbridge solves both directions — and works with every AI site, not just one editor's built-in chat.
You don't need a CLI. You don't need a paid subscription. You just need a browser.
| Who | Pain | What Syncbridge gives them |
|---|---|---|
| Developers using free AI chat | Copy-paste between browser and editor all day | Auto-copy + one-keystroke inject |
| Students and bootcamp learners | Re-explaining project context in every new chat | Context migration in one click |
| Freelancers | Losing context between client sessions | Persistent context across chats |
| Multi-model users | Switching between Claude, ChatGPT, Gemini manually | Alt+C on one, Alt+V on another |
| Claude Code / Cursor / Copilot CLI users | AI chat and CLI never in sync | Full bidirectional auto-sync |
| Cursor users | Terminal→AI exists in Cursor but AI→terminal is missing | Completes the missing direction + works with any browser AI |
| Copilot and Windsurf users | No terminal↔AI bridge at all in browser | Full bidirectional sync with any AI chat site |
| Content creators and technical writers | Copy-pasting AI drafts into editors all day | Auto-copy eliminates the switching |
| Cost-sensitive developers | Claude Code CLI too expensive | Chrome extension is completely free |
| VS Code power users | Always hunting for better AI workflow tools | Install in 30 seconds, works immediately |
Free forever. No API key. No subscription. No CLI required.
chrome://extensions → enable Developer mode → Load unpacked → select chrome-extension/ folderAlt+V on any other AI site to inject itThat's it. No VS Code extension needed. No CLI. No setup.
Chrome Web Store version coming soon.
Ctrl+Shift+A (Mac: Cmd+Shift+A) → select your project folderCtrl+Shift+E (Mac: Cmd+Shift+E) → deploy file watcher hookCtrl+Shift+S (Mac: Cmd+Shift+S) → open Syncbridge panelclaude (or your CLI) from your project folder in terminalYou're ready. Ask your AI something — Syncbridge handles the rest.
Syncbridge works in two independent layers — use one or both:
Chrome extension only — works for everyone, no CLI needed:
VS Code extension + Chrome extension — full bidirectional sync:
Supported AI chat interfaces (Chrome extension):
Supported coding CLIs (VS Code extension):





AI → CLI — Ask your AI something. Chrome extension auto-copies the response when it finishes. Press Ctrl+Shift+X (Mac: Cmd+Shift+X) in VS Code to write it to your instructions file. Run /sync in Claude Code CLI to execute.
CLI → AI — Claude Code CLI runs tasks and the hook auto-updates claude-state.md after every file write and bash command. The VS Code panel shows these updates live. Copy the state and paste into any AI chat to resume with full context.
Context migration — When your chat gets long, click ⟳ Regenerate in the Syncbridge panel. It merges your last instructions and last 10 CLI actions into a structured migration prompt. Paste into a new chat — the AI picks up exactly where you left off.
From Marketplace: Search "Syncbridge" in the Extensions panel and click Install.
From .vsix file:
code --install-extension syncbridge-0.1.0.vsix
Developer mode (available now):
chrome://extensionschrome-extension/ folderChrome Web Store: Under review — available soon.
claude mcp add syncbridge npx syncbridge-mcp
Available MCP tools:
update_state — push CLI state to Syncbridgeread_instructions — pull latest AI instructionsget_context — get full merged contextclear_state — reset state for a new session| Command | Description |
|---|---|
Syncbridge: Open Panel | Open the sync panel in column two |
Syncbridge: Send Clipboard to CLI | Write clipboard content to instructions file |
Syncbridge: Set Active Project | Set the active project folder |
Syncbridge: Setup Project | Deploy file watcher hook to current project |
Opens in VS Code's second column. Displays live contents of all three control files with:
The panel auto-refreshes whenever the state file changes on disk.
Shows last CLI action in the status bar. Click to open Claude.ai usage page.
Updates automatically when claude-state.md changes — no manual reload needed.
Syncbridge adapts control file names based on which CLI you use.
Go to VS Code Settings → search "syncbridge" → set Active CLI:
| Setting | Instructions file | State file | Context file |
|---|---|---|---|
| claudecode (default) | claude-ai.md | claude-state.md | claude-context.md |
| cursor | cursor-ai.md | cursor-state.md | cursor-context.md |
| copilot | copilot-ai.md | copilot-state.md | copilot-context.md |
| windsurf | windsurf-ai.md | windsurf-state.md | windsurf-context.md |
| aider | aider-ai.md | aider-state.md | aider-context.md |
| custom | user-defined | user-defined | user-defined |
Non-Claude Code CLIs show an amber banner in the panel — state file must be updated manually for those CLIs.
Claude.ai · ChatGPT · Google Gemini · Perplexity · Grok · Mistral · Microsoft Copilot
| Shortcut (Windows/Linux) | Shortcut (Mac) | Where | Action |
|---|---|---|---|
| Ctrl+Shift+S | Cmd+Shift+S | VS Code | Open Syncbridge panel |
| Ctrl+Shift+X | Cmd+Shift+X | VS Code | Send clipboard to instructions file |
| Ctrl+Shift+A | Cmd+Shift+A | VS Code | Set active project |
| Ctrl+Shift+E | Cmd+Shift+E | VS Code | Setup current project (deploy hook) |
| Alt+C | Option+C | Chrome | Copy AI response to clipboard |
| Alt+V | Option+V | Chrome | Inject clipboard into AI input |
To remap VS Code shortcuts:
contributes.keybindings in package.json, recompile and reinstallCtrl+K Ctrl+S (Mac: Cmd+K Cmd+S)To remap Chrome shortcuts:
Edit the keydown listener in chrome-extension/src/bot.js then reload at chrome://extensions.
All three files are created automatically in the workspace root on first activation.
File names adapt based on your activeCli setting (see above).
| File (claudecode default) | Direction | Purpose |
|---|---|---|
claude-ai.md | AI → CLI | Instructions from chat; /sync reads and executes |
claude-state.md | CLI → AI | Auto-updated by hook after every file write and bash command |
claude-context.md | Shared | Migration prompt; rebuilt by ⟳ Regenerate button |
Use when your chat gets too long or context drifts.

Steps:
claude-context.md contentsWhen to use:
The hook is configured in .claude/settings.json and fires automatically after every file write and bash command by Claude Code CLI.
Deploy to a project: Press Ctrl+Shift+E (Mac: Cmd+Shift+E) in VS Code.
To copy manually to another project:
cp .claude/settings.json <project>/.claude/
Hook captures:
✓ HH:MM:SS wrote <file_path>
✓ HH:MM:SS ran: <command>
When workspace has multiple root folders, active root resolves in this order:
Ctrl+Shift+A (Mac: Cmd+Shift+A)Tests live in src/test/extension.test.ts — 7 deterministic tests covering control file creation, write stability, append ordering, context regeneration, and extension activation.
To run: click the beaker icon (Testing) in VS Code sidebar → press ▷ Run All Tests.
All tests must pass before packaging.
Built using VS Code Extension API + Claude Code CLI with a deterministic SEP-based workflow.
Repository: https://github.com/rehmansherazi/syncbridge
Ctrl+Shift+E (Mac: Cmd+Shift+E)Syncbridge does not collect, transmit, or store any user data on external servers.
For questions: mrsherazi@hotmail.com
io.github.mindstone/mcp-server-microsoft-teams
helbertparanhos/resend-email-mcp
marlinjai/email-mcp
io.github.mindstone/mcp-server-email-imap
io.github.osamahassouna/email-playbook-mcp
gongrzhe/gmail-mcp-server