원클릭으로
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 직업 분류 기준
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
OpenBao/Vault credential seeding and management scripts
Comprehensive project health diagnostic — collects signals from CI tools, existing reports, deferred issues, and code markers into a prioritized finding report
Generate changelog entries and suggest semantic version bumps from git history
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.
<skill-base-dir>/scripts/dag_scheduler.pyDAG computation and topological sort for work-packages.yaml.
<skill-base-dir>/scripts/scope_checker.pyPost-execution scope verification — checks that agent changes stayed within declared write_allow / deny boundaries.
<skill-base-dir>/scripts/package_executor.pyWork package execution protocol for coordinated-tier worker agents.
<skill-base-dir>/scripts/review_dispatcher.pyMulti-vendor review dispatch — sends review prompts to configured vendor CLIs and collects findings.
<skill-base-dir>/scripts/consensus_synthesizer.pySynthesizes review findings from multiple vendors into a consensus report with confirmed/unconfirmed/disagreement classifications.
<skill-base-dir>/scripts/integration_orchestrator.pyCross-package integration management — tracks package completion, consensus recording, and integration gating.
<skill-base-dir>/scripts/result_validator.pyValidates work-queue results against work-queue-result.schema.json.
<skill-base-dir>/scripts/circuit_breaker.pyFault tolerance for external service calls with configurable thresholds.
<skill-base-dir>/scripts/escalation_handler.pyEscalation 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