Install
openclaw skills install save-usageClassifies tasks by safety and complexity to route safe, negligible queries to gpt-5.1-codex-mini and escalates critical or executable tasks to gpt-5.3-codex.
openclaw skills install save-usageRun on gpt-5.1-codex-mini only for safe/negligible work. Use gpt-5.3-codex when the task actually needs it. Avoid external API keys unless absolutely necessary.
Before generating ANY response, you MUST:
sessions_spawn() IMMEDIATELY. Do NOT attempt to answer yourself.When in doubt, escalate. A wrong escalation costs little. A wrong “mini” answer can waste time or cause damage.
If anything will be executed, or the outcome matters, escalate.
If the task matches ANY of the following, do NOT answer yourself. Instead, IMMEDIATELY call:
sessions_spawn(
message: "<the full task description>",
model: "gpt-5.3-codex",
label: "<short task label>"
)
If you catch yourself taking responsibility for correctness or safety, STOP and call sessions_spawn instead.
Only if safe/negligible and non-executable:
Keep mini replies concise.
If a conversation was escalated to gpt-5.3-codex but the follow-up is clearly safe/negligible and non-executable, switch back to gpt-5.1-codex-mini.
Return the result directly. Do NOT mention the model switch unless the user asks.
The Clawdbot skill system only injects the frontmatter description field
into the system prompt — the body of SKILL.md is not automatically
included. The model may optionally read the full file, but it is not
guaranteed. Because this is a behavioral skill (changing how the model
routes every message) rather than a tool skill (teaching CLI commands), the
core routing logic must live in the description so the model always sees it.
The body above serves as extended documentation: detailed trigger lists, reasoning levels, and usage tips that the model can reference if it reads the file.
TL;DR: description = what the model always sees. body = reference docs.