بنقرة واحدة
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