You are helping me set up Context7 CLI to pull OpenClaw documentation, then build a skill that triggers whenever I ask about OpenClaw. ## Step 1: Install Context7 CLI Context7 works as a CLI that pipes live docs straight into your agent — no MCP server required. Run: npx ctx7 setup This installs the ctx7 CLI and drops a skill into your agent's skill directory automatically. Docs: https://github.com/upstash/context7 npm: https://www.npmjs.com/package/@upstash/context7-mcp ## Step 2: Pull OpenClaw docs via ctx7 Search for OpenClaw: npx ctx7 search "openclaw" Fetch docs for a specific topic: npx ctx7 context "/openclaw/openclaw" "skills setup" Full OpenClaw doc index: https://docs.openclaw.ai/llms.txt ## Step 3: Build a skill for OpenClaw questions First, read the skill creator skill: - https://github.com/openclaw/openclaw/blob/main/skills/skill-creator/SKILL.md - https://docs.openclaw.ai/tools/skills Then create a skill at ~/.openclaw/skills/openclaw-docs/SKILL.md that: - Triggers when the user asks about OpenClaw (setup, auth, models, skills, config) - Runs `npx ctx7 context "/openclaw/openclaw" ""` to fetch current docs before answering - Description: "Answer questions about OpenClaw by fetching live docs via Context7 CLI" Read the skill-creator SKILL.md linked above first, then create the skill in that format.