Releases: kmcallorum/multi-agent-cli
Releases · kmcallorum/multi-agent-cli
v1.1.0
What's New
Dry-Run Mode for Workflows
Preview workflow execution without running agents using the new --dry-run flag:
multi-agent-cli workflow code-review.yaml --dry-runShows:
- Execution plan with step order and dependencies
- Quality gate configuration
- Validation errors (if any)
Supports all output formats (Rich, JSON, Table).
Full Changelog
Full Changelog: v1.0.0...v1.1.0
v1.0.0 - Initial Release
multi-agent-cli v1.0.0
Complete CLI tool for orchestrating pytest-agents in parallel or sequence.
Features
- CLI Commands:
run,parallel,workflow,list,config,metrics,init - Rich Output: Beautiful terminal output with Rich library
- Parallel Execution: Run multiple agents concurrently with rate limiting
- Workflow Support: Sequential workflows with dependencies and quality gates
- Prometheus Metrics: Full observability with metrics endpoint
- Factory Pattern: Dependency injection for easy testing
- 100% Test Coverage: 180 tests with complete coverage
Installation
pip install multi-agent-cliQuick Start
# Initialize configuration
multi-agent-cli init
# Run single agent
multi-agent-cli run pm track_tasks --path ./src
# Run agents in parallel
multi-agent-cli parallel --agents pm,research,index
# Execute workflow
multi-agent-cli workflow code-review.yaml