claude-code-docs

Scrape Claude Code official documentation into structured Markdown files.

Updated Feb 19, 2026
One-click install
npx skills add https://github.com/walker-hzx/AI-Assistant --skill claude-code-docs-walker-hzx
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: claude-code-docs
Source: https://github.com/walker-hzx/AI-Assistant/tree/main/skills/claude-code-docs
Command: npx skills add https://github.com/walker-hzx/AI-Assistant --skill claude-code-docs-walker-hzx

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This tool automates the collection and structuring of Claude Code official documentation, helping teams keep plugin configurations and feature research up-to-date without manual searching.

Core Features & Use Cases

  • Automated documentation scraping: uses Playwright to render pages, extract key sections, and convert them into structured Markdown.
  • Centralized knowledge base: saves outputs under docs/claude-code/ for quick reference during updates and research.
  • Use Case: when evaluating a new Claude Code feature, fetch the official docs and generate a concise, query-ready summary for your notes.

Quick Start

Run the fetch-docs script to download Claude Code official docs and store them under docs/claude-code/.

Frequently Asked Questions about claude-code-docs

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I scrape Claude Code documentation and save it as Markdown?

To scrape Claude Code documentation and save it as Markdown, use Playwright to render web pages, clean the HTML, and output structured files into your local docs/claude-code/ directory.

What is the best way to automate fetching web docs for plugin updates?

Automating web docs fetching for plugin updates requires running a script that crawls target pages with Playwright, extracts key sections, and generates centralized Markdown summaries for engineering reference.

Do I need Playwright to crawl web pages and convert them to structured Markdown?

Yes, you need Playwright to handle web scraping for this task. It drives page rendering to execute JavaScript, allowing the script to extract content and convert it into Markdown.

Can I use this automated scraping approach to build a centralized knowledge base?

Yes, you can use this automated scraping approach to build a centralized knowledge base. It extracts official guidance and feature research, saving structured summaries under a unified directory for engineering reference.

How does automated web scraping handle dynamic content when extracting documentation?

Automated web scraping handles dynamic documentation content by using Playwright to render pages fully before extraction. This ensures JavaScript-loaded elements are captured before converting to Markdown.

What are the limitations of using scripts for automated documentation crawling?

Limitations of automated documentation crawling include dependency on website structure changes and Playwright browser setup overhead. It does not handle sites requiring authentication or content behind complex interactions.