一键导入
runtime-orchestration-worker
Implement mission execution runtime behavior including dispatch, recovery, checkpoints, scheduler, and reconciliation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Implement mission execution runtime behavior including dispatch, recovery, checkpoints, scheduler, and reconciliation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Implement a bounded OpenBurnBar Windows parity milestone from reviewed VAL contracts with main-app composition, focused tests, baseline discipline, and Windows-host evidence preparation.
Runs a long-running mission using the Zenith continuous-improvement harness to dynamically orchestrate workers, testing, and stopping discipline.
Design consultation: understands your product, researches the landscape, proposes a complete design system (aesthetic, typography, color, layout, spacing, motion), and generates font+color preview pages. Creates DESIGN.md as your project's design source of truth. For existing sites, use /plan-design-review to infer the system instead. Use when asked to "design system", "brand guidelines", or "create DESIGN.md".
Use when asked about AI-agent spend, token usage, session history, workflow patterns, or cost investigations. Grounds all answers in OpenBurnBar/BurnBar local data via prompt context and MCP tools.
Run OpenBurnBar functional QA and write qa-results/report.md plus supporting artifacts.
Design finalization: generates production-quality Pretext-native HTML/CSS. Works with approved mockups from /design-shotgun, CEO plans from /plan-ceo-review, design review context from /plan-design-review, or from scratch with a user description. Text actually reflows, heights are computed, layouts are dynamic. 30KB overhead, zero deps. Smart API routing: picks the right Pretext patterns for each design type. Use when: "finalize this design", "turn this into HTML", "build me a page", "implement this design", or after any planning skill. Proactively suggest when user has approved a design or has a plan ready. (gstack) Voice triggers (speech-to-text aliases): "build the design", "code the mockup", "make it real".
| name | runtime-orchestration-worker |
| description | Implement mission execution runtime behavior including dispatch, recovery, checkpoints, scheduler, and reconciliation. |
NOTE: Startup and cleanup are handled by worker-base. This skill defines the work procedure.
Use for mission execution runtime features. This skill covers two distinct surfaces — choose the branch that matches your feature's actual surface:
Branch A — Daemon Runtime (primary): packet dispatch lifecycle, run journal semantics, recovery/retry/takeover behavior, parallel scheduler, critical path tracking, and reconciliation winner logic.
Branch B — OpenBurnBarCore CLI-Launch Reliability: CLI launch pipe handling, NSFileHandle deterministic read loop, CLILaunchInvoker stability hardening, script-level validator sweeps. Features touching OpenBurnBarCore/Sources/CLILaunchInvoker or CLILaunchInvokerTests use this branch and the Branch B validator commands below.
Before accepting a feature assignment, verify the feature's primary surface matches this skill's scope:
If a feature spans multiple surfaces, the skill is determined by the primary/runtime surface (where the core logic lives, not where tests live). If the feature is truly cross-cutting, return to orchestrator for skill clarification before starting work.
Anti-pattern (do not assign to runtime-orchestration-worker): A feature whose primary logic lives in OpenBurnBarCore contracts or OpenBurnBarDaemon service layer but whose only test surface happens to be a CLI launch path — use the skill matching the primary logic surface.
None.
When to Use This Skill above.fulfills assertions to exact behaviors and existing tests for the selected branch..factory/services.yaml:
commands.test_daemon_runtime (swift test --package-path OpenBurnBarDaemon --filter BurnBarRunServiceTests)commands.test_daemon_mission (swift test --package-path OpenBurnBarDaemon --filter BurnBarMissionControlServiceTests)commands.test_router (swift test --package-path OpenBurnBarDaemon --filter BurnBarProviderRouterTests)CLILaunchInvokerTests).OpenBurnBarCore (pipe read loop, stream framing, subprocess output handling) without introducing daemon-runtime assumptions..factory/services.yaml:
commands.test_core_cli_launch_invoker (swift test --package-path OpenBurnBarCore --filter CLILaunchInvokerTests)commands.test_swift_packages (scripts/test-openburnbar-swift.sh)commands.test_daemon_runtime only when the CLI-launch change also introduces daemon runtime integration behavior; if omitted, call that out explicitly in handoff evidence/deviations.followedProcedure=true in the skillFeedback block of EndFeatureRun is valid only when every required validator surface for the selected branch has a corresponding entry in verification.commandsRun.
Required validator surfaces by branch:
commands.test_daemon_runtime, commands.test_daemon_mission, commands.test_routercommands.test_core_cli_launch_invoker, commands.test_swift_packagescommands.test_daemon_runtime (required only when runtime integration exists)If any required validator surface is missing from handoff evidence, you MUST set followedProcedure=false and add a deviation entry identifying the omitted required validator surface(s) and why.
Each required validator evidence entry must include:
command: the exact command string executedexitCode: the actual exit code (0 or non-zero)observation: specific, non-generic text describing which test cases ran and what they verified (not just "tests passed").factory/services.yaml is the command source of truth. Keep branch guidance and command aliases synchronized:
commands.*) in handoffs and procedure checks..factory/services.yaml and this skill in the same commit.Canonical test commands run the branch baseline surfaces and are used for baseline validation:
commands.test_daemon_runtime → swift test --package-path OpenBurnBarDaemon --filter BurnBarRunServiceTestscommands.test_daemon_mission → swift test --package-path OpenBurnBarDaemon --filter BurnBarMissionControlServiceTestscommands.test_router → swift test --package-path OpenBurnBarDaemon --filter BurnBarProviderRouterTestscommands.test_core_cli_launch_invoker → swift test --package-path OpenBurnBarCore --filter CLILaunchInvokerTestscommands.test_swift_packages → scripts/test-openburnbar-swift.shAssertion-filter commands run a specific subset of tests that verify a particular validation assertion (e.g., VAL_EXEC_009). These are supplemental and appropriate when:
verificationSteps explicitly require assertion-filter verification (e.g., swift test --filter VAL_EXEC_009)When to use which:
verificationSteps explicitly specify them or when adding targeted regression tests for a specific assertion{
"salientSummary": "Implemented critical-path tracking and replay-stable winner reconciliation for parallel DAG execution.",
"whatWasImplemented": "Added scheduler dependency gating checks, critical-path artifact emission, reconciler winner reason persistence, and replay tests ensuring same winner after rebuild. Updated run-journal events to capture transition timeline required for deterministic replay.",
"whatWasLeftUndone": "",
"verification": {
"commandsRun": [
{
"command": "swift test --package-path OpenBurnBarDaemon --filter BurnBarRunServiceTests",
"exitCode": 0,
"observation": "Run recovery/retry/restart tests passed including VAL-EXEC-008 failover order assertions and VAL-EXEC-012 journal sequence tests. All 47 test cases executed successfully."
},
{
"command": "swift test --package-path OpenBurnBarDaemon --filter BurnBarMissionControlServiceTests",
"exitCode": 0,
"observation": "Parallel scheduler and reconciliation tests passed. VAL-EXEC-009 dependency gating and VAL-EXEC-010 winner selection determinism verified."
},
{
"command": "swift test --package-path OpenBurnBarDaemon --filter BurnBarProviderRouterTests",
"exitCode": 0,
"observation": "Router scorecard and VAL-EXEC-008 failover tests passed. Route ordering assertions confirmed deterministic composite scoring."
}
],
"interactiveChecks": []
},
"tests": {
"added": [
{
"file": "OpenBurnBarDaemon/Tests/OpenBurnBarDaemonTests/OpenBurnBarRunServiceTests.swift",
"cases": [
{
"name": "test_VAL_EXEC_008_failoverAttemptsAreDeterministicallyOrdered",
"verifies": "VAL-EXEC-008: Explicit deterministic attempted failover route slot/identity order"
}
]
}
]
},
"discoveredIssues": []
}