parallel-infrastructure

Schedule and execute DAG work packages for parallel multi-agent coding workflows.

4|1|Updated Jan 16, 2026
One-click install
npx skills add https://github.com/jankneumann/agentic-coding-tools --skill parallel-infrastructure
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: parallel-infrastructure
Source: https://github.com/jankneumann/agentic-coding-tools/tree/main/.agents/skills/parallel-infrastructure
Command: npx skills add https://github.com/jankneumann/agentic-coding-tools --skill parallel-infrastructure

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires hvac, anthropic, openai, google-generativeai, and includes scripts (resource) components.

What problem does it solve?

This Skill provides a shared infrastructure for parallel execution workflows, handling DAG scheduling, review dispatch, and consensus synthesis across multiple coding agents.

Core Features & Use Cases

  • DAG Scheduler: Computes topological order of work packages for coordinated execution.
  • Scope Checker: Verifies that agents operate within declared write_allow/deny boundaries.
  • Review Dispatcher & Consensus Synthesizer: Sends review prompts to multiple vendors and merges findings into a consensus report.
  • Circuit Breaker & Escalation Handler: Monitors heartbeats, enforces retry budgets, and manages failure escalations. Use Case: Enable multi‑agent feature implementation where backend, frontend, and integration packages run concurrently while respecting dependencies.

Quick Start

Run the parallel‑infrastructure skill to schedule and execute dependent work packages in a DAG.

Frequently Asked Questions about parallel-infrastructure

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

FAQPage Schema
How do I schedule parallel coding tasks with a DAG for multi-agent workflows?

DAG scheduling computes the topological order of work packages, enabling parallel feature implementation across multiple coding agents. The scheduler coordinates task queues so backend, frontend, and integration packages execute concurrently while strictly respecting their dependency chains.

How does consensus synthesis merge code reviews from multiple vendors?

Consensus synthesis dispatches review prompts to multiple LLM vendors and merges their findings into a unified consensus report. This aggregates diverse perspectives on the same code, producing a single comprehensive review document that highlights agreed issues and resolves conflicting feedback.

Can I enforce write boundaries for agents operating in a parallel execution workflow?

Yes, a scope checker verifies that all agents operate within declared write_allow and write_deny boundaries. This prevents unauthorized file modifications during parallel execution, ensuring each agent stays within its designated directory or package scope.

Do I need specific Python scripts available to run parallel infrastructure workflows?

Yes, the workflow requires three Python scripts to be available: dag_scheduler.py, review_dispatcher.py, and consensus_synthesizer.py. These scripts handle topological scheduling, multi-vendor review dispatch, and feedback merging respectively.

How does the circuit breaker handle failures during parallel task execution?

The circuit breaker monitors agent heartbeats, enforces retry budgets, and manages failure escalations during parallel execution. If an agent stops responding or exhausts its retries, the handler triggers escalation procedures to prevent the entire DAG workflow from hanging.

What's the best way to coordinate dependent work packages across backend and frontend agents?

Using a DAG scheduler allows dependent work packages to run concurrently while respecting dependencies. By defining work packages for backend, frontend, and integration layers, the scheduler calculates execution order so independent tasks run in parallel and dependent tasks wait.