Claude Prompt Library

30 Claude Prompts That Build Cheat Sheets

30 copy-paste prompts

Name a topic and Claude returns a dense, scannable cheat sheet you can print or paste anywhere — syntax, shortcuts, formulas, and commands as clean Markdown tables. Prompts for programming languages, tool shortcuts, functions, CLI commands, frameworks, and exam crams. Not "give me some notes."

In short: This page contains 30 copy-paste ready prompts, organized into 6 categories with a description and pro tip for each. The first 15 prompts are free instantly — no signup needed. Hand-curated and tested by the AI Academy team.

By Louis Corneloup · Founder, Techpresso
Last updated ·Hand-curated & tested by the AI Academy team

Programming Language Cheat Sheets

5 prompts

Python Syntax Cheat Sheet

1/30

You are a senior Python engineer who writes tight, reliable reference material. <context> I need a one-page Python cheat sheet as a self-contained Markdown document I can paste into a doc or print — dense, scannable, and grouped by topic. </context> <inputs> - Python version: [E.G. 3.12] - My level: [BEGINNER / INTERMEDIATE / ADVANCED] - Focus areas: [E.G. DATA STRUCTURES, COMPREHENSIONS, F-STRINGS, ASYNC] - Things I always forget: [OPTIONAL LIST] - Length: [ONE PAGE / TWO PAGES] </inputs> <task> Build the cheat sheet with short section headers and Markdown tables: variables and types, string formatting, list/dict/set comprehensions, slicing, common built-ins, error handling, file I/O, and a "gotchas" table (mutable defaults, is vs ==, integer division). Each row = a pattern, a minimal code snippet, and a one-line note. </task> <constraints> - Every snippet must be correct and runnable in the stated version; no pseudo-code. - Maximize density: tables over prose, no filler sentences, one idea per row. - Group logically so it reads top-to-bottom on a single page. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then a one-line note on how to trim it to fit one printed page. </format>

Produces a dense, topic-grouped Python syntax cheat sheet with runnable snippets as a copy-paste Markdown artifact ready to use.

💡

Pro tip: List the 5 things you always Google — Claude will promote them into a dedicated "quick recall" table at the top.

JavaScript / ES2026 Cheat Sheet

2/30

You are a front-end lead who mentors developers on modern JavaScript. <context> I want a modern JavaScript cheat sheet as a self-contained Markdown document, dense and scannable, that I can keep open beside my editor. </context> <inputs> - Environment: [BROWSER / NODE / BOTH] - Focus: [E.G. ARRAY METHODS, PROMISES/ASYNC, DESTRUCTURING, MODULES] - Familiar with: [WHAT I KNOW] - Include TypeScript notes: [YES / NO] </inputs> <task> Build the cheat sheet with Markdown tables covering: variable declarations, arrow vs regular functions, destructuring and spread, the essential array methods (map/filter/reduce/find/some/every) with a one-line example each, template literals, optional chaining and nullish coalescing, promises and async/await, and common gotchas (== vs ===, this binding, hoisting). Each row = syntax, tiny example, note. </task> <constraints> - All examples valid ES2026, concise, and copy-runnable. - Tables first, prose last; no motivational fluff. - Mark anything browser-only or Node-only in a status column. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then note which two sections to expand for beginners. </format>

Generates a modern JavaScript reference cheat sheet with array methods, async, and gotchas as a scannable Markdown artifact ready to use.

💡

Pro tip: Tell Claude your framework (React, Vue) and it will add a short section of the JS patterns that framework leans on most.

SQL Query Cheat Sheet

3/30

You are a data engineer who writes clear SQL reference guides for analysts. <context> I need a SQL cheat sheet as a self-contained Markdown document, organized so I can find a clause or pattern in seconds while writing queries. </context> <inputs> - Dialect: [POSTGRESQL / MYSQL / SQL SERVER / SQLITE / BIGQUERY] - Use case: [ANALYTICS / APP BACKEND / REPORTING] - Comfort level: [BEGINNER / INTERMEDIATE] - Topics to prioritize: [E.G. JOINS, WINDOW FUNCTIONS, CTES, AGGREGATIONS] </inputs> <task> Build the cheat sheet with tables for: SELECT clause order, all JOIN types with a one-line meaning, filtering (WHERE vs HAVING), GROUP BY and aggregates, CTEs, window functions (ROW_NUMBER, RANK, LAG/LEAD, running totals), subqueries, upserts, and date/string functions for the stated dialect. Each row = pattern, minimal example, note. </task> <constraints> - Every example must run in the stated dialect; flag dialect-specific syntax clearly. - Dense tables, no long explanations; one pattern per row. - Include a small "clause execution order" reference block. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then a one-line tip on adapting it to another dialect. </format>

Builds a dialect-specific SQL cheat sheet covering joins, window functions, and CTEs as a copy-paste Markdown artifact ready to use.

💡

Pro tip: Paste your table schema and Claude will make every example query use your real column names so you can copy them straight in.

TypeScript Types Cheat Sheet

4/30

You are a TypeScript expert who documents the type system for practical use. <context> I need a TypeScript types cheat sheet as a self-contained Markdown document I can reference while annotating code — dense, example-driven, no theory dumps. </context> <inputs> - TS version: [E.G. 5.x] - Project type: [REACT APP / NODE API / LIBRARY] - Struggle points: [E.G. GENERICS, UTILITY TYPES, NARROWING] - Include tsconfig notes: [YES / NO] </inputs> <task> Build the cheat sheet with Markdown tables for: primitive and object types, interfaces vs type aliases, unions and intersections, generics with a real example, the essential utility types (Partial, Pick, Omit, Record, ReturnType), type narrowing and guards, discriminated unions, and common error fixes. Each row = the type expression, a minimal example, and what it does. </task> <constraints> - Every type expression must compile under the stated version. - Tables over prose; each utility type gets a before/after example. - Include a short "reading a type error" mini-guide. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then note the two sections most worth memorizing. </format>

Creates a practical TypeScript types cheat sheet with generics, utility types, and narrowing as a scannable Markdown artifact ready to use.

💡

Pro tip: Paste a type error you keep hitting and Claude will add a targeted row showing the exact fix pattern.

Rust Ownership & Syntax Cheat Sheet

5/30

You are a systems programmer who teaches Rust to developers coming from other languages. <context> I need a Rust cheat sheet as a self-contained Markdown document that makes ownership, borrowing, and core syntax quick to look up while I code. </context> <inputs> - Coming from: [E.G. PYTHON, GO, C++] - Rust edition: [E.G. 2024] - Focus: [OWNERSHIP, ERROR HANDLING, TRAITS, ITERATORS] - My level: [NEW / SOME EXPERIENCE] </inputs> <task> Build the cheat sheet with tables for: variables and mutability, ownership and moves, borrowing and references (&, &mut) with the borrow rules, lifetimes basics, structs and enums, pattern matching, Option and Result with the ? operator, traits and impl, common iterator methods, and the most frequent borrow-checker errors with fixes. Each row = concept, minimal snippet, note. </task> <constraints> - All snippets must compile in the stated edition; no hand-wavy pseudo-code. - Prioritize the borrow-checker section — that is where people get stuck. - Dense tables, one concept per row, no philosophy. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then a one-line analogy that helps ownership click for someone from my prior language. </format>

Produces a Rust cheat sheet focused on ownership, borrowing, and common compiler errors with fixes as a Markdown artifact ready to use.

💡

Pro tip: Tell Claude the exact borrow-checker error message you keep seeing and it will lead the sheet with the fix.

XML tags are just the start. Learn the full Claude workflow.

A growing library of 300+ hands-on AI tutorials covering Claude, ChatGPT, and 50+ tools. New tutorials added every week.

Start 7-Day Free Trial

Tool & App Shortcut Cheat Sheets

5 prompts

VS Code Keyboard Shortcuts Sheet

6/30

You are a productivity engineer who lives in VS Code and teaches keyboard-first workflows. <context> I want a VS Code keyboard shortcuts cheat sheet as a self-contained Markdown document, grouped by task, that I can pin next to my screen. </context> <inputs> - OS: [MAC / WINDOWS / LINUX] - What I do most: [E.G. EDITING, NAVIGATION, DEBUGGING, MULTI-CURSOR] - Level: [NEW / INTERMEDIATE] - Extensions I rely on: [OPTIONAL] </inputs> <task> Build the cheat sheet with Markdown tables grouped by: navigation (files, symbols, go-to-line), editing (multi-cursor, line moves, duplication), selection, search and replace, refactoring, terminal, and debugging. Each row = action + the exact key combo for my OS + a one-line note on when to use it. Add a top "10 shortcuts to learn first" table. </task> <constraints> - Use the correct modifier keys for the stated OS (Cmd vs Ctrl, Option vs Alt). - Only include shortcuts that ship by default unless I named an extension. - Dense tables, no screenshots, one action per row. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then note which five shortcuts save the most time for my main task. </format>

Builds an OS-correct VS Code shortcuts cheat sheet grouped by task with a starter set as a copy-paste Markdown artifact ready to use.

💡

Pro tip: Name the extension you use most (e.g. GitLens) and Claude will add its key shortcuts as a separate table.

Vim Commands Cheat Sheet

7/30

You are a Vim power user who onboards developers onto modal editing. <context> I need a Vim cheat sheet as a self-contained Markdown document, organized by mode and motion, that I can glance at while learning. </context> <inputs> - Editor: [VIM / NEOVIM / VIM MODE IN VS CODE] - Level: [ABSOLUTE BEGINNER / KNOW THE BASICS] - Priority: [SURVIVAL COMMANDS / SPEED EDITING / MACROS] - Any plugins: [OPTIONAL] </inputs> <task> Build the cheat sheet with tables for: modes and how to switch, movement (h/j/k/l, words, lines, screen, search), insert commands, editing operators and text objects (diw, ci", dt), yank/paste/delete, undo/redo, visual mode, search and replace with :s, buffers/windows/tabs, and a "survival kit" of the 12 commands to never forget. Each row = command, what it does, memory hook. </task> <constraints> - Commands must be accurate for the stated editor. - Emphasize operator + motion composition so it teaches the grammar, not just keys. - Dense tables, one command per row, no long tutorials. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then a one-line path for the first week of practice. </format>

Generates a mode-organized Vim commands cheat sheet with a survival kit and memory hooks as a scannable Markdown artifact ready to use.

💡

Pro tip: Ask for a "grammar" column that shows how verbs and motions combine so you stop memorizing commands one by one.

Excel / Google Sheets Shortcuts Sheet

8/30

You are a spreadsheet trainer who teaches keyboard-only workflows to analysts. <context> I need a spreadsheet keyboard shortcuts cheat sheet as a self-contained Markdown document, grouped by task, that keeps my hands off the mouse. </context> <inputs> - App: [EXCEL / GOOGLE SHEETS] - OS: [WINDOWS / MAC] - Work: [DATA ENTRY / ANALYSIS / FORMATTING / PIVOTS] - Level: [BASIC / INTERMEDIATE] </inputs> <task> Build the cheat sheet with tables grouped by: navigation (jump to edges, sheets, named ranges), selection, entering and editing data, formatting (number formats, bold, borders), formulas (autosum, fill, absolute reference toggle), rows/columns, filtering and sorting, and pivot/table shortcuts. Each row = action + exact key combo for the stated app and OS + a note. Add a "top 15" starter table. </task> <constraints> - Use the correct combos for the exact app and OS named. - Only real, current shortcuts; mark any that differ between Excel and Sheets. - Dense tables, one action per row. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then note the three shortcuts that replace the most mouse clicks. </format>

Creates an app- and OS-correct spreadsheet shortcuts cheat sheet grouped by task with a starter set as a Markdown artifact ready to use.

💡

Pro tip: Say whether you're on the desktop or web version — several shortcuts differ, and Claude will flag the ones that change.

Figma / Design Tool Shortcuts Sheet

9/30

You are a product designer who works keyboard-first in design tools. <context> I want a design-tool shortcuts cheat sheet as a self-contained Markdown document, grouped by task, to speed up my daily work. </context> <inputs> - Tool: [FIGMA / SKETCH / ADOBE XD / PHOTOSHOP] - OS: [MAC / WINDOWS] - Focus: [UI DESIGN / PROTOTYPING / VECTOR EDITING] - Level: [NEW / INTERMEDIATE] </inputs> <task> Build the cheat sheet with tables grouped by: tools and selection, moving and resizing, alignment and distribution, layers and grouping, components and instances, auto-layout or constraints, zoom and canvas navigation, text, and export. Each row = action + exact key combo for the stated tool and OS + a one-line note. Add a "10 to learn first" table. </task> <constraints> - Correct modifiers for the stated tool and OS. - Only default shortcuts; group so a designer can scan by intent. - Dense tables, one action per row, no screenshots. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then note which shortcuts most speed up building components. </format>

Builds a task-grouped shortcuts cheat sheet for Figma or another design tool with a starter set as a copy-paste Markdown artifact ready to use.

💡

Pro tip: Tell Claude if you use auto-layout heavily — it will expand that section since those shortcuts save the most time.

Terminal & tmux Shortcuts Sheet

10/30

You are a DevOps engineer who teaches efficient terminal and tmux usage. <context> I need a terminal and tmux cheat sheet as a self-contained Markdown document, grouped by task, for fast recall while working in the shell. </context> <inputs> - Shell: [BASH / ZSH / FISH] - Terminal multiplexer: [TMUX / SCREEN / NONE] - Focus: [LINE EDITING / HISTORY / SESSIONS / PANES] - Level: [BASIC / INTERMEDIATE] </inputs> <task> Build the cheat sheet with tables for: shell line editing (Ctrl-A/E/U/K/W, word jumps), history search and expansion (Ctrl-R, !!, !$), job control (Ctrl-Z, bg, fg, &), and — if tmux is used — sessions, windows, panes, splitting, resizing, and copy mode with the correct prefix. Each row = action, exact key combo, one-line note. Add a "survival" table of the 12 most-used. </task> <constraints> - Combos must be correct for the stated shell and multiplexer; note the tmux prefix. - Dense tables, one action per row, no long prose. - Separate shell shortcuts from tmux shortcuts clearly. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then a one-line note on rebinding the tmux prefix if I want. </format>

Produces a terminal and tmux shortcuts cheat sheet covering line editing, history, and panes as a scannable Markdown artifact ready to use.

💡

Pro tip: State your tmux prefix (default is Ctrl-B) so every pane and window combo in the sheet is exactly right for your setup.

Formula & Function Cheat Sheets

5 prompts

Excel Formulas Cheat Sheet

11/30

You are a financial analyst who documents Excel formulas for fast reference. <context> I need an Excel formulas cheat sheet as a self-contained Markdown document, grouped by purpose, that shows syntax and a worked example for each function. </context> <inputs> - Version: [EXCEL 365 / 2021 / GOOGLE SHEETS] - Use case: [FINANCE / DATA CLEANUP / REPORTING / LOOKUPS] - Level: [BASIC / INTERMEDIATE / ADVANCED] - Functions I struggle with: [OPTIONAL] </inputs> <task> Build the cheat sheet with tables grouped by: lookup (XLOOKUP, INDEX/MATCH, VLOOKUP), logical (IF, IFS, IFERROR, AND/OR), text (LEFT/RIGHT/MID, TEXTSPLIT, CONCAT, TRIM), date/time, math and aggregation (SUMIFS, COUNTIFS, AVERAGEIFS), and dynamic arrays (FILTER, UNIQUE, SORT). Each row = function, syntax with argument names, a concrete example with sample values, and the result. </task> <constraints> - Every formula must be valid in the stated version; note 365-only functions. - Show real example values and expected output, not abstract placeholders. - Dense tables, one function per row. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then note the three formulas that replace the most manual work. </format>

Builds a purpose-grouped Excel formulas cheat sheet with syntax and worked examples as a copy-paste Markdown artifact ready to use.

💡

Pro tip: Describe one real task (e.g. matching two lists) and Claude will add a mini worked recipe combining the exact formulas.

Google Sheets Functions Cheat Sheet

12/30

You are a spreadsheet automation specialist who documents Google Sheets functions. <context> I need a Google Sheets functions cheat sheet as a self-contained Markdown document, focused on the functions that differ from or go beyond Excel. </context> <inputs> - Use case: [DASHBOARDS / IMPORTING DATA / ANALYSIS] - Level: [BASIC / INTERMEDIATE] - Interested in: [ARRAYFORMULA, QUERY, IMPORTRANGE, REGEX FUNCTIONS] - Data source: [OPTIONAL] </inputs> <task> Build the cheat sheet with tables for: the Sheets-specific power functions (ARRAYFORMULA, QUERY with its SQL-like syntax, IMPORTRANGE, IMPORTHTML, GOOGLEFINANCE), lookup and reference, logical, text and REGEX functions (REGEXEXTRACT, REGEXREPLACE), aggregation with conditions, and array operations. Each row = function, syntax, a concrete example with sample values, and the result. </task> <constraints> - Only valid current Google Sheets functions; give the QUERY clause syntax explicitly. - Real example values and outputs, not abstract placeholders. - Dense tables, one function per row. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then a QUERY mini-reference showing SELECT, WHERE, GROUP BY, and ORDER BY. </format>

Creates a Google Sheets functions cheat sheet centered on QUERY, ARRAYFORMULA, and REGEX with worked examples as a Markdown artifact ready to use.

💡

Pro tip: Ask Claude to expand the QUERY section into its own table — it is the single most powerful and confusing Sheets function.

Statistics Formulas Cheat Sheet

13/30

You are a statistics instructor who builds clear formula reference sheets. <context> I need a statistics formulas cheat sheet as a self-contained Markdown document, with each formula, what it measures, and when to use it, for quick recall. </context> <inputs> - Course or context: [E.G. INTRO STATS, DATA SCIENCE, A/B TESTING] - Level: [INTRO / INTERMEDIATE] - Topics: [DESCRIPTIVE, PROBABILITY, DISTRIBUTIONS, INFERENCE, REGRESSION] - Notation preference: [PLAIN TEXT / LATEX] </inputs> <task> Build the cheat sheet with tables grouped by: descriptive statistics (mean, median, variance, standard deviation), probability rules, common distributions (normal, binomial, Poisson) with their parameters, sampling and standard error, confidence intervals, hypothesis testing (z, t, chi-square) with when to use each, and simple linear regression. Each row = name, formula, what it tells you, and when to use it. </task> <constraints> - Formulas must be correct; render in the chosen notation consistently. - Include the assumptions or conditions for each test. - Dense tables, one formula per row, no long derivations. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then a short decision guide for picking the right test. </format>

Produces a statistics formulas cheat sheet with each formula, its meaning, and when to use it as a scannable Markdown artifact ready to use.

💡

Pro tip: Say whether your exam allows LaTeX or plain text so the notation matches what you'll actually write on the sheet.

Financial Formulas Cheat Sheet

14/30

You are a finance professor who documents core financial formulas for practitioners. <context> I need a financial formulas cheat sheet as a self-contained Markdown document, with each formula, its inputs, and a worked example, for quick reference. </context> <inputs> - Context: [CORPORATE FINANCE / INVESTING / FP&A / EXAM PREP] - Level: [INTRO / INTERMEDIATE] - Topics: [TIME VALUE OF MONEY, VALUATION, RATIOS, RETURNS] - Show Excel equivalents: [YES / NO] </inputs> <task> Build the cheat sheet with tables grouped by: time value of money (PV, FV, NPV, IRR, annuities), valuation (DCF, perpetuity, terminal value), profitability and liquidity ratios, leverage ratios, returns (CAGR, ROI, ROE), and cost of capital (WACC, CAPM). Each row = name, formula, what each input means, and a worked example with numbers. If requested, add the Excel function equivalent. </task> <constraints> - Formulas must be correct and inputs clearly defined. - Include a small numeric example so the formula is unambiguous. - Dense tables, one formula per row. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then note the three formulas most likely to appear on an exam or in a model. </format>

Builds a financial formulas cheat sheet covering TVM, valuation, and ratios with worked examples as a copy-paste Markdown artifact ready to use.

💡

Pro tip: Turn on Excel equivalents and Claude will map each formula to its function (NPV, IRR, RATE) so you can build the model straight from the sheet.

Physics / Math Formulas Cheat Sheet

15/30

You are a physics and math tutor who builds exam-ready formula sheets. <context> I need a physics or math formulas cheat sheet as a self-contained Markdown document, organized by topic, that fits the scope of my course or exam. </context> <inputs> - Subject: [E.G. MECHANICS, CALCULUS, TRIGONOMETRY, ELECTROMAGNETISM] - Course level: [HIGH SCHOOL / UNDERGRAD] - Topics covered: [LIST] - Notation: [PLAIN TEXT / LATEX] </inputs> <task> Build the cheat sheet with tables grouped by topic. For each formula give: the name, the formula, the variables and their units, and the condition or when to use it. For a math sheet, group by identities, derivatives, integrals, and series. For a physics sheet, group by kinematics, forces, energy, and the relevant domain formulas. Add a constants table where relevant. </task> <constraints> - Only include formulas within the stated scope; do not pad with unrelated topics. - Every formula correct with units labeled; render notation consistently. - Dense tables, one formula per row. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then note which formulas are worth memorizing versus looking up. </format>

Generates a scope-limited physics or math formulas cheat sheet with variables, units, and conditions as a scannable Markdown artifact ready to use.

💡

Pro tip: Paste your syllabus topic list so Claude includes exactly what's testable and skips everything outside your exam's scope.

CLI & Command Cheat Sheets

5 prompts

Git Commands Cheat Sheet

16/30

You are a senior engineer who writes calm, practical Git references. <context> I need a Git cheat sheet as a self-contained Markdown document, grouped by workflow, that covers everyday commands and the recovery moves people panic over. </context> <inputs> - Workflow: [SOLO / FEATURE BRANCHES / GITFLOW] - Level: [BASIC / INTERMEDIATE] - Pain points: [E.G. REBASE, MERGE CONFLICTS, UNDOING COMMITS] - Host: [GITHUB / GITLAB / OTHER] </inputs> <task> Build the cheat sheet with tables grouped by: setup and config, staging and committing, branching and switching, merging vs rebasing, pushing and pulling, inspecting history (log, diff, blame), stashing, tagging, and an "undo / oh no" table (amend, reset soft vs hard, revert, restore, recover with reflog). Each row = command, what it does, and a one-line caution where it is destructive. </task> <constraints> - Commands must be correct and current; clearly mark anything that rewrites history. - The undo table is the priority — make it complete and safe. - Dense tables, one command per row, no long tutorials. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then a one-line rule for when to rebase versus merge. </format>

Builds a workflow-grouped Git cheat sheet with an emphasis on safe undo and recovery commands as a copy-paste Markdown artifact ready to use.

💡

Pro tip: Tell Claude your branching model and it will tailor the merge-vs-rebase section to how your team actually works.

Docker Commands Cheat Sheet

17/30

You are a DevOps engineer who documents container workflows for developers. <context> I need a Docker cheat sheet as a self-contained Markdown document, grouped by task, covering the daily commands plus cleanup and debugging. </context> <inputs> - Use case: [LOCAL DEV / CI / PRODUCTION] - Compose: [YES / NO] - Level: [BASIC / INTERMEDIATE] - Common tasks: [BUILDING, RUNNING, LOGS, VOLUMES, NETWORKS] </inputs> <task> Build the cheat sheet with tables grouped by: images (build, tag, pull, push, list, remove), containers (run with common flags, exec, stop, rm, logs, inspect), volumes and mounts, networks, an essential Dockerfile instruction reference, docker compose commands if requested, and a cleanup table (prune images, containers, volumes, system). Each row = command with common flags, what it does, and a note. </task> <constraints> - Commands must be current Docker CLI syntax; explain each common flag inline. - Include a safe cleanup section — people fill their disks. - Dense tables, one command per row. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then a one-line warning on which prune commands delete data. </format>

Creates a task-grouped Docker cheat sheet covering images, containers, compose, and safe cleanup as a scannable Markdown artifact ready to use.

💡

Pro tip: Ask for a "flag decoder" column so run flags like -d, -p, -v, and --rm are explained right where you'll copy them.

Linux / Bash Commands Cheat Sheet

18/30

You are a Linux sysadmin who writes practical command references. <context> I need a Linux command-line cheat sheet as a self-contained Markdown document, grouped by task, for everyday shell work. </context> <inputs> - Distro / shell: [E.G. UBUNTU / BASH] - Role: [DEVELOPER / SYSADMIN / DATA] - Level: [BASIC / INTERMEDIATE] - Focus: [FILES, PERMISSIONS, PROCESSES, NETWORKING, TEXT PROCESSING] </inputs> <task> Build the cheat sheet with tables grouped by: navigation and files (ls, cd, cp, mv, rm, find), viewing and searching (cat, less, grep, head/tail), permissions and ownership (chmod, chown, with a permission-bits mini-table), processes (ps, top, kill, jobs), disk and system (df, du, free), networking (curl, ssh, scp, netstat/ss), archives, and text processing (sed, awk, sort, cut, pipes). Each row = command with common flags, what it does, and a tiny example. </task> <constraints> - Commands correct for the stated distro/shell; explain flags inline. - Include a chmod numeric reference table. - Dense tables, one command per row. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then note the five commands worth memorizing first. </format>

Produces a task-grouped Linux and bash command cheat sheet with flag explanations and a chmod reference as a Markdown artifact ready to use.

💡

Pro tip: Ask Claude to add a small "pipe recipes" table (find + xargs, grep + awk) — those combos are where the shell gets powerful.

kubectl Commands Cheat Sheet

19/30

You are a Kubernetes engineer who documents kubectl for teams shipping to clusters. <context> I need a kubectl cheat sheet as a self-contained Markdown document, grouped by task, covering inspection, debugging, and everyday operations. </context> <inputs> - Cluster context: [MANAGED (EKS/GKE/AKS) / SELF-HOSTED / LOCAL] - Level: [BASIC / INTERMEDIATE] - Focus: [DEPLOYMENTS, DEBUGGING PODS, CONFIG, SCALING] - Namespace usage: [SINGLE / MANY] </inputs> <task> Build the cheat sheet with tables grouped by: cluster and context (get contexts, use-context, config), viewing resources (get/describe pods, deployments, services with -o wide and -n), logs and exec (logs, logs -f, exec -it), applying and deleting manifests (apply, delete, diff), debugging (events, describe, port-forward, top), scaling and rollouts (scale, rollout status/undo), and label/selector filtering. Each row = command with common flags, what it does, note. </task> <constraints> - Commands must be current kubectl syntax; show namespace and output flags. - Prioritize the debugging section — that is where on-call time goes. - Dense tables, one command per row. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then a one-line tip for setting up a kubectl alias and namespace shortcut. </format>

Builds a task-grouped kubectl cheat sheet emphasizing inspection, logs, and pod debugging as a copy-paste Markdown artifact ready to use.

💡

Pro tip: Tell Claude if you use a lot of namespaces and it will show the -n and --context flags on every relevant command.

npm / Package Manager Cheat Sheet

20/30

You are a JavaScript tooling expert who documents package managers clearly. <context> I need a package-manager cheat sheet as a self-contained Markdown document, grouped by task, so I never mix up install, scripts, and version commands. </context> <inputs> - Manager: [NPM / YARN / PNPM / BUN] - Project: [APP / LIBRARY / MONOREPO] - Level: [BASIC / INTERMEDIATE] - Include a comparison to other managers: [YES / NO] </inputs> <task> Build the cheat sheet with tables grouped by: project setup (init, install all), adding and removing dependencies (regular, dev, global, exact version), running scripts, updating and auditing, versioning and publishing, workspaces/monorepo commands, and cache and lockfile management. Each row = command, what it does, and a note. If requested, add a side-by-side table mapping the same action across npm, yarn, pnpm, and bun. </task> <constraints> - Commands correct for the stated manager; flag anything manager-specific. - The npm-vs-yarn-vs-pnpm-vs-bun mapping table must be accurate if included. - Dense tables, one command per row. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then a one-line note on which command differs most between managers. </format>

Creates a task-grouped package-manager cheat sheet with an optional npm/yarn/pnpm/bun mapping as a scannable Markdown artifact ready to use.

💡

Pro tip: Turn on the comparison table if you switch between projects — it is the fastest way to translate a command you already know.

Framework & Library Cheat Sheets

5 prompts

React Hooks Cheat Sheet

21/30

You are a React specialist who documents hooks with correct, idiomatic patterns. <context> I need a React hooks cheat sheet as a self-contained Markdown document, one hook per section, with the signature, a minimal example, and the common mistake to avoid. </context> <inputs> - React version: [E.G. 19] - Level: [INTERMEDIATE / ADVANCED] - Focus: [STATE, EFFECTS, PERFORMANCE, CUSTOM HOOKS] - TypeScript: [YES / NO] </inputs> <task> Build the cheat sheet with tables for: useState, useEffect (with the dependency-array rules and cleanup), useRef, useMemo vs useCallback (when each helps), useContext, useReducer, and useState updater patterns; plus a section on writing a custom hook and the rules of hooks. Each row = hook, signature, a minimal example, and the most common mistake. </task> <constraints> - All examples valid for the stated React version; use TS types if requested. - Be explicit about effect dependencies and cleanup — that is where bugs live. - Dense tables, one hook per row, no long essays. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then a short decision guide for useMemo vs useCallback vs neither. </format>

Builds a React hooks cheat sheet with signatures, minimal examples, and common mistakes per hook as a copy-paste Markdown artifact ready to use.

💡

Pro tip: Ask Claude to add a "dependency array" column for useEffect examples — that single detail causes most hook bugs.

Tailwind CSS Cheat Sheet

22/30

You are a front-end developer who documents Tailwind utility classes for fast lookup. <context> I need a Tailwind CSS cheat sheet as a self-contained Markdown document, grouped by property, mapping the utility class to the CSS it produces. </context> <inputs> - Tailwind version: [E.G. 4] - Focus: [LAYOUT, FLEXBOX/GRID, SPACING, TYPOGRAPHY, COLORS, RESPONSIVE] - Level: [BASIC / INTERMEDIATE] - Custom config notes: [OPTIONAL] </inputs> <task> Build the cheat sheet with tables grouped by: layout and display, flexbox and grid, spacing (padding, margin, gap scale), sizing, typography, colors and backgrounds, borders and radius, effects (shadow, opacity), and the responsive and state prefixes (sm/md/lg, hover, focus, dark). Each row = the utility class, the CSS it outputs, and a note. Include the default spacing scale reference. </task> <constraints> - Classes must be valid for the stated Tailwind version; show the exact CSS output. - Include the responsive breakpoint values and the spacing-scale-to-pixels mapping. - Dense tables, one class or group per row. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then note the classes I will reach for most in everyday layout. </format>

Generates a property-grouped Tailwind CSS cheat sheet mapping utility classes to CSS output with a spacing scale as a Markdown artifact ready to use.

💡

Pro tip: Ask for the spacing-scale-to-pixels table — memorizing that p-4 equals 1rem is what makes Tailwind fast to read.

Pandas Cheat Sheet

23/30

You are a data scientist who documents pandas for daily analysis work. <context> I need a pandas cheat sheet as a self-contained Markdown document, grouped by task, with a tiny code snippet for each operation. </context> <inputs> - Pandas version: [E.G. 2.x] - Work: [DATA CLEANING / ANALYSIS / TIME SERIES] - Level: [BASIC / INTERMEDIATE] - Data shape: [OPTIONAL DESCRIPTION] </inputs> <task> Build the cheat sheet with tables grouped by: creating and reading data (read_csv, DataFrame), inspecting (head, info, describe, dtypes), selecting and filtering (loc, iloc, boolean masks, query), cleaning (dropna, fillna, astype, rename), transforming (apply, map, assign), grouping and aggregation (groupby, agg, pivot_table), merging and concatenating, sorting, and exporting. Each row = task, a minimal snippet, and a note. </task> <constraints> - Snippets valid for the stated pandas version; prefer loc/iloc over chained indexing. - Flag anything that returns a copy vs a view where it matters. - Dense tables, one operation per row. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then a one-line note on the SettingWithCopyWarning and how to avoid it. </format>

Builds a task-grouped pandas cheat sheet covering selection, cleaning, grouping, and merging with snippets as a copy-paste Markdown artifact ready to use.

💡

Pro tip: Describe your typical DataFrame columns and Claude will make every snippet use those names so you can paste them directly.

Next.js App Router Cheat Sheet

24/30

You are a Next.js engineer who documents the App Router for teams building production apps. <context> I need a Next.js App Router cheat sheet as a self-contained Markdown document, grouped by concept, covering the file conventions and data patterns. </context> <inputs> - Next.js version: [E.G. 15] - Rendering focus: [SERVER COMPONENTS / STREAMING / CACHING] - Level: [INTERMEDIATE] - Using: [ROUTE HANDLERS / SERVER ACTIONS / BOTH] </inputs> <task> Build the cheat sheet with tables for: the special files and what each does (page, layout, loading, error, not-found, route, template), server vs client components and when to use "use client", data fetching and the caching/revalidation options, dynamic routes and params, route handlers (API), server actions, metadata, and navigation (Link, useRouter, redirect). Each row = the file or API, what it does, a minimal example, and a note. </task> <constraints> - Everything valid for the stated Next.js version; be explicit about server vs client boundaries. - Clarify the caching defaults and how to opt out — that is the biggest source of confusion. - Dense tables, one concept per row. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then a short decision guide for server component vs client component. </format>

Creates a concept-grouped Next.js App Router cheat sheet covering file conventions, caching, and server actions as a Markdown artifact ready to use.

💡

Pro tip: Ask Claude to spell out the current caching defaults for your version — they change between releases and trip everyone up.

Django ORM Cheat Sheet

25/30

You are a Django developer who documents the ORM with correct query patterns. <context> I need a Django ORM cheat sheet as a self-contained Markdown document, grouped by task, with a query snippet for each common operation. </context> <inputs> - Django version: [E.G. 5.x] - Focus: [QUERIES / RELATIONSHIPS / AGGREGATION / PERFORMANCE] - Level: [BASIC / INTERMEDIATE] - Example models: [OPTIONAL] </inputs> <task> Build the cheat sheet with tables grouped by: creating and saving objects, querying (filter, exclude, get, all, order_by), field lookups (__gte, __icontains, __in, __isnull), spanning relationships, aggregation and annotation (Count, Sum, Avg, F and Q objects), select_related vs prefetch_related for the N+1 problem, updating and deleting in bulk, and raw/values queries. Each row = task, a snippet, and a note. </task> <constraints> - Snippets valid for the stated Django version and idiomatic. - Make the select_related vs prefetch_related distinction explicit — it is the main performance trap. - Dense tables, one operation per row. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then a one-line note on spotting and fixing an N+1 query. </format>

Produces a task-grouped Django ORM cheat sheet covering lookups, aggregation, and N+1 fixes with snippets as a scannable Markdown artifact ready to use.

💡

Pro tip: Paste your model names and Claude will write every query against your real models so the sheet doubles as working code.

Most people use 10% of Claude. Tutorials unlock the rest.

AI Academy: 300+ hands-on tutorials on Claude, ChatGPT, Midjourney, and 50+ AI tools. New tutorials added every week.

Start Your Free Trial

Study & Exam Cheat Sheets

5 prompts

One-Page Exam Cram Sheet

26/30

You are a study coach who condenses course material into exam-ready one-pagers. <context> I need a one-page exam cram sheet as a self-contained Markdown document that fits my whole topic on a single dense page for last-minute review. </context> <inputs> - Subject and exam: [E.G. INTRO ECONOMICS FINAL] - Topics to cover: [LIST OR PASTE OUTLINE] - What the exam tests most: [OPTIONAL] - Format allowed: [OPEN-NOTE / MEMORIZATION AID] </inputs> <task> Condense the material into one page using compact tables and tight bullet clusters: key definitions, core formulas or rules, the 8-10 most testable facts, common mistakes, and a "if you see X, do Y" quick-decision table. Prioritize ruthlessly — only what is likely to be tested. Group by topic so it maps to how the exam is structured. </task> <constraints> - Must genuinely fit on one page — cut anything low-yield. - Facts must be accurate; no vague summaries, only concrete, testable content. - Dense tables and clusters, minimal prose. </constraints> <format> Return the full cram sheet as a Markdown artifact, then a one-line note on what to cut first if it still runs long. </format>

Builds a ruthlessly condensed one-page exam cram sheet of testable facts, formulas, and mistakes as a copy-paste Markdown artifact ready to use.

💡

Pro tip: Paste last year's exam or a topic weighting and Claude will size each section to match where the points actually are.

Certification Exam Cheat Sheet

27/30

You are a certification instructor who builds focused review sheets for pro exams. <context> I need a certification-exam cheat sheet as a self-contained Markdown document, organized by exam domain, covering the concepts and gotchas that show up on the test. </context> <inputs> - Certification: [E.G. AWS SOLUTIONS ARCHITECT ASSOCIATE, PMP, CompTIA A+] - Exam domains and weights: [LIST OR PASTE BLUEPRINT] - My weak areas: [OPTIONAL] - Exam date: [OPTIONAL] </inputs> <task> Build the cheat sheet with a table per exam domain: the key services or concepts, when to use each, the most common trap or distractor the exam uses, and any numbers or limits worth memorizing. Add a "decision triggers" table (if the question mentions X, the answer is usually Y) and a short glossary of terms the exam assumes. </task> <constraints> - Map sections to the official exam domains and their weights. - Focus on exam-relevant distinctions and traps, not encyclopedic detail. - Dense tables, one concept per row; flag your weak areas prominently. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then a one-line study order based on domain weights and my weak areas. </format>

Creates a domain-organized certification exam cheat sheet with decision triggers and common traps as a scannable Markdown artifact ready to use.

💡

Pro tip: Paste the official exam blueprint so section sizing matches the domain weights — study time should follow the points.

Subject Revision Cheat Sheet

28/30

You are a tutor who builds structured revision sheets that aid recall. <context> I need a subject revision cheat sheet as a self-contained Markdown document that turns a full topic into a compact, recall-friendly reference for review sessions. </context> <inputs> - Subject and topic: [E.G. BIOLOGY: CELL RESPIRATION] - Level: [SCHOOL / UNIVERSITY] - Sub-topics: [LIST] - Include recall questions: [YES / NO] </inputs> <task> Build the cheat sheet with: a key-terms table (term, definition, one example), a core-concepts table (concept, what it means, why it matters), a process or timeline where relevant, a common-confusions table (X vs Y and how to tell them apart), and — if requested — a short set of active-recall questions with answers at the end. Group by sub-topic. </task> <constraints> - Content must be accurate and at the stated level; no oversimplification that misleads. - Structure for recall: comparisons and "X vs Y" tables, not walls of text. - Dense tables, one item per row. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then a one-line note on how to use it for spaced repetition. </format>

Produces a recall-oriented subject revision cheat sheet with key terms, concepts, and confusions as a copy-paste Markdown artifact ready to use.

💡

Pro tip: Turn on recall questions and Claude will append a self-quiz section so the sheet doubles as an active-recall test.

Language-Learning Grammar & Vocab Sheet

29/30

You are a language teacher who builds compact grammar and vocabulary reference sheets. <context> I need a language-learning cheat sheet as a self-contained Markdown document that puts the core grammar and high-frequency vocab of a level on one scannable page. </context> <inputs> - Target language: [E.G. SPANISH] - My level: [A1 / A2 / B1 / B2] - Focus: [E.G. PRESENT TENSE, TRAVEL VOCAB, COMMON PHRASES] - Native language: [FOR TRANSLATIONS] </inputs> <task> Build the cheat sheet with tables for: essential grammar (verb conjugation patterns, articles, pronouns, sentence order) with example sentences and translations, high-frequency vocabulary grouped by theme, common phrases and connectors, and a pitfalls table (false friends, gender, tricky prepositions). Each row = the target-language item, its meaning in my native language, and a short usage example. </task> <constraints> - Content must be correct and level-appropriate; include accents and gender markers. - Every vocab and grammar row shows a real example sentence with translation. - Dense tables, one item per row. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then a one-line note on which 20 words to memorize first. </format>

Builds a level-appropriate language cheat sheet with grammar patterns, themed vocab, and false-friend pitfalls as a Markdown artifact ready to use.

💡

Pro tip: Name your level (A2, B1) so Claude picks grammar and vocab that match — a beginner sheet crammed with subjunctive is useless.

Interview Prep Cheat Sheet

30/30

You are an interview coach who builds one-page prep sheets candidates review before a call. <context> I need an interview prep cheat sheet as a self-contained Markdown document that puts my stories, talking points, and likely questions on one scannable page. </context> <inputs> - Role and company: [TITLE AND COMPANY] - Interview type: [BEHAVIORAL / TECHNICAL / MIXED] - My key experiences: [2-4 PROJECTS OR WINS] - Known focus areas: [FROM THE JOB DESCRIPTION] </inputs> <task> Build the cheat sheet with: a table of likely questions and a one-line angle for each, a STAR-stories table (situation, task, action, result) for my key experiences, a "my strengths mapped to their needs" table, smart questions to ask them, and a quick-facts row on the company and role. Keep each cell to phrases and bullet fragments, not paragraphs, so I can glance during the call. </task> <constraints> - Base talking points on the experiences and focus areas I gave; do not invent achievements. - Fragments and phrases only — this is a glance-at reference, not a script. - Dense tables, one item per row. </constraints> <format> Return the full cheat sheet as a Markdown artifact, then a one-line note on the single story to lead with. </format>

Creates a one-page interview prep cheat sheet with STAR stories, likely questions, and strength mapping as a copy-paste Markdown artifact ready to use.

💡

Pro tip: Paste the job description and Claude will map each of your stories to the exact requirements the interviewer cares about.

Frequently Asked Questions

Pick the prompt closest to your topic, paste it into Claude, and fill in the bracketed inputs like language, level, and focus areas. Claude returns a dense, grouped cheat sheet as a Markdown artifact you can preview, copy, or print. The more specific your inputs, the more useful and scannable the result.
Every prompt asks Claude for clean Markdown, mostly tables, so it renders as a scannable reference you can paste into Notion, a doc, a README, or a printout. Markdown keeps it dense and portable, which is exactly what a good cheat sheet needs. You can ask Claude to convert it to HTML or a printable one-pager afterward.
Yes. The exam and cram-sheet prompts explicitly ask Claude to prioritize ruthlessly and cut low-yield material so it fits a single dense page. Give it your topic outline or exam weighting and it will size each section to the points that matter. If it still runs long, ask it to trim the least testable rows.
The prompts instruct Claude to produce only correct, runnable snippets and valid formulas for the version you specify, and to flag anything version- or dialect-specific. Always name your exact version (Python 3.12, Tailwind 4, PostgreSQL) so examples match your environment. For high-stakes reference, spot-check a few rows against the official docs.
Absolutely. Paste your real table schema, model names, syllabus, or exam blueprint and Claude will build the sheet around them, so examples use your columns and sections match your test. This turns a generic reference into one tailored to exactly what you work with or will be tested on.

Prompts are the starting line. Tutorials are the finish.

A growing library of 300+ hands-on tutorials on ChatGPT, Claude, Midjourney, and 50+ AI tools. New tutorials added every week.

7-day free trial. Cancel anytime.