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

# Best AI Cheat Sheets in 2026

export const toolCats = [{
  "title": "ChatGPT",
  "href": "/cheat-sheets/chatgpt",
  "icon": "/images/icons/48/chatgpt.com.png",
  "count": 7
}, {
  "title": "Claude",
  "href": "/cheat-sheets/claude",
  "icon": "/images/icons/48/claude.com.png",
  "count": 5
}, {
  "title": "Claude Code",
  "href": "/cheat-sheets/claude-code",
  "icon": "/images/icons/48/claude.com.png",
  "count": 6
}, {
  "title": "Cursor",
  "href": "/cheat-sheets/cursor",
  "icon": "/images/icons/48/cursor.com.png",
  "count": 5
}, {
  "title": "GitHub Copilot",
  "href": "/cheat-sheets/github-copilot",
  "icon": "/images/icons/48/github.com.png",
  "count": 5
}, {
  "title": "Gemini",
  "href": "/cheat-sheets/gemini",
  "icon": "/images/icons/48/gemini.google.png",
  "count": 4
}, {
  "title": "Midjourney",
  "href": "/cheat-sheets/midjourney",
  "icon": "/images/icons/48/midjourney.com.png",
  "count": 5
}];
export const topicCats = [{
  "title": "Prompt Engineering",
  "href": "/cheat-sheets/prompt-engineering",
  "fa": "wand-magic-sparkles",
  "count": 6
}, {
  "title": "AI Agents",
  "href": "/cheat-sheets/ai-agents",
  "fa": "robot",
  "count": 6
}];

export const Logo = ({c}) => c.icon ? <img src={c.icon} alt="" noZoom className="h-6 w-6 shrink-0 rounded-md border border-zinc-100 object-contain p-0.5 dark:border-white/10" /> : <span className="flex h-6 w-6 shrink-0 items-center justify-center rounded-md border border-zinc-100 text-zinc-500 dark:border-white/10 dark:text-zinc-400"><Icon icon={c.fa} size={12} color="currentColor" /></span>;

export const Row = ({c}) => <a href={c.href} className="group flex items-center gap-2.5 border-b border-zinc-100 py-2.5 no-underline transition-colors hover:bg-zinc-50/60 dark:border-white/5 dark:hover:bg-white/[0.02]">
    <Logo c={c} />
    <h3 className="m-0 min-w-0 flex-1 truncate text-sm font-medium text-zinc-950 dark:text-white">{c.title}</h3>
    <span className="shrink-0 text-[13px] tabular-nums text-zinc-400 dark:text-zinc-500">{c.count}</span>
    <span className="shrink-0 text-zinc-400 transition-colors group-hover:text-zinc-900 dark:text-zinc-500 dark:group-hover:text-white"><Icon icon="chevron-right" size={12} /></span>
  </a>;

export const GroupLabel = ({children}) => <h2 className="not-prose mb-2 mt-9 text-xs font-semibold uppercase tracking-wide text-zinc-400 dark:text-zinc-500">{children}</h2>;
export const rows2 = {
  display: "grid",
  gridTemplateColumns: "repeat(auto-fill, minmax(300px, 1fr))",
  columnGap: "28px"
};

Practical visual references, printable PDFs, and web-based cheat sheets — each roundup compares the strongest candidates and ranks them by how useful they are today.

<GroupLabel>By tool</GroupLabel>

<div className="not-prose" style={rows2}>
  {toolCats.map((c) => <Row key={c.href} c={c} />)}
</div>

<GroupLabel>By topic</GroupLabel>

<div className="not-prose" style={rows2}>
  {topicCats.map((c) => <Row key={c.href} c={c} />)}
</div>
