Governed Delegation
by @joaodriessen
Policy-guided governed delegation for subagent use. Use when deciding whether to delegate, which model tier is allowed, whether execution must fail closed, o...
clawhub install governed-delegationπ About This Skill
name: governed-delegation description: Policy-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.
Governed Delegation
> Canonical model-routing source: docs/MODEL_ROUTING_POLICY.md
>
> If 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:
Goal
Keep the split clean:
Do not patch OpenClaw core for this. Do not depend on dist internals. Prefer add-on boundaries.
Default rule
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.
Policy intent
When to use
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.
Output contract
The helper should produce a decision containing:
Minimal workflow
1. Decide if delegation is actually needed 2. Classify task risk/type 3. Ask governed-delegation helper for decision 4. If safe, pass the resulting request to the supported runtime/tool surface 5. If not safe, refuse or escalate instead of degrading
Canonical config/governance split
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.