Self-hosted infrastructure that provisions isolated workspaces, clones GitHub repos, and launches external coding agents (Claude Code CLI) — streaming their stdout as agent.output SSE events. Not an orchestrator: no tool-call parsing, no conversation loop.
Project description
Mad
That's mad!
[!WARNING]
mad-brosis deprecated — the distribution has been renamed tomad-edge. This is the final release published under themad-brosname; no further versions will ship here. Installmad-edgeinstead (pip install mad-edge). The import package remainsmad; starting withmad-edge0.6.0 the console script ismad-edge(mad-edge serve), and themadcommand belongs to the newmad-clioperator tool.
Multi Agent Develop — self-hosted infrastructure for delegating coding work to external agents and walking away. Queue tasks per session, chain sessions into a validated DAG workflow (depends_on, including cross-repo handoff where a later step checks out the exact branch/commit an earlier step produced), and confine runs to the hours and days you choose (WorkWindowPolicy, timezone-aware). Hit a Claude Pro/Max rate limit and Mad waits until the window resets and resumes the same conversation — reusing capacity you have already paid for instead of failing. Every run closes with an auto-sync step that attempts branch → commit → push → open a PR with the result.
Under the hood Mad provisions isolated workspaces, clones a GitHub repository, and launches an external coding agent (Claude Code CLI today) against it. Each agent's stdout is streamed as agent.output Server-Sent Events on a per-session log, and a final session.status_idle (or session.error) event signals completion.
The core stays pure infrastructure; orchestration is a real, shipping layer on top of it. Mad itself does NOT parse tool calls, NOT execute tools, and NOT manage a conversation loop — those concerns belong to the external agent's own harness. It uses Claude Code / Codex / opencode; it never runs the agent's reasoning loop. Sessions run in parallel, each with its own agent process and event stream, and the workflow layer coordinates them by git branch/commit handoff — not by richer shared state.
The full scope contract lives in CLAUDE.md ("What this project is" + hard rule 1).
Status
Early days — 0.x. Single launcher provider (claude_cli); HTTP + SSE surface stable enough to build clients against; multi-tenancy deferred (ADR-0006).
Requirements
- Linux host (see
Operating System :: POSIX :: Linuxclassifier) - Python ≥ 3.11
- The
claudeCLI installed and onPATH(override the binary withMAD_CLAUDE_CLI_BIN) - Optionally: the
opencodeCLI for theopencodeprovider (override the binary withMAD_OPENCODE_BIN) - Launcher timeout is agent-agnostic: set
MAD_AGENT_TIMEOUT_S(default 600 s) for the operator-wide default, or passtimeout_sonPOST /v1/sessionsto override it per session (resolution: per-sessiontimeout_s>MAD_AGENT_TIMEOUT_S> 600 s) - A GitHub token with
reposcope for cloning private repos (passed per-request, never persisted — see hard rule 2) - Session workspaces are created under
~/madby default. Override the base directory withMAD_WORKSPACE_DIR(used verbatim — no~/$VARexpansion) when you need a larger or persistent disk; resolution isMAD_WORKSPACE_DIR→~/mad→ the system temp dir (last resort, only if the home directory cannot be resolved). The base is created on first use. - Session JSONL logs (the source of truth, hard rule 6) are written under
./sessionsby default. Override the directory withMAD_SESSIONS_DIR(used verbatim — no~/$VARexpansion) when you need a persistent or shared disk; an unset or blank value falls back to./sessions. The directory is created on first write. - Per-session JSONL event logs (
sessions/) are kept forever by default. SetMAD_SESSIONS_RETENTION_DAYSto a positive integer to enable TTL retention: at startup Mad purges any session log whose last event is older than that many days. Unset,0, or a negative/non-integer value disables purging (keep forever — the safe default, no behavior change).
Install
The distribution is published as mad-bros; the import package and console script are both mad:
pip install mad-bros
mad serve # uvicorn factory on 0.0.0.0:8000 by default
From a checkout (development):
make install # create venv + `pip install -e '.[dev]'`
make test # pytest -q
make serve # uvicorn mad.adapters.inbound.http.app:create_app --factory
make help # full target list
With Docker (one or more isolated instances on a single host):
cp .env.example .env
docker compose -f compose.example.yml up -d --build
See docs/05-operations/runbooks/docker.md for per-instance credential setup, the
workspace bind-mount model, and running multiple instances.
Quickstart
A session has two parts: an agent spec (which launcher to run) and a list of resources to mount into the isolated workspace. Resources can be github_repository (cloned into mount_path) or file (literal content written at mount_path). The prompt is sent as a separate message after creation; that's what kicks the agent off.
# 1. Create the session — provisions a workspace and clones the repo.
curl -sS -X POST http://localhost:8000/v1/sessions \
-H 'Content-Type: application/json' \
-d '{
"agent": {
"name": "my-agent",
"provider": "claude_cli"
},
"resources": [
{
"type": "github_repository",
"url": "https://github.com/octocat/Hello-World.git",
"mount_path": "/workspace/repo",
"checkout": {"type": "branch", "name": "main"}
}
]
}'
# → { "session_id": "sesn_…", "status": "created", "workspace": "…", "resources_mounted": […] }
# 2. Send the first user message — this launches the external agent.
curl -sS -X POST http://localhost:8000/v1/sessions/sesn_XXX/messages \
-H 'Content-Type: application/json' \
-d '{"content": "Summarize the README in one sentence."}'
# 3. Stream the cross-session event log (Last-Event-ID resumable per ADR-0005).
curl -N http://localhost:8000/v1/events/stream
# Optional filters: ?session_id=sesn_XXX&kind=agent.output
Each frame on the stream is id: <uuidv7>\ndata: {…}\n\n where the JSON object carries event_id, session_id, type, data, and timestamp. Representative types Mad emits:
| Type | Emitted when |
|---|---|
session.created |
Session row written and workspace provisioned |
agent.output |
One line of stdout from the external agent |
session.status_idle |
Agent exited 0 |
session.error |
Agent exited non-zero or timed out |
For private repos, configure the clone credential on the host where Mad runs via the standard GITHUB_TOKEN (or its GH_TOKEN alias) environment variable — not in the request body. Mad reads it at clone time, uses it once for git clone, and immediately strips it from the remote URL (hard rule 2). The inline authorization_token field on the github_repository resource is deprecated (removal target v0.6.0) and emits a deprecation warning when supplied; prefer the host env var. For historical replay outside SSE, GET /v1/events?after_event_id=…&limit=… returns the same shape with a next_cursor.
Project structure
The package follows a hexagonal / ports-and-adapters layout — see ADR-0003 for the rationale.
mad/
├── pyproject.toml # package metadata, deps, `mad` console script
├── src/mad/
│ ├── core/ # framework-free domain (no FastAPI, no subprocess)
│ │ ├── sessions/ # sessions bounded context (domain, ports, use_cases)
│ │ └── events/ # cross-session events (domain, ports, use_cases, emitter)
│ ├── adapters/
│ │ ├── inbound/http/ # FastAPI app factory + routes (sessions, events stream)
│ │ └── outbound/ # agents (claude_cli launcher), persistence (JSONL), events
│ └── entry_points/cli.py # `mad` console script (uvicorn launcher)
└── tests/
├── unit/ # core + adapters in isolation
├── integration/ # HTTP + SSE end-to-end
└── support/ # test-only doubles (e.g. ScriptedLauncher)
The architectural boundary (mad.core is framework-free and adapter-free) is enforced by import-linter — see hard rule 4 in CLAUDE.md.
Vision
Mad already uses this infrastructure as the substrate for multi-agent workflows: you chain sessions into a validated DAG with depends_on, hand off work across repositories by branch and commit, prioritize across a global queue, and confine runs to a scheduling window — all backed by a complete, append-only event log (JSONL) that records both successes and failures and is queryable over HTTP, SSE, and MCP. The "Multi Agent Develop — takes an idea and ships it end-to-end" framing is a current capability, not a promise for later: the workflow layer ships today.
The core package stays a pure infrastructure layer; orchestration lives as a real, shipping layer on top of it, never inside the substrate. What is still deferred is worth naming honestly: the handoff between steps is git branch/commit only (not richer shared collaboration), and the closing auto-sync step always attempts to open a PR but does not itself guarantee or verify one. Running one isolated Mad instance per stage — plan, dev, review, docs, release — is a pattern you can compose today, not a built-in pipeline.
Documentation
docs/adr/— Architecture Decision Records (start atREADME.md).docs/08-rfcs/backlog.md— improvements deferred past v0.1.docs/05-operations/runbooks/docker.md— operator's guide for running one or more isolated Mad instances with Docker.docs/05-operations/runbooks/sandbox-bwrap.md— operator's guide for hardening the sandbox with bubblewrap.docs/05-operations/runbooks/ai-develop-on-issue.md— operator's guide for the label-gated GitHub Action that runs Claude on an issue.docs/04-conventions/testing-heuristics.md— the eight heuristics every test must satisfy (hard rule 10).
License
See LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mad_bros-0.5.26.tar.gz.
File metadata
- Download URL: mad_bros-0.5.26.tar.gz
- Upload date:
- Size: 128.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e971e7c370c46ecf08af6788e8a55207c512785a465711821f1bbcbb1a5c9b2
|
|
| MD5 |
ca6353bbecab9f7efe4adc70af07d6db
|
|
| BLAKE2b-256 |
a478287b7ca0999520428c411f25dbc654c70672d9a87f4d3b10a328d0734021
|
Provenance
The following attestation bundles were made for mad_bros-0.5.26.tar.gz:
Publisher:
release.yml on mad-core/mad
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mad_bros-0.5.26.tar.gz -
Subject digest:
0e971e7c370c46ecf08af6788e8a55207c512785a465711821f1bbcbb1a5c9b2 - Sigstore transparency entry: 2065727464
- Sigstore integration time:
-
Permalink:
mad-core/mad@8ac13e209c0c7714ab4fc78b28d6affdfe2ae4c6 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mad-core
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@8ac13e209c0c7714ab4fc78b28d6affdfe2ae4c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mad_bros-0.5.26-py3-none-any.whl.
File metadata
- Download URL: mad_bros-0.5.26-py3-none-any.whl
- Upload date:
- Size: 165.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a77a3be8e101ac391b6bb4f115d3d8e052fa2ecf39a6e8b4f0175c8f8f2da982
|
|
| MD5 |
7901b6b2538aeb77780cfdbe6b43ddf3
|
|
| BLAKE2b-256 |
70277ea34638a02514a3191adb50520a76067cc45e1cf989a0f6bbdac579be72
|
Provenance
The following attestation bundles were made for mad_bros-0.5.26-py3-none-any.whl:
Publisher:
release.yml on mad-core/mad
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mad_bros-0.5.26-py3-none-any.whl -
Subject digest:
a77a3be8e101ac391b6bb4f115d3d8e052fa2ecf39a6e8b4f0175c8f8f2da982 - Sigstore transparency entry: 2065727551
- Sigstore integration time:
-
Permalink:
mad-core/mad@8ac13e209c0c7714ab4fc78b28d6affdfe2ae4c6 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mad-core
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@8ac13e209c0c7714ab4fc78b28d6affdfe2ae4c6 -
Trigger Event:
push
-
Statement type: