Skip to content

Latest commit

 

History

History
52 lines (38 loc) · 999 Bytes

File metadata and controls

52 lines (38 loc) · 999 Bytes

Claude Code Docs

Offline mirror of the Claude Code documentation as markdown files, ready for piping to LLMs.

Prerequisites

Usage

# Download all English docs
just fetch

# Download Korean docs
just fetch-ko

# Bundle into a single file
just bundle

# Summarize via Claude
just summarize

# Q&A flashcards on specific topics
just qa skills mcp hooks

# Ask Claude about a single doc
just ask permissions.md "explain this in simple terms"

# List downloaded docs
just list

# Clean up
just clean

Structure

.
├── justfile
├── llms.txt          # doc index (fetched)
└── en/               # downloaded markdown files
    ├── overview.md
    ├── skills.md
    ├── agent-sdk/
    │   ├── overview.md
    │   └── ...
    └── ...