Troubleshooting
このコンテンツはまだ日本語訳がありません。
Gateway troubleshooting
Section titled “Gateway troubleshooting”This page is the deep runbook. Start at /help/troubleshooting if you want the fast triage flow first.
Command ladder
Section titled “Command ladder”Run these first, in this order:
coderclaw statuscoderclaw gateway statuscoderclaw logs --followcoderclaw doctorcoderclaw channels status --probeExpected healthy signals:
coderclaw gateway statusshowsRuntime: runningandRPC probe: ok.coderclaw doctorreports no blocking config/service issues.coderclaw channels status --probeshows connected/ready channels.
No replies
Section titled “No replies”If channels are up but nothing answers, check routing and policy before reconnecting anything.
coderclaw statuscoderclaw channels status --probecoderclaw pairing list <channel>coderclaw config get channelscoderclaw logs --followLook for:
- Pairing pending for DM senders.
- Group mention gating (
requireMention,mentionPatterns). - Channel/group allowlist mismatches.
Common signatures:
drop guild message (mention required→ group message ignored until mention.pairing request→ sender needs approval.blocked/allowlist→ sender/channel was filtered by policy.
Related:
Dashboard control ui connectivity
Section titled “Dashboard control ui connectivity”When dashboard/control UI will not connect, validate URL, auth mode, and secure context assumptions.
coderclaw gateway statuscoderclaw statuscoderclaw logs --followcoderclaw doctorcoderclaw gateway status --jsonLook for:
- Correct probe URL and dashboard URL.
- Auth mode/token mismatch between client and gateway.
- HTTP usage where device identity is required.
Common signatures:
device identity required→ non-secure context or missing device auth.unauthorized/ reconnect loop → token/password mismatch.gateway connect failed:→ wrong host/port/url target.
Related:
Gateway service not running
Section titled “Gateway service not running”Use this when service is installed but process does not stay up.
coderclaw gateway statuscoderclaw statuscoderclaw logs --followcoderclaw doctorcoderclaw gateway status --deepLook for:
Runtime: stoppedwith exit hints.- Service config mismatch (
Config (cli)vsConfig (service)). - Port/listener conflicts.
Common signatures:
Gateway start blocked: set gateway.mode=local→ local gateway mode is not enabled. Fix: setgateway.mode="local"in your config (or runcoderclaw configure). If you are running CoderClaw via Podman using the dedicatedcoderclawuser, the config lives at~coderclaw/.coderclaw/coderclaw.json.refusing to bind gateway ... without auth→ non-loopback bind without token/password.another gateway instance is already listening/EADDRINUSE→ port conflict.
Related:
Channel connected messages not flowing
Section titled “Channel connected messages not flowing”If channel state is connected but message flow is dead, focus on policy, permissions, and channel specific delivery rules.
coderclaw channels status --probecoderclaw pairing list <channel>coderclaw status --deepcoderclaw logs --followcoderclaw config get channelsLook for:
- DM policy (
pairing,allowlist,open,disabled). - Group allowlist and mention requirements.
- Missing channel API permissions/scopes.
Common signatures:
mention required→ message ignored by group mention policy.pairing/ pending approval traces → sender is not approved.missing_scope,not_in_channel,Forbidden,401/403→ channel auth/permissions issue.
Related:
Cron and heartbeat delivery
Section titled “Cron and heartbeat delivery”If cron or heartbeat did not run or did not deliver, verify scheduler state first, then delivery target.
coderclaw cron statuscoderclaw cron listcoderclaw cron runs --id <jobId> --limit 20coderclaw system heartbeat lastcoderclaw logs --followLook for:
- Cron enabled and next wake present.
- Job run history status (
ok,skipped,error). - Heartbeat skip reasons (
quiet-hours,requests-in-flight,alerts-disabled).
Common signatures:
cron: scheduler disabled; jobs will not run automatically→ cron disabled.cron: timer tick failed→ scheduler tick failed; check file/log/runtime errors.heartbeat skippedwithreason=quiet-hours→ outside active hours window.heartbeat: unknown accountId→ invalid account id for heartbeat delivery target.
Related:
Node paired tool fails
Section titled “Node paired tool fails”If a node is paired but tools fail, isolate foreground, permission, and approval state.
coderclaw nodes statuscoderclaw nodes describe --node <idOrNameOrIp>coderclaw approvals get --node <idOrNameOrIp>coderclaw logs --followcoderclaw statusLook for:
- Node online with expected capabilities.
- OS permission grants for camera/mic/location/screen.
- Exec approvals and allowlist state.
Common signatures:
NODE_BACKGROUND_UNAVAILABLE→ node app must be in foreground.*_PERMISSION_REQUIRED/LOCATION_PERMISSION_REQUIRED→ missing OS permission.SYSTEM_RUN_DENIED: approval required→ exec approval pending.SYSTEM_RUN_DENIED: allowlist miss→ command blocked by allowlist.
Related:
Browser tool fails
Section titled “Browser tool fails”Use this when browser tool actions fail even though the gateway itself is healthy.
coderclaw browser statuscoderclaw browser start --browser-profile coderclawcoderclaw browser profilescoderclaw logs --followcoderclaw doctorLook for:
- Valid browser executable path.
- CDP profile reachability.
- Extension relay tab attachment for
profile="chrome".
Common signatures:
Failed to start Chrome CDP on port→ browser process failed to launch.browser.executablePath not found→ configured path is invalid.Chrome extension relay is running, but no tab is connected→ extension relay not attached.Browser attachOnly is enabled ... not reachable→ attach-only profile has no reachable target.
Related:
If you upgraded and something suddenly broke
Section titled “If you upgraded and something suddenly broke”Most post-upgrade breakage is config drift or stricter defaults now being enforced.
1) Auth and URL override behavior changed
Section titled “1) Auth and URL override behavior changed”coderclaw gateway statuscoderclaw config get gateway.modecoderclaw config get gateway.remote.urlcoderclaw config get gateway.auth.modeWhat to check:
- If
gateway.mode=remote, CLI calls may be targeting remote while your local service is fine. - Explicit
--urlcalls do not fall back to stored credentials.
Common signatures:
gateway connect failed:→ wrong URL target.unauthorized→ endpoint reachable but wrong auth.
2) Bind and auth guardrails are stricter
Section titled “2) Bind and auth guardrails are stricter”coderclaw config get gateway.bindcoderclaw config get gateway.auth.tokencoderclaw gateway statuscoderclaw logs --followWhat to check:
- Non-loopback binds (
lan,tailnet,custom) need auth configured. - Old keys like
gateway.tokendo not replacegateway.auth.token.
Common signatures:
refusing to bind gateway ... without auth→ bind+auth mismatch.RPC probe: failedwhile runtime is running → gateway alive but inaccessible with current auth/url.
3) Pairing and device identity state changed
Section titled “3) Pairing and device identity state changed”coderclaw devices listcoderclaw pairing list <channel>coderclaw logs --followcoderclaw doctorWhat to check:
- Pending device approvals for dashboard/nodes.
- Pending DM pairing approvals after policy or identity changes.
Common signatures:
device identity required→ device auth not satisfied.pairing required→ sender/device must be approved.
If the service config and runtime still disagree after checks, reinstall service metadata from the same profile/state directory:
coderclaw gateway install --forcecoderclaw gateway restartRelated: