autodev-parallel

Coordinate parallel AutoDev experiments across git worktrees with configurable rounds and best-branch selection.

125|35|Updated Jan 21, 2026
One-click install
npx skills add https://github.com/jh941213/my-cc-harness --skill autodev-parallel
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: autodev-parallel
Source: https://github.com/jh941213/my-cc-harness/tree/main/skills_en/autodev-parallel
Command: npx skills add https://github.com/jh941213/my-cc-harness --skill autodev-parallel

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Orchestrates multiple AutoDev experiments in parallel using git worktrees to accelerate discovery of the best changes, while keeping branches isolated and auditable.

Core Features & Use Cases

  • Parallel experiment orchestration across multiple worktrees with automatic idea generation, result collection, and best-branch selection.
  • Round-based execution with configurable parallelism and rounds, baseline measurement, and automatic fallback handling.
  • Use Case: Teams want to explore several implementation ideas concurrently and quickly identify the highest-scoring change without disrupting the main branch.

Quick Start

Run parallel AutoDev experiments with a single command to begin the orchestration and compare outcomes.

Frequently Asked Questions about autodev-parallel

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run parallel AutoDev experiments to compare feature implementations?

To run parallel AutoDev experiments, this orchestrator coordinates multiple git worktrees and agents concurrently. It automatically generates ideas, collects outcomes, scores against a baseline, and selects the best-performing branch while keeping the main branch stable.

What is the best way to evaluate multiple coding experiments without disrupting the main branch?

Evaluating multiple coding experiments safely requires isolated git worktrees. This orchestration approach enforces explicit isolation per worktree, runs configurable rounds, and applies a final best-branch cherry-pick workflow to preserve main branch stability throughout the comparison.

How does git worktree parallelism work for concurrent agent experiments?

Git worktree parallelism works by assigning each agent a separate working directory linked to the same repository. The orchestrator enforces configurable parallelism limits across these worktrees, coordinating rounds and automatic fallback handling to manage concurrent execution.

Can I configure the number of rounds and parallelism for AutoDev orchestration?

Yes, you can configure both the number of rounds and the level of parallelism for AutoDev orchestration. These settings control how many concurrent worktrees execute experiments and how many iteration cycles run before collecting results.

How are the best results selected from parallel branch experiments?

Best results are selected through baseline scoring and results collection. After all parallel experiments complete, the orchestrator compares outcomes across branches and applies a final best-branch cherry-pick workflow to merge the highest-scoring changes.

When should I not use a parallel worktree orchestrator for feature development?

You should avoid parallel worktree orchestration for simple, linear feature development that lacks multiple viable implementation paths. The overhead of managing concurrent agents, baseline scoring, and isolated worktrees is designed for exploring and comparing several distinct ideas concurrently.