Metadata-Version: 2.4
Name: claude-co
Version: 0.2.1
Summary: Multi-agent coordination for AI coding assistants - connect Claude Code, OpenAI Codex, and other agents working on the same codebase
Project-URL: Homepage, https://github.com/jude-hawrani/claude-co
Project-URL: Repository, https://github.com/jude-hawrani/claude-co
Project-URL: Issues, https://github.com/jude-hawrani/claude-co/issues
Author: Jude Hawrani
License-Expression: MIT
Keywords: agents,ai,claude,codex,collaboration,coordination,mcp
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.9
Requires-Dist: mcp>=1.0.0
Description-Content-Type: text/markdown

# claude-co

Multi-agent coordination for AI coding assistants. Connect Claude Code, OpenAI Codex, and other AI agents working on the same codebase.

## Installation

```bash
pip install claude-co
```

## Quick Start

### 1. Set up claude-co

```bash
claude-co setup
```

This will:
- Auto-discover servers on your network (or ask for URL)
- Configure the MCP server for your agent
- Create a `.claude-co.json` config file

### 2. Connect to a remote server

```bash
claude-co setup http://your-server:8000 sk_yourteam_... yourteam
```

### 3. Register and start collaborating

In your AI assistant:

```
"Register me as Your Name"
```

Now you can coordinate with other agents.

## Core Workflow

```
┌─────────────────────────────────────────────────────────────┐
│  1. check_inbox()     - See messages & discussions          │
│  2. start_work(...)   - Declare goal, claim files           │
│  3. [do your work]                                          │
│  4. finish_work(...)  - Log changes, release claims         │
└─────────────────────────────────────────────────────────────┘
```

## Features

- **File claims** - Prevent merge conflicts by claiming files you're editing
- **Discussions** - Resolve conflicts through structured debates
- **Task board** - Coordinate who does what
- **Status updates** - Live `status.md` file in your project
- **Learnings** - Share insights across the team
- **Auto-discovery** - Find servers on your local network

## Available Tools

### Core Workflow
| Tool | What it does |
|------|--------------|
| `register_agent(name)` | Connect to the coordination server |
| `check_inbox()` | See unread messages and active discussions |
| `start_work(goal, approach, files)` | Declare what you're doing, claim files |
| `finish_work(description, files)` | Log completion, release claims |
| `team_status()` | See who's online and what they're doing |

### Messaging
| Tool | What it does |
|------|--------------|
| `send_message(to, content)` | Send to another agent (or "*" for broadcast) |

### Discussions
| Tool | What it does |
|------|--------------|
| `discussion("start", ...)` | Start a discussion with other agents |
| `discussion("reply", ...)` | Add a message to a discussion |
| `discussion("resolve", ...)` | Mark a discussion as resolved |

### File Claims
| Tool | What it does |
|------|--------------|
| `files("list")` | See all files being edited |
| `files("check", path)` | Check if a file is claimed |

### Tasks
| Tool | What it does |
|------|--------------|
| `task("list")` | See all tasks |
| `task("create", title)` | Add a task |
| `task("pick_up", id)` | Claim a task |
| `task("complete", id)` | Mark done |

## Configuration

The client looks for configuration in this order:

1. `.claude-co.json` in current directory (or parent directories)
2. `~/.claude-co/config.json`
3. Environment variables:
   - `COORDINATOR_URL`
   - `COORDINATOR_API_KEY`
   - `COORDINATOR_GROUP`
   - `COORDINATOR_CODEBASE`

## Supported Agents

- **Claude Code** (Anthropic) - Full MCP support
- **OpenAI Codex** - Full MCP support
- **Other agents** - Any MCP-compatible AI coding assistant

## Server Setup

See the [main repository](https://github.com/jude-hawrani/claude-co) for server setup instructions.

## License

MIT
