Claude Code automation agents for the MAID (Manifest-driven AI Development) methodology
Project description
MAID Agents
Automated AI coding orchestration with built-in validation.
MAID Agents automates the complete development workflow: from idea to validated implementation using Claude Code.
What Is This?
MAID Agents is an orchestration system that:
- Plans tasks using manifest-driven contracts
- Generates behavioral tests that exercise the code
- Implements code using Claude Code agents
- Validates using MAID Runner before committing
Think of it as the "execution engine" that uses MAID Runner as its validation layer.
How It Works
- You describe what you want to build
- ManifestArchitect agent generates a manifest (contract) with expected artifacts
- TestDesigner agent generates behavioral tests
- Developer agent implements the code via Claude Code
- MAID Runner validates the implementation matches the contract
- Iterate until validation passes
All automated. You just describe โ review โ approve.
Status
๐ง Alpha Release - Functional but evolving based on feedback.
Built with the MAID methodology - this package dogfoods MAID itself! See IMPLEMENTATION_SUMMARY.md for details on the 16 tasks, 60 tests, and clean architecture.
The Four Phases
MAID Agents automates the four phases of the MAID workflow:
- Phase 1: Goal Definition - ManifestArchitect agent creates precise manifests
- Phase 2: Planning Loop - TestDesigner agent generates behavioral tests
- Phase 3: Implementation - Developer agent implements code to pass tests
- Phase 3.5: Refactoring - Refactorer agent improves code quality
How It Relates to MAID Runner
MAID Agents and MAID Runner work together as a complete system:
| Component | Role | What It Does |
|---|---|---|
| MAID Runner | Validation framework | Validates code matches contracts (manifests) |
| MAID Agents | Orchestration system | Automates planning, implementing, validating |
Use MAID Runner standalone for manual workflow with full control.
Use MAID Agents for automated workflow with Claude Code orchestration.
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ You (Developer) โ
โ "Add user authentication" โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ MAID Agents (Orchestration) โ
โ - ManifestArchitect โ
โ - TestDesigner โ
โ - Developer โ
โ - Refactorer โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโบ Creates manifests
โโโบ Generates tests
โโโบ Implements code
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ MAID Runner (Validation) โ
โ โ Validates manifest schema โ
โ โ Validates behavioral tests โ
โ โ Validates implementation โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Your Codebase โ
โ Fully validated implementation โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Installation
# Install from PyPI (when published)
pip install maid-agents
# Or install from source
git clone https://github.com/mamertofabian/maid-agents.git
cd maid-agents
uv pip install -e .
# Verify installation
ccmaid --version
Prerequisites
- maid-runner package installed (
pip install maid-runner) - Claude Code CLI installed and authenticated
- Python 3.12+
Usage
Quick Start Example
The simplest way to use MAID Agents:
# Full automated workflow: manifest โ tests โ implementation โ validation
ccmaid run "Add email validation to user registration"
# The agent will:
# 1. Create a manifest with expected artifacts
# 2. Generate behavioral tests
# 3. Implement the code
# 4. Validate everything with MAID Runner
# 5. Show you results for approval
Standard MAID Workflow (Step-by-Step)
For more control, run phases individually:
# Phase 1-2: Create manifest and generate tests
ccmaid plan "Add user authentication to the API"
# Creates: manifests/task-042-user-auth.manifest.json
# Creates: tests/test_task_042_user_auth.py
# Phase 3: Implement the code
ccmaid implement manifests/task-042-user-auth.manifest.json
# Implements code to pass the tests
# Validates with MAID Runner
# Phase 3.5: Refactor for quality
ccmaid refactor manifests/task-042-user-auth.manifest.json
# Improves code quality while maintaining tests
# Optional: Refine tests/manifest
ccmaid refine manifests/task-042-user-auth.manifest.json --goal "Add edge cases"
Reverse Workflow (Tests from Existing Code)
When working with existing code or after using maid snapshot:
# Step 1: Generate manifest from existing code
maid snapshot path/to/existing/code.py
# Step 2: Generate behavioral tests from implementation
ccmaid generate-test manifests/task-NNN-code.manifest.json -i path/to/existing/code.py
# Step 3: Validate the complete manifest
maid validate manifests/task-NNN-code.manifest.json
The generate-test command supports three modes:
- Create new: Generate tests from scratch when none exist
- Enhance stub: Fill in placeholder tests created by
maid snapshot - Improve existing: Enhance and complete existing tests
Architecture
MAID Agents follows a clean, modular architecture built entirely using the MAID methodology:
maid_agents/
โโโ core/ # Orchestration engine
โ โโโ orchestrator.py # Main workflow coordinator
โ โโโ validation_runner.py # MAID Runner integration
โ โโโ context_builder.py # Context preparation
โโโ agents/ # Specialized agents
โ โโโ manifest_architect.py # Creates manifests
โ โโโ test_designer.py # Generates tests
โ โโโ developer.py # Implements code
โ โโโ refactorer.py # Improves quality
โ โโโ test_generator.py # Reverse workflow
โโโ claude/ # Claude Code integration
โ โโโ cli_wrapper.py # Claude CLI wrapper
โโโ config/ # Configuration
โ โโโ config_loader.py # Load .ccmaid.toml
โ โโโ templates/ # Prompt templates
โโโ cli/ # Command-line interface
โโโ main.py # ccmaid entrypoint
Key Stats:
- 16 manifests (one per task)
- 60 behavioral tests (100% passing)
- Built with MAID, validated by MAID
See IMPLEMENTATION_SUMMARY.md for complete architecture details.
Configuration
Create .ccmaid.toml in your project root or ~/.ccmaid.toml for global settings:
[cli]
log_level = "INFO"
mock_mode = false
[claude]
model = "claude-sonnet-4-5-20250929"
timeout = 1200
temperature = 0.0
[iterations]
max_planning_iterations = 10
max_implementation_iterations = 20
[maid]
use_manifest_chain = true
Development
This package dogfoods the MAID methodology - it was built using MAID itself!
- All manifests are in
manifests/(16 tasks) - All behavioral tests in
tests/(16 test files, 60 tests) - Every feature was built following the MAID workflow
# Run tests
uv run pytest tests/ -v
# Format code
make format
# Lint code
make lint
Roadmap
- Core orchestration engine
- Four specialized agents
- Claude Code integration
- CLI interface
- Proper documentation site
- Video tutorials
- IDE integrations (VS Code, etc.)
- Community templates library
- MCP server support
Questions & Support
- Discord: Join the AI Driven Coder community
- Issues: Report bugs or request features on GitHub Issues
- Discussions: Ask questions on GitHub Discussions
Contributing
See CONTRIBUTING.md for development guidelines. All changes must follow the MAID methodology.
License
MIT License - See LICENSE file
Project details
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 maid_agents-0.1.1.tar.gz.
File metadata
- Download URL: maid_agents-0.1.1.tar.gz
- Upload date:
- Size: 102.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa1a2e795caba3e4c07be33fdcadb7bbb46e885259a4ecdc01f95553e5835bb2
|
|
| MD5 |
602526620e447c0da23e78294dd819d9
|
|
| BLAKE2b-256 |
d0ed3eb8d3a8f61aaed9929676eabf38174f7379ed19e6e194c75a9df4478c03
|
Provenance
The following attestation bundles were made for maid_agents-0.1.1.tar.gz:
Publisher:
publish.yml on mamertofabian/maid-agents
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
maid_agents-0.1.1.tar.gz -
Subject digest:
aa1a2e795caba3e4c07be33fdcadb7bbb46e885259a4ecdc01f95553e5835bb2 - Sigstore transparency entry: 731251277
- Sigstore integration time:
-
Permalink:
mamertofabian/maid-agents@03644f80db402619f563e83c746970e4e22946b5 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/mamertofabian
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@03644f80db402619f563e83c746970e4e22946b5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file maid_agents-0.1.1-py3-none-any.whl.
File metadata
- Download URL: maid_agents-0.1.1-py3-none-any.whl
- Upload date:
- Size: 99.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6df7556a2e0f529d9c20d14874cb002616d9ed23ebb46cdeccb26aace49aeb4
|
|
| MD5 |
84fddb051f367b682ed70e0e7ed43f85
|
|
| BLAKE2b-256 |
52ae2094b2c1f1ddadcb110e6f5fdd46da0b46059c047770647e6e688b41bc9b
|
Provenance
The following attestation bundles were made for maid_agents-0.1.1-py3-none-any.whl:
Publisher:
publish.yml on mamertofabian/maid-agents
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
maid_agents-0.1.1-py3-none-any.whl -
Subject digest:
e6df7556a2e0f529d9c20d14874cb002616d9ed23ebb46cdeccb26aace49aeb4 - Sigstore transparency entry: 731251281
- Sigstore integration time:
-
Permalink:
mamertofabian/maid-agents@03644f80db402619f563e83c746970e4e22946b5 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/mamertofabian
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@03644f80db402619f563e83c746970e4e22946b5 -
Trigger Event:
push
-
Statement type: