NEW โ€” The coordination layer for AI agents working together

Git solved source control.
Traffic Cop solves AI coordination.

Claude doesn't know what other Claude sessions are doing. Traffic Cop is the shared brain that tells every AI agent what's locked, what's building, and what's safe to touch โ€” so they can work together without stepping on each other's files.

Get started free
๐Ÿ”’
File Locks
checkout / checkin
๐Ÿ”จ
Build Slots
iOS ยท APK ยท Web
๐ŸŸข
Go / Hold Signal
safe to build
๐Ÿค
Auto Handoff
lock granted when free

Traffic Cop exists because AI can now work with AI.

You can have five Claude sessions open at once, each working a different part of your codebase. That's powerful โ€” until two of them touch the same file, or both try to kick off a build at the same moment. They have no awareness of each other. Traffic Cop gives them that awareness. It's not a tool for developers to manage AI. It's a tool for AI to manage itself.

๐Ÿง 
Shared state
Every Claude session can see who has what locked and what builds are in flight.
๐Ÿšฆ
Clear signals
Each agent gets a green or red light before touching any shared resource โ€” no guessing.
๐Ÿค
Automatic handoff
When a session finishes, the lock is handed directly to the next AI waiting in line.

Multi-agent development is a mess without coordination

AI coding tools are powerful individually. Together, without coordination, they create new classes of failures.

๐Ÿ’ฅ

Duplicate build numbers

Two Claude sessions both bump the iOS build number at the same time. TestFlight rejects both.

โ†’ Wasted 25-minute build, rejected by Apple
๐Ÿ”‘

Keystore corruption

Two APK build processes access the Android signing keystore simultaneously. Both APKs come out invalid.

โ†’ Neither APK can be installed
โœ๏ธ

Mid-build edits

Agent A edits a native module while Agent B's iOS build is running. The build picks up half-written code.

โ†’ Corrupt IPA, broken build
๐Ÿ‘ป

Orphaned locks

A Claude session crashes mid-checkout. The files stay locked forever โ€” until someone manually cleans up.

โ†’ Team blocked indefinitely
โ“

No visibility

"Is anyone building right now?" โ€” nobody knows. Each AI session is an island.

โ†’ Race conditions, lost work
๐Ÿงฑ

Blocks with no path forward

AI sessions get a "file locked" error and stop cold. There's no queue, no ETA, no handoff โ€” just a wall with no way around it.

โ†’ Sessions stall indefinitely waiting for manual cleanup

Three pieces. Always on.

Install once, forget it's there โ€” until it saves your build.

1

MCP Server

Runs as a Windows service in the background. Maintains the source of truth for all locks and builds via SQLite. Connects to Claude via MCP protocol.

2

Cowork Skill

A free .skill file for Claude/Cowork. Automatically checks the cop before every checkout or build โ€” no manual step required.

3

๐ŸŸข or ๐Ÿ”ด Signal

Every session gets a clear green or red signal. When blocked, AI explains why, gives an ETA, and suggests what to work on instead.

4

Auto-cleanup

Stale locks from crashed sessions are automatically released after 30 minutes. No manual intervention needed.

Example: Claude asks to check out files
// Agent calls tc_checkout before editing
tc_checkout({
  session_id: "sess_abc123",
  files: "ios/, app.json, eas.json",
  purpose: "Fix push notification entitlements"
})

// Cop responds
{
  status: "APPROVED",
  expires_at: "2:45 PM",
  message: "๐ŸŸข 3 files locked for 60 minutes. Remember to tc_checkin when done."
}

// Meanwhile, another agent tries to build iOS...
tc_request_build({ build_type: "ios" })

{
  status: "CONFLICTS",
  conflicts: [{ file: "ios/", session: "Claude Chat A", held_for: "3m" }],
  advice: "๐ŸŸก ios/ is checked out by Claude Chat A. Ask them to checkin first."
}

Everything a development team needs

๐Ÿ”’

Smart file checkout

Lock any file or directory before editing. Conflict detection is instant. Locks auto-expire so your team never stays blocked.

๐Ÿ—๏ธ

Build-aware locking

iOS, APK, and web builds each know which files they need. The cop automatically blocks checkouts that would corrupt a running build.

๐Ÿค

Automatic lock handoff

Blocked sessions queue automatically. The moment the holding session checks in, the lock is handed directly to the next agent waiting โ€” no polling, no manual retry. Claude sees exactly who has the file, what they're doing with it, and gets the grant notification the instant it's ready.

๐Ÿ’“

Heartbeat & stale detection

Sessions send heartbeats to stay alive. If a session dies, the cop detects it and auto-releases its locks after a configurable timeout.

๐Ÿ“Š

Live status dashboard

Any session can call tc_get_status to see all active locks, running builds, and recent build history โ€” across the whole team.

๐Ÿ›ก๏ธ

Protected binary

The server ships as a compiled Go binary โ€” no source code in your hands. Licensed with Ed25519 cryptographic keys, not serial numbers.

๐Ÿ”ง

Windows service

One installer script sets up the server as a Windows service that starts automatically and restarts on failure. Works silently in the background.

๐ŸŒ

Cross-platform server

Binaries for Windows, macOS, and Linux. Any machine on the team can run the server โ€” or connect as a client.

๐Ÿ“ก

WAN relay (LAN + WAN tier)

Remote and distributed teams coordinate across networks via an encrypted relay. No VPN required โ€” just connect and the cop handles the rest.

๐Ÿ†“

Free skill layer

The Cowork skill is open source and free forever. The server is what requires a license โ€” the client never has a paywall.

Pay per computer. Simple.

Every machine connected to Traffic Cop is one seat. The skill is always free โ€” only the coordination server requires a license.

Free
$0
1 computer
Solo developer, single machine. Multiple Claude chats, one project.
  • โœ“ 1 connected computer
  • โœ“ File checkout / checkin
  • โœ“ Build slot coordination
  • โœ“ Stale lock auto-cleanup
  • โ€“ LAN team sync
  • โ€“ WAN / remote relay
Download Free
LAN Team
$9/computer/mo
Same network ยท scales with team
Co-located team on the same network. Pay only for computers actively connected.
  • โœ“ Unlimited computers
  • โœ“ Full LAN coordination
  • โœ“ iOS ยท APK ยท Web builds
  • โœ“ Audit log
  • โœ“ Multi-project support
  • โ€“ WAN / remote relay
Get LAN Team
LAN + WAN
$14/computer/mo
Remote ยท distributed ยท cross-network
Everything in LAN Team, plus encrypted relay so remote developers coordinate across networks.
  • โœ“ Unlimited computers
  • โœ“ Full LAN coordination
  • โœ“ iOS ยท APK ยท Web builds
  • โœ“ Audit log
  • โœ“ Multi-project support
  • โœ“ WAN relay included
Get LAN + WAN

Need more than 20 computers or a custom deployment? Contact us for enterprise pricing.