[FEATURE] Provide documentation as a repository instead of web-only
Resolved 💬 2 comments Opened Nov 18, 2025 by maxim-uvarov Closed Dec 10, 2025
Problem
Claude Code's documentation currently exists only on the website and must be accessed via WebFetch. This is slow and inconvenient for the agent when it needs to reference its own docs frequently.
Proposed Solution
Publish the documentation as a Git repository (markdown files) that can be:
- Cloned locally by users
- Read directly using file tools (fast, no web requests)
- Referenced in
.claude/CLAUDE.mdas a local context path - Kept in sync with the website
Benefits
- Faster access: Direct file reads vs web fetches
- Offline usage: Works without internet connection
- Better context: Can reference multiple doc pages efficiently
- Self-documentation: Claude Code can maintain its own docs more easily
Example Usage
git clone https://github.com/anthropics/claude-code-docs ~/.claude/docs
# Reference in CLAUDE.md or access directly
This would enable Claude Code to work with its own documentation as efficiently as it works with user code.
This issue has 2 comments on GitHub. Read the full discussion on GitHub ↗