Skip to content

Releases: kmcallorum/multi-agent-cli

v1.1.0

12 Jan 17:04

Choose a tag to compare

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-run

Shows:

  • Execution plan with step order and dependencies
  • Quality gate configuration
  • Validation errors (if any)

Supports all output formats (Rich, JSON, Table).

Full Changelog

v1.0.0...v1.1.0

Full Changelog: v1.0.0...v1.1.0

v1.0.0 - Initial Release

12 Jan 16:47
7be93b2

Choose a tag to compare

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-cli

Quick 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

Links