Parallel multi-agent pipeline for code analysis and transformation.
Project description
parallel-agents
A parallel multi-agent pipeline for code analysis and transformation, powered by Claude.
Fan out code analysis to 8 specialist AI agents running concurrently, then merge results into a unified report with patches, risk assessments, and PR summaries.
Product Direction
parallel-agents is the execution engine for Parallel Agents Office: a no-code AI software company workflow that can take a project from idea to release.
The long-term product goal is to coordinate specialist agents across the full software lifecycle:
Idea -> PR/FAQ -> Tech stack decision -> Architecture RFC -> Roadmap
-> Sprint -> Implementation -> Review -> Release -> Learning
The current package focuses on a local-first project office: CLI, standalone binary packaging, MCP server, specialist workers, evidence storage, patch generation, evaluation metrics, and a project-folder workspace under .parallel-agents/.
Architecture
User Task / GitHub Issue / Repo
|
Planner Agent (analyzes repo, creates task plan)
|
Task Splitter (dependency resolution, batch grouping)
|
Parallel Workers (asyncio fan-out):
security, test, perf, devops, arch, docs, code, review
|
Evidence Store (JSON / SQLite)
|
Judge Agent (merge, resolve conflicts, produce patch)
|
Final Output (patch + PR summary + risk report)
Installation
From PyPI
pip install parallel-agents
# or with pipx for isolated CLI
pipx install parallel-agents
From npm (wrapper)
npx parallel-agents run --repo ./my-project "Fix security issues"
Standalone binary
Download from GitHub Releases - no Python required.
First Run Checklist
- Install package with
pip install parallel-agents. - Install Claude Code CLI and complete authentication.
- If using GitHub issue URLs, install GitHub CLI and run
gh auth login. - Run
parallel-agents workersto verify worker config. - Run
parallel-agents run --repo ./my-project "Review for security and quality issues".
Quick Start
# Analyze a local repo
parallel-agents run --repo ./my-project "Fix security issues and improve code quality"
# From a GitHub issue
parallel-agents run "https://github.com/org/repo/issues/42" --repo ./local-clone
# Select specific workers
parallel-agents run --workers security,code,review "Refactor the auth module"
# Use SQLite evidence store
parallel-agents run --store sqlite --repo ./project "Add input validation"
# Output as JSON or patch
parallel-agents run --output json --repo ./project "Fix bugs"
parallel-agents run --output patch --repo ./project "Fix bugs" > fix.patch
# Run a benchmark dataset
parallel-agents eval run --dataset examples/eval_dataset.json --repo-root .
parallel-agents eval annotate --results eval/results.json --annotations eval/annotations.json --in-place
parallel-agents eval sync-pr --results eval/results.json --links eval/pr_links.json --in-place
parallel-agents eval sync-ci --results eval/results.json --outcomes eval/ci_outcomes.json --in-place
parallel-agents eval score --results eval/results.json --output-report eval/report.md --output-json eval/score.json
parallel-agents eval compare --baseline-results eval/baseline-results.json --candidate-results eval/results.json --output-report eval/compare.md --output-json eval/compare.json
parallel-agents eval breakdown --results eval/results.json --output-report eval/breakdown.md --output-json eval/breakdown.json
parallel-agents eval gate --results eval/results.json --min-weighted-impact 0.05 --max-regression-rate 0.10 --min-acceptance-rate 0.70
# Build company workflow artifacts
parallel-agents company idea "Build a no-code repo quality office" --output company/brief.json
parallel-agents company stack --repo ./my-project --output company/stack.json
parallel-agents company roadmap --brief company/brief.json --output company/roadmap.json
parallel-agents company sprint --roadmap company/roadmap.json --milestone M1 --output company/sprint.json
parallel-agents company plan --roadmap company/roadmap.json --repo owner/repo --dry-run --output company/issue-plan.json
parallel-agents company release-check --repo ./my-project --output company/release-check.json
parallel-agents company post-release --release-id v0.4.3 --release-check company/release-check.json --output company/post-release.json
parallel-agents company templates --roadmap company/roadmap.json --output company/templates.json
parallel-agents company branch-name --issue RM-01 --title "Define product and workflow artifacts"
parallel-agents company artifacts --run-id run-123
# Team-gated write flow (approval required before GitHub issue creation)
parallel-agents company plan --roadmap company/roadmap.json --repo owner/repo --no-dry-run --permission-profile team --run-id run-123
parallel-agents company approve --run-id run-123 --approver engineering-lead --approval-note "Reviewed and approved for sprint kickoff"
parallel-agents company apply --run-id run-123
# Optional explicit policy override at apply time
parallel-agents company apply --run-id run-123 --policy-file company/apply-policy.json
# Initialize a project-folder office workspace
parallel-agents office init --project ./my-project --name "My Project"
parallel-agents office status --project ./my-project
parallel-agents office home --project ./my-project
parallel-agents office artifacts --project ./my-project
parallel-agents office artifacts --project ./my-project --run-id run-123
parallel-agents office artifacts --project ./my-project --run-id run-123 --artifact roadmap
# Internal local gateway/job API
parallel-agents gateway start --host 127.0.0.1 --port 8733
# Optional API key protection (recommended when binding beyond localhost)
set PA_GATEWAY_API_KEY=my-secret
parallel-agents gateway start --host 0.0.0.0 --port 8733
# or explicit key via CLI
parallel-agents gateway start --api-key my-secret
CLI Commands
| Command | Description |
|---|---|
parallel-agents run <task> |
Run the pipeline |
parallel-agents workers |
List available workers |
parallel-agents show <run-id> |
View results of a previous run |
parallel-agents history |
List all previous runs |
parallel-agents init |
Generate default configuration |
parallel-agents company ... |
Generate company workflow artifacts (brief, stack, RFC, roadmap, issue plan, release checks) |
parallel-agents office ... |
Create and inspect a local .parallel-agents/ project workspace |
parallel-agents eval run/annotate/sync-pr/sync-ci/score/compare/breakdown/gate |
Run, annotate, auto-sync PR acceptance and CI regressions, score, compare, break down cost/time, and quality-gate productivity/effectiveness benchmarks |
parallel-agents gateway start |
Start the local project/run/job API |
Local Project Office
The product direction is local .exe first. A project workspace lives inside the repository or project folder:
my-project/
.parallel-agents/
project.json
runs/
artifacts/
approvals/
audit/
metrics/
Initialize it with:
parallel-agents office init --project ./my-project --name "My Project"
parallel-agents office status --project ./my-project
parallel-agents office home --project ./my-project
parallel-agents office artifacts --project ./my-project
The gateway remains an internal job API for local automation and future desktop shells. It is not the primary product UI.
Gateway API
The local gateway exposes a persistent API for projects, runs, jobs, artifacts, and audit events.
GET /healthGET /metrics/summaryPOST /projectsGET /projectsGET /projects/{project_id}POST /runs/company/ideaPOST /runs/company/roadmapPOST /runs/company/planPOST /runs/company/approvePOST /runs/company/applyGET /runsGET /runs/{run_id}POST /runs/{run_id}/cancelPOST /runs/{run_id}/retryGET /runs/{run_id}/jobsGET /runs/{run_id}/artifacts/{artifact_name}GET /runs/{run_id}/artifactsGET /runs/{run_id}/events
Run endpoints support:
- synchronous mode by default (
wait=true) - async enqueue mode (
wait=false) - custom wait timeout (
wait_timeout_seconds)
When PA_GATEWAY_API_KEY or --api-key is set, requests require either:
X-PA-API-Key: <key>, orAuthorization: Bearer <key>
/health remains readable without auth for liveness checks.
Run Options
| Flag | Description |
|---|---|
--repo, -r |
Path to repository |
--workers, -w |
Comma-separated workers to enable |
--disable-workers, -d |
Comma-separated workers to disable |
--output, -o |
Output format: rich, json, patch |
--model, -m |
Override model for all agents |
--permission-mode |
Override permission mode: default, acceptEdits, plan, bypassPermissions |
--store, -s |
Evidence store: file or sqlite |
--apply-patch |
Apply generated patch to repo via git apply (explicit opt-in) |
--streaming/--no-streaming |
Toggle live progress display |
Programmatic Usage
import asyncio
from parallel_agents import Pipeline, PipelineConfig
from parallel_agents.config import WorkerConfig
config = PipelineConfig(
workers={
"security": WorkerConfig(enabled=True),
"code": WorkerConfig(enabled=True, model="opus"),
"review": WorkerConfig(enabled=True),
},
max_parallel_workers=3,
)
async def main():
pipeline = Pipeline(config)
result = await pipeline.run(
"Review for security issues",
repo_path="./my-project",
)
print(result.summary)
if result.patch:
print(result.patch)
asyncio.run(main())
Workers
| Worker | Focus Area |
|---|---|
| security | OWASP Top 10, dependency vulns, secret scanning |
| test | Coverage gaps, edge cases, test generation |
| perf | Complexity analysis, N+1 queries, bottlenecks |
| devops | CI/CD, Docker, deployment configuration |
| arch | SOLID principles, design patterns, coupling |
| docs | README, docstrings, API documentation |
| code | Implementation, refactoring (uses Opus) |
| review | Code style, best practices, anti-patterns |
Configuration
Set via environment variables (prefix PA_), .env file, or programmatically:
export PA_PLANNER_MODEL=opus
export PA_JUDGE_MODEL=opus
export PA_PERMISSION_MODE=default
export PA_PARSE_RETRY_ATTEMPTS=1
export PA_MAX_PARALLEL_WORKERS=4
export PA_STORE_BACKEND=sqlite
PA_PERMISSION_MODE supports default, acceptEdits, plan, and bypassPermissions.
Current Strengths
- Parallel specialist analysis with a single merged result.
- CLI, MCP server, PyPI package, npm wrapper, and release workflows.
- Evidence storage for run history (
fileorsqlite). - Company workflow artifacts from idea intake through post-release review.
- Approval-gated GitHub issue planning with apply-time policy checks.
- Local
.parallel-agents/project workspace for desktop/exe-first usage. - Optional local gateway for persistent project/run state.
Current Limitations
- Generated patches should be reviewed before applying.
- GitHub issue mode requires
ghinstallation and authentication. - Output quality still depends on model behavior and repository context quality.
- Gateway binds to localhost by default; non-local exposure should use API-key protection at minimum.
- No web dashboard is shipped; the product direction is local project-folder tooling.
Evaluation Harness
Use the built-in evaluation flow to measure productivity and effectiveness over a fixed benchmark set.
- Create or edit a dataset JSON (see
examples/eval_dataset.json). You can also start fromexamples/public_benchmark_v1.json. - Run benchmark execution:
parallel-agents eval run \
--dataset examples/eval_dataset.json \
--repo-root . \
--output eval/results.json
- Apply per-case annotations (acceptance, regressions, findings, reviewer time):
parallel-agents eval annotate \
--results eval/results.json \
--annotations eval/annotations.json \
--in-place
eval/annotations.json format:
[
{
"case_id": "SEC-001",
"accepted_without_major_edits": true,
"introduced_regression": false,
"findings_true_positives": 4,
"findings_false_positives": 1,
"reviewer_minutes": 12
}
]
You can copy from examples/eval_annotations_example.json.
- Compute score and report:
parallel-agents eval score \
--results eval/results.json \
--output-json eval/score.json \
--output-report eval/report.md
# Compare candidate run vs baseline
parallel-agents eval compare \
--baseline-results eval/baseline-results.json \
--candidate-results eval/results.json \
--output-json eval/compare.json \
--output-report eval/compare.md
# CI gate (non-zero exit code when thresholds fail)
parallel-agents eval gate \
--results eval/results.json \
--min-weighted-impact 0.05 \
--max-regression-rate 0.10 \
--min-acceptance-rate 0.70 \
--min-finding-precision 0.75
parallel-agents eval breakdown \
--results eval/results.json \
--output-json eval/breakdown.json \
--output-report eval/breakdown.md
Optional PR acceptance sync from GitHub:
parallel-agents eval sync-pr \
--results eval/results.json \
--links eval/pr_links.json \
--in-place
eval/pr_links.json format:
[
{
"case_id": "SEC-001",
"pr_url": "https://github.com/org/repo/pull/123"
}
]
You can copy from examples/eval_pr_links_example.json.
Optional CI regression sync:
parallel-agents eval sync-ci \
--results eval/results.json \
--outcomes eval/ci_outcomes.json \
--in-place
eval/ci_outcomes.json format:
[
{
"case_id": "SEC-001",
"ci_passed": false,
"source": "github-actions"
}
]
You can copy from examples/eval_ci_outcomes_example.json.
Scoring includes:
- speed gain vs baseline human minutes
- acceptance rate and gain vs baseline
- regression rate and increase vs baseline
- finding precision
- weighted delivery impact score:
0.4*speed_gain + 0.4*acceptance_gain - 0.2*regression_increase
eval gate returns non-zero when thresholds fail, so it can be used in CI/release gates.
Project Docs
- VISION.md
- PRFAQ.md
- PROJECT_STATUS.md
- OPERATING_MODEL.md
- QUALITY_BAR.md
- TECH_STACK_POLICY.md
- ROADMAP.md
- docs/workflows/idea-to-release.md
- docs/workflows/agent-roles.md
- docs/workflows/local-desktop-office.md
- docs/workflows/gateway-api.md
- CHANGELOG.md
- COMPATIBILITY.md
- CONTRIBUTING.md
- SECURITY.md
- SUPPORT.md
Exit Codes
0: success1: runtime failure2: authentication/API key failure3: parse failure in planner/judge/worker structured output4: worker execution failure (status=error)5: no patch available when patch output/apply is requested6: patch apply/check failure
Requirements
- Python 3.11+
- Claude Code CLI installed and authenticated
- GitHub CLI installed and authenticated for GitHub issue URL mode
- An Anthropic API key (via Claude Code authentication)
License
MIT
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 parallel_agents-0.4.3.tar.gz.
File metadata
- Download URL: parallel_agents-0.4.3.tar.gz
- Upload date:
- Size: 123.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6dbe539cfd213fcf566b694dc6e0809dd7b27a5160f4924629f77ec07ba523b8
|
|
| MD5 |
6f5a1ab868ba2c22555793df48e3c3de
|
|
| BLAKE2b-256 |
faafb23481437dbed172a7b3e6fbb33f860aac091bc3e8ca073cb025d3b98ede
|
File details
Details for the file parallel_agents-0.4.3-py3-none-any.whl.
File metadata
- Download URL: parallel_agents-0.4.3-py3-none-any.whl
- Upload date:
- Size: 139.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e977785eb77ff943e464b959085d17f99c2e8c4e43218378f651dea1290a1b72
|
|
| MD5 |
6144aaaa0a63232726f07e900c170fe7
|
|
| BLAKE2b-256 |
ebbcf8437ee692cdffaf1d20c6d6c3ca672d11592c7ae0d2c45223da28f4969b
|