Tools
Thinking levels
What it does
- Inline directive in any inbound body:
/t <level>,/think:<level>, or/thinking <level>. - Levels (aliases):
off | minimal | low | medium | high | xhigh | adaptive | max | ultra, roughly mirroring Anthropic's classic "think" < "think hard" < "think harder" < "ultrathink" magic-word ladder:- minimal ~ "think"
- low ~ "think hard"
- medium ~ "think harder"
- high ~ "ultrathink" (max budget)
- xhigh ~ "ultrathink+" (GPT-5.2+ and Codex models, plus Anthropic Claude Opus 4.7+ effort)
- adaptive → provider-managed adaptive thinking (supported for Claude 4.6 on Anthropic/Bedrock, Anthropic Claude Opus 4.7+, and Google Gemini dynamic thinking)
- max → provider max reasoning (Anthropic Claude Opus 4.7+; Ollama maps this to its highest native
thinkeffort) - ultra → proactive sub-agent orchestration with runtime-selected reasoning when the selected model/runtime supports it
x-high,x_high,extra-high,extra high, andextra_highmap toxhigh.highestmaps tohigh.
- Provider notes:
- Thinking menus and pickers are provider-profile driven. Provider plugins declare the exact level set for the selected model, including labels such as binary
on. adaptive,xhigh,max, andultraare only advertised for provider/model/runtime profiles that support them. Typed directives for unsupported levels are rejected with that model's valid options.- Existing stored unsupported levels are remapped by provider profile rank.
adaptivefalls back tomediumon non-adaptive models, whilexhighandmaxfall back to the largest supported non-off level for the selected model. - Anthropic Claude 4.6 models default to
adaptivewhen no explicit thinking level is set. - Anthropic Claude Opus 4.8 and Opus 4.7 keep thinking off unless you explicitly set a thinking level. Opus 4.8's provider-owned effort default is
highafter adaptive thinking is enabled. - Anthropic Claude Opus 4.7+ maps
/think xhighto adaptive thinking plusoutput_config.effort: "xhigh", because/thinkis a thinking directive andxhighis the Opus effort setting. - Anthropic Claude Opus 4.7+ also exposes
/think max; it maps to the same provider-owned max effort path. - Direct DeepSeek V4 models expose
/think xhigh|max; both map to DeepSeekreasoning_effort: "max"while lower non-off levels map tohigh. - OpenRouter-routed DeepSeek V4 models expose
/think xhighand send OpenRouter-supportedreasoning.effortvalues instead of DeepSeek-native top-levelreasoning_effort. Lower non-off levels map tohigh, and storedmaxoverrides fall back toxhigh. - Ollama thinking-capable models expose
/think low|medium|high|max. Verified full-effort Ollama Cloud families such as GLM 5.2 and DeepSeek V4 send each matching nativethinkeffort, includingmax; other models and local Ollama keep the compatiblehighmapping for/think max. - OpenAI GPT models map
/thinkthrough the selected model and auth route's effort support. On supported OpenAI Platform/API-key routes,/think offsends explicitreasoning.effort: "none", including when using the Codex runtime. Subscription routes that do not supportnoneretain the provider or native runtime's default reasoning behavior;offdoes not guarantee zero reasoning there. Supervised native Codex threads keep their own thinking settings. - GPT-6 Astra and GPT-5.6 Sol and Terra expose native
/think ultrathrough the Codex runtime with either Platform API-key or ChatGPT subscription auth. OpenClaw preserves Ultra for ordinary turns;/btwintentionally runs atoff. Codex owns proactive delegation and the model-specific inference effort (Astra usesxhigh). Ultra is not sent as a raw Responses API reasoning effort. GPT-5.6 Luna exposes levels throughmaxbecause its Codex catalog does not advertise Ultra. - The embedded OpenClaw runtime exposes logical
/think ultrafor GPT-6 Astra and GPT-5.6 Sol, Terra, and Luna. It sends provider max effort and adds run-scoped proactive sub-agent orchestration guidance. - Custom OpenAI-compatible catalog entries can opt into
/think xhighby settingmodels.providers.<provider>.models[].compat.supportedReasoningEffortsto include"xhigh". This uses the same compat metadata that maps outbound OpenAI reasoning effort payloads, so menus, session validation, agent CLI, andllm-taskagree with transport behavior. - Since 2026.4.26, stale configured OpenRouter Hunter Alpha refs skip proxy reasoning injection because that retired route could return final answer text through reasoning fields.
- Google Gemini maps
/think adaptiveto Gemini's provider-owned dynamic thinking. Gemini 3 requests omit a fixedthinkingLevel, while Gemini 2.5 requests sendthinkingBudget: -1; fixed levels still map to the closest GeminithinkingLevelor budget for that model family. - MiniMax M2.x (
minimax/MiniMax-M2*) on the Anthropic-compatible streaming path defaults tothinking: { type: "disabled" }unless you explicitly set thinking in model params or request params. This avoids leakedreasoning_contentdeltas from M2.x's non-native Anthropic stream format. MiniMax-M3 (and M3.x) is exempt: M3 emits proper Anthropic thinking blocks and returns empty content when thinking is disabled, so OpenClaw keeps M3 on the provider's omitted/adaptive thinking path. - Z.AI (
zai/*) is binary (on/off) for most GLM models. GLM-5.2 and GLM-5.3 are the exceptions. GLM-5.2 exposes/think off|low|high|maxwith anoffdefault, mapslowandhighto Z.AIreasoning_effort: "high", and mapsmaxtoreasoning_effort: "max". GLM-5.3 exposes/think low|high|maxwith amaxdefault, mapsoff,minimal, andlowtoreasoning_effort: "low",mediumandhighto"high", andxhigh,adaptive, andmaxto"max". - Moonshot API Kimi K3 (
moonshot/kimi-k3) always thinks atmax, sendsreasoning_effort: "max", omits the K2thinkingfield and fixed sampling overrides, and preserves K3-supported tool choices. Kimi Code K3 (kimi/k3andkimi/k3-256k) exposes the full/thinkladder with ahighdefault:offsendsthinking.type: "disabled",minimal/lowmap to low effort,medium/high/adaptiveto high effort, andxhigh/maxto max effort. Kimi Code refs also includekimi/kimi-for-codingandkimi/kimi-for-coding-highspeed. Kimi K2.7 Code (moonshot/kimi-k2.7-codeandmoonshot/kimi-k2.7-code-highspeed) always thinks, exposes onlyon, and omits both outboundthinkingandreasoning_effort. Othermoonshot/*models map/think offtothinking: { type: "disabled" }and any non-offlevel tothinking: { type: "enabled" }. When K2 thinking is enabled, Moonshot only acceptstool_choiceauto|none; OpenClaw normalizes incompatible values toauto.
- Thinking menus and pickers are provider-profile driven. Provider plugins declare the exact level set for the selected model, including labels such as binary
Resolution order
- Inline directive on the message (applies only to that message).
- Session override (set by sending a directive-only message).
- Per-agent default (
agents.entries.*.thinkingDefaultin config). - Global default (
agents.defaults.thinkingDefaultin config). - Fallback: provider-declared default when available; otherwise reasoning-capable models resolve to
mediumor the nearest supported non-offlevel for that model, and non-reasoning models stayoff.
Setting a session default
- Send a message that is only the directive (whitespace allowed), e.g.
/think:mediumor/t high. - That sticks for the current session (per-sender by default). Use
/think defaultto clear the session override and inherit the configured/provider default; aliases includeinherit,clear,reset, andunpin. /think offstores an explicit off override until you change or clear it. Whether the upstream model can disable thinking depends on the selected provider and auth route.- Confirmation reply is sent (
Thinking level set to high./Thinking disabled.). If the level is invalid (e.g./thinking big), the command is rejected with a hint and the session state is left unchanged. - Send
/think(or/think:) with no argument to see the current thinking level.
Application by agent
- Embedded OpenClaw: the resolved level is passed to the in-process OpenClaw agent runtime.
- Claude CLI backend: concrete levels are mapped to Claude Code
--effort; models that allow fixed budgets also receive a matchingMAX_THINKING_TOKENSlaunch value.adaptiveremoves both configured effort flags and fixed-budget overrides, delegating effective thinking to Claude Code's environment, settings, and model defaults. See CLI backends.
Fast mode (/fast)
- Levels:
auto|on|off|default. - Directive-only message toggles a session fast-mode override and replies
Fast mode set to auto.,Fast mode enabled., orFast mode disabled.. Use/fast defaultto clear the session override and inherit the configured default; aliases includeinherit,clear,reset, andunpin. - Send
/fast(or/fast status) with no mode to see the current effective fast-mode state. - OpenClaw resolves fast mode in this order:
- Inline
/fast auto|on|offoverride on the current message - Stored session override from a directive-only message (
/fast defaultclears this layer) - Per-agent default (
agents.entries.*.fastModeDefault) - Global default (
agents.defaults.fastModeDefault) - Per-model config (
agents.defaults.models["<provider>/<model>"].params.fastMode) - Fallback:
off
- Inline
- Valid model-scoped
params.fastMode/params.fast_modevalues and valid cutoff keys are typed agent-runtime controls. They do not count as authored provider request params and do not select OpenClaw or Codex by themselves. PinagentRuntime.id: "openclaw"oragentRuntime.id: "codex"when a recipe depends on one runtime. autokeeps the session/config mode as auto but resolves each new model call independently. Calls that start before the auto cutoff have fast mode enabled; later retry, fallback, tool-result, or continuation calls start with fast mode disabled. The cutoff defaults to 60 seconds; setagents.defaults.models["<provider>/<model>"].params.fastAutoOnSecondson the active model to change it.- For
openai/*, fast mode maps to OpenAI API Fast mode (formerly Priority processing). OpenClaw currently sendsservice_tier=priorityon supported Responses requests. - On Codex harness turns, the shared runtime control supersedes a configured native app-server tier: Fast on sends
priority, Fast off sendsnullto clear the OpenClaw-owned tier, and auto decides for each model call. A configured Codex tier is used only when no shared Fast-mode run control is supplied. See Codex harness. - For direct API-key
anthropic/*requests, Opus 5 and Opus 4.8 use nativespeed=fast. Other supported models use Priority Tier: on setsservice_tier=auto, off setsservice_tier=standard_only. Sonnet 5 supports neither mapping; OAuth requests receive neither field. - For
minimax/*on the Anthropic-compatible path,/fast on(orparams.fastMode: true) rewritesMiniMax-M2.7toMiniMax-M2.7-highspeed. - Explicit Anthropic
serviceTier/service_tiermodel params override the fast-mode default when both are set. OpenClaw still skips Anthropic service-tier injection for non-Anthropic proxy base URLs. /statusreports the resolved OpenClaw policy (on,off, orauto) and the selected runtime. It does not report the upstream service tier actually honored or returned for a completed request. See OpenAI Fast mode for provider details.- The Control UI disables Fast choices confirmed to have no effect on the selected request. Existing saved preferences remain visible and clearable. When applicability is unknown, controls retain their existing behavior; availability does not promise vendor entitlement or faster responses.
Verbose directives (/verbose or /v)
- Levels:
on(minimal) |full|off(default). - Directive-only message toggles session verbose and replies
Verbose logging enabled./Verbose logging disabled.; invalid levels return a hint without changing state. /verbose offstores an explicit session override; clear it via the Sessions UI by choosinginherit.- Authorized external channel senders may persist the session verbose override. Internal gateway/webchat clients need
operator.adminto persist it. - Inline directive affects only that message; session/global defaults apply otherwise.
- Send
/verbose(or/verbose:) with no argument to see the current verbose level. - When verbose is on, agents that emit structured tool results send each tool call back as its own safe metadata-only message. Shell tools show their label without command text. These tool summaries are sent as soon as each tool starts (separate bubbles), not as streaming deltas.
- Tool failure summaries remain visible in normal mode, but raw error detail suffixes are hidden unless verbose is
full. - When verbose is
full, tool outputs are also forwarded after completion (separate bubble, truncated to a safe length). If you toggle/verbose on|full|offwhile a run is in-flight, subsequent tool bubbles honor the new setting. agents.defaults.toolProgressDetailcontrols the shape of/verbosetool summaries and progress-draft tool lines. Use"explain"(default) for compact human labels and"raw"for unabridged non-shell detail. Standalone shell summaries require/verbose fullfor command text; progress drafts require the channel's explicitstreaming.*.commandText: "raw"opt-in. Per-agentagents.entries.*.toolProgressDetailoverrides the default./verbose on:🛠️ Exec/verbose full+explain:🛠️ Exec: check JS syntax for /tmp/app.js/verbose full+raw:🛠️ Exec: check JS syntax for /tmp/app.js, node --check /tmp/app.js
Plugin trace directives (/trace)
- Levels:
on|off(default). - Directive-only message toggles session plugin trace output and replies
Plugin trace enabled./Plugin trace disabled.. - Inline directive affects only that message; session/global defaults apply otherwise.
- Send
/trace(or/trace:) with no argument to see the current trace level. /traceis narrower than/verbose: it only exposes plugin-owned trace/debug lines such as Active Memory debug summaries.- Trace lines can appear in
/statusand as a follow-up diagnostic message after the normal assistant reply.
Reasoning visibility (/reasoning)
- Levels:
on|off|stream. - Directive-only message toggles whether thinking blocks are shown in replies.
- When enabled, reasoning is sent as a separate message prefixed with
Thinking. stream: streams reasoning while the reply is generating when the active channel supports reasoning previews, then sends the final answer without reasoning. Channel previews remove recognized internal runtime context before delivery; the original reasoning remains unchanged for model replay.- Control UI history shows saved reasoning only for
on, with View → Reasoning enabled.offandstreamkeep it hidden, including after reload. - Visible Control UI reasoning preserves Markdown paragraphs and fenced code blocks, including blank lines inside code.
- Alias:
/reason. - Send
/reasoning(or/reasoning:) with no argument to see the current reasoning level. - Resolution order: inline directive, then session override, then per-agent default (
agents.entries.*.reasoningDefault), then global default (agents.defaults.reasoningDefault), then fallback (off).
Malformed local-model reasoning tags are handled conservatively. Closed <think>...</think> blocks stay hidden on normal replies, and unclosed reasoning after already visible text is also hidden. If a reply is fully wrapped in a single unclosed opening tag and would otherwise deliver as empty text, OpenClaw removes the malformed opening tag and delivers the remaining text.
Related
- Elevated mode docs live in Elevated mode.
- Slash commands — changing the thinking level mid-session
- Configuration reference — where the thinking defaults are configured
Heartbeats
- Heartbeat probe body is the configured heartbeat prompt (default:
Follow the heartbeat monitor scratch context when provided. Recurring tasks are automations; create or change their schedules with the automations tool, not heartbeat scratch. Do not infer or repeat old tasks from prior chats. If nothing needs attention, reply NO_REPLY.). Inline directives in a heartbeat message apply as usual (but avoid changing session defaults from heartbeats). - Heartbeat delivery uses the last outbound-capable non-reasoning payload. Separate reasoning or
Thinkingpayloads remain internal, and a reasoning-only heartbeat result produces no alert.
Web chat UI
- The web chat thinking selector shows the explicit session override, or the inherited configured/provider default when no override is stored.
- Refreshing, reloading, or compacting a conversation keeps an inherited choice inherited; it does not store the resolved level as an override. While model metadata is loading, refreshes retain the known thinking profile for the same model and runtime.
- Selecting a level on the effort slider writes an explicit session override immediately via
sessions.patch; it does not wait for the next send and it is not a one-shotthinkingOnceoverride. - Sending while model, reasoning, or speed picker changes are still being applied waits for every pending picker patch; if a change fails, the message stays unsent for review.
- The effort control displays the resolved level, such as
MediumorOff. To clear an override and return to inheritance, send/think default. - Explicit picker choices use their direct level labels while preserving provider labels when present (for example
Maximumfor a provider-labeledmaxoption). - The picker uses
thinkingLevelsreturned by the gateway session row/defaults, withthinkingOptionskept as a legacy label list. The browser UI does not keep its own provider regex list; plugins own model-specific level sets. /think:<level>still works and updates the same stored session level, so chat directives and the picker stay in sync.
Provider profiles
- Provider plugins can expose
resolveThinkingProfile(ctx)to define the model's supported levels and default. - Provider plugins that proxy Claude models should reuse
resolveClaudeThinkingProfile(modelId)fromopenclaw/plugin-sdk/provider-model-sharedso direct Anthropic and proxy catalogs stay aligned. - Each profile level has a stored canonical
id(off,minimal,low,medium,high,xhigh,adaptive,max, orultra) and may include a displaylabel. Binary providers use{ id: "low", label: "on" }. - Profile hooks receive merged catalog facts when available, including
reasoning,compat.thinkingFormat, andcompat.supportedReasoningEfforts. Use those facts to expose binary or custom profiles only when the configured request contract supports the matching payload. - Tool plugins that need to validate an explicit thinking override should use
api.runtime.agent.resolveThinkingPolicy({ provider, model, agentRuntime })plusapi.runtime.agent.normalizeThinkingLevel(...); they should not keep their own provider/model level lists. PassagentRuntimewhen the tool owns the execution path, such as an always-embedded run. - Tool plugins with access to configured custom model metadata can pass
catalogintoresolveThinkingPolicysocompat.supportedReasoningEffortsopt-ins are reflected in plugin-side validation. - Published legacy hooks (
supportsXHighThinking,isBinaryThinking, andresolveDefaultThinkingLevel) remain as compatibility adapters, but new custom level sets should useresolveThinkingProfile. - Gateway rows/defaults expose
thinkingLevels,thinkingOptions, andthinkingDefaultso ACP/chat clients render the same profile ids and labels that runtime validation uses.
Was this useful?