ワンクリックで
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
Orchestrate the full plan-review-implement-validate-PR lifecycle with multi-vendor review convergence
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
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
Readiness gate for sync-point operations — inspect validation, rework, and active-agent state before merge
| 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