Openskills openskills-dev-orchestrator
Route OpenSkills development tasks to the right project skill or subagent, including sequencing rules for debugging, feature work, regression checks, and release readiness.
install
source · Clone the upstream repo
git clone https://github.com/Geeksfino/openskills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/Geeksfino/openskills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.cursor/skills/openskills-dev-orchestrator" ~/.claude/skills/geeksfino-openskills-openskills-dev-orchestrator && rm -rf "$T"
manifest:
.cursor/skills/openskills-dev-orchestrator/SKILL.mdsource content
OpenSkills Dev Orchestrator
Use this skill to decide which OpenSkills project skill or subagent to invoke first, and in what order, for the fastest safe outcome.
Routing Rules
1) Runtime failures or sandbox regressions
- Start with
.openskills-runtime-debug - If issue spans multiple execution paths or platforms, use
subagent.runtime-sandbox-auditor - Re-run runtime tests before concluding.
2) Plugin/build feature changes
- Start with
.openskills-plugin-separation - If dependency topology is unclear, use
subagent.wasm-plugin-build-specialist - Validate runtime default-feature behavior and binding impact.
3) Binding breakages (TS/Python)
- Start with
.openskills-bindings-maintainer - If both bindings are affected or unclear, use
subagent.bindings-compatibility-agent - Return a compatibility matrix and migration notes if needed.
4) Skill package authoring or updates
- Start with
.openskills-skill-authoring - Use
subagent when multiple skills or ambiguous triggers are involved.skill-spec-conformance-agent - Validate discovery and activation behavior.
5) End-to-end confidence checks
- Start with
.openskills-e2e-test-runbook - Use
subagent for scenario-heavy or flaky behavior investigations.examples-e2e-agent - Capture scenario-by-scenario pass/fail and tool-call evidence.
6) Release preparation
- Start with
.openskills-release-ops - Use
subagent for final GO/NO-GO judgment.release-gatekeeper-agent - Output blockers, risks, and rollback notes explicitly.
Escalation Heuristics
- Use a skill first when the workflow is deterministic and repeatable.
- Escalate to a subagent when the task needs deep cross-file reasoning, ambiguity handling, or parallel analysis.
- If a task is unresolved after one full skill pass, escalate to the corresponding subagent.
Output Contract
Always return:
- Selected path (skill and/or subagent)
- Why this path was chosen
- Ordered execution plan
- Success criteria