원클릭으로
parallel-infrastructure
Shared parallel execution infrastructure: DAG scheduling, review dispatch, consensus synthesis, scope checking
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Shared parallel execution infrastructure: DAG scheduling, review dispatch, consensus synthesis, scope checking
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generate throughput and quality reports from coordinator audit data and episodic memory
Execute roadmap items iteratively with policy-aware vendor routing and learning feedback
Orchestrate the full plan-review-implement-validate-PR lifecycle with multi-vendor review convergence
Merge approved PR, migrate open tasks, archive OpenSpec proposal, and cleanup branches
Ingest raw session transcripts from coding-agent harnesses via vendor-specific adapters, normalize to a common event schema, triage for struggle signals, and write structured findings to episodic memory
HTTP fallback bridge for coordinator when MCP transport is unavailable
| name | parallel-infrastructure |
| description | Shared parallel execution infrastructure: DAG scheduling, review dispatch, consensus synthesis, scope checking |
| category | Infrastructure |
| tags | ["parallel","infrastructure","dag","review","consensus"] |
| user_invocable | false |
Non-user-invocable infrastructure skill providing shared scripts for parallel execution workflows. Used by implement-feature, autopilot, fix-scrub, merge-pull-requests, and other skills that need DAG scheduling, multi-vendor review dispatch, or consensus synthesis.
DAG computation and topological sort for work-packages.yaml.
Post-execution scope verification — checks that agent changes stayed within declared write_allow / deny boundaries.
Work package execution protocol for coordinated-tier worker agents.
Multi-vendor review dispatch — sends review prompts to configured vendor CLIs and collects findings.
Synthesizes review findings from multiple vendors into a consensus report with confirmed/unconfirmed/disagreement classifications.
Cross-package integration management — tracks package completion, consensus recording, and integration gating.
Validates work-queue results against work-queue-result.schema.json.
Fault tolerance for external service calls with configurable thresholds.
Escalation protocol for scope violations, resource conflicts, and review disagreements.
Other skills reference these scripts via relative path:
python3 "<skill-base-dir>/../parallel-infrastructure/scripts/review_dispatcher.py" [args]
Or import programmatically:
import sys, os
scripts_dir = os.path.join(os.path.dirname(__file__), "..", "..", "parallel-infrastructure", "scripts")
sys.path.insert(0, scripts_dir)
from review_dispatcher import ReviewOrchestrator
from consensus_synthesizer import ConsensusSynthesizer