원클릭으로
darkrun-composite
Create a composite Run combining stations from multiple factories with sync points
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a composite Run combining stations from multiple factories with sync points
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | darkrun-composite |
| description | Create a composite Run combining stations from multiple factories with sync points |
Create a composite Run that coordinates work across two or more factories in parallel, with sync points where one factory's line must wait on another's.
Gather from the user:
darkrun_factory_list for what's available; one factory = a normal darkrun_run_new)darkrun_factory_detail shows each line; empty = the full line)Suggest sync points from the artifact chains: when one factory's station consumes what another's produces, that's a wait/then edge. Handles are factory:station.
Create it:
darkrun_run_composite {
slug, title,
parts: [
{ factory: "software", stations: ["build", "prove"] },
{ factory: "legal", stations: [] }
],
sync: [
{ wait: ["software:prove"], then: ["legal:shape"] }
]
}
A composite Run is not single-walkable — darkrun_tick surfaces the topology instead of walking it. Drive each part as its own Run (darkrun_run_new per part, scoped with size/station subset), honor the sync points (don't start a then part before its wait handles complete), and record progress on the ledger as parts move:
darkrun_composite_stamp { slug, handle: "software:build", note: "completed" }
The ledger (composite_state) is the coordination record the operator reads to see where the composite stands.
Start a new darkrun Run — describe what you want to accomplish and the factory manager scaffolds a right-sized lifecycle for it
Configure darkrun for this project — auto-detect VCS, hosting, CI/CD, and default branch, confirm with the user, and write .darkrun/settings.yml
Parking lot for ideas not yet ready to become a Run — add, list, review, or promote a backlog item into a Run
Review and decide a Station's Checkpoint — approve to advance the Run, or request changes to route rework as drift
Run a Run lights-out in dark mode — pre-elaborate the work up front, then advance Station to Station without stopping for review, pausing only on external/await gates and ambiguity
List available darkrun factories and their Stations