โ† All skills
Tencent SkillHub ยท Developer Tools

Gateway Token Doctor

Diagnose and fix gateway token mismatches causing 401 errors. Align tokens across config, service, and CLI surfaces.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Diagnose and fix gateway token mismatches causing 401 errors. Align tokens across config, service, and CLI surfaces.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
references/privacy-checklist.md, SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 8 sections Open source page

Gateway Token Doctor

Diagnose and fix 401 errors from token mismatches.

Problem

Gateway token inconsistencies cause: 401 Unauthorized errors CLI/UI authentication failures Service startup failures Silent auth degradation

1. Token Audit

# Check all token surfaces $cfg = Get-Content "$HOME/.openclaw/openclaw.json" -Raw | ConvertFrom-Json $auth = $cfg.gateway.auth.token $remote = $cfg.gateway.remote.token $service = $env:OPENCLAW_GATEWAY_TOKEN "auth.token = $auth" "remote.token = $remote" "service.token = $service" if ($auth -and $remote -and $auth -ne $remote) { Write-Warning "Token mismatch: auth != remote" }

2. Alignment Fix

# Generate or use existing token $token = $auth # Update config $cfg.gateway.auth.token = $token $cfg.gateway.remote.token = $token $cfg | ConvertTo-Json -Depth 10 | Out-File "$HOME/.openclaw/openclaw.json" -Encoding UTF8 # Update service startup script $servicePath = "$HOME/.openclaw/gateway.cmd" $content = Get-Content $servicePath -Raw $content = $content -replace 'OPENCLAW_GATEWAY_TOKEN=.*', "OPENCLAW_GATEWAY_TOKEN=$token" $content | Out-File $servicePath -Encoding UTF8 # Restart openclaw gateway restart

3. Verification

# Test gateway access openclaw gateway status # Test CLI auth openclaw whoami

Executable Completion Criteria

CriteriaVerificationAll tokens alignedauth == remote == serviceGateway respondsopenclaw gateway status succeedsCLI auth worksopenclaw whoami returns userNo 401 in logsSelect-String "401" logs returns nothing

Privacy/Safety

Never log actual token values Redact tokens in output (show first 4 chars only) Store tokens only in config files

Self-Use Trigger

Use when: 401 errors appear Gateway restart after config change CLI shows auth mismatch Service fails to start Align tokens. Restore access.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs
  • SKILL.md Primary doc
  • references/privacy-checklist.md Docs