ワンクリックで
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 ページを確認してインストールできます。
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
SOC 職業分類に基づく
| 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