README.md
August 11, 2026 ยท View on GitHub
Learn Claude Code by exploring it.
A simulated Claude Code project you can click through. Every file and folder in the sidebar is a real Claude Code concept โ the same .claude/ directory, config files, and scaffolding you'd find in an actual repo. Click any file to learn what it does, how to set it up, and see annotated examples you can copy into your own projects.
๐ What You'll Learn
| Folder / File | Feature |
|---|---|
CLAUDE.md | Project memory that persists across sessions |
.claude/settings.json | Permissions, tool access, and guardrails |
.claude/rules/ | Contextual conventions scoped to specific file types |
.claude/commands/ | Custom slash commands for saved workflows |
.claude/skills/ | Knowledge folders Claude loads autonomously |
.claude/agents/ | Subagents for specialised, delegated tasks |
.claude/hooks/ | Shell scripts that run on Claude lifecycle events |
.claude/plugins/ | Extend Claude with custom tools and resources |
.mcp.json | MCP server config for external tool integrations |
src/ | Example source code sitting alongside real config |
| built-in/ | Features that ship with Claude Code (no setup required) |
built-in/bundled-skills/ | /simplify, /batch, /debug, /loop, /claude-api |
The explorer is split into two sections. Everything under .claude/ is project config you create and commit. Everything under built-in/ covers features that ship with Claude Code out of the box, no setup required. A visual separator divides the two.
Every piece of content is written as if it were a real config file in a real repo. You're not reading about the config, you're reading the config itself, annotated so you understand every line. When you're done exploring, you can copy the scaffolding straight into your own projects.
โจ๏ธ Getting Around
- Search with
Ctrl/Cmd + K: a palette that jumps to any file or feature by title, path, or badge - Light and dark themes via a title-bar toggle that remembers your choice and follows your system preference
- Copy link on any page to share a deep link straight to that entry
- Arrow keys step through files in order, and the terminal panel runs a slash-command emulator (
/help,/init,/doctor, and more)
๐ Try It
The fastest way to get started is the live site:
No install, no signup, no build step. Just open it and start clicking.
If you want to run it locally, clone the repo and point any static server at the site/ directory:
git clone https://github.com/LukeRenton/explore-claude-code.git
cd explore-claude-code
npx serve site
# or
python -m http.server -d site 8080
# or just open site/index.html directly in your browser
๐๏ธ Project Structure
The entire site is static HTML, CSS, and vanilla JavaScript. Zero build steps, zero frameworks, zero bundlers.
explore-claude-code/
โโโ site/
โ โโโ index.html # Single-page app entry point
โ โโโ data/
โ โ โโโ manifest.json # Drives the entire UI (tree, content, badges, features)
โ โโโ content/ # Source markdown and config files
โ โโโ js/
โ โ โโโ app.js # Main controller, routing, keyboard nav, theme
โ โ โโโ file-explorer.js # Sidebar tree with animated canvas connectors
โ โ โโโ content-loader.js # Custom markdown parser and renderer
โ โ โโโ terminal.js # Interactive terminal panel
โ โ โโโ search.js # Cmd/Ctrl+K search palette
โ โ โโโ progress.js # Feature completion tracking (localStorage)
โ โ โโโ icons.js # Hand-crafted SVG icon library
โ โโโ css/ # Variables, layout, components, syntax, terminal, search, void
โโโ logo.png
โโโ README.md
All educational content is stored in site/data/manifest.json and the source files in site/content/. The manifest is the single source of truth for the tree structure, badges, feature groupings, and content references. To add or change content, that's where you go.
๐ค Contributing
Contributions are welcome! Here are some areas where help would be great:
- Content for new Claude Code features as they ship
- Accessibility improvements (keyboard nav, screen readers, ARIA)
- Mobile experience refinements
- Translations into other languages
If you'd like to add or update educational content, the two places to look are:
site/data/manifest.jsonfor tree structure and metadatasite/content/for the actual markdown and config files
Feel free to open an issue if you have ideas or spot something that could be better.
โญ Support
If you found this useful, consider giving it a star! It helps others discover the project.