Install
openclaw skills install governed-delegationPolicy-guided governed delegation for subagent use. Use when deciding whether to delegate, which model tier is allowed, whether execution must fail closed, or when building an auditable spawn request for critical or deterministic work.
openclaw skills install governed-delegationCanonical model-routing source:
docs/MODEL_ROUTING_POLICY.mdIf this file conflicts with routing doctrine, the canonical policy doc wins.
Use this skill when a task may require subagents or governed delegation.
This is the canonical front door for delegation-envelope policy in configuration/governance work. Use it to answer one narrow question well:
If delegation is needed, what execution envelope is allowed?
Do not use this skill as a substitute for:
Keep the split clean:
Do not patch OpenClaw core for this. Do not depend on dist internals. Prefer add-on boundaries.
Before delegating, classify the task on four axes:
taskClass: A|B|C|Ddeterministic: true|falsecriticalWrite: true|falserequiresDeepReasoning: true|falseThen use the helper:
node skills/governed-delegation/scripts/request.js '{...json...}'For Class C/D or other fail-closed work, include frontDoor explicitly (for example orchestrator:orchestrators/reflect/orchestrator.md). The helper now rejects strict requests when the requested front door does not match canonical policy.
Use this skill when:
Use it after deciding that delegation is actually on the table. For ordinary questions like "what is live right now?", "what does the saved config say?", or "apply this config change safely", start with the appropriate inspection/mutation surface instead.
The helper should produce a decision containing:
If plain GPT or a direct deterministic runner is enough, do not add delegation. This skill reduces unsafe delegation — it is not a reason to turn everything into a subagent workflow.