Metadata-Version: 2.4
Name: agent-maestro
Version: 0.1.0
Summary: Multi-agent task orchestration — delegate work from an orchestrator to specialized sub-agents via a file-based queue.
Author-email: migoueel <migoueel@users.noreply.github.com>
License: MIT
Project-URL: Homepage, https://github.com/migoueel/multi_agents
Project-URL: Repository, https://github.com/migoueel/multi_agents
Project-URL: Issues, https://github.com/migoueel/multi_agents/issues
Project-URL: Documentation, https://github.com/migoueel/multi_agents#readme
Keywords: agent,orchestration,copilot,vscode,automation,multi-agent,task-queue,ai-agents
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Code Generators
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: PyYAML>=6.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Dynamic: license-file

# Agent Maestro

[![Tests](https://github.com/migoueel/multi_agents/actions/workflows/test.yml/badge.svg)](https://github.com/migoueel/multi_agents/actions/workflows/test.yml)
[![PyPI version](https://badge.fury.io/py/agent-maestro.svg)](https://badge.fury.io/py/agent-maestro)
[![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

> 🎼 Multi-agent task orchestration — delegate work from an orchestrator to specialized sub-agents via a file-based queue.

## Architecture

```
Orchestrator (Antigravity) → maestro delegate → .agent_bridge/pending/ → watcher → Copilot CLI → .agent_bridge/completed/
                                                                                      ↓
                                                                            --agent <name>
                                                                                      ↓
                                                                        .github/agents/*.agent.md
```

## Custom Agents

Agent Maestro leverages VS Code Copilot's [custom agents](https://code.visualstudio.com/docs/copilot/agents/overview) for specialized roles:

| Agent | Role | Handoffs |
|-------|------|----------|
| **Orchestrator** | Plan tasks, coordinate sub-agents | → Implementer, Tester, Reviewer |
| **Implementer** | Write code changes | (worker) |
| **Tester** | Write and run tests | (worker) |
| **Reviewer** | Read-only code review | (worker) |

Agent definitions live in `.github/agents/` and are routed via `--agent <name>` when the watcher invokes Copilot CLI.

## Installation

### Option 1: From PyPI (Recommended)

```bash
pip install agent-maestro
```

### Option 2: From GitHub (Latest)

```bash
pip install git+https://github.com/migoueel/multi_agents.git
```

### Option 3: For Development

```bash
git clone https://github.com/migoueel/multi_agents.git
cd multi_agents
pip install -e ".[dev]"
```

## Quick Start

```bash
# 1. Scaffold config + custom agents (in your project)
maestro init

# 2. (Optional) Edit config.yaml and .github/agents/*.agent.md

# 3. Start the watcher daemon
maestro start

# 4. Delegate a task
maestro delegate "Add error handling to auth module" \
  --files src/auth.py \
  --agent-type implementer

# 5. Check status
maestro status <task-id>
maestro list
maestro stats
```

## CLI Reference

| Command | Description |
|---------|-------------|
| `maestro init` | Scaffold `.agent_bridge/`, `config.yaml`, `.github/agents/` |
| `maestro start` | Start the background watcher daemon |
| `maestro delegate "<instructions>"` | Delegate a task to a sub-agent |
| `maestro status <id>` | Check task status |
| `maestro list [--status PENDING]` | List all tasks |
| `maestro stats` | Show queue statistics |

### Delegate Options

```
maestro delegate "..." [OPTIONS]

  --files, -f      Target files for the agent
  --action, -a     Task type: implement, test, refactor, fix, review
  --agent-type, -t Custom agent: orchestrator, implementer, tester, reviewer
  --context, -c    Extra context string
  --priority       Priority level (0=normal, higher=urgent)
```

## Configuration

Edit `config.yaml` in your project root:

```yaml
bridge:
  poll_interval_seconds: 3
  max_concurrent_tasks: 1
  task_timeout_seconds: 300
  agent_bridge_dir: ".agent_bridge"

runners:
  default: "copilot-cli"
  copilot_cli:
    command: "copilot"       # path to copilot.bat
    model: "gpt-5-mini"
    allow_all_tools: true
```

## Package Structure

```
agent_maestro/
├── __init__.py           # Public API: delegate_task, check_status, list_tasks
├── __main__.py           # python -m agent_maestro
├── cli.py                # maestro CLI commands
├── protocol.py           # Task, TaskStatus, RunResult schemas
├── queue.py              # File-based task queue
├── config.py             # YAML config loader
├── watcher.py            # Background watcher daemon
├── runners/
│   ├── base.py           # Abstract BaseRunner
│   └── copilot_runner.py # Copilot CLI runner with --agent support
└── scaffold/
    ├── config.yaml       # Default config template
    └── agents/           # Custom agent templates
        ├── orchestrator.agent.md
        ├── implementer.agent.md
        ├── tester.agent.md
        └── reviewer.agent.md
```

## How It Works

1. **Task Creation**: `maestro delegate` (or `delegate_task()` from Python) writes a JSON file to `.agent_bridge/pending/`
2. **Watcher Pickup**: The background watcher polls for pending tasks, claims the highest-priority one
3. **Runner Dispatch**: The `CopilotRunner` invokes `copilot -p <prompt> --agent <agent_type>` 
4. **Custom Agent**: Copilot CLI loads the matching `.github/agents/<name>.agent.md` for specialized behavior
5. **Result Recording**: Output moves to `.agent_bridge/completed/` (or `failed/`)

## Testing

```bash
pytest tests/ -v
```

## License

MIT
