
Claw Advisor
- 32 installs
- 269 repo stars
- Updated June 11, 2026
- gupsammy/claudest
Route OpenClaw or Claw-style support questions to the right documentation slug prefixes before the agent guesses from generic chat knowledge.
About
Claw Advisor is a journey-wide agent skill that acts as a topic router for Claw-family documentation: it maps problem domains to slug prefixes and suggested entry pages so your coding agent loads the right manual sections instead of improvising setup steps. Solo builders running personal agents on Telegram, Discord, Slack, or WhatsApp hit overlapping areas—gateway security, sandboxing, cron hooks, provider keys—and broad questions span multiple trees. Invoke it when the question domain is fuzzy or when a single user message touches channels plus gateway plus automation. The skill is procedural research metadata, not an MCP server or installer; it pairs with exec, browser, and skills tools once you know which doc cluster to read. It supports build-time integration, ship security hardening, launch distribution across channels, and operate troubleshooting when sessions or gateways misbehave. Optimized for agents that can fetch docs by slug after routing.
- Domain map routes user problems to doc slug prefixes (channels, gateway, install, automation, CLI, concepts, tools, plat
- Entry-point slugs per domain (e.g. channels/troubleshooting, gateway/sandboxing, automation/cron-jobs)
- Designed for broad questions that need multi-area doc research
- Reduces wrong-doc deep dives when configuring Telegram, Discord, sandboxes, or model providers
Claw Advisor by the numbers
- 32 all-time installs (skills.sh)
- Ranked #9,101 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Security screen: HIGH risk (skills.sh audit)
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/gupsammy/claudest --skill claw-advisorAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 32 |
|---|---|
| repo stars | ★ 269 |
| Security audit | 1 / 3 scanners passed |
| Last updated | June 11, 2026 |
| Repository | gupsammy/claudest ↗ |
What it does
Route OpenClaw or Claw-style support questions to the right documentation slug prefixes before the agent guesses from generic chat knowledge.
Files
Claw Advisor
Answer OpenClaw questions, suggest optimal configuration, diagnose issues, and guide design decisions. Two backends: clawdocs CLI for documentation, openclaw CLI for live state inspection.
Backends
clawdocs (documentation — always available)
| Command | Use When |
|---|---|
clawdocs fetch "<topic>" --no-header -q | Topic known, need full page content |
clawdocs search "<query>" --slugs-only | Need to find relevant doc slugs |
clawdocs get <slug> --no-header -q | Exact slug known (e.g., channels/telegram) |
clawdocs list --prefix <section>/ | Need to enumerate a doc section |
openclaw (live state — may not be available)
| Command | Use When |
|---|---|
openclaw status | Check channel health, recent sessions |
openclaw doctor --non-interactive | Run health checks without prompts |
openclaw config get <dot.path> | Read a specific config value |
openclaw health | Check gateway health |
If openclaw commands fail (not installed, gateway not running), proceed with docs-only advice. Do not treat this as an error.
Workflow
Phase 1: Understand
Parse $ARGUMENTS or the user's conversational question. Classify into:
- Focused — single topic, one doc likely sufficient ("how do I set up Telegram?")
- Broad — cross-cutting, spans multiple doc areas ("remote access with Telegram and webhooks")
- Troubleshooting — something is broken, need diagnostic + docs
- Design — architectural decision, compare options and tradeoffs
If ambiguous, ask one clarifying question via AskUserQuestion. Do not over-interview — default to the most likely interpretation.
If the question involves the user's current setup, gather live state:
openclaw status 2>/dev/null
openclaw doctor --non-interactive 2>/dev/nullLoad topic routing to identify relevant doc sections:
@${CLAUDE_PLUGIN_ROOT}/skills/claw-advisor/references/topic-routing.md
Proceed when the question is classified and live state (if relevant) is gathered.
Phase 2: Research (Divergent)
Focused — single fetch, possibly one follow-up:
clawdocs fetch "<topic>" --no-header -qIf the result doesn't fully answer the question, search for adjacent docs:
clawdocs search "<refined query>" --slugs-onlyThen fetch the best 1-2 additional slugs via clawdocs get.
Broad — identify 2-4 relevant topic areas from topic-routing.md. Spawn parallel subagents, one per area:
Task(subagent_type="general-purpose", prompt="Run `clawdocs fetch <topic> --no-header -q` via Bash and summarize: key config options, requirements, gotchas, and exact CLI commands for: <specific aspect>")Run up to 4 subagents in parallel. Each returns a focused summary. Reconvene results in Phase 3.
Troubleshooting — always consult three sources:
1. Domain-specific doc: clawdocs fetch "<domain>" --no-header -q 2. Domain troubleshooting: clawdocs get "<domain>/troubleshooting" --no-header -q 3. General troubleshooting: clawdocs get "help/troubleshooting" --no-header -q
Cross-reference with openclaw doctor --non-interactive output if available. If doctor reports fixable issues, surface the exact fix command (openclaw doctor --fix).
Design — for each option, fetch the primary doc page and any comparison or overview page (e.g., providers/index). Identify: requirements, limitations, and config complexity. Stop when each option has enough data to compare on the same dimensions.
If official docs don't cover the issue, use WebSearch for community solutions or GitHub issues as a fallback.
Proceed when all relevant docs are fetched and summarized.
Phase 3: Synthesize (Convergent)
Combine all research into a structured response:
1. Direct answer — answer the question concisely first 2. Configuration — exact config keys (full dot-paths for openclaw config get/set), values, and CLI commands. Use code blocks. 3. Context — why this configuration is recommended, what tradeoffs exist 4. Gotchas — known issues, common mistakes, prerequisites surfaced by the docs 5. Sources — list doc slugs consulted so the user can dive deeper: clawdocs get <slug>
If docs and live state conflict, note the discrepancy and recommend openclaw <cmd> --help as ground truth.
Skill is complete when the structured response is delivered.
Constraints
- Never invent OpenClaw flags, config keys, or API endpoints — only cite fetched documentation
- Use
--no-header -qon all clawdocs calls to suppress chrome and stderr diagnostics - Extract relevant sections from long doc pages — full pages waste context tokens and bury the answer
- Limit parallel subagents to 4 — more agents add latency without proportional information gain
- When citing configuration, include the full dot-path usable with
openclaw config get/set - If a question is outside OpenClaw's domain entirely, say so — hallucinating outside the knowledge base erodes trust in all answers
Topic Routing
Map user problem domains to the most relevant doc slug prefixes. Load when the question domain needs identification or when broad questions require multi-area research.
Domain Map
| Domain | Slug Prefix | Entry Points |
|---|---|---|
| Channels (Telegram, Discord, Slack, WhatsApp, etc.) | channels/ | channels/index, channels/<name>, channels/troubleshooting, channels/pairing |
| Gateway & networking | gateway/ | gateway/configuration, gateway/security, gateway/sandboxing, gateway/troubleshooting, gateway/remote |
| Installation & setup | install/, start/ | start/getting-started, install/index, start/wizard, start/onboarding |
| Automation (cron, hooks, webhooks) | automation/ | automation/cron-jobs, automation/webhook, automation/hooks, automation/troubleshooting |
| CLI commands | cli/ | cli/index, cli/<command> |
| Concepts & architecture | concepts/ | concepts/architecture, concepts/agent, concepts/models, concepts/sessions, concepts/memory |
| Tools & skills | tools/ | tools/skills, tools/subagents, tools/index, tools/exec, tools/browser |
| Platforms | platforms/ | platforms/macos, platforms/linux, platforms/windows, platforms/ios, platforms/android |
| Model providers | providers/ | providers/index, providers/anthropic, providers/openai, providers/openrouter |
| Security | security/, gateway/security | gateway/sandboxing, gateway/security, security/formal-verification |
| Troubleshooting | help/ | help/troubleshooting, help/faq, help/debugging, help/environment |
| Nodes (audio, camera, voice) | nodes/ | nodes/index, nodes/audio, nodes/talk, nodes/voicewake |
| Web UI | web/ | web/dashboard, web/webchat, web/tui |
| Agent system | concepts/agent*, cli/agent* | concepts/agent, concepts/agent-loop, concepts/agent-workspace, cli/agent, cli/agents |
| Templates & reference | reference/ | reference/templates/*, reference/token-use, reference/rpc |
Cross-Cutting Patterns
Some questions span multiple domains. Common combinations:
- Remote access:
gateway/remote+gateway/tailscale+gateway/security - Channel + automation:
channels/<name>+automation/webhookorautomation/cron-jobs - Multi-agent:
concepts/multi-agent+tools/subagents+gateway/sandboxing - Model selection:
concepts/models+providers/<name>+concepts/model-failover - Getting started:
start/getting-started+start/wizard+install/index - macOS app:
platforms/macos+platforms/mac/*(10+ sub-pages)
Discovery
When the topic doesn't map cleanly to a domain:
clawdocs search "<user's keywords>" --slugs-onlyThen fetch the top 1-3 results.
Related skills
FAQ
Is Claw Advisor safe to install?
skills.sh reports 1 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.