> ## Documentation Index
> Fetch the complete documentation index at: https://usefulai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 6 Best Claude Code Cheat Sheets in 2026

export const sheets = [
  {
    "rank": 1,
    "name": "Claude Code Ultimate Cheat Sheet",
    "creator": "Florian Bruniaux",
    "url": "https://cc.bruniaux.com/cheatsheet/",
    "image": "/images/cheat-sheets/claude-code-review/florian-bruniaux.png",
    "focus": "Everyday Claude Code use",
    "format": "Printable web sheet",
    "date": "Maintained in 2026",
    "rationale": "Best overall. It balances current commands, practical workflows, and printability without turning into an unreadable command dump.",
    "description": "Florian Bruniaux organizes installation, essential commands, keyboard controls, memory, permissions, agents, hooks, MCP, and common workflows into a maintained reference. The sheet is backed by a larger open-source Claude Code guide, making it a useful quick layer over deeper explanations.",
    "attribution": "Capture of the printable cheat sheet from Florian Bruniaux"
  },
  {
    "rank": 2,
    "name": "Claude Code Cheat Sheet: Every Command, Flag and Shortcut",
    "creator": "View Page Source",
    "url": "https://www.view-page-source.com/claude-code-cheat-sheet/",
    "image": "/images/cheat-sheets/claude-code-review/view-page-source.png",
    "focus": "Dense command lookup",
    "format": "One-page A3 PDF",
    "date": "Updated in 2026",
    "rationale": "Best comprehensive printable. It fits an exceptional amount of current reference material onto one page, at the cost of smaller text and more visual density.",
    "description": "The A3 landscape sheet covers slash commands, CLI flags, keyboard shortcuts, configuration, environment variables, memory files, hooks, MCP, extensions, and troubleshooting. It is strongest when printed large or opened on a second monitor rather than viewed on a phone.",
    "attribution": "Representative page from the View Page Source PDF"
  },
  {
    "rank": 3,
    "name": "Printable Claude Code Cheat Sheet",
    "creator": "Storyfox",
    "url": "https://cc.storyfox.cz/",
    "image": "/images/cheat-sheets/claude-code-review/storyfox.png",
    "focus": "Auto-updated one-page reference",
    "format": "Printable web sheet",
    "date": "Updated weekly in 2026",
    "rationale": "Best low-maintenance reference. Its automatic update approach directly addresses how quickly Claude Code commands and features change.",
    "description": "Storyfox condenses core commands, shortcuts, context controls, configuration, permissions, hooks, MCP, and troubleshooting into a single printable layout. It is less explanatory than the top two, but particularly useful for people who want one page that stays close to the current tool.",
    "attribution": "Capture of the printable Storyfox cheat sheet"
  },
  {
    "rank": 4,
    "name": "Claude Code Guidebook Cheat Sheet",
    "creator": "Douglas Mun",
    "url": "https://douglasmun.github.io/claude-code-index.html",
    "image": "/images/cheat-sheets/claude-code-review/douglas-mun.png",
    "focus": "Searchable commands and setup",
    "format": "Web reference and downloadable PDF",
    "date": "April 2026",
    "rationale": "Best searchable companion. It is easy to scan online and provides multiple formats, though it is less compact than a true single-page sheet.",
    "description": "Douglas Mun's reference brings together slash commands, CLI flags, keyboard shortcuts, hooks, environment variables, configuration, plugins, and MCP. The web index is the most convenient format for quick searching; the downloadable versions are better for offline reference.",
    "attribution": "Capture of the Claude Code guidebook index from Douglas Mun"
  },
  {
    "rank": 5,
    "name": "Claude Code Cheat Sheet",
    "creator": "DAIR.AI Academy",
    "url": "https://academy.dair.ai/claude-code-cheat-sheet",
    "image": "/images/cheat-sheets/claude-code-review/dair.png",
    "focus": "Commands, flags, and configuration",
    "format": "Web reference",
    "date": "Current in 2026",
    "rationale": "A strong guided reference with more explanation than the dense printables, but slower to scan when you only need one command.",
    "description": "DAIR.AI groups Claude Code commands, arguments, flags, environment variables, setup, and configuration into readable sections. It works well for readers moving from basic use into customization, especially when a terse command list is not enough context.",
    "attribution": "Capture of the Claude Code reference from DAIR.AI Academy"
  },
  {
    "rank": 6,
    "name": "Claude Code Cheat Sheet 2026",
    "creator": "Mastering AI",
    "url": "https://www.masteringai.io/claude-code-cheat-sheet",
    "image": "/images/cheat-sheets/claude-code-review/mastering-ai.png",
    "focus": "Beginner printable reference",
    "format": "Web guide and one-page PDF",
    "date": "2026",
    "rationale": "Best for beginners who want a clean visual starting point, although the download flow adds friction and the coverage is lighter.",
    "description": "Mastering AI presents the main installation, command, shortcut, and workflow concepts in a clean one-page design. It is easier to approach than the denser references above, but advanced users will outgrow it once they need hooks, detailed permissions, or more configuration depth.",
    "attribution": "Capture of the Claude Code sheet from Mastering AI"
  }
];

export const otherSheets = [
  {
    "name": "Claude Code Cheatsheet by Anthropic",
    "url": "https://support.claude.com/en/articles/14553413-claude-code-cheatsheet",
    "description": "the official accuracy baseline for commands and product behavior"
  },
  {
    "name": "Claude Code Cheat Sheet by Rick Lewandowski",
    "url": "https://prompts.rlew.io/n/guides/cheatsheet/",
    "description": "a workflow-oriented web reference with useful practical notes"
  },
  {
    "name": "Claude Code Cheat Sheet Gist",
    "url": "https://gist.github.com/datafracking/61ae10181d7b14e3fa6484f18952db93",
    "description": "a plain-text reference that is easy to search but offers little visual structure"
  },
  {
    "name": "Claude Code Cheat Sheet on Leanpub",
    "url": "https://leanpub.com/claudecodecheatsheet",
    "description": "a paid long-form reference for readers who want more than a quick sheet"
  }
];

export const BestForChip = ({ children }) => (
  <span className="inline-flex min-w-0 max-w-full items-center rounded bg-emerald-50 px-1.5 py-[2px] dark:bg-emerald-500/10">
    <span className="truncate text-xs font-medium leading-4 text-emerald-700 dark:text-emerald-400">{children}</span>
  </span>
);

export const SheetRow = ({ sheet }) => (
  <a href={sheet.url} target="_blank" rel="noreferrer" className="group flex items-center gap-3 px-4 py-3 no-underline transition-colors hover:bg-zinc-50/60 dark:hover:bg-white/[0.02]">
    <span className="w-4 shrink-0 text-center text-sm font-semibold tabular-nums uai-ink-muted">{sheet.rank}</span>
    <img src={sheet.image} alt="" noZoom className="h-11 w-11 shrink-0 rounded-md border border-zinc-200 object-cover dark:border-white/10" />
    <span className="min-w-0 flex-1">
      <span className="flex min-w-0 flex-wrap items-baseline gap-x-1.5">
        <span className="truncate text-sm font-semibold leading-5 uai-ink-strong">{sheet.name}</span>
        <span aria-hidden="true" className="uai-ink-muted">&#8729;</span>
        <span className="text-[13px] leading-5 uai-ink-muted">{sheet.creator}</span>
      </span>
      <span className="block truncate text-[13px] leading-5 uai-ink-body">{sheet.focus}</span>
    </span>
    <span className="mr-1 flex shrink-0 items-center uai-ink-muted"><Icon icon="chevron-right" size={12} color="currentColor" /></span>
  </a>
);

export const SheetList = ({ items }) => (
  <div className="not-prose mb-10 overflow-hidden rounded-xl border border-zinc-200 bg-white dark:border-white/10 dark:bg-white/[0.03]">
    <div className="divide-y divide-zinc-100 dark:divide-white/5">
      {items.map((sheet) => <SheetRow key={sheet.name} sheet={sheet} />)}
    </div>
  </div>
);

export const SheetCard = ({ sheet }) => (
  <section className="not-prose mb-6 rounded-xl border border-zinc-200 bg-white p-5 shadow-sm dark:border-white/10 dark:bg-white/[0.03]">
    <div className="flex min-w-0 flex-wrap items-center gap-x-2 gap-y-1">
      <h2 className="m-0 max-w-full text-xl font-semibold leading-7 tracking-normal">
        <span className="mr-1.5 tabular-nums uai-ink-muted">{sheet.rank}.</span>
        <a href={sheet.url} target="_blank" rel="noreferrer" className="group inline-flex min-w-0 items-center gap-1.5 no-underline uai-ink-strong">
          <span className="min-w-0 break-words underline-offset-4 group-hover:underline">{sheet.name}</span>
          <span aria-hidden="true" className="flex shrink-0 text-zinc-400 transition-colors group-hover:text-zinc-900 dark:text-zinc-500 dark:group-hover:text-white"><Icon icon="arrow-up-right" size={12} color="currentColor" /></span>
        </a>
      </h2>
      <BestForChip>{sheet.focus}</BestForChip>
    </div>

    <div className="mt-1 flex flex-wrap items-center gap-x-2 text-[13px] leading-5 uai-ink-muted">
      <span>{sheet.date}</span>
      <span aria-hidden="true">&#8729;</span>
      <span>{sheet.creator}</span>
      <span aria-hidden="true">&#8729;</span>
      <span>{sheet.format}</span>
    </div>

    <div className="mt-4 text-sm leading-[22px] uai-ink-body">
      <div className="font-medium uai-ink-strong">{sheet.rationale}</div>
      <div className="mt-3">{sheet.description}</div>
    </div>

    <figure className="mt-5">
      <a href={sheet.url} target="_blank" rel="noreferrer" aria-label={`Open ${sheet.name} by ${sheet.creator}`} className="flex max-h-[520px] w-full items-center justify-center overflow-hidden rounded-lg border border-zinc-200 bg-zinc-50 no-underline dark:border-white/10 dark:bg-black/20">
        <img src={sheet.image} alt={`${sheet.name} by ${sheet.creator}`} noZoom className="max-h-[520px] w-full object-contain" />
      </a>
      <figcaption className="mt-2 text-xs uai-ink-muted">{sheet.attribution}</figcaption>
    </figure>
  </section>
);

export const OtherSheetLine = ({ sheet }) => (
  <li className="flex items-baseline gap-2.5 text-sm leading-[22px] uai-ink-body">
    <span aria-hidden="true" className="relative -top-0.5 inline-block h-1.5 w-1.5 shrink-0 rounded-full bg-zinc-300 dark:bg-zinc-600" />
    <span><a href={sheet.url} target="_blank" rel="noreferrer" className="font-medium uai-ink-strong underline underline-offset-2">{sheet.name}</a>: {sheet.description}.</span>
  </li>
);

<div className="not-prose -mt-5 mb-8 flex flex-wrap items-center gap-x-2 text-sm uai-ink-body" style={{ paddingLeft: "2px" }}>
  <span className="inline-flex items-center gap-1.5"><Icon icon="clock-rotate-left" size={10} color="currentColor" /> Updated <time dateTime="2026-07-12">July 12, 2026</time></span>
</div>

The strongest Claude Code cheat sheets range from selective printable references to dense command maps covering configuration, hooks, MCP, permissions, and keyboard shortcuts.

This ranking prioritizes what readers can use today: practical value, clarity, currentness, and format. Popularity helped identify candidates, but it does not determine the final order.

## Best Claude Code Cheat Sheets

<SheetList items={sheets} />

{sheets.map((sheet) => <SheetCard key={sheet.name} sheet={sheet} />)}

***

## Other Claude Code Cheat Sheets to Consider

<ul className="not-prose m-0 my-4 flex list-none flex-col gap-2 p-0">
  {otherSheets.map((sheet) => <OtherSheetLine key={sheet.name} sheet={sheet} />)}
</ul>

***

## Frequently Asked Questions

<AccordionGroup>
  <Accordion title="What is the best Claude Code cheat sheet?">
    Florian Bruniaux's maintained printable sheet is the best overall balance of clarity and coverage. View Page Source is better for maximum one-page density, while Storyfox is the strongest option if update frequency matters most.
  </Accordion>

  <Accordion title="Which Claude Code cheat sheet covers the most commands?">
    View Page Source provides the densest printable command map. Douglas Mun and DAIR.AI are easier to search online when you need a command plus a little more explanation.
  </Accordion>

  <Accordion title="How quickly do Claude Code cheat sheets become outdated?">
    Commands, configuration keys, permission behavior, and extension features can change quickly. Prefer sheets with a visible maintenance path and verify exact syntax against Anthropic's current support reference when a command matters.
  </Accordion>

  <Accordion title="Which Claude Code cheat sheets can I print?">
    Florian Bruniaux, View Page Source, Storyfox, Douglas Mun, and Mastering AI all provide printable or downloadable formats. View Page Source is designed for A3 paper, while the simpler sheets remain more legible at ordinary sizes.
  </Accordion>
</AccordionGroup>
