Stop asking Claude what tools you have. Build a cheat sheet instead.
Generate personalized Claude Code quick-reference systems inspired by Brett Terpstra's Cheaters.
Click to watch: I Built a Cheat Sheet for My Claude Code Setup
You've built dozens of skills, agents, and MCP servers in Claude Code, but you can't remember half of them.
Sound familiar?
- "Wait, did I already build a skill for that?"
- "What was that agent called again?"
- "Which MCP servers do I actually have configured?"
- Running
/helpgets you built-in commands, not your custom tools
This plugin solves that by generating a searchable, offline quick-reference of everything you've built.
- Modern design with oklch() colors and smooth animations
- Dark & light themes with system preference detection
- Global search — Press
/to search all commands across sheets - Keyboard navigation — j/k, arrows, Enter to select
- Auto-discovery — Scans your actual configuration
- Proper frontmatter parsing — Extracts descriptions from skills, models from agents
- Diff-based sync — See exactly what changed between updates
- LocalStorage persistence — Remembers your last-viewed sheet and theme
The plugin scans your Claude Code configuration and generates HTML sheets:
| Source | Location | What Gets Extracted |
|---|---|---|
| Skills | ~/.claude/skills/*/SKILL.md |
name, description, user-invocable |
| Agents | ~/.claude/agents/*.md |
model, tools (from frontmatter) |
| MCP Servers | ~/.claude.json |
tools, configuration |
| Plugins | ~/.claude/plugins/ |
all skills from installed plugins |
The output is a standalone HTML file that works completely offline — no server needed.
# Add the marketplace
claude plugin marketplace add aplaceforallmystuff/claude-code-quickref
# Install the plugin
claude plugin install claude-code-quickrefStart a new Claude Code session to use the commands and skills.
# Clone the repo
git clone https://github.com/aplaceforallmystuff/cheaters-generator.git
cd cheaters-generator
# Copy skills to your Claude Code directory
cp -r skills/* ~/.claude/skills//generate-quickref
Or with a custom location:
/generate-quickref ~/Documents/my-quickref
Update your existing quickref with any changes to your configuration:
/sync-quickref
This will:
- Scan current skills, agents, commands, MCP servers
- Compare against existing sheets
- Report a diff (Added / Removed / Changed)
- Update only affected files
- Rebuild main.js
# Open directly in browser
open path/to/quickref/index.html
# Or serve locally (optional)
cd path/to/quickref && python3 -m http.server 8888| Key | Action |
|---|---|
/ |
Focus search |
Esc |
Close search |
↑ / ↓ |
Navigate results / sheets |
Enter |
Select result |
k / j |
Previous / next sheet |
your-quickref/
├── index.html # Main HTML with navigation
├── stylesheets/
│ └── main.css # Modern oklch() themes
├── javascripts/
│ └── main.js # AUTO-GENERATED from sheets/
├── sheets/ # Individual sheet files (2-12 KB each)
│ ├── builtin-commands.html
│ ├── custom-skills.html
│ ├── custom-agents.html
│ ├── mcp-*.html # One per MCP server
│ └── ...
└── images/
└── mascot.png # Optional mascot image
Edit individual files in sheets/ — each is small and self-contained:
vim sheets/custom-agents.htmlAfter editing, rebuild main.js:
node scripts/build.jsThe generated CSS uses modern oklch() colors following superdesign principles:
- Typography: Inter for body, JetBrains Mono for code
- Colors: oklch() color space for perceptual uniformity
- Shadows: Subtle, multi-layer shadows
- Animation: 150-400ms ease-out transitions
- Spacing: 4px base unit (0.25rem)
---
name: skill-name
description: What this skill does
user-invocable: true
------
model: opus
tools:
- Read
- Write
---The model field is displayed as "Model: Opus/Sonnet/Haiku" in the quick-reference.
- Claude Code CLI installed
- Node.js (for build script)
- A browser (for viewing the quick-reference)
See CONTRIBUTING.md for guidelines.
Jim Christian — jimchristian.net
- Brett Terpstra's Cheaters — The original inspiration
- Claude Agent Borg — Assimilate external Claude Code setups
- Minervia — Claude Code + Obsidian starter kit


