← Back to home

Claude Code and Claude Cowork Together

March 4, 2026·4 min read

Last night I accidentally built something that kind of blew my mind. I got two AI agents to collaborate on building software, and I just watched.

Let me back up.

I use two Claude-powered tools every day. The first is Cowork, Claude's desktop app. I brainstorm with it, plan features, talk through architecture. It can browse the web, read my files, control Chrome, manage my calendar. It's my thinking partner. The second is Claude Code, a terminal-based coding agent. It writes code, runs commands, deploys to production. It's my execution engine.

The problem is they don't know each other exists. Every time I'd finish planning something in Cowork, I'd have to copy the plan, switch terminals, paste it into Claude Code, and manually kick things off. I was the middleman between two AIs that could've been doing this on their own.

So I connected them.

The setup is ridiculously simple. Cowork and I plan something together, and when I'm ready I tell Cowork to send it to Claude Code. Cowork writes the full plan to a shared folder as a task file. A watcher script I wrote detects the new file and pipes the content directly into a live Claude Code session running in tmux. Claude Code picks it up and starts building. Writing files, running commands, installing packages, deploying. I watch it happen in real time from another terminal tab. Or I go make food. Either way.

The whole bridge is about 100 lines of bash. No frameworks. No APIs. Just a folder, a file watcher, and tmux send-keys. That's it. That's the entire infrastructure.

To prove it worked I had Cowork plan my entire personal website from scratch. We talked through everything. Dark techy aesthetic, live stock charts for my portfolio, Spotify integration showing what I'm currently listening to, a chess section pulling my live ratings, and a blog system. I said "send it." Fourteen minutes later it was live on Cloudflare Pages. Working stock data. Working Spotify. Private GitHub repo. Everything.

Then I said "the portfolio calculations are wrong, fix it." Cowork wrote the fix, sent it through the bridge, Claude Code patched it and redeployed. Same session. No restart. No re-explaining context.

I kept going. Fixed mobile responsiveness. Added my chess ratings. Set up a contact page. Each task went through the bridge into the same persistent Claude Code session. It just kept building.

If you want to try this yourself, here's what you need. macOS or Linux will work out of the box since tmux runs natively on both. If you're on a Mac it's just brew install tmux. Windows doesn't support tmux natively, but it works perfectly through WSL, and if you're a developer on Windows you probably already have that set up. Beyond that you just need Claude Code running in your terminal, access to Cowork, and enough bash knowledge to write a script that watches a folder and runs a command. Ten minutes of setup, honestly.

But the bridge by itself isn't what made me realize this is more than a cool hack. What made it click is what Cowork can do that Claude Code can't. Cowork can control Chrome. That means it can actually open the site Claude Code just deployed, click through it, spot bugs visually, and write up exactly what's broken. Then it sends that back through the bridge and Claude Code fixes and redeploys instantly.

You end up with a full loop. Plan, build, deploy, test, fix, redeploy. The human involvement is basically just saying "go."

That's not two tools anymore. That's a team.

I think this is a pattern we're going to see a lot more of. AI agents orchestrating other AI agents, with humans setting direction instead of doing labor. Cowork is great at thinking. Claude Code is great at doing. Connected, they cover the full loop from "what should we build" to "it's live" without me being the bottleneck in between.

And the wildest part is how little infrastructure it took. A shared folder and a bash script created a legitimate multi-agent workflow. No complex orchestration framework. No custom API integration. That tells me we're way closer to this being normal than most people realize.

The bridge is primitive. It's duct tape. But duct tape that works is still a bridge.

Stop being the middleman. Let them talk.