Add cowork-to-code-bridge skill — async bridge from Cowork/agents to Claude Code on local machine#1117
Open
Abhinay G (abhinaykrupa) wants to merge 1 commit into
Conversation
…Claude Code on local machine Adds a new skill that lets Claude Cowork sessions and agent frameworks (CrewAI, AutoGen, LlamaIndex, LiteLLM, Hermes, n8n) queue tasks to Claude Code running on a developer's local machine and retrieve results through a shared async RPC bridge. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What it does
cowork-to-code-bridge is an async file-based RPC bridge that connects Claude Cowork sessions and AI agent frameworks to Claude Code running on a developer's local machine. A local daemon watches a bind-mounted bridge directory, executes queued tasks (shell commands, tool calls, test runs, deploys), and returns results — no webhooks, no VPS required.
Why it's useful
Cloud AI sandboxes (including Claude Cowork) are intentionally isolated — they can't reach
localhost, mount local filesystems, or run arbitrary binaries on your machine. This creates a hard gap between powerful cloud orchestration and the local environment where actual development happens.cowork-to-code-bridge fills that gap:
queue_task()orcall_remote()with idempotency keysFramework compatibility
Works as an MCP server or direct Python client with:
Details
brew tap abhinaykrupa/tap && brew install cowork-to-code-bridgeor curl install script🤖 Generated with Claude Code