1---2name: claude-code-docs3description: Use when answering questions about Claude Code CLI features, configuration, hooks, skills, MCP, permissions, settings, sub-agents, teams, plugins, keybindings, IDE integration, CI/CD setup, troubleshooting, or any Claude Code usage topic.4---56# Claude Code Documentation78Official Claude Code documentation reference (docs sourced from [ericbuess/claude-code-docs](https://github.com/ericbuess/claude-code-docs)).910CRITICAL: When the user asks about Claude Code, grep the `references/` directory for relevant keywords before answering. Do NOT guess — always ground answers in the actual docs.1112## Topic Index1314### Getting Started15| Topic | File | Keywords |16|-------|------|----------|17| Overview | overview.md | what is claude code, introduction |18| Quickstart | quickstart.md | install, getting started |19| Setup | setup.md | configuration, first run |20| How it works | how-claude-code-works.md | architecture, agentic loop |21| Features | features-overview.md | capabilities, feature list |2223### Configuration & Settings24| Topic | File | Keywords |25|-------|------|----------|26| Settings | settings.md | settings.json, config files, scopes |27| Memory | memory.md | CLAUDE.md, project memory |28| Permissions | permissions.md | allow, deny, sandbox |29| Sandboxing | sandboxing.md | filesystem, network sandbox |30| Model config | model-config.md | model selection, provider |31| Terminal config | terminal-config.md | terminal setup, shell |32| Network config | network-config.md | proxy, firewall |33| Server settings | server-managed-settings.md | managed, enterprise |3435### Core Features36| Topic | File | Keywords |37|-------|------|----------|38| Interactive mode | interactive-mode.md | slash commands, UI |39| Fast mode | fast-mode.md | /fast, speed |40| Output styles | output-styles.md | markdown, verbose |41| CLI reference | cli-reference.md | flags, arguments, commands |42| Keybindings | keybindings.md | shortcuts, hotkeys |43| Checkpointing | checkpointing.md | checkpoint, restore |4445### Extensibility46| Topic | File | Keywords |47|-------|------|----------|48| Hooks | hooks.md | hook events, lifecycle |49| Hooks guide | hooks-guide.md | hook examples, patterns |50| Skills | skills.md | SKILL.md, slash commands |51| MCP | mcp.md | model context protocol, servers |52| Plugins | plugins.md | plugin system |53| Plugins reference | plugins-reference.md | plugin API |54| Plugin marketplaces | plugin-marketplaces.md | discover, install plugins |55| Discover plugins | discover-plugins.md | browse plugins |5657### Agents & Teams58| Topic | File | Keywords |59|-------|------|----------|60| Sub-agents | sub-agents.md | subagent, agent tool |61| Agent teams | agent-teams.md | team, swarm, multi-agent |6263### IDE Integration64| Topic | File | Keywords |65|-------|------|----------|66| VS Code | vs-code.md | vscode extension |67| JetBrains | jetbrains.md | intellij, webstorm |68| Desktop app | desktop.md | standalone app |69| Desktop quickstart | desktop-quickstart.md | desktop setup |70| Chrome | chrome.md | browser extension |71| Statusline | statusline.md | status bar, statusline |72| Web | claude-code-on-the-web.md | web interface |7374### CI/CD & Automation75| Topic | File | Keywords |76|-------|------|----------|77| GitHub Actions | github-actions.md | workflow, CI |78| GitLab CI/CD | gitlab-ci-cd.md | gitlab runner |79| Headless mode | headless.md | non-interactive, scripting |80| Remote control | remote-control.md | remote, API control |8182### Auth & Providers83| Topic | File | Keywords |84|-------|------|----------|85| Authentication | authentication.md | login, API key, OAuth |86| Amazon Bedrock | amazon-bedrock.md | AWS, bedrock |87| Google Vertex AI | google-vertex-ai.md | GCP, vertex |88| Microsoft Foundry | microsoft-foundry.md | Azure |89| LLM Gateway | llm-gateway.md | gateway, proxy |9091### Security & Compliance92| Topic | File | Keywords |93|-------|------|----------|94| Security | security.md | security model |95| Data usage | data-usage.md | privacy, data handling |96| Zero data retention | zero-data-retention.md | ZDR |97| Legal | legal-and-compliance.md | terms, compliance |98| Costs | costs.md | pricing, tokens, usage |99| Monitoring | monitoring-usage.md | track usage |100| Analytics | analytics.md | telemetry |101102### Troubleshooting103| Topic | File | Keywords |104|-------|------|----------|105| Troubleshooting | troubleshooting.md | errors, common issues |106| Best practices | best-practices.md | tips, recommendations |107| Common workflows | common-workflows.md | patterns, recipes |108| Changelog | changelog.md | versions, releases, what's new |109110## How to use111112```bash113# Find docs about a topic114grep -ril "keyword" references/115116# Read a specific doc117cat references/hooks.md118```