manifold-parallel

Automate parallel task execution with isolated git worktrees and safe merging.

8|Updated Jan 12, 2026
One-click install
npx skills add https://github.com/dhanesh/manifold --skill manifold-parallel
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: manifold-parallel
Source: https://github.com/dhanesh/manifold/tree/main/install/agents/codex/skills/manifold-parallel
Command: npx skills add https://github.com/dhanesh/manifold --skill manifold-parallel

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Coordinating multiple tasks that could run in parallel while avoiding file conflicts and messy merges, by using isolated git worktrees to maximize throughput.

Core Features & Use Cases

  • Parallel task execution with isolated worktrees to prevent cross-task interference.
  • Dependency-aware grouping and safe merging back to the main branch.
  • Resource checks and automatic cleanup to preserve repository health in CI pipelines.

Quick Start

Use manifold-parallel to run multiple tasks in parallel with isolated git worktrees.

Frequently Asked Questions about manifold-parallel

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

FAQPage Schema
How do I run parallel tasks with git worktrees without causing file conflicts?

Running parallel tasks with git worktrees isolates each task in a separate working directory to prevent cross-task interference. Dependency-aware grouping ensures safe merging back to the main branch while maximizing throughput.

What is overlap detection in parallel task execution and when do I need it?

Overlap detection identifies when multiple parallel tasks modify the same files or resources before execution begins. It is needed in project pipelines running independent tasks to safely group operations and prevent messy merges.

How do I automate safe grouping and resource checks for CI pipeline tasks?

Automated safe grouping evaluates task dependencies and resource constraints before execution, checking available capacity to preserve repository health. This prevents resource exhaustion during parallel builds in CI pipelines.

Does parallel task automation work with existing git workflows and CI pipelines?

Parallel task automation integrates with existing git workflows by using isolated worktrees and applying automated merge and cleanup operations. It suits CI pipelines that run multiple independent tasks and require repository health preservation.

What's the best way to merge parallel git worktrees back to the main branch?

The best way to merge parallel git worktrees is through dependency-aware grouping that respects resource constraints and performs automated merges. This approach detects overlaps first, ensuring only safe task combinations merge back.

Why do my parallel build tasks keep causing merge conflicts and how do I stop it?

Parallel build tasks cause merge conflicts when multiple tasks modify overlapping files without isolation. Using isolated git worktrees with overlap detection prevents cross-task interference and ensures safe automated merges.