plugins/claude-claw/skills/claw-advisor/SKILL.md
This skill should be used when the user asks about OpenClaw configuration, troubleshooting, setup, architecture, or any OpenClaw question. Triggers on "how do I configure OpenClaw", "set up telegram in OpenClaw", "gateway configuration", "OpenClaw troubleshooting", "claw advisor", "what's the best way to set up OpenClaw", "OpenClaw docs", "help me with OpenClaw", "openclaw channel setup", "debug OpenClaw", or needs guidance on OpenClaw features, channels, gateway, automation, models, or design decisions.
npx skillsauth add gupsammy/claudest claw-advisorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Answer OpenClaw questions, suggest optimal configuration, diagnose issues, and guide design decisions. Two backends: clawdocs CLI for documentation, openclaw CLI for live state inspection.
| 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 |
| 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.
Parse $ARGUMENTS or the user's conversational question. Classify into:
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/null
Load 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.
Focused — single fetch, possibly one follow-up:
clawdocs fetch "<topic>" --no-header -q
If the result doesn't fully answer the question, search for adjacent docs:
clawdocs search "<refined query>" --slugs-only
Then 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:
clawdocs fetch "<domain>" --no-header -qclawdocs get "<domain>/troubleshooting" --no-header -qclawdocs get "help/troubleshooting" --no-header -qCross-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.
Combine all research into a structured response:
openclaw config get/set), values, and CLI commands. Use code blocks.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.
--no-header -q on all clawdocs calls to suppress chrome and stderr diagnosticsopenclaw config get/settesting
Recall, search, continue, or analyze past conversations. Triggers on recall phrases ("what did we discuss", "continue where we left off", "we decided"), retrospective phrases ("do a retro", "post-mortem", "what went well", "lessons learned", "find antipatterns"), and implicit signals (past-tense references, possessives without context, assumptive questions like "do you remember").
data-ai
Persist learnings to memory or maintain existing memories. Triggers on "extract learnings", "save this for next time", "remember this pattern", "consolidate memories", "dream", "clean up memories".
development
Use for any image creation or editing request — logo, sticker, product mockup, nano banana, t2i, i2i, multi-reference compositing via generate.py. Not for HTML/CSS mockups, diagrams, or coded UI.
development
This skill should be used when the user says "update CLAUDE.md", "refresh CLAUDE.md", "sync CLAUDE.md with the codebase", "reorganize CLAUDE.md", "optimize project instructions", or when CLAUDE.md is stale, verbose, or out of sync.