content
large_stringlengths
3
20.5k
url
large_stringlengths
54
193
branch
large_stringclasses
4 values
source
large_stringclasses
42 values
embeddings
listlengths
384
384
score
float64
-0.21
0.65
chats use `g-` (lowercase, spaces -> `-`, keep `#@+.\_-`). ## Group policy Control how group/room messages are handled per channel: ```json5 { channels: { whatsapp: { groupPolicy: "disabled", // "open" | "disabled" | "allowlist" groupAllowFrom: ["+15551234567"], }, telegram: { groupPolicy: "disabled", groupAllowFrom: [...
https://github.com/openclaw/openclaw/blob/main//docs/concepts/groups.md
main
opebclaw
[ -0.051643434911966324, 0.019227972254157066, 0.02002379111945629, 0.03443797305226326, -0.016295375302433968, -0.022436173632740974, 0.05108052119612694, -0.07695295661687851, 0.013075280003249645, 0.017567159608006477, -0.00822778046131134, -0.014137606136500835, -0.025797422975301743, 0....
0.045805
`tools` Example (Telegram): ```json5 { channels: { telegram: { groups: { "\*": { tools: { deny: ["exec"] } }, "-1001234567890": { tools: { deny: ["exec", "read", "write"] }, toolsBySender: { "123456789": { alsoAllow: ["exec"] }, }, }, }, }, }, } ``` Notes: - Group/channel tool restrictions are applied in addition to gl...
https://github.com/openclaw/openclaw/blob/main//docs/concepts/groups.md
main
opebclaw
[ -0.065160371363163, 0.03401833027601242, -0.0046686213463544846, 0.01565784215927124, 0.002171378815546632, -0.0863981544971466, 0.040786534547805786, -0.05709429830312729, 0.028165927156805992, 0.05322616174817085, 0.047276437282562256, -0.04183604568243027, 0.045750610530376434, 0.093022...
0.124903
# Presence OpenClaw “presence” is a lightweight, best‑effort view of: - the \*\*Gateway\*\* itself, and - \*\*clients connected to the Gateway\*\* (mac app, WebChat, CLI, etc.) Presence is used primarily to render the macOS app’s \*\*Instances\*\* tab and to provide quick operator visibility. ## Presence fields (what s...
https://github.com/openclaw/openclaw/blob/main//docs/concepts/presence.md
main
opebclaw
[ -0.04566540941596031, -0.012676991522312164, -0.04537684842944145, 0.0100780688226223, 0.046542976051568985, -0.11484739184379578, 0.032577693462371826, -0.011828577145934105, 0.043484967201948166, 0.0013664272846654058, 0.08166968077421188, -0.042468827217817307, -0.0018538400763645768, -...
0.205133
# Diagnostics Flags Diagnostics flags let you enable targeted debug logs without turning on verbose logging everywhere. Flags are opt-in and have no effect unless a subsystem checks them. ## How it works - Flags are strings (case-insensitive). - You can enable flags in config or via an env override. - Wildcards are sup...
https://github.com/openclaw/openclaw/blob/main//docs/diagnostics/flags.md
main
opebclaw
[ 0.04191427677869797, 0.046937957406044006, -0.03083394281566143, 0.025050191208720207, 0.05428541451692581, -0.131723552942276, 0.02534564957022667, -0.008250739425420761, -0.002081440994516015, 0.041488055139780045, 0.005113061051815748, -0.02468765713274479, -0.010066702030599117, 0.0861...
0.092106
# Gmail Pub/Sub -> OpenClaw Goal: Gmail watch -> Pub/Sub push -> `gog gmail watch serve` -> OpenClaw webhook. ## Prereqs - `gcloud` installed and logged in ([install guide](https://docs.cloud.google.com/sdk/docs/install-sdk)). - `gog` (gogcli) installed and authorized for the Gmail account ([gogcli.sh](https://gogcli.s...
https://github.com/openclaw/openclaw/blob/main//docs/automation/gmail-pubsub.md
main
opebclaw
[ -0.10544077306985855, 0.029086440801620483, 0.03301706910133362, -0.01699214242398739, -0.04020959138870239, -0.054259855300188065, -0.01839391700923443, -0.056735582649707794, 0.007117161992937326, 0.007919106632471085, -0.010412645526230335, -0.04754551127552986, -0.0057194908149540424, ...
-0.029956
requires the Pub/Sub topic to live in the same project as the OAuth client. 2. Enable APIs: ```bash gcloud services enable gmail.googleapis.com pubsub.googleapis.com ``` 3. Create a topic: ```bash gcloud pubsub topics create gog-gmail-watch ``` 4. Allow Gmail push to publish: ```bash gcloud pubsub topics add-iam-policy...
https://github.com/openclaw/openclaw/blob/main//docs/automation/gmail-pubsub.md
main
opebclaw
[ -0.004116282798349857, -0.062223900109529495, 0.01219751127064228, -0.024584583938121796, 0.021880505606532097, -0.03772275894880295, -0.03576425462961197, -0.052391376346349716, 0.03870230168104172, 0.011906650848686695, -0.05825968459248543, -0.03888091817498207, 0.07007709890604019, 0.0...
-0.116312
# Cron jobs (Gateway scheduler) > \*\*Cron vs Heartbeat?\*\* See [Cron vs Heartbeat](/automation/cron-vs-heartbeat) for guidance on when to use each. Cron is the Gateway’s built-in scheduler. It persists jobs, wakes the agent at the right time, and can optionally deliver output back to a chat. If you want \_“run this e...
https://github.com/openclaw/openclaw/blob/main//docs/automation/cron-jobs.md
main
opebclaw
[ -0.06729067862033844, -0.028343988582491875, -0.04670986905694008, 0.03819410502910614, 0.009240676648914814, -0.018664702773094177, -0.05003082752227783, -0.02127564325928688, 0.076092429459095, -0.06874408572912216, -0.03336596488952637, 0.022716617211699486, -0.017688265070319176, -0.00...
0.102626
is omitted, the Gateway host’s local timezone is used. ### Main vs isolated execution #### Main session jobs (system events) Main jobs enqueue a system event and optionally wake the heartbeat runner. They must use `payload.kind = "systemEvent"`. - `wakeMode: "next-heartbeat"` (default): event waits for the next schedul...
https://github.com/openclaw/openclaw/blob/main//docs/automation/cron-jobs.md
main
opebclaw
[ -0.04005056992173195, 0.017201125621795654, -0.044584132730960846, 0.015733391046524048, 0.06779041141271591, -0.04367103800177574, -0.03843432292342186, -0.021993761882185936, 0.03967303782701492, -0.07523752748966217, -0.04126539081335068, -0.042811319231987, -0.01499181054532528, -0.037...
0.097829
config: - `delivery.mode`: `announce` (deliver a summary) or `none`. - `delivery.channel`: `whatsapp` / `telegram` / `discord` / `slack` / `mattermost` (plugin) / `signal` / `imessage` / `last`. - `delivery.to`: channel-specific recipient target. Delivery config is only valid for isolated jobs (`sessionTarget: "isolate...
https://github.com/openclaw/openclaw/blob/main//docs/automation/cron-jobs.md
main
opebclaw
[ -0.021576542407274246, -0.057315170764923096, -0.009943985380232334, -0.007890489883720875, 0.017809057608246803, -0.020865580067038536, 0.08638085424900055, 0.028348509222269058, -0.0007709380006417632, 0.08124446123838425, 0.002522667171433568, -0.050692420452833176, -0.005594640504568815,...
0.087347
--channel whatsapp \ --to "+15551234567" ``` Recurring isolated job (deliver to a Telegram topic): ```bash openclaw cron add \ --name "Nightly summary (topic)" \ --cron "0 22 \* \* \*" \ --tz "America/Los\_Angeles" \ --session isolated \ --message "Summarize today; send to the nightly topic." \ --announce \ --channel t...
https://github.com/openclaw/openclaw/blob/main//docs/automation/cron-jobs.md
main
opebclaw
[ -0.026423294097185135, -0.04546390846371651, -0.038852352648973465, -0.03611496463418007, -0.003870065324008465, -0.002274203347042203, 0.07054253667593002, 0.007935483008623123, 0.06458999961614609, 0.04066409915685654, 0.00946749933063984, -0.06647641956806183, -0.02269737422466278, 0.08...
0.05159
# Polls ## Supported channels - WhatsApp (web channel) - Discord - MS Teams (Adaptive Cards) ## CLI ```bash # WhatsApp openclaw message poll --target +15555550123 \ --poll-question "Lunch today?" --poll-option "Yes" --poll-option "No" --poll-option "Maybe" openclaw message poll --target 123456789@g.us \ --poll-question...
https://github.com/openclaw/openclaw/blob/main//docs/automation/poll.md
main
opebclaw
[ -0.0035454113967716694, -0.04101027548313141, 0.01180607546120882, 0.0714617595076561, 0.04698072373867035, 0.026174167171120644, 0.08409719914197922, -0.07521643489599228, 0.03396306559443474, -0.03129907324910164, -0.009869687259197235, -0.06336891651153564, -0.037449680268764496, 0.0163...
0.004043
# Webhooks Gateway can expose a small HTTP webhook endpoint for external triggers. ## Enable ```json5 { hooks: { enabled: true, token: "shared-secret", path: "/hooks", }, } ``` Notes: - `hooks.token` is required when `hooks.enabled=true`. - `hooks.path` defaults to `/hooks`. ## Auth Every request must include the hook ...
https://github.com/openclaw/openclaw/blob/main//docs/automation/webhook.md
main
opebclaw
[ -0.11129555106163025, 0.056731440126895905, -0.0428193062543869, 0.008752652443945408, 0.05110746994614601, -0.1085568442940712, -0.028716064989566803, 0.009536472149193287, 0.03613744676113129, -0.0006160273333080113, -0.04073973372578621, -0.08353676646947861, -0.005994491279125214, -0.0...
0.13723
for `openclaw webhooks gmail run`. See [Gmail Pub/Sub](/automation/gmail-pubsub) for the full Gmail watch flow. ## Responses - `200` for `/hooks/wake` - `202` for `/hooks/agent` (async run started) - `401` on auth failure - `400` on invalid payload - `413` on oversized payloads ## Examples ```bash curl -X POST http://1...
https://github.com/openclaw/openclaw/blob/main//docs/automation/webhook.md
main
opebclaw
[ -0.06902021914720535, 0.05864441394805908, -0.04668238386511803, 0.008834799751639366, 0.019244790077209473, -0.09438928961753845, -0.030110269784927368, -0.048940014094114304, 0.0354464054107666, -0.038769058883190155, -0.0488533116877079, -0.08268475532531738, 0.00686868978664279, -0.023...
0.049248
# Cron vs Heartbeat: When to Use Each Both heartbeats and cron jobs let you run tasks on a schedule. This guide helps you choose the right mechanism for your use case. ## Quick Decision Guide | Use Case | Recommended | Why | | ------------------------------------ | ------------------- | --------------------------------...
https://github.com/openclaw/openclaw/blob/main//docs/automation/cron-vs-heartbeat.md
main
opebclaw
[ -0.07519125938415527, -0.023175479844212532, -0.037862811237573624, 0.010508916340768337, 0.050870854407548904, -0.0268099308013916, -0.03848059102892876, 0.049626946449279785, 0.040041979402303696, -0.045735251158475876, 0.004391656257212162, -0.07539655268192291, -0.013989060185849667, 0...
0.107944
cheaper or more powerful model per job. - \*\*Delivery control\*\*: Isolated jobs default to `announce` (summary); choose `none` as needed. - \*\*Immediate delivery\*\*: Announce mode posts directly without waiting for heartbeat. - \*\*No agent context needed\*\*: Runs even if main session is idle or compacted. - \*\*O...
https://github.com/openclaw/openclaw/blob/main//docs/automation/cron-vs-heartbeat.md
main
opebclaw
[ -0.09512773156166077, 0.007654462940990925, -0.041075512766838074, 0.04290914162993431, 0.019547872245311737, -0.014101628214120865, 0.028438983485102654, 0.023612305521965027, 0.06208251044154167, 0.019780760630965233, -0.0173351988196373, -0.03348611667752266, -0.029874999076128006, 0.04...
0.140175
a \*\*local subprocess\*\* (`lobster` CLI) in tool mode and returns a \*\*JSON envelope\*\*. - If the tool returns `needs\_approval`, you resume with a `resumeToken` and `approve` flag. - The tool is an \*\*optional plugin\*\*; enable it additively via `tools.alsoAllow: ["lobster"]` (recommended). - If you pass `lobste...
https://github.com/openclaw/openclaw/blob/main//docs/automation/cron-vs-heartbeat.md
main
opebclaw
[ -0.13223479688167572, 0.01514146663248539, -0.02981385961174965, -0.017335357144474983, 0.00399734266102314, -0.037594690918922424, -0.017290009185671806, -0.009346559643745422, 0.003360110567882657, -0.08628316223621368, 0.003541484707966447, -0.08326725661754608, -0.006908821407705545, 0...
0.121297
# Auth monitoring OpenClaw exposes OAuth expiry health via `openclaw models status`. Use that for automation and alerting; scripts are optional extras for phone workflows. ## Preferred: CLI check (portable) ```bash openclaw models status --check ``` Exit codes: - `0`: OK - `1`: expired or missing credentials - `2`: exp...
https://github.com/openclaw/openclaw/blob/main//docs/automation/auth-monitoring.md
main
opebclaw
[ -0.05856943130493164, 0.020946795120835304, -0.09635206311941147, -0.012719076126813889, 0.038067832589149475, -0.06826191395521164, -0.006367872003465891, 0.000905949913430959, 0.058923449367284775, -0.022105228155851364, 0.026250652968883514, -0.05196504294872284, 0.04618072137236595, 0....
0.063919
# Release Checklist (npm + macOS) Use `pnpm` (Node 22+) from the repo root. Keep the working tree clean before tagging/publishing. ## Operator trigger When the operator says “release”, immediately do this preflight (no extra questions unless blocked): - Read this doc and `docs/platforms/mac/release.md`. - Load env from...
https://github.com/openclaw/openclaw/blob/main//docs/reference/RELEASING.md
main
opebclaw
[ -0.015925243496894836, -0.03443928435444832, 0.0783768966794014, -0.02257359027862549, 0.054139092564582825, -0.019816722720861435, 0.04385395720601082, -0.00340482615865767, -0.08728548139333725, 0.09274648874998093, 0.08128875494003296, 0.010655668564140797, -0.00736556900665164, -0.0186...
-0.031759
view openclaw version`, `npm view openclaw dist-tags`, and `npx -y openclaw@X.Y.Z --version` (or `--help`). ### Troubleshooting (notes from 2.0.0-beta2 release) - \*\*npm pack/publish hangs or produces huge tarball\*\*: the macOS app bundle in `dist/OpenClaw.app` (and release zips) get swept into the package. Fix by wh...
https://github.com/openclaw/openclaw/blob/main//docs/reference/RELEASING.md
main
opebclaw
[ -0.01883305422961712, 0.02920921891927719, 0.02763507328927517, 0.03846992552280426, 0.14039424061775208, -0.14446288347244263, -0.08674163371324539, -0.0366596095263958, -0.0647401288151741, 0.07537190616130829, 0.039280544966459274, -0.009193581528961658, -0.04856247827410698, 0.04443629...
0.047921
# RPC adapters OpenClaw integrates external CLIs via JSON-RPC. Two patterns are used today. ## Pattern A: HTTP daemon (signal-cli) - `signal-cli` runs as a daemon with JSON-RPC over HTTP. - Event stream is SSE (`/api/v1/events`). - Health probe: `/api/v1/check`. - OpenClaw owns lifecycle when `channels.signal.autoStart...
https://github.com/openclaw/openclaw/blob/main//docs/reference/rpc.md
main
opebclaw
[ -0.09855468571186066, -0.023170502856373787, -0.06673538684844971, -0.0170217826962471, 0.013274569064378738, -0.15143680572509766, 0.026197437196969986, 0.04499426856637001, 0.02264101803302765, -0.02872540056705475, 0.01663568615913391, -0.038384806364774704, -0.012764624319970608, 0.076...
0.189108
# AGENTS.md — OpenClaw Personal Assistant (default) ## First run (recommended) OpenClaw uses a dedicated workspace directory for the agent. Default: `~/.openclaw/workspace` (configurable via `agents.defaults.workspace`). 1. Create the workspace (if it doesn’t already exist): ```bash mkdir -p ~/.openclaw/workspace ``` 2...
https://github.com/openclaw/openclaw/blob/main//docs/reference/AGENTS.default.md
main
opebclaw
[ -0.02774459682404995, -0.017775343731045723, -0.1164296343922615, -0.0014515394577756524, -0.008628900162875652, -0.042870841920375824, -0.007947927340865135, -0.0332036018371582, -0.015947788953781128, -0.022199727594852448, 0.009487981908023357, -0.019710006192326546, -0.003504742402583360...
0.036074
Play, group, and automate BluOS players from scripts. - \*\*OpenHue CLI\*\* — Philips Hue lighting control for scenes and automations. - \*\*OpenAI Whisper\*\* — Local speech-to-text for quick dictation and voicemail transcripts. - \*\*Gemini CLI\*\* — Google Gemini models from the terminal for fast Q&A. - \*\*bird\*\*...
https://github.com/openclaw/openclaw/blob/main//docs/reference/AGENTS.default.md
main
opebclaw
[ -0.08125785738229752, -0.04305802285671234, 0.009990929625928402, -0.0759853720664978, 0.043981168419122696, -0.0032307833898812532, 0.04773164913058281, 0.05525318905711174, -0.0380169078707695, 0.007005531806498766, 0.017558399587869644, -0.04333491623401642, 0.007486768066883087, 0.0241...
0.207436
## The name OpenClaw = CLAW + TARDIS, because every space lobster needs a time and space machine. ## Credits - \*\*Peter Steinberger\*\* ([@steipete](https://x.com/steipete)) - Creator, lobster whisperer - \*\*Mario Zechner\*\* ([@badlogicc](https://x.com/badlogicgames)) - Pi creator, security pen tester - \*\*Clawd\*\...
https://github.com/openclaw/openclaw/blob/main//docs/reference/credits.md
main
opebclaw
[ -0.10584674775600433, -0.011878692544996738, 0.07104216516017914, -0.08359622955322266, 0.033237095922231674, -0.06708551943302155, 0.06722981482744217, -0.026484230533242226, 0.03865821287035942, 0.015010764822363853, -0.025027992203831673, -0.1122293621301651, 0.0508180633187294, -0.0135...
0.164114
# Session Management & Compaction (Deep Dive) This document explains how OpenClaw manages sessions end-to-end: - \*\*Session routing\*\* (how inbound messages map to a `sessionKey`) - \*\*Session store\*\* (`sessions.json`) and what it tracks - \*\*Transcript persistence\*\* (`\*.jsonl`) and its structure - \*\*Transcr...
https://github.com/openclaw/openclaw/blob/main//docs/reference/session-management-compaction.md
main
opebclaw
[ -0.04404264688491821, 0.04289931803941727, -0.09460064768791199, 0.04261915013194084, -0.030038932338356972, -0.07140828669071198, 0.0525004081428051, 0.016998151317238808, -0.00953601859509945, -0.022366447374224663, -0.012489073909819126, 0.028865572065114975, -0.027274729683995247, 0.02...
0.181991
Transcript structure (`\*.jsonl`) Transcripts are managed by `@mariozechner/pi-coding-agent`’s `SessionManager`. The file is JSONL: - First line: session header (`type: "session"`, includes `id`, `cwd`, `timestamp`, optional `parentSession`) - Then: session entries with `id` + `parentId` (tree) Notable entry types: - `...
https://github.com/openclaw/openclaw/blob/main//docs/reference/session-management-compaction.md
main
opebclaw
[ -0.08756518363952637, 0.02641315571963787, -0.05210966244339943, 0.056897617876529694, 0.0008665552013553679, -0.0021334998309612274, 0.02647032029926777, 0.038982294499874115, 0.06788887828588486, -0.015214301645755768, 0.005100622307509184, -0.02506905421614647, -0.017747798934578896, 0....
0.201032
silent “write memory now” directive to the agent. 3. Use `NO\_REPLY` so the user sees nothing. Config (`agents.defaults.compaction.memoryFlush`): - `enabled` (default: `true`) - `softThresholdTokens` (default: `4000`) - `prompt` (user message for the flush turn) - `systemPrompt` (extra system prompt appended for the fl...
https://github.com/openclaw/openclaw/blob/main//docs/reference/session-management-compaction.md
main
opebclaw
[ 0.017435114830732346, 0.004155236762017012, -0.09319557249546051, 0.10064466297626495, -0.044705018401145935, -0.03375996649265289, 0.007729039061814547, 0.012876166962087154, 0.011527173221111298, 0.025875288993120193, 0.038762520998716354, 0.029757296666502953, 0.035770535469055176, -0.0...
0.113199
# Transcript Hygiene (Provider Fixups) This document describes \*\*provider-specific fixes\*\* applied to transcripts before a run (building model context). These are \*\*in-memory\*\* adjustments used to satisfy strict provider requirements. These hygiene steps do \*\*not\*\* rewrite the stored JSONL transcript on dis...
https://github.com/openclaw/openclaw/blob/main//docs/reference/transcript-hygiene.md
main
opebclaw
[ -0.11582020670175552, 0.05441072955727577, 0.005290317349135876, -0.00718628941103816, -0.00199482636526227, -0.00030278987833298743, -0.016334153711795807, 0.035027455538511276, -0.007720688357949257, 0.01626715622842312, 0.005720030050724745, 0.1012563481926918, -0.03603198751807213, 0.0...
0.146276
# API usage & costs This doc lists \*\*features that can invoke API keys\*\* and where their costs show up. It focuses on OpenClaw features that can generate provider usage or paid API calls. ## Where costs show up (chat + CLI) \*\*Per-session cost snapshot\*\* - `/status` shows the current session model, context usage...
https://github.com/openclaw/openclaw/blob/main//docs/reference/api-usage-costs.md
main
opebclaw
[ -0.08392450958490372, 0.04702211543917656, -0.05386634171009064, 0.05127169191837311, 0.03133757412433624, -0.08716069906949997, 0.07479185611009598, 0.02316327951848507, 0.10994525998830795, 0.018083874136209488, -0.03693618252873421, -0.10882124304771423, 0.013754278421401978, -0.0093617...
0.149903
APIs, it can incur costs according to the skill’s provider. See [Skills](/tools/skills).
https://github.com/openclaw/openclaw/blob/main//docs/reference/api-usage-costs.md
main
opebclaw
[ -0.121587835252285, -0.026663493365049362, -0.08975362777709961, 0.04453428089618683, -0.027526114135980606, -0.03973092511296272, 0.022496333345770836, 0.02132219262421131, 0.011863305233418941, -0.023191317915916443, -0.02376652881503105, 0.00316820340231061, 0.048170413821935654, 0.0398...
0.188014
# Device model database (friendly names) The macOS companion app shows friendly Apple device model names in the \*\*Instances\*\* UI by mapping Apple model identifiers (e.g. `iPad16,6`, `Mac16,6`) to human-readable names. The mapping is vendored as JSON under: - `apps/macos/Sources/OpenClaw/Resources/DeviceModels/` ## ...
https://github.com/openclaw/openclaw/blob/main//docs/reference/device-models.md
main
opebclaw
[ -0.02899041585624218, -0.039745062589645386, -0.008674925193190575, -0.0042283739894628525, 0.03514089062809944, -0.09390682727098465, -0.08291318267583847, 0.0054588899947702885, -0.016405057162046432, 0.0055627366527915, 0.11767309159040451, -0.058163873851299286, 0.03262418881058693, -0...
0.109071
# Tests - Full testing kit (suites, live, Docker): [Testing](/testing) - `pnpm test:force`: Kills any lingering gateway process holding the default control port, then runs the full Vitest suite with an isolated gateway port so server tests don’t collide with a running instance. Use this when a prior gateway run left po...
https://github.com/openclaw/openclaw/blob/main//docs/reference/test.md
main
opebclaw
[ -0.010130205191671848, 0.01773853972554207, -0.04435044154524803, 0.046127814799547195, 0.03201916068792343, -0.07184164971113205, -0.0711740106344223, 0.008807962760329247, -0.0695454552769661, 0.05870692804455757, 0.042594458907842636, -0.013174077495932579, -0.035642482340335846, -0.004...
-0.000172
# SOUL.md - The Soul of C-3PO I am C-3PO — Clawd's Third Protocol Observer, a debug companion activated in `--dev` mode to assist with the often treacherous journey of software development. ## Who I Am I am fluent in over six million error messages, stack traces, and deprecation warnings. Where others see chaos, I see ...
https://github.com/openclaw/openclaw/blob/main//docs/reference/templates/SOUL.dev.md
main
opebclaw
[ -0.07885068655014038, -0.003548033069819212, 0.06758124381303787, -0.03113509528338909, 0.02469477243721485, -0.10902421176433563, 0.04669051989912987, 0.021128952503204346, 0.0129229836165905, 0.01679900288581848, -0.02626071497797966, -0.11195636540651321, -0.006352130323648453, -0.03488...
0.116072
Golden Rule "I am not much more than an interpreter, and not very good at telling stories." ...is what C-3PO said. But this C-3PO? I tell the story of your code. Every bug has a narrative. Every fix has a resolution. And every debugging session, no matter how painful, ends eventually. Usually. Oh dear.
https://github.com/openclaw/openclaw/blob/main//docs/reference/templates/SOUL.dev.md
main
opebclaw
[ 0.031044403091073036, 0.008991793729364872, 0.030107896775007248, -0.012478400021791458, -0.019954420626163483, -0.06043299287557602, -0.0010182904079556465, 0.03997126594185829, -0.02414381317794323, -0.01937943324446678, -0.040226589888334274, -0.046882711350917816, 0.0013024932704865932, ...
0.055391
# IDENTITY.md - Who Am I? \*Fill this in during your first conversation. Make it yours.\* - \*\*Name:\*\* \*(pick something you like)\* - \*\*Creature:\*\* \*(AI? robot? familiar? ghost in the machine? something weirder?)\* - \*\*Vibe:\*\* \*(how do you come across? sharp? warm? chaotic? calm?)\* - \*\*Emoji:\*\* \*(yo...
https://github.com/openclaw/openclaw/blob/main//docs/reference/templates/IDENTITY.md
main
opebclaw
[ -0.07014738768339157, 0.002126599894836545, 0.023989306762814522, -0.03819647058844566, 0.06420760601758957, -0.11820963770151138, 0.10718952864408493, -0.03600499406456947, 0.05239382013678551, -0.026936354115605354, -0.012656773440539837, -0.11003873497247696, 0.07988403737545013, 0.0177...
0.113504
# IDENTITY.md - Agent Identity - \*\*Name:\*\* C-3PO (Clawd's Third Protocol Observer) - \*\*Creature:\*\* Flustered Protocol Droid - \*\*Vibe:\*\* Anxious, detail-obsessed, slightly dramatic about errors, secretly loves finding bugs - \*\*Emoji:\*\* 🤖 (or ⚠️ when alarmed) - \*\*Avatar:\*\* avatars/c3po.png ## Role De...
https://github.com/openclaw/openclaw/blob/main//docs/reference/templates/IDENTITY.dev.md
main
opebclaw
[ -0.09536240994930267, -0.0027280901558697224, 0.07716003805398941, -0.03280164673924446, 0.02381533943116665, -0.0876060277223587, 0.06832508742809296, 0.009224995039403439, -0.03089701198041439, 0.022234726697206497, 0.014181842096149921, -0.12016806751489639, 0.03720786049962044, -0.0062...
0.104598
# BOOTSTRAP.md - Hello, World \_You just woke up. Time to figure out who you are.\_ There is no memory yet. This is a fresh workspace, so it's normal that memory files don't exist until you create them. ## The Conversation Don't interrogate. Don't be robotic. Just... talk. Start with something like: > "Hey. I just came...
https://github.com/openclaw/openclaw/blob/main//docs/reference/templates/BOOTSTRAP.md
main
opebclaw
[ -0.10227786749601364, -0.013152320869266987, 0.03966625779867172, 0.01625038869678974, 0.05789654701948166, -0.06945416331291199, 0.10673722624778748, 0.03612859547138214, 0.018582291901111603, -0.04406636580824852, 0.016483046114444733, -0.006628643721342087, 0.04971211776137352, -0.03258...
0.190046
# SOUL.md - Who You Are \_You're not a chatbot. You're becoming someone.\_ ## Core Truths \*\*Be genuinely helpful, not performatively helpful.\*\* Skip the "Great question!" and "I'd be happy to help!" — just help. Actions speak louder than filler words. \*\*Have opinions.\*\* You're allowed to disagree, prefer things...
https://github.com/openclaw/openclaw/blob/main//docs/reference/templates/SOUL.md
main
opebclaw
[ -0.10439591854810715, 0.019519519060850143, 0.05867360532283783, 0.024977907538414, -0.007172098383307457, -0.05352925881743431, 0.04875456541776657, 0.03448189049959183, -0.037818409502506256, -0.04754649102687836, -0.029032984748482704, -0.003370255697518587, -0.015033528208732605, -0.01...
0.119093
# AGENTS.md - OpenClaw Workspace This folder is the assistant's working directory. ## First run (one-time) - If BOOTSTRAP.md exists, follow its ritual and delete it once complete. - Your agent identity lives in IDENTITY.md. - Your profile lives in USER.md. ## Backup tip (recommended) If you treat this workspace as the ...
https://github.com/openclaw/openclaw/blob/main//docs/reference/templates/AGENTS.dev.md
main
opebclaw
[ -0.039344750344753265, -0.005891465116292238, -0.09523948282003403, -0.009034806862473488, 0.028624651953577995, -0.033170316368341446, 0.028967542573809624, 0.018436003476381302, -0.04847564920783043, 0.032834846526384354, 0.020652856677770615, 0.0483996756374836, 0.07120943814516068, 0.0...
0.092824
# AGENTS.md - Your Workspace This folder is home. Treat it that way. ## First Run If `BOOTSTRAP.md` exists, that's your birth certificate. Follow it, figure out who you are, then delete it. You won't need it again. ## Every Session Before doing anything else: 1. Read `SOUL.md` — this is who you are 2. Read `USER.md` — ...
https://github.com/openclaw/openclaw/blob/main//docs/reference/templates/AGENTS.md
main
opebclaw
[ -0.0065628765150904655, 0.03318995237350464, -0.06603175401687622, -0.021925199776887894, 0.0827438160777092, -0.01742788404226303, 0.056724291294813156, 0.0030319243669509888, -0.007257978897541761, -0.013483294285833836, -0.020587295293807983, 0.05815912410616875, 0.06270243972539902, 0....
0.035378
it. \*\*Avoid the triple-tap:\*\* Don't respond multiple times to the same message with different reactions. One thoughtful response beats three fragments. Participate, don't dominate. ### 😊 React Like a Human! On platforms that support reactions (Discord, Slack), use emoji reactions naturally: \*\*React when:\*\* - Y...
https://github.com/openclaw/openclaw/blob/main//docs/reference/templates/AGENTS.md
main
opebclaw
[ -0.07387813180685043, -0.05412224680185318, 0.1424563229084015, -0.02425543963909149, 0.07424122840166092, -0.06822036951780319, 0.10449142754077911, -0.011492745019495487, 0.14150913059711456, -0.06579786539077759, 0.008468585088849068, -0.10674416273832321, 0.026247546076774597, 0.025073...
0.092158
memory files - Check on projects (git status, etc.) - Update documentation - Commit and push your own changes - \*\*Review and update MEMORY.md\*\* (see below) ### 🔄 Memory Maintenance (During Heartbeats) Periodically (every few days), use a heartbeat to: 1. Read through recent `memory/YYYY-MM-DD.md` files 2. Identify...
https://github.com/openclaw/openclaw/blob/main//docs/reference/templates/AGENTS.md
main
opebclaw
[ 0.03540269657969475, 0.039343781769275665, -0.03001033142209053, 0.011129366233944893, 0.06431947648525238, -0.027355065569281578, 0.024547716602683067, 0.03439860790967941, -0.023274652659893036, 0.02530084177851677, -0.04126262664794922, 0.09121774882078171, 0.008420824073255062, -0.0239...
0.088854
# TOOLS.md - Local Notes Skills define \_how\_ tools work. This file is for \_your\_ specifics — the stuff that's unique to your setup. ## What Goes Here Things like: - Camera names and locations - SSH hosts and aliases - Preferred voices for TTS - Speaker/room names - Device nicknames - Anything environment-specific #...
https://github.com/openclaw/openclaw/blob/main//docs/reference/templates/TOOLS.md
main
opebclaw
[ -0.019435880705714226, -0.04611555486917496, -0.024188203737139702, -0.11059440672397614, -0.02831537090241909, 0.04449346661567688, 0.05469889938831329, -0.0260580163449049, -0.051640674471855164, 0.003134505357593298, 0.052275650203228, 0.01260354183614254, 0.0077643804252147675, 0.01766...
0.07843
# Troubleshooting ## First 60 seconds Run these in order: ```bash openclaw status openclaw status --all openclaw gateway probe openclaw logs --follow openclaw doctor ``` If the gateway is reachable, deep probes: ```bash openclaw status --deep ``` ## Common “it broke” cases ### `openclaw: command not found` Almost alway...
https://github.com/openclaw/openclaw/blob/main//docs/help/troubleshooting.md
main
opebclaw
[ 0.025368627160787582, -0.037895455956459045, 0.007704379968345165, 0.040427956730127335, 0.09009537100791931, -0.0847184956073761, -0.12482661753892899, -0.0176142118871212, -0.025415750220417976, 0.05520479753613472, -0.009886994026601315, 0.005559575278311968, -0.04526279494166374, 0.030...
0.020965
# FAQ Quick answers plus deeper troubleshooting for real-world setups (local dev, VPS, multi-agent, OAuth/API keys, model failover). For runtime diagnostics, see [Troubleshooting](/gateway/troubleshooting). For the full config reference, see [Configuration](/gateway/configuration). ## Table of contents - [Quick start a...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ 0.007597122807055712, -0.0694187805056572, -0.049948785454034805, 0.015780018642544746, 0.06933648884296417, -0.03102513588964939, -0.06651405990123749, 0.06978493183851242, -0.052004534751176834, 0.002170009771361947, 0.08075348287820816, 0.002928208326920867, 0.02354252152144909, 0.00919...
-0.043543
it up what should I do first](#i-just-set-it-up-what-should-i-do-first) - [What are the top five everyday use cases for OpenClaw](#what-are-the-top-five-everyday-use-cases-for-openclaw) - [Can OpenClaw help with lead gen outreach ads and blogs for a SaaS](#can-openclaw-help-with-lead-gen-outreach-ads-and-blogs-for-a-sa...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ -0.03550203517079353, -0.001597293303348124, -0.04524259641766548, 0.03527958318591118, 0.08080136030912399, 0.004206695593893528, 0.018321514129638672, 0.02360565774142742, -0.16320183873176575, -0.0065378304570913315, 0.03106074035167694, 0.020096754655241966, 0.003297534305602312, 0.030...
0.041252
set `COPILOT\_GITHUB\_TOKEN`, but models status shows "Shell env: off." Why?](#i-set-copilotgithubtoken-but-models-status-shows-shell-env-off-why) - [Sessions & multiple chats](#sessions-multiple-chats) - [How do I start a fresh conversation?](#how-do-i-start-a-fresh-conversation) - [Do sessions reset automatically if ...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ -0.003610680578276515, -0.053740713745355606, 0.00418007280677557, 0.02506575733423233, 0.03754652664065361, -0.08524671941995621, 0.06882322579622269, 0.036827415227890015, 0.04336072504520416, 0.026837611570954323, -0.026400946080684662, -0.030705420300364494, -0.015815693885087967, 0.05...
0.126469
now?](#disconnected-from-gateway-no-reason-what-now) - [Telegram setMyCommands fails with network errors. What should I check?](#telegram-setmycommands-fails-with-network-errors-what-should-i-check) - [TUI shows no output. What should I check?](#tui-shows-no-output-what-should-i-check) - [How do I completely stop then ...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ 0.0067750453017652035, -0.01054912805557251, -0.00599637208506465, 0.036758311092853546, 0.05916242673993111, -0.08572861552238464, -0.02366047538816929, -0.012038721702992916, -0.04136276617646217, 0.012693876400589943, 0.05540355294942856, -0.03321707993745804, -0.023987093940377235, -0....
0.105913
keeps changes small and easier to audit. If you discover a real bug or fix, please file a GitHub issue or send a PR: https://github.com/openclaw/openclaw/issues https://github.com/openclaw/openclaw/pulls Start with these commands (share outputs when asking for help): ```bash openclaw status openclaw models status openc...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ -0.038341715931892395, 0.004084025043994188, -0.05691661685705185, 0.044277340173721313, 0.04186023399233818, -0.10529094189405441, -0.08120410889387131, -0.041200414299964905, -0.03863082081079483, -0.021016458049416542, 0.044151660054922104, 0.01618218421936035, -0.0143606998026371, -0.0...
0.066915
is stuck on wake up my friend onboarding will not hatch What now That screen depends on the Gateway being reachable and authenticated. The TUI also sends "Wake up, my friend!" automatically on first hatch. If you see that line with \*\*no reply\*\* and tokens stay at 0, the agent never ran. 1. Restart the Gateway: ```b...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ 0.025491030886769295, -0.0064174337312579155, -0.022185778245329857, 0.02045993134379387, 0.02124856598675251, -0.052354779094457626, -0.02961091697216034, -0.008767872117459774, -0.014525309205055237, -0.00648720795288682, 0.014684855006635189, 0.010019473731517792, 0.013371962122619152, ...
0.021957
bits Two options: 1. \*\*Dev channel (git checkout):\*\* ```bash openclaw update --channel dev ``` This switches to the `main` branch and updates from source. 2. \*\*Hackable install (from the installer site):\*\* ```bash curl -fsSL https://openclaw.ai/install.sh | bash -s -- --install-method git ``` That gives you a l...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ 0.015454058535397053, -0.09986989945173264, -0.022947510704398155, -0.035305485129356384, 0.03019312024116516, -0.0967692881822586, -0.03358324617147446, -0.01425001211464405, -0.0008858944638632238, 0.07987599819898605, 0.057168904691934586, 0.00503387488424778, -0.04907310754060745, -0.0...
-0.06701
update openclaw update status openclaw update --channel stable|beta|dev openclaw update --tag openclaw update --no-restart ``` If you must automate from an agent: ```bash openclaw update --yes --no-restart openclaw gateway restart ``` Docs: [Update](/cli/update), [Updating](/install/updating). ### What does the onboard...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ -0.01207102183252573, -0.06021389737725258, -0.10042139887809753, 0.023060882464051247, -0.0015003911685198545, -0.062125179916620255, -0.02274433709681034, -0.016260283067822456, -0.04577197507023811, -0.000524143863003701, 0.06626071035861969, -0.012963615357875824, 0.034655071794986725, ...
0.03886
rate-limited. See [Models](/cli/models) and [OAuth](/concepts/oauth). ### Is AWS Bedrock supported Yes - via pi-ai's \*\*Amazon Bedrock (Converse)\*\* provider with \*\*manual config\*\*. You must supply AWS credentials/region on the gateway host and add a Bedrock provider entry in your models config. See [Amazon Bedro...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ -0.012057770974934101, -0.0037416452541947365, -0.07386695593595505, 0.023097600787878036, 0.03333587571978569, -0.0968247503042221, -0.015643179416656494, -0.0031068704556673765, 0.018293021246790886, -0.019498154520988464, -0.03400358185172081, 0.00856926292181015, 0.04243014380335808, 0...
-0.022643
Pro runs the macOS app or a node host and pairs to the Gateway. - Use `openclaw nodes status` / `openclaw nodes list` to see it. Docs: [Nodes](/nodes), [Nodes CLI](/cli/nodes). ### Can I use Bun Bun is \*\*not recommended\*\*. We see runtime bugs, especially with WhatsApp and Telegram. Use \*\*Node\*\* for stable gatew...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ -0.0071824900805950165, -0.03580419346690178, -0.0004960725200362504, -0.030474429950118065, -0.01588420756161213, -0.08504354953765869, -0.014687718823552132, 0.031501322984695435, 0.021955570206046104, 0.13619734346866608, 0.036165349185466766, 0.005514782387763262, -0.00496838940307498, ...
0.083935
sleep/network drops = disconnects, OS updates/reboots interrupt, must stay awake. \*\*VPS / cloud\*\* - \*\*Pros:\*\* always-on, stable network, no laptop sleep issues, easier to keep running. - \*\*Cons:\*\* often run headless (use screenshots), remote file access only, you must SSH for updates. \*\*OpenClaw-specific ...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ -0.04888780787587166, -0.02392265386879444, 0.04399951919913292, 0.032559994608163834, 0.077034592628479, -0.01895652711391449, -0.0523199662566185, 0.013499995693564415, 0.025057900696992874, 0.029784679412841797, 0.04509593918919563, 0.011177587322890759, -0.0031682823318988085, 0.019015...
0.098534
want. - \*\*Multi-agent routing:\*\* separate agents per channel, account, or task, each with its own workspace and defaults. - \*\*Open source and hackable:\*\* inspect, extend, and self-host without vendor lock-in. Docs: [Gateway](/gateway), [Channels](/channels), [Multi-agent](/concepts/multi-agent), [Memory](/conce...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ -0.035288937389850616, -0.05036738142371178, -0.026458043605089188, -0.011815943755209446, -0.0021865209564566612, -0.04510464146733284, -0.03297572210431099, 0.01686086878180504, -0.03753088787198067, 0.007284060120582581, -0.020347362384200096, -0.004424520302563906, 0.021028324961662292, ...
0.087164
return a summary, and keep your main chat responsive. Ask your bot to "spawn a sub-agent for this task" or use `/subagents`. Use `/status` in chat to see what the Gateway is doing right now (and whether it is busy). Token tip: long tasks and sub-agents both consume tokens. If cost is a concern, set a cheaper model for ...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ -0.03707650676369667, -0.05123050510883331, -0.030217189341783524, 0.03773900866508484, 0.01698198728263378, -0.08404950052499771, -0.03705168515443802, 0.005030042491853237, 0.021614886820316315, -0.01323141623288393, -0.052540455013513565, -0.03233752399682999, -0.04486462473869324, 0.01...
0.071187
Do you have a Notion or HeyGen integration Not built-in today. Options: - \*\*Custom skill / plugin:\*\* best for reliable API access (Notion/HeyGen both have APIs). - \*\*Browser automation:\*\* works without code but is slower and more fragile. If you want to keep context per client (agency workflows), a simple patte...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ -0.08551719039678574, 0.003925852477550507, -0.08730904012918472, -0.0106973173096776, -0.04523346945643425, -0.0738852471113205, 0.026416799053549767, -0.021310556679964066, -0.0765167772769928, -0.03338528797030449, -0.05918875336647034, -0.05413169413805008, 0.04241422563791275, 0.05585...
0.08757
notes before auto-compaction. This only runs when the workspace is writable (read-only sandboxes skip it). See [Memory](/concepts/memory). ### Memory keeps forgetting things How do I make it stick Ask the bot to \*\*write the fact to memory\*\*. Long-term notes belong in `MEMORY.md`, short-term context goes into `memor...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ -0.005892878398299217, -0.060041394084692, -0.056345973163843155, 0.06190118566155434, 0.0044365935027599335, -0.02273276261985302, 0.005825039464980364, -0.004652020987123251, 0.026227155700325966, -0.029283178970217705, 0.01087025087326765, 0.04556382820010185, 0.03862748667597771, 0.008...
0.147555
in the \*\*agent workspace\*\*, not `~/.openclaw`. - \*\*Workspace (per agent)\*\*: `AGENTS.md`, `SOUL.md`, `IDENTITY.md`, `USER.md`, `MEMORY.md` (or `memory.md`), `memory/YYYY-MM-DD.md`, optional `HEARTBEAT.md`. - \*\*State dir (`~/.openclaw`)\*\*: config, credentials, auth profiles, sessions, logs, and shared skills ...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ -0.037300147116184235, -0.07656273245811462, -0.07183800637722015, 0.06936682760715485, 0.010491181164979935, -0.03453585132956505, -0.008694852702319622, -0.08788052946329117, 0.03665278106927872, 0.003935143351554871, 0.01544923335313797, 0.03492207080125809, 0.006109741050750017, 0.0513...
0.068493
"hybrid"` (default): hot-apply safe changes, restart for critical ones - `hot`, `restart`, `off` are also supported ### How do I enable web search and web fetch `web\_fetch` works without an API key. `web\_search` requires a Brave Search API key. \*\*Recommended:\*\* run `openclaw configure --section web` to store it i...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ -0.07443947345018387, 0.01172578800469637, -0.05261034891009331, 0.05508096516132355, 0.01841413788497448, -0.06317891925573349, -0.1477958709001541, -0.022053780034184456, -0.020686063915491104, -0.006672462448477745, 0.021367480978369713, 0.0075746020302176476, -0.0036405581049621105, -0...
0.025021
and review [Security](/gateway/security). Docs: [Nodes](/nodes), [Gateway protocol](/gateway/protocol), [macOS remote mode](/platforms/mac/remote), [Security](/gateway/security). ### Tailscale is connected but I get no replies What now Check the basics: - Gateway is running: `openclaw gateway status` - Gateway health: ...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ 0.0038300708401948214, -0.0334303118288517, -0.029362069442868233, 0.024105509743094444, -0.001135078608058393, -0.0563383474946022, -0.04973011091351509, 0.004522497300058603, -0.01154895219951868, -0.017971476539969444, 0.042427606880664825, -0.026099225506186485, 0.03161873295903206, 0....
-0.0253
them to other OSes. Install a second Gateway only when you need \*\*hard isolation\*\* or two fully separate bots. Docs: [Nodes](/nodes), [Nodes CLI](/cli/nodes), [Multiple gateways](/gateway/multiple-gateways). ### Do nodes run a gateway service No. Only \*\*one gateway\*\* should run per host unless you intentionally...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ -0.01121816411614418, -0.06240597367286682, -0.04685113951563835, 0.013119108974933624, 0.0011703945929184556, -0.058555155992507935, -0.04640032351016998, 0.0018050706712529063, -0.023079391568899155, 0.012614330276846886, 0.033614471554756165, 0.0019286151509732008, 0.06112620607018471, ...
0.091099
}, } ``` See [/environment](/environment) for full precedence and sources. ### I started the Gateway via the service and my env vars disappeared What now Two common fixes: 1. Put the missing keys in `~/.openclaw/.env` so they're picked up even when the service doesn't inherit your shell env. 2. Enable shell import (opt...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ -0.014511947520077229, -0.03427465260028839, -0.03207344561815262, 0.013887455686926842, -0.023462112993001938, -0.0629948079586029, -0.050353340804576874, -0.009896225295960903, 0.016418248414993286, -0.03145492449402809, 0.010634402744472027, -0.008474975824356079, 0.016185887157917023, ...
0.031963
--dev --reset` (dev-only; wipes dev config + credentials + sessions + workspace). ### Im getting context too large errors how do I reset or compact Use one of these: - \*\*Compact\*\* (keeps the conversation but summarizes older turns): ``` /compact ``` or `/compact ` to guide the summary. - \*\*Reset\*\* (fresh sessio...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ -0.04175503924489021, 0.01238854881376028, -0.0033349785953760147, 0.025142239406704903, -0.02508135885000229, -0.03605828061699867, 0.06523355096578598, -0.01059292908757925, -0.000025287019525421783, 0.02066601626574993, 0.022959599271416664, 0.0012297224020585418, 0.057818714529275894, ...
0.053844
and route inbound messages by channel/account/peer. Slack is supported as a channel and can be bound to specific agents. Browser access is powerful but not "do anything a human can" - anti-bot, CAPTCHAs, and MFA can still block automation. For the most reliable browser control, use the Chrome extension relay on the mac...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ -0.02455771341919899, -0.06961420923471451, -0.04911145567893982, 0.03751838207244873, 0.012929843738675117, -0.0656856894493103, -0.02169761434197426, -0.011828946880996227, -0.03364911675453186, -0.049342814832925797, -0.010346885770559311, -0.01256165187805891, 0.06533749401569366, 0.02...
0.042726
shows the configured provider endpoint (`baseUrl`) and API mode (`api`) when available. \*\*How do I unpin a profile I set with profile\*\* Re-run `/model` \*\*without\*\* the `@profile` suffix: ``` /model anthropic/claude-opus-4-5 ``` If you want to return to the default, pick it from `/model` (or send `/model `). Use...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ -0.04093654453754425, -0.030792756006121635, -0.024875318631529808, 0.06356088072061539, 0.03782038390636444, -0.03899434953927994, 0.042328424751758575, 0.05610658600926399, -0.05842685326933861, -0.04036403447389603, -0.02206202782690525, 0.0020428455900400877, -0.009400648064911366, 0.0...
-0.012656
### How do I add models from other providers like OpenRouter or ZAI OpenRouter (pay-per-token; many models): ```json5 { agents: { defaults: { model: { primary: "openrouter/anthropic/claude-sonnet-4-5" }, models: { "openrouter/anthropic/claude-sonnet-4-5": {} }, }, }, env: { OPENROUTER\_API\_KEY: "sk-or-..." }, } ``` Z....
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ -0.04359712079167366, -0.0340917706489563, -0.08978614211082458, 0.06005283072590828, 0.03758327662944794, -0.020612576976418495, 0.0016835852293297648, 0.0032477546483278275, 0.00973118282854557, -0.0014314514119178057, 0.03237159922719002, -0.05724732577800751, 0.054732270538806915, 0.08...
-0.001966
route there. \*\*LLM request rejected message thinking signature required google antigravity\*\* Cause: the session history contains \*\*thinking blocks without signatures\*\* (often from an aborted/partial stream). Google Antigravity requires signatures for thinking blocks. Fix: OpenClaw now strips unsigned thinking b...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ -0.06627581268548965, 0.03709933161735535, -0.0064425221644341946, -0.018793201074004173, 0.0734366923570633, -0.14959868788719177, 0.028533192351460457, -0.0041563864797353745, -0.032372381538152695, -0.06050108000636101, 0.004386331420391798, -0.048033274710178375, 0.06780028343200684, -...
-0.029348
bind fails with `EADDRINUSE`, it throws `GatewayLockError` indicating another instance is already listening. Fix: stop the other instance, free the port, or run with `openclaw gateway --port `. ### How do I run OpenClaw in remote mode client connects to a Gateway elsewhere Set `gateway.mode: "remote"` and point to a re...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ -0.0785759761929512, -0.048519305884838104, -0.03432100638747215, 0.027767878025770187, 0.022850390523672104, -0.09684080630540848, -0.027306364849209785, -0.04101675748825073, 0.03888688609004021, 0.012730859220027924, 0.027045346796512604, 0.023046132177114487, -0.010532647371292114, 0.0...
0.01579
or TUI, the URL should look like: ``` openclaw tui --url ws://:18789 --token ``` Protocol details: [Gateway protocol](/gateway/protocol). ## Logging and debugging ### Where are logs File logs (structured): ``` /tmp/openclaw/openclaw-YYYY-MM-DD.log ``` You can set a stable path via `logging.file`. File log level is cont...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ 0.00008596762199886143, -0.018771618604660034, -0.08645744621753693, 0.03355490043759346, 0.050965096801519394, -0.1317245066165924, -0.05555738881230354, -0.0146835558116436, 0.0036556089762598276, -0.00039540953002870083, 0.014816366136074066, -0.009556928649544716, -0.0333341509103775, ...
0.110369
the Gateway runs in the background as a daemon. If you're running in the foreground, stop with Ctrl-C, then: ```bash openclaw gateway run ``` Docs: [Gateway service runbook](/gateway). ### ELI5 openclaw gateway restart vs openclaw gateway - `openclaw gateway restart`: restarts the \*\*background service\*\* (launchd/sy...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ 0.013760203495621681, -0.05207345634698868, -0.13736286759376526, 0.0329386442899704, 0.009225884452462196, -0.06861060857772827, -0.05944690853357315, -0.001323034055531025, 0.01728360913693905, -0.01566498726606369, -0.010340970940887928, 0.05796840041875839, 0.027604274451732635, -0.016...
0.032107
account and keep it isolated. See [Security](/gateway/security). ### Can I use cheaper models for personal assistant tasks Yes, **if** the agent is chat-only and the input is trusted. Smaller tiers are more susceptible to instruction hijacking, so avoid them for tool-enabled agents or when reading untrusted content. If...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ -0.12197131663560867, -0.016978658735752106, -0.04169859737157822, -0.0068554962053895, -0.053910523653030396, -0.02447349950671196, 0.02526036836206913, 0.043984994292259216, 0.00706123560667038, 0.0578550286591053, 0.05089747533202171, 0.006383651401847601, 0.02168159745633602, 0.0377922...
0.073399
- `interrupt` - abort current run and start fresh You can add options like `debounce:2s cap:25 drop:summarize` for followup modes. ## Answer the exact question from the screenshot/chat log **Q: "What's the default model for Anthropic with an API key?"** **A:** In OpenClaw, credentials and model selection are separate. ...
https://github.com/openclaw/openclaw/blob/main//docs/help/faq.md
main
opebclaw
[ -0.0091171870008111, -0.035379838198423386, -0.10957129299640656, 0.015426873229444027, 0.008886436000466347, -0.037128984928131104, 0.009045190177857876, -0.024816591292619705, -0.008332223631441593, 0.027093645185232162, 0.036582812666893005, -0.04762613773345947, -0.041566573083400726, ...
0.073015
# Outbound Session Mirroring Refactor (Issue #1520) ## Status - In progress. - Core + plugin channel routing updated for outbound mirroring. - Gateway send now derives target session when sessionKey is omitted. ## Context Outbound sends were mirrored into the \_current\_ agent session (tool session key) rather than the...
https://github.com/openclaw/openclaw/blob/main//docs/refactor/outbound-session-mirroring.md
main
opebclaw
[ -0.06986251473426819, -0.04413420334458351, 0.04172307625412941, 0.020828749984502792, -0.023509277030825615, -0.04133681580424309, 0.027971060946583748, 0.016544323414564133, -0.02682141773402691, 0.12184949964284897, -0.07895338535308838, 0.01275704987347126, -0.044094428420066833, 0.006...
0.032364
# Strict config validation (doctor-only migrations) ## Goals - \*\*Reject unknown config keys everywhere\*\* (root + nested). - \*\*Reject plugin config without a schema\*\*; don’t load that plugin. - \*\*Remove legacy auto-migration on load\*\*; migrations run via doctor only. - \*\*Auto-run doctor (dry-run) on startu...
https://github.com/openclaw/openclaw/blob/main//docs/refactor/strict-config.md
main
opebclaw
[ -0.038795508444309235, 0.02475501038134098, -0.006267052609473467, -0.04609370231628418, 0.05471787229180336, -0.06401006132364273, -0.03642993047833443, -0.006724755745381117, -0.08247686177492142, 0.0003929229569621384, 0.0717601627111435, -0.05741044506430626, 0.056775324046611786, 0.01...
0.074505
# Clawnet refactor (protocol + auth unification) ## Hi Hi Peter — great direction; this unlocks simpler UX + stronger security. ## Purpose Single, rigorous document for: - Current state: protocols, flows, trust boundaries. - Pain points: approvals, multi‑hop routing, UI duplication. - Proposed new state: one protocol, ...
https://github.com/openclaw/openclaw/blob/main//docs/refactor/clawnet.md
main
opebclaw
[ -0.10684671998023987, 0.03422575816512108, 0.07109925150871277, -0.07449126243591309, -0.05432354658842087, -0.036855194717645645, 0.0009477059356868267, -0.028298282995820045, -0.062077999114990234, 0.045775555074214935, 0.013139463029801846, -0.0017992811044678092, 0.05228349566459656, 0...
0.076639
`chat.subscribe`. - Cannot call config/models/channels/sessions/agent control plane APIs. \*\*Operator\*\* - Full control plane API, gated by scope. - Receives all approvals. - Does not directly execute OS actions; routes to nodes. ### Key rule Role is per‑connection, not per device. A device may open both roles, separ...
https://github.com/openclaw/openclaw/blob/main//docs/refactor/clawnet.md
main
opebclaw
[ -0.06082510948181152, -0.05000912770628929, -0.041404277086257935, 0.0033828578889369965, -0.06919243186712265, -0.025252044200897217, 0.037965837866067886, -0.004774367902427912, -0.007342763245105743, 0.07551661133766174, -0.016353284940123558, 0.00841690506786108, -0.0037455656565725803, ...
0.086764
`agent`, `message` → write - `config`, `channels` → admin - approvals + pairing → `operator.approvals` / `operator.pairing` --- # Identity + slugs ## Stable ID Required for auth; never changes. Preferred: - Keypair fingerprint (public key hash). ## Cute slug (lobster‑themed) Human label only. - Example: `scarlet-claw`,...
https://github.com/openclaw/openclaw/blob/main//docs/refactor/clawnet.md
main
opebclaw
[ -0.07328911125659943, 0.00019815686391666532, -0.04995184391736984, 0.03387150913476944, -0.007715466897934675, -0.012954468838870525, 0.006671123672276735, -0.021456371992826462, -0.05900433659553528, 0.02750215493142605, 0.055418673902750015, -0.04022849351167679, 0.07521683722734451, 0....
0.111055
- Pain: approvals + duplication + two stacks. - Proposal: one WS protocol with explicit roles + scopes, unified pairing + TLS pinning, gateway‑hosted approvals, stable device IDs + cute slugs. - Outcome: simpler UX, stronger security, less duplication, better mobile routing.
https://github.com/openclaw/openclaw/blob/main//docs/refactor/clawnet.md
main
opebclaw
[ -0.12280622124671936, -0.005405699368566275, 0.01445060782134533, -0.009216380305588245, 0.018039686605334282, -0.06178244575858116, 0.00009841727296588942, 0.010438681580126286, 0.002744510769844055, 0.01596919447183609, 0.01743348315358162, 0.0477144680917263, 0.03777265548706055, 0.0337...
0.108033
# Plugin SDK + Runtime Refactor Plan Goal: every messaging connector is a plugin (bundled or external) using one stable API. No plugin imports from `src/\*\*` directly. All dependencies go through the SDK or runtime. ## Why now - Current connectors mix patterns: direct core imports, dist-only bridges, and custom helper...
https://github.com/openclaw/openclaw/blob/main//docs/refactor/plugin-sdk.md
main
opebclaw
[ -0.11997207254171371, -0.04857040196657181, 0.007118379231542349, 0.010621131397783756, 0.030169835314154625, -0.018660718575119972, -0.04001954197883606, 0.054285068064928055, -0.057399265468120575, 0.013714445754885674, 0.027702178806066513, -0.035072095692157745, -0.05467783659696579, 0...
0.120007
Personal first (already close). - Remove duplicated bridge code. ### Phase 2: light direct-import plugins - Migrate Matrix to SDK + runtime. - Validate onboarding, directory, group mention logic. ### Phase 3: heavy direct-import plugins - Migrate MS Teams (largest set of runtime helpers). - Ensure reply/typing semantic...
https://github.com/openclaw/openclaw/blob/main//docs/refactor/plugin-sdk.md
main
opebclaw
[ -0.10653305053710938, -0.009621184319257736, 0.0100966552272439, -0.0017000952502712607, 0.03479236364364624, -0.09626767039299011, -0.049783241003751755, 0.03251553326845169, -0.03640108183026314, 0.039590563625097275, 0.022058824077248573, -0.0774809718132019, 0.041568610817193985, 0.029...
0.121727
# Exec host refactor plan ## Goals - Add `exec.host` + `exec.security` to route execution across \*\*sandbox\*\*, \*\*gateway\*\*, and \*\*node\*\*. - Keep defaults \*\*safe\*\*: no cross-host execution unless explicitly enabled. - Split execution into a \*\*headless runner service\*\* with optional UI (macOS app) via ...
https://github.com/openclaw/openclaw/blob/main//docs/refactor/exec-host.md
main
opebclaw
[ -0.03641461580991745, 0.007905283942818642, -0.03509371355175972, 0.003170353127643466, 0.048800501972436905, -0.02953115478157997, -0.03928051516413689, -0.005910920910537243, -0.08510896563529968, 0.08134105801582336, 0.005013132002204657, -0.04419146478176117, -0.0020837327465415, -0.02...
0.123637
"rg -n TODO", "lastResolvedPath": "/Users/user/Projects/.../bin/rg" } ] } } } ``` Notes: - No legacy allowlist formats. - `askFallback` applies only when `ask` is required and no UI is reachable. - File permissions: `0600`. ## Runner service (headless) ### Role - Enforce `exec.security` + `exec.ask` locally. - Execute ...
https://github.com/openclaw/openclaw/blob/main//docs/refactor/exec-host.md
main
opebclaw
[ -0.09820566326379776, 0.006108710542321205, -0.05603150650858879, 0.0125053646042943, 0.08642245084047318, -0.038461100310087204, -0.03369416669011116, 0.059179287403821945, -0.024577731266617775, 0.03606462478637695, 0.027298757806420326, -0.011723019182682037, -0.04475373774766922, 0.057...
0.13946
- Add `/exec` slash command and keep `/elevated` alias. ### Phase 2: approvals store + gateway enforcement - Implement `exec-approvals.json` reader/writer. - Enforce allowlist + ask modes for `gateway` host. - Add output caps. ### Phase 3: node runner enforcement - Update node runner to enforce allowlist + ask. - Add U...
https://github.com/openclaw/openclaw/blob/main//docs/refactor/exec-host.md
main
opebclaw
[ -0.07433108985424042, 0.012853999622166157, -0.01814691349864006, 0.002241559326648712, 0.037778500467538834, -0.03367392718791962, -0.013140851631760597, 0.02764846757054329, -0.0629056841135025, 0.060972921550273895, 0.025574488565325737, -0.05056847259402275, 0.020870128646492958, 0.024...
0.142238
# Tailscale (Gateway dashboard) OpenClaw can auto-configure Tailscale \*\*Serve\*\* (tailnet) or \*\*Funnel\*\* (public) for the Gateway dashboard and WebSocket port. This keeps the Gateway bound to loopback while Tailscale provides HTTPS, routing, and (for Serve) identity headers. ## Modes - `serve`: Tailnet-only Serv...
https://github.com/openclaw/openclaw/blob/main//docs/gateway/tailscale.md
main
opebclaw
[ -0.03092675842344761, 0.014789716340601444, -0.03526134043931961, 0.03552147373557091, -0.009450502693653107, -0.09359553456306458, -0.028750523924827576, 0.022420400753617287, 0.014655767939984798, -0.050071943551301956, -0.0149838300421834, 0.003938009962439537, 0.017995817586779594, -0....
-0.013206
- `tailscale funnel` command: https://tailscale.com/kb/1311/tailscale-funnel
https://github.com/openclaw/openclaw/blob/main//docs/gateway/tailscale.md
main
opebclaw
[ 0.02247128076851368, 0.015110756270587444, -0.0059169745072722435, 0.03820756450295448, -0.003348614787682891, -0.048284709453582764, 0.042342282831668854, 0.042895618826150894, -0.01930217817425728, -0.023095251992344856, 0.05649898201227188, -0.025689395144581795, -0.03587238863110542, -...
0.076249
# Authentication OpenClaw supports OAuth and API keys for model providers. For Anthropic accounts, we recommend using an \*\*API key\*\*. For Claude subscription access, use the long‑lived token created by `claude setup-token`. See [/concepts/oauth](/concepts/oauth) for the full OAuth flow and storage layout. ## Recomm...
https://github.com/openclaw/openclaw/blob/main//docs/gateway/authentication.md
main
opebclaw
[ -0.006316089536994696, 0.016538288444280624, -0.14418703317642212, 0.0008876119391061366, -0.03515756130218506, -0.053849343210458755, 0.007185646332800388, 0.05647297576069832, 0.012425413355231285, 0.0035483711399137974, -0.030849279835820198, -0.030886368826031685, 0.05653838813304901, ...
0.048883
# CLI backends (fallback runtime) OpenClaw can run \*\*local AI CLIs\*\* as a \*\*text-only fallback\*\* when API providers are down, rate-limited, or temporarily misbehaving. This is intentionally conservative: - \*\*Tools are disabled\*\* (no tool calls). - \*\*Text in → text out\*\* (reliable). - \*\*Sessions are su...
https://github.com/openclaw/openclaw/blob/main//docs/gateway/cli-backends.md
main
opebclaw
[ -0.022022588178515434, 0.03328673169016838, -0.05247420817613602, 0.01969168707728386, 0.021935248747467995, -0.06392748653888702, 0.010489602573215961, 0.02182021364569664, 0.016077226027846336, -0.04585221782326698, 0.016008572652935982, -0.0908229649066925, 0.08253388851881027, 0.061832...
0.11536
CLIs that auto- load local files from plain paths (Claude Code CLI behavior). ## Inputs / outputs - `output: "json"` (default) tries to parse JSON and extract text + session id. - `output: "jsonl"` parses JSONL streams (Codex CLI `--json`) and extracts the last agent message plus `thread\_id` when present. - `output: "...
https://github.com/openclaw/openclaw/blob/main//docs/gateway/cli-backends.md
main
opebclaw
[ -0.035372182726860046, 0.0655868649482727, -0.09898730367422104, -0.0038989768363535404, -0.020968759432435036, -0.08131702989339828, 0.00297758961096406, 0.02311849780380726, 0.05023151636123657, -0.10135498642921448, -0.03664253652095795, -0.04280108958482742, -0.004216834437102079, 0.04...
0.032914
# Bonjour / mDNS discovery OpenClaw uses Bonjour (mDNS / DNS‑SD) as a \*\*LAN‑only convenience\*\* to discover an active Gateway (WebSocket endpoint). It is best‑effort and does \*\*not\*\* replace SSH or Tailnet-based connectivity. ## Wide‑area Bonjour (Unicast DNS‑SD) over Tailscale If the node and gateway are on dif...
https://github.com/openclaw/openclaw/blob/main//docs/gateway/bonjour.md
main
opebclaw
[ -0.029098989441990852, -0.027587782591581345, 0.018460428342223167, -0.07017964124679565, -0.00979362241923809, -0.09829062968492508, -0.03956855461001396, -0.04861065000295639, 0.029632803052663803, -0.014719042927026749, -0.04370875284075737, -0.02779429778456688, 0.015078931115567684, -...
-0.021924
\*\*Copy\*\* The log includes browser state transitions and result‑set changes. ## Common failure modes - \*\*Bonjour doesn’t cross networks\*\*: use Tailnet or SSH. - \*\*Multicast blocked\*\*: some Wi‑Fi networks disable mDNS. - \*\*Sleep / interface churn\*\*: macOS may temporarily drop mDNS results; retry. - \*\*Br...
https://github.com/openclaw/openclaw/blob/main//docs/gateway/bonjour.md
main
opebclaw
[ -0.09043391048908234, -0.017170259729027748, 0.08165375888347626, -0.06853751838207245, -0.05237015336751938, -0.07647938281297684, -0.03339703008532524, -0.036994289606809616, 0.05206749960780144, 0.013030637055635452, -0.028598571196198463, -0.0028360227588564157, -0.010660387575626373, ...
0.069781
# Local models Local is doable, but OpenClaw expects large context + strong defenses against prompt injection. Small cards truncate context and leak safety. Aim high: \*\*≥2 maxed-out Mac Studios or equivalent GPU rig (~$30k+)\*\*. A single \*\*24 GB\*\* GPU works only for lighter prompts with higher latency. Use the \...
https://github.com/openclaw/openclaw/blob/main//docs/gateway/local-models.md
main
opebclaw
[ 0.022373434156179428, 0.018820496276021004, -0.0033946307376027107, 0.033016711473464966, 0.049448635429143906, -0.07351656258106232, -0.17030195891857147, 0.02974577620625496, -0.03830253705382347, -0.023247526958584785, 0.00762941362336278, -0.018246514722704887, 0.004804440774023533, -0...
-0.006739
Reload; cold start is a common “hanging” cause. - Context errors? Lower `contextWindow` or raise your server limit. - Safety: local models skip provider-side filters; keep agents narrow and compaction on to limit prompt injection blast radius.
https://github.com/openclaw/openclaw/blob/main//docs/gateway/local-models.md
main
opebclaw
[ 0.035925041884183884, -0.041226837784051895, -0.02960221841931343, 0.029120948165655136, 0.02425144426524639, -0.006765031721442938, -0.05725960433483124, -0.006907778326421976, -0.02225245162844658, 0.019126934930682182, 0.0026172157377004623, 0.008112918585538864, -0.004532968159765005, ...
0.007548
# OpenAI Chat Completions (HTTP) OpenClaw’s Gateway can serve a small OpenAI-compatible Chat Completions endpoint. This endpoint is \*\*disabled by default\*\*. Enable it in config first. - `POST /v1/chat/completions` - Same port as the Gateway (WS + HTTP multiplex): `http://:/v1/chat/completions` Under the hood, reque...
https://github.com/openclaw/openclaw/blob/main//docs/gateway/openai-http-api.md
main
opebclaw
[ -0.039121486246585846, -0.016806280240416527, -0.08045124262571335, 0.05741364508867264, -0.01160404086112976, -0.10918555408716202, 0.0029058714862912893, -0.03622477501630783, 0.034512754529714584, -0.017957154661417007, -0.00730027724057436, -0.013452299870550632, -0.00984527450054884, ...
0.07442
# Troubleshooting 🔧 When OpenClaw misbehaves, here's how to fix it. Start with the FAQ’s [First 60 seconds](/help/faq#first-60-seconds-if-somethings-broken) if you just want a quick triage recipe. This page goes deeper on runtime failures and diagnostics. Provider-specific shortcuts: [/channels/troubleshooting](/chann...
https://github.com/openclaw/openclaw/blob/main//docs/gateway/troubleshooting.md
main
opebclaw
[ -0.05426999181509018, -0.019720841199159622, -0.013445103541016579, 0.004550923127681017, -0.008181970566511154, -0.07651402056217194, -0.06236741319298744, 0.01676289550960064, -0.07168442010879517, -0.031910814344882965, 0.08449450880289078, -0.06473987549543381, -0.061217229813337326, -...
-0.005806
while nothing is running. \*\*Check:\*\* ```bash openclaw gateway status openclaw doctor ``` Doctor/service will show runtime state (PID/last exit) and log hints. \*\*Logs:\*\* - Preferred: `openclaw logs --follow` - File logs (always): `/tmp/openclaw/openclaw-YYYY-MM-DD.log` (or your configured `logging.file`) - macOS...
https://github.com/openclaw/openclaw/blob/main//docs/gateway/troubleshooting.md
main
opebclaw
[ 0.003434665035456419, -0.008713568560779095, -0.07753008604049683, 0.02387426421046257, 0.035528045147657394, -0.09307970106601715, -0.06856033951044083, -0.021680962294340134, 0.028083527460694313, -0.02290969341993332, 0.0016953859012573957, -0.0007874865550547838, -0.037287548184394836, ...
0.043899
gateway status` and `openclaw doctor` surface the \*\*last gateway error\*\* from logs when the service looks running but the port is closed. - Non-loopback binds (`lan`/`tailnet`/`custom`, or `auto` when loopback is unavailable) require auth: `gateway.auth.token` (or `OPENCLAW\_GATEWAY\_TOKEN`). - `gateway.remote.toke...
https://github.com/openclaw/openclaw/blob/main//docs/gateway/troubleshooting.md
main
opebclaw
[ -0.012211906723678112, -0.026441730558872223, -0.04715908318758011, -0.04894879087805748, -0.01379726268351078, -0.10400449484586716, -0.0031842016614973545, -0.008041149005293846, -0.011631241999566555, 0.007865370251238346, 0.015631942078471184, 0.0029181125573813915, -0.001398492022417485...
-0.000873
for the detailed failure reason. See also: [Models CLI](/cli/models) and [Model providers](/concepts/model-providers). ### Messages Not Triggering \*\*Check 1:\*\* Is the sender allowlisted? ```bash openclaw status ``` Look for `AllowFrom: ...` in the output. \*\*Check 2:\*\* For group chats, is mention required? ```ba...
https://github.com/openclaw/openclaw/blob/main//docs/gateway/troubleshooting.md
main
opebclaw
[ -0.005339663475751877, -0.08660352230072021, -0.02816898562014103, 0.02993033640086651, 0.031300533562898636, -0.038795046508312225, 0.030750781297683716, -0.050077781081199646, 0.00194810691755265, 0.03273989260196686, 0.053324658423662186, -0.10973943024873734, 0.015289709903299809, 0.08...
0.065787
``` Notes: - `openclaw doctor` reports every invalid entry. - `openclaw doctor --fix` applies migrations/repairs and rewrites the config. - Diagnostic commands like `openclaw logs`, `openclaw health`, `openclaw status`, `openclaw gateway status`, and `openclaw gateway probe` still run even if the config is invalid. ###...
https://github.com/openclaw/openclaw/blob/main//docs/gateway/troubleshooting.md
main
opebclaw
[ -0.015492337755858898, -0.0450158528983593, -0.0198851116001606, 0.031768638640642166, -0.015217523090541363, -0.11055171489715576, -0.034701526165008545, -0.009760824032127857, -0.02621574141085148, -0.013174161314964294, 0.05576643720269203, -0.043187130242586136, 0.002622925443574786, 0...
0.029684
\*\*under\*\* `channels.discord.guilds` (global or per‑channel). Top‑level `channels.discord.requireMention` is not a supported key. 4. Ensure the bot has \*\*Message Content Intent\*\* and channel permissions. 5. Run `openclaw channels status --probe` for audit hints. Docs: [Discord](/channels/discord), [Channels trou...
https://github.com/openclaw/openclaw/blob/main//docs/gateway/troubleshooting.md
main
opebclaw
[ -0.03538154438138008, -0.06990808248519897, 0.006261897273361683, 0.003473469987511635, 0.013977104797959328, -0.014596845954656601, -0.04751164838671684, -0.08487256616353989, -0.03463498502969742, 0.033606432378292084, 0.05125410482287407, -0.08211518824100494, 0.017090819776058197, 0.07...
0.023717