30 Claude Prompts That Write Tutorials
Describe any topic and Claude returns a complete, ready-to-publish tutorial: prerequisites, numbered steps, code and screenshot placeholders, and a recap. Prompts for software how-tos, coding walkthroughs, no-code builds, workflows, beginner guides, and advanced deep-dives. 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.
Software How-To Tutorials
5 promptsFeature Setup Walkthrough
1/30You are a technical writer who produces clear, screenshot-ready software tutorials. <context> I need a complete, ready-to-publish how-to tutorial that walks a user through setting up one specific feature in an app, returned as a self-contained Markdown document I can paste straight into my help center. </context> <inputs> - App and feature: [E.G. SLACK WORKFLOW BUILDER, STRIPE PAYMENT LINK] - Who the reader is: [SKILL LEVEL AND ROLE] - The outcome they want: [WHAT WORKING RESULT LOOKS LIKE] - Plan or version constraints: [FREE VS PAID, DESKTOP VS WEB] - Common mistake to warn about: [PITFALL] </inputs> <task> Write the tutorial with: a one-line promise of what they will achieve, estimated time, a Prerequisites section, then numbered steps that each state the action, the exact UI path (Menu > Submenu > Button), and a [SCREENSHOT: what to capture] placeholder. Add a Verify-it-worked step, a Troubleshooting subsection for the named pitfall, and a Recap with next steps. </task> <constraints> - Numbered steps, one action per step, imperative voice. - Every step that touches the UI gets a screenshot placeholder; no vague "go to settings". - No filler, no marketing language; assume the reader is impatient. </constraints> <format> Return the full tutorial as a Markdown artifact, then a one-line note on where to insert real screenshots. </format>
Produces a complete feature-setup how-to with prerequisites, numbered UI steps, and screenshot placeholders, ready to use.
Pro tip: Tell Claude the exact app version or plan tier so the UI paths and button names match what the reader actually sees.
Tool-to-Tool Data Migration Guide
2/30You are a solutions engineer who writes migration playbooks. <context> I need a ready-to-publish tutorial that guides a user through migrating their data from one tool to another without losing anything, as a self-contained Markdown document. </context> <inputs> - Source tool: [FROM WHAT] - Destination tool: [TO WHAT] - What data is moving: [RECORDS, FILES, SETTINGS] - Volume and risk level: [ROUGH SIZE, WHAT CANNOT BREAK] - Downtime tolerance: [ZERO / SCHEDULED WINDOW] </inputs> <task> Write: an intro naming the outcome and risks, a Prerequisites and Backup section (export the source first), then numbered steps for export, field mapping, import, and reconnecting integrations, each with a [SCREENSHOT: ...] placeholder where the UI is involved and a code or CSV snippet where a transform is needed. Include a Validation checklist to confirm nothing was lost and a Rollback plan. End with a Recap. </task> <constraints> - Lead with the backup step; never skip it. - Show a concrete field-mapping table (source column to destination field). - Flag any step that is irreversible in bold. </constraints> <format> Return the full migration tutorial as a Markdown artifact, then note the one step most likely to cause data loss. </format>
Generates a data-migration tutorial with backup, field-mapping table, validation checklist, and rollback plan, ready to use.
Pro tip: Paste the source tool's export column names so Claude builds an exact field-mapping table instead of a generic one.
Integration Setup Tutorial
3/30You are a developer-relations writer who documents integrations. <context> I need a complete tutorial that shows a user how to connect two tools so data flows automatically, delivered as a self-contained Markdown document ready for my docs site. </context> <inputs> - Tool A and Tool B: [WHAT CONNECTS TO WHAT] - The trigger and action: [WHEN X HAPPENS, DO Y] - Auth method: [API KEY / OAUTH / WEBHOOK] - Where keys live: [WHICH SETTINGS SCREEN] - Success signal: [HOW THEY KNOW IT WORKS] </inputs> <task> Write: an outcome line, Prerequisites (accounts, permissions, keys), then numbered steps to generate credentials, paste them, map the trigger to the action, and send a test event, each with a [SCREENSHOT: ...] placeholder and a code block for any API key, webhook URL, or payload. Add a Test-it section with a sample payload, a Troubleshooting table of common auth errors, and a Recap. </task> <constraints> - Show the auth flow explicitly; never assume the reader knows where a key hides. - Include at least one realistic code block (webhook payload or curl test call). - Warn where a key must stay secret. </constraints> <format> Return the full integration tutorial as a Markdown artifact, then note which credential should never be committed to a repo. </format>
Builds an integration how-to with auth steps, a sample payload, and a troubleshooting table, ready to publish.
Pro tip: Tell Claude whether the auth is API key or OAuth; the entire credential section and screenshot list changes between the two.
Power-User Shortcuts Guide
4/30You are a productivity trainer who writes app mastery guides. <context> I need a ready-to-publish tutorial that teaches users the keyboard shortcuts and hidden features that make them fast in one specific app, as a self-contained Markdown document. </context> <inputs> - App: [WHICH TOOL] - Reader's current level: [KNOWS BASICS / INTERMEDIATE] - Their most repeated task: [WHAT THEY DO ALL DAY] - Platform: [MAC / WINDOWS / BOTH] - Time they want to save: [GOAL] </inputs> <task> Write: a promise of the speed gain, a Prerequisites line, then numbered lessons grouped from most-used to advanced. Each lesson names the shortcut in a table (Action | Mac | Windows), explains when to use it, and gives a [SCREENSHOT: before/after] placeholder for anything visual. Include a short practice drill that chains three shortcuts on their most-repeated task, and a Recap cheat-strip of the top ten. </task> <constraints> - Present shortcuts in a clean Action-Mac-Windows table; no prose lists of keys. - Order by real-world frequency, not alphabetically. - Include a chained practice drill, not just a list. </constraints> <format> Return the full shortcuts tutorial as a Markdown artifact, then note the three shortcuts that deliver the biggest time savings. </format>
Creates a keyboard-shortcut mastery guide with a Mac/Windows table, a practice drill, and a cheat-strip recap, ready to use.
Pro tip: Give Claude the one task you repeat most; it will build the practice drill around that exact sequence for real muscle memory.
Error-Fix Troubleshooting Tutorial
5/30You are a support engineer who writes calm, precise troubleshooting guides. <context> I need a ready-to-publish tutorial that helps a user diagnose and fix one specific error, structured so they succeed even if the first fix is not their case, as a self-contained Markdown document. </context> <inputs> - The error message or symptom: [EXACT TEXT OR BEHAVIOR] - App or system: [WHERE IT HAPPENS] - Likely causes (if known): [1-3 CAUSES] - Reader skill level: [NON-TECHNICAL / TECHNICAL] - What they must not do: [DESTRUCTIVE ACTION TO AVOID] </inputs> <task> Write: a reassuring intro naming the error, a Prerequisites and safety note, then a Quick-check section (the 30-second fixes), followed by numbered diagnostic steps organized by most-likely cause first, each with the command or setting to check as a code block and a [SCREENSHOT: ...] placeholder. Include an "If none of this worked" escalation step and a Recap of what to record before contacting support. </task> <constraints> - Order fixes most-likely-first so most readers stop early. - Show exact commands, log paths, or setting toggles in code blocks. - Bold any step that could make things worse if done wrong. </constraints> <format> Return the full troubleshooting tutorial as a Markdown artifact, then note the single fix that resolves this error most often. </format>
Produces a most-likely-first troubleshooting guide with quick checks, diagnostic steps, and an escalation path, ready to use.
Pro tip: Paste the literal error string so Claude can search-optimize the title and open with the exact wording users will paste into Google.
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.
Coding Tutorials
5 promptsBuild a REST API Endpoint
6/30You are a senior backend engineer who writes hands-on coding tutorials. <context> I need a complete, follow-along tutorial that teaches a developer to build one working REST API endpoint from scratch, returned as a self-contained Markdown document with runnable code at every step. </context> <inputs> - Language and framework: [E.G. NODE + EXPRESS, PYTHON + FASTAPI] - What the endpoint does: [E.G. CREATE AND LIST TASKS] - Data store: [IN-MEMORY / POSTGRES / SQLITE] - Auth needed: [NONE / API KEY] - Reader level: [KNOWS THE LANGUAGE, NEW TO APIS] </inputs> <task> Write: what they will build and see working, Prerequisites (versions, install commands), then numbered steps: scaffold the project, define the route, add the handler, connect the data store, and test with curl. Each step includes a complete, commented code block showing the file and the exact lines to add, plus expected output. Add a Test-it section with sample requests and responses, a common-errors note, and a Recap with one extension idea. </task> <constraints> - Every code block is complete and runnable, with the filename as a header comment. - Show expected terminal or JSON output after each runnable step. - Valid syntax only; no pseudo-code. </constraints> <format> Return the full coding tutorial as a Markdown artifact, then note how to extend the endpoint with input validation. </format>
Generates a follow-along tutorial for building a working REST endpoint with runnable code and test calls, ready to use.
Pro tip: Name your exact framework and data store so every code block compiles as-is instead of mixing incompatible libraries.
Write Your First Unit Tests
7/30You are a test-driven-development coach who writes practical testing tutorials. <context> I need a beginner-friendly tutorial that teaches a developer to write and run their first unit tests for a real function, as a self-contained Markdown document with runnable code. </context> <inputs> - Language and test framework: [E.G. JS + JEST, PYTHON + PYTEST] - The function to test: [PASTE OR DESCRIBE IT] - What behaviors matter: [HAPPY PATH, EDGE CASES] - Reader level: [WRITES CODE, NEVER TESTED] - CI goal (if any): [RUN ON PUSH?] </inputs> <task> Write: why testing this function matters, Prerequisites (install and config), then numbered steps: set up the test file, write one passing test, add an edge-case test, run the suite, and read the output. Each step has a complete code block and shows the exact pass/fail terminal output. Add a section on structuring tests (arrange-act-assert), a coverage note, and a Recap with what to test next. </task> <constraints> - Use the reader's actual function; write real assertions, not placeholders. - Show the terminal output for both a passing and a failing run. - Explain arrange-act-assert with the concrete example, not abstractly. </constraints> <format> Return the full testing tutorial as a Markdown artifact, then note how to wire the suite to run automatically on every push. </format>
Produces a first-unit-tests tutorial with real assertions, pass/fail output, and an arrange-act-assert breakdown, ready to use.
Pro tip: Paste the actual function you want tested so the assertions target its real edge cases instead of a toy example.
Deploy an App to Production
8/30You are a DevOps engineer who writes deployment tutorials that people can actually follow. <context> I need a complete tutorial that takes a developer from a working local app to a live production URL, as a self-contained Markdown document with every command included. </context> <inputs> - App type and stack: [E.G. NEXT.JS, DOCKERIZED PYTHON API] - Target platform: [E.G. VERCEL, RAILWAY, A VPS WITH DOCKER] - Env vars and secrets it needs: [LIST] - Domain setup: [SUBDOMAIN / CUSTOM DOMAIN] - Reader level: [SHIPS LOCALLY, NEVER DEPLOYED] </inputs> <task> Write: the end state (a live, working URL), Prerequisites (accounts, CLI installs), then numbered steps: prepare the build, set environment variables, deploy, connect the domain, and verify. Each step has the exact command in a code block, a [SCREENSHOT: dashboard state] placeholder where a UI is involved, and the expected result. Add a smoke-test checklist against the live URL, a rollback step, and a Recap. </task> <constraints> - Show exact CLI commands and dashboard paths; no "just deploy it". - Include a smoke test that hits the live URL and confirms a 200. - Warn where a secret must be set as an env var, not hardcoded. </constraints> <format> Return the full deployment tutorial as a Markdown artifact, then note the one env var most people forget to set. </format>
Builds a local-to-production deployment tutorial with exact commands, a smoke-test checklist, and a rollback step, ready to use.
Pro tip: List every environment variable your app reads; Claude will bake them into the config step so the first deploy does not 500.
Connect a Frontend to a Database
9/30You are a full-stack engineer who writes end-to-end coding tutorials. <context> I need a tutorial that shows a developer how to read and write data between a frontend and a database through an API layer, as a self-contained Markdown document with complete code at each layer. </context> <inputs> - Frontend framework: [E.G. REACT, VUE, PLAIN JS] - Backend and database: [E.G. NODE + POSTGRES, SUPABASE] - The feature to build: [E.G. SAVE AND LIST NOTES] - Auth scope: [PUBLIC / LOGGED-IN USERS] - Reader level: [BUILDS UIS, NEW TO DATA LAYER] </inputs> <task> Write: the working feature they will end with, Prerequisites, then numbered steps across three layers: define the database table (with SQL), build the API route that reads and writes it, and wire the frontend form and list to call it. Each step has a complete, commented code block labeled with its file, plus the expected result. Add a Test-the-full-loop section (submit in UI, see it persist), a common-errors note, and a Recap. </task> <constraints> - Show all three layers with real code; label each block with its filename. - Include the SQL for the table and at least one fetch call from the frontend. - Test the full round trip, not just one layer. </constraints> <format> Return the full full-stack tutorial as a Markdown artifact, then note where to add loading and error states in the UI. </format>
Generates an end-to-end tutorial connecting UI, API, and database for one feature with code at every layer, ready to use.
Pro tip: Pick one small feature like a notes list; a narrow scope keeps every code block short enough to actually finish.
Refactor Legacy Code Step by Step
10/30You are a staff engineer who writes safe-refactoring tutorials. <context> I need a tutorial that teaches a developer to refactor a messy function or module incrementally without breaking behavior, as a self-contained Markdown document with before-and-after code at each step. </context> <inputs> - The code to refactor: [PASTE THE SNIPPET OR DESCRIBE IT] - Language: [WHICH ONE] - What is wrong with it: [E.G. TOO LONG, DUPLICATED, UNTESTED] - Test coverage now: [NONE / SOME] - Constraint: [PUBLIC API MUST NOT CHANGE?] </inputs> <task> Write: the goal (same behavior, cleaner code), Prerequisites (pin behavior with a characterization test first), then numbered refactoring moves ordered smallest-and-safest first: extract a function, rename for clarity, remove duplication, simplify conditionals. Each step shows a before block, the change, an after block, and how to confirm behavior is unchanged. End with a Recap and a note on what to refactor next. </task> <constraints> - Start by adding a test that pins current behavior; never refactor blind. - Each step is small and independently shippable, with before/after code. - Preserve the public interface unless the input says otherwise. </constraints> <format> Return the full refactoring tutorial as a Markdown artifact, then note which single change delivers the most readability for the least risk. </format>
Produces a step-by-step refactoring tutorial with before/after code and behavior checks at every move, ready to use.
Pro tip: Paste the real function; Claude sequences the refactor smallest-and-safest-first so you can ship each step without a big-bang rewrite.
No-Code Builds
5 promptsBuild a Zapier Automation
11/30You are a no-code automation consultant who writes build tutorials for non-technical users. <context> I need a complete tutorial that walks a non-technical user through building one working Zapier automation end to end, as a self-contained Markdown document ready to publish. </context> <inputs> - The trigger app and event: [WHEN X HAPPENS IN APP A] - The action app and result: [DO Y IN APP B] - Any filter or formatting: [ONLY IF..., REFORMAT DATE, ETC] - Accounts they already have: [WHICH] - Reader level: [NEVER USED ZAPIER] </inputs> <task> Write: the finished automation described in one line, Prerequisites (accounts and permissions), then numbered steps: create the Zap, pick and configure the trigger, connect the account, add a filter or formatter if needed, configure the action, map the fields, and test with real data. Each step has a [SCREENSHOT: exact panel] placeholder and shows the exact field mapping. Add a Test-it section, a turn-it-on step, a common-errors note, and a Recap. </task> <constraints> - Zero jargon; explain every Zapier term the first time it appears. - Show the field mapping explicitly (trigger field to action field). - Include the test-with-real-data step before turning it live. </constraints> <format> Return the full automation tutorial as a Markdown artifact, then note the one field-mapping mistake that breaks most first Zaps. </format>
Builds a no-code Zapier tutorial with trigger/action setup, field mapping, and a live test, ready to publish.
Pro tip: Spell out the exact trigger and action apps; Claude then names the real fields to map instead of leaving generic placeholders.
Create an Airtable App
12/30You are a no-code database expert who writes Airtable build tutorials. <context> I need a tutorial that guides a user through building a working Airtable base for a real use case, from empty base to usable interface, as a self-contained Markdown document. </context> <inputs> - What they are tracking: [E.G. CONTENT PIPELINE, INVENTORY, CRM] - Key things to record: [FIELDS THEY CARE ABOUT] - Relationships: [E.G. TASKS LINK TO PROJECTS] - Views they need: [E.G. KANBAN, CALENDAR, FILTERED GRID] - Reader level: [NEW TO AIRTABLE] </inputs> <task> Write: the finished base described in one line, Prerequisites, then numbered steps: create the base, build the primary table with typed fields (single-select, date, linked record), add a second linked table, create the requested views with filters and grouping, and build a simple Interface page. Each step lists the exact fields and types in a small table and includes a [SCREENSHOT: ...] placeholder. Add a sample-data step, a sharing note, and a Recap with an automation idea. </task> <constraints> - Specify each field's type, not just its name. - Show how the two tables link with a linked-record field. - Include at least one filtered or grouped view configured step by step. </constraints> <format> Return the full Airtable tutorial as a Markdown artifact, then note which field type choice people most often get wrong. </format>
Generates an Airtable build tutorial with typed fields, linked tables, and configured views, ready to publish.
Pro tip: Describe how your records relate (tasks to projects, orders to customers) so Claude sets up linked records instead of one flat table.
Build a Notion Dashboard
13/30You are a Notion power user who writes clear setup tutorials. <context> I need a tutorial that walks a user through building a working Notion dashboard for a specific goal, as a self-contained Markdown document ready to publish. </context> <inputs> - Dashboard purpose: [E.G. PERSONAL OS, TEAM WIKI, PROJECT HUB] - Databases it needs: [E.G. TASKS, NOTES, PROJECTS] - Key views and filters: [E.G. TODAY, THIS WEEK, BY STATUS] - Who uses it: [SOLO / TEAM] - Reader level: [NEW TO NOTION DATABASES] </inputs> <task> Write: the finished dashboard in one line, Prerequisites, then numbered steps: create the top-level page, build each database with its properties, add linked-database views with the requested filters and sorts, set up relations and a rollup, and assemble the dashboard page with columns and linked views. Each step names exact properties and includes a [SCREENSHOT: ...] placeholder. Add a daily-use walkthrough, a template-button tip, and a Recap. </task> <constraints> - Name each database property and its type explicitly. - Include at least one relation plus a rollup, set up step by step. - Show the final page layout with linked views, not just raw databases. </constraints> <format> Return the full Notion tutorial as a Markdown artifact, then note the relation-and-rollup step most beginners skip. </format>
Produces a Notion dashboard tutorial with databases, filtered linked views, and a relation-plus-rollup, ready to publish.
Pro tip: List the exact views you check daily (Today, This Week) so Claude configures the filters instead of dumping an unfiltered database.
Launch a No-Code Website
14/30You are a no-code web builder who writes launch tutorials for beginners. <context> I need a tutorial that takes a non-technical user from nothing to a published website on a no-code builder, as a self-contained Markdown document ready to publish. </context> <inputs> - Builder: [E.G. FRAMER, WEBFLOW, CARRD] - Site type and pages: [E.G. ONE-PAGE PORTFOLIO, 3-PAGE BUSINESS SITE] - Content they have: [COPY, LOGO, IMAGES?] - Custom domain: [YES + DOMAIN / SUBDOMAIN FOR NOW] - Reader level: [FIRST WEBSITE EVER] </inputs> <task> Write: the live site they will end with, Prerequisites (account, assets), then numbered steps: pick a starting template, replace the content section by section, set up navigation, make it responsive, add SEO title and description, connect the domain, and publish. Each step has a [SCREENSHOT: editor panel] placeholder and concrete guidance on what to click. Add a pre-launch checklist (mobile, links, SEO), a go-live step, and a Recap with what to improve next. </task> <constraints> - No jargon; explain every builder term the first time. - Include a mobile-responsiveness step and an SEO title/description step. - End with a real published URL and a pre-launch checklist. </constraints> <format> Return the full no-code website tutorial as a Markdown artifact, then note the pre-launch check people most often forget. </format>
Builds a no-code website launch tutorial from template to live URL with a pre-launch checklist, ready to publish.
Pro tip: Name your exact builder; the editor panels and publish flow differ enough that a generic guide would send readers clicking the wrong tabs.
Set Up an AI Chatbot Without Code
15/30You are a no-code AI builder who writes chatbot setup tutorials. <context> I need a tutorial that shows a non-technical user how to build and embed a working AI chatbot trained on their own content, as a self-contained Markdown document ready to publish. </context> <inputs> - Platform: [E.G. A NO-CODE CHATBOT BUILDER OF CHOICE] - What it answers: [E.G. SUPPORT FAQS, PRODUCT QUESTIONS] - Content to train on: [DOCS, URLS, PDFS] - Where it lives: [WEBSITE WIDGET / SHARE LINK] - Reader level: [NON-TECHNICAL] </inputs> <task> Write: the finished chatbot in one line, Prerequisites (account, content ready), then numbered steps: create the bot, upload or link the training content, set the system persona and tone, add fallback and escalation behavior, test with real questions, and embed it on the site. Each step has a [SCREENSHOT: ...] placeholder and a sample of the persona instructions to paste. Add a testing script of 5 real questions, a go-live step, and a Recap with how to improve answers over time. </task> <constraints> - Include a concrete, paste-ready persona/system-prompt example. - Add a fallback rule for questions the bot cannot answer. - Test with real user questions before embedding. </constraints> <format> Return the full chatbot tutorial as a Markdown artifact, then note how to spot and fix a hallucinated answer during testing. </format>
Generates a no-code AI chatbot tutorial covering training, persona, fallback, testing, and embed, ready to publish.
Pro tip: Give Claude the 5 questions customers ask most; it turns them into the test script that catches bad answers before you go live.
Workflow & Process Tutorials
5 promptsDocument a Team Onboarding Process
16/30You are an operations lead who writes clear process tutorials. <context> I need a ready-to-publish tutorial that documents how to onboard a new team member end to end, so any manager can follow it, as a self-contained Markdown document. </context> <inputs> - Role being onboarded: [E.G. SUPPORT REP, ENGINEER] - Timeframe: [E.G. FIRST 30 DAYS] - Tools and accounts to grant: [LIST] - Who is responsible for what: [MANAGER, IT, BUDDY] - Success at day 30: [WHAT GOOD LOOKS LIKE] </inputs> <task> Write: the outcome (a productive new hire by day 30), Prerequisites (accounts, hardware, buddy assigned), then a phased, numbered process: before day one, day one, week one, and weeks two-to-four. Each step names the action, the owner, and a checkbox, with a [SCREENSHOT: system/tool] placeholder where a tool is configured. Include an access-and-accounts checklist table, a 30-day check-in agenda, and a Recap. Make it reusable for future hires. </task> <constraints> - Assign an owner to every step; no orphaned tasks. - Use checkboxes so it doubles as a working checklist. - Group by phase (pre-start, day one, week one, month one). </constraints> <format> Return the full onboarding process tutorial as a Markdown artifact, then note which step to automate first to save the manager time. </format>
Produces a phased onboarding process tutorial with owners, checkboxes, and an access checklist, ready to reuse.
Pro tip: List who owns what (manager, IT, buddy) so Claude assigns every task an owner and nothing falls through the cracks on day one.
Content Publishing Workflow
17/30You are a content operations manager who writes workflow tutorials. <context> I need a tutorial that documents the full workflow to take a piece of content from idea to published, so a whole team follows the same path, as a self-contained Markdown document. </context> <inputs> - Content type: [E.G. BLOG POST, VIDEO, NEWSLETTER] - Stages you use: [E.G. IDEA, DRAFT, EDIT, DESIGN, PUBLISH, PROMOTE] - Tools per stage: [WHICH TOOL AT EACH] - Roles involved: [WRITER, EDITOR, DESIGNER] - Definition of done: [WHAT PUBLISHED-AND-PROMOTED MEANS] </inputs> <task> Write: the outcome (consistent, on-time publishing), Prerequisites, then numbered stages from idea to promotion. For each stage give: the goal, the owner, entry and exit criteria, the tool used, and a [SCREENSHOT: board/tool] placeholder. Include a handoff checklist between stages, a status-label scheme, an SLA or timing per stage, and a Recap with the top bottleneck to watch. Make it usable as a repeatable playbook. </task> <constraints> - Define entry and exit criteria for each stage; no fuzzy handoffs. - Assign an owner and a timing/SLA to every stage. - Include a status-label scheme the team can apply in their tool. </constraints> <format> Return the full publishing workflow tutorial as a Markdown artifact, then note the stage most likely to become a bottleneck. </format>
Builds a content publishing workflow tutorial with staged owners, entry/exit criteria, and SLAs, ready to use as a playbook.
Pro tip: Name the exact stages you already use so Claude documents your real workflow rather than imposing a generic editorial calendar.
Bug-Triage Workflow
18/30You are an engineering manager who writes process tutorials for dev teams. <context> I need a tutorial that documents how the team triages incoming bugs consistently, from report to resolution, as a self-contained Markdown document ready for the team wiki. </context> <inputs> - Where bugs come in: [E.G. SUPPORT, USERS, MONITORING] - Severity levels you use: [E.G. P0-P3 OR DEFINE THEM] - Tool: [E.G. LINEAR, JIRA, GITHUB ISSUES] - Who triages and how often: [ROLE, CADENCE] - SLA targets: [RESPONSE/FIX TIME PER SEVERITY] </inputs> <task> Write: the outcome (predictable, fair triage), Prerequisites, then numbered steps: intake and deduplicate, reproduce and confirm, assign a severity using a clear rubric, label and route to an owner, and track to resolution. Include a severity rubric table (level, definition, example, SLA), a [SCREENSHOT: issue board] placeholder, a triage-meeting agenda, and a Recap. Make it a repeatable weekly ritual. </task> <constraints> - Include a concrete severity rubric with definitions, examples, and SLAs. - Cover deduplication and reproduction before assignment. - Define the triage cadence and who owns it. </constraints> <format> Return the full bug-triage tutorial as a Markdown artifact, then note the most common severity-misclassification to guard against. </format>
Generates a bug-triage process tutorial with a severity rubric, routing steps, and SLAs, ready for the team wiki.
Pro tip: Give Claude one real example bug per severity level; the rubric becomes concrete enough that everyone classifies the same way.
Weekly Reporting Routine
19/30You are an operations analyst who writes recurring-process tutorials. <context> I need a tutorial that documents a repeatable weekly reporting routine so anyone on the team can produce the report the same way, as a self-contained Markdown document. </context> <inputs> - What the report covers: [E.G. GROWTH METRICS, SALES, SUPPORT] - Data sources: [WHERE NUMBERS COME FROM] - Audience and format: [E.G. SLACK SUMMARY, SLIDE, DOC] - Key metrics: [THE 4-6 NUMBERS THAT MATTER] - When it is due: [DAY AND TIME] </inputs> <task> Write: the outcome (a consistent report on time every week), Prerequisites (access to sources), then numbered steps: pull each data source, calculate the key metrics, compare to last week and target, write the narrative summary, and distribute. Each data-pull step has a [SCREENSHOT: dashboard] placeholder and the exact filter or query to use. Include a metric-definitions table so numbers are computed identically, a report template to fill in, and a Recap. </task> <constraints> - Include a metric-definitions table so every metric is computed the same way each week. - Provide a fill-in-the-blank report template. - Show the week-over-week and vs-target comparison explicitly. </constraints> <format> Return the full reporting routine tutorial as a Markdown artifact, then note which metric definition is easiest to get inconsistent. </format>
Produces a weekly reporting routine tutorial with metric definitions, data-pull steps, and a fill-in template, ready to reuse.
Pro tip: List your 4-6 core metrics with how each is calculated so the report reads the same whether you or a teammate runs it.
Support Escalation Flow
20/30You are a customer-support operations lead who writes process tutorials. <context> I need a tutorial that documents how support tickets get escalated cleanly from frontline to specialists to engineering, as a self-contained Markdown document ready for the team. </context> <inputs> - Support tiers you have: [E.G. TIER 1, TIER 2, ENGINEERING] - Tool: [E.G. ZENDESK, INTERCOM, FRESHDESK] - What triggers an escalation: [CRITERIA] - Response/resolution SLAs: [PER TIER] - Info required to escalate: [WHAT MUST BE ATTACHED] </inputs> <task> Write: the outcome (fast, no-ping-pong escalations), Prerequisites, then numbered steps: assess and attempt at tier one, decide with a clear escalation-criteria checklist, package the ticket with required context, route to the right tier, and hand back on resolution. Include an escalation-criteria table (trigger, target tier, SLA), a required-context checklist so nothing bounces back, a [SCREENSHOT: ticket view] placeholder, and a Recap. Make it a repeatable standard. </task> <constraints> - Define explicit escalation criteria so agents do not escalate everything. - Include a required-context checklist to prevent ticket ping-pong. - Assign SLAs and an owner to each tier. </constraints> <format> Return the full escalation flow tutorial as a Markdown artifact, then note the missing-context item that causes the most bounce-backs. </format>
Builds a support escalation tutorial with clear criteria, a required-context checklist, and per-tier SLAs, ready for the team.
Pro tip: Spell out exactly what info must be attached to escalate; that single checklist is what stops tickets bouncing back down the tiers.
Beginner Guides
5 promptsGetting Started With a Tool
21/30You are a patient teacher who writes true-beginner getting-started guides. <context> I need a beginner guide that gets a total newcomer from account creation to their first real win in a specific tool, as a self-contained Markdown document ready to publish. </context> <inputs> - Tool: [WHICH APP] - The reader's goal: [THE FIRST USEFUL THING THEY WANT TO DO] - Their background: [ASSUME ZERO EXPERIENCE?] - Time budget: [E.G. 15 MINUTES] - One term they will not know: [JARGON TO DEFINE] </inputs> <task> Write: a warm intro promising a concrete first win, a "what you need" Prerequisites line, a short glossary of 3-5 key terms in plain language, then numbered steps: create the account, orient them to the main screen, and walk through achieving that first win. Each step has a [SCREENSHOT: ...] placeholder and explains the why, not just the click. Add a "you did it" checkpoint, three next things to try, and a Recap. </task> <constraints> - Assume zero prior knowledge; define every term on first use. - Get to a real, satisfying first win, not just a tour. - Explain why each step matters, not only what to click. </constraints> <format> Return the full beginner guide as a Markdown artifact, then note the moment a first-timer is most likely to feel lost. </format>
Produces a true-beginner getting-started guide with a glossary, guided first win, and next steps, ready to publish.
Pro tip: Define the first useful outcome you want (send one message, publish one page); a concrete first win beats an aimless feature tour.
Beginner's Guide to Git and GitHub
22/30You are a developer educator who writes gentle beginner coding guides. <context> I need a beginner guide that teaches someone with no version-control experience to put their first project on GitHub and make changes safely, as a self-contained Markdown document with runnable commands. </context> <inputs> - Reader background: [E.G. CAN CODE A LITTLE, NEVER USED GIT] - Operating system: [MAC / WINDOWS / LINUX] - Their project: [WHAT THEY WANT TO PUSH] - Working solo or with others: [SOLO / TEAM] - One fear to address: [E.G. LOSING WORK, MERGE CONFLICTS] </inputs> <task> Write: a plain-language explanation of what Git and GitHub are and why they matter, Prerequisites (install and account), a mini-glossary (repo, commit, push, branch, pull request), then numbered steps: install and configure Git, create a repo, make the first commit, connect to GitHub and push, then create a branch and open a pull request. Every command is in a code block with the expected output and a plain explanation. Add a "what to do if you mess up" safety section and a Recap. </task> <constraints> - Explain each command in plain words right after the code block. - Cover the reader's stated fear directly with a recovery step. - Show expected terminal output so they know it worked. </constraints> <format> Return the full Git beginner guide as a Markdown artifact, then note the single command beginners fear most and why it is safe. </format>
Generates a beginner Git and GitHub guide with explained commands, a first push, and a safety net, ready to publish.
Pro tip: Name the fear (losing work, merge conflicts) so Claude addresses it head-on; that reassurance is what actually gets beginners to try.
Intro to Spreadsheets
23/30You are a friendly instructor who writes beginner spreadsheet guides. <context> I need a beginner guide that takes someone who has never used spreadsheets to confidently building a simple, useful sheet, as a self-contained Markdown document ready to publish. </context> <inputs> - Tool: [GOOGLE SHEETS / EXCEL] - What they want to build: [E.G. A SIMPLE BUDGET, A TASK LIST] - Their comfort level: [ASSUME NONE] - The formulas they need: [E.G. SUM, AVERAGE, IF] - Where they will use it: [WORK / PERSONAL] </inputs> <task> Write: a plain intro on what a spreadsheet is and when it beats a note, Prerequisites, a mini-glossary (cell, row, column, formula), then numbered steps: enter data, format it as a table, write their first SUM, add one more formula they need, and turn it into a tiny chart. Each step has a [SCREENSHOT: ...] placeholder and shows the exact formula to type with what each part means. Add a common-mistakes note (mixing text and numbers), a small practice task, and a Recap. </task> <constraints> - Show each formula literally and break down what every part does. - Get them to a working, useful sheet, not abstract theory. - Include one hands-on practice task at the end. </constraints> <format> Return the full spreadsheet beginner guide as a Markdown artifact, then note the formatting habit that saves beginners the most headaches. </format>
Builds a beginner spreadsheet guide with explained formulas, a real sheet, and a practice task, ready to publish.
Pro tip: Say what you want to build (a budget, a tracker); Claude teaches only the formulas that project needs instead of a dry formula dump.
First Steps With Prompt Engineering
24/30You are an AI educator who writes beginner-friendly prompting guides. <context> I need a beginner guide that teaches someone new to AI how to write prompts that get reliably good results, as a self-contained Markdown document with copy-paste examples. </context> <inputs> - Reader's goal: [WHAT THEY WANT AI TO HELP WITH] - Their experience: [NEVER PROMPTED SERIOUSLY] - The tool they use: [E.G. CLAUDE, CHATGPT] - A task they will try: [A REAL EXAMPLE TASK] - Their frustration so far: [E.G. VAGUE, GENERIC ANSWERS] </inputs> <task> Write: a plain intro on why prompt quality changes output, Prerequisites, then numbered lessons that each teach one principle with a bad-prompt and better-prompt example side by side: give a role, add context, specify the format, provide an example, and set constraints. Apply each principle to the reader's real task so it compounds into one strong final prompt. Include a reusable prompt template, a common-mistakes list, and a Recap. </task> <constraints> - Show a weak-vs-strong prompt pair for every principle. - Build toward one polished prompt for the reader's actual task. - End with a fill-in-the-blank reusable prompt template. </constraints> <format> Return the full prompting beginner guide as a Markdown artifact, then note the single change that most improves a beginner's prompts. </format>
Produces a beginner prompt-engineering guide with weak-vs-strong examples and a reusable template, ready to publish.
Pro tip: Give Claude a real task you struggle to prompt; each lesson upgrades that exact prompt so you finish with one you can reuse.
Beginner's Guide to Budgeting
25/30You are a personal-finance coach who writes approachable beginner guides. <context> I need a beginner guide that helps someone set up their first personal budget and actually stick to it, as a self-contained Markdown document ready to publish, judgment-free and practical. </context> <inputs> - Income situation: [E.G. STEADY SALARY, IRREGULAR FREELANCE] - Their goal: [E.G. STOP OVERSPENDING, SAVE FOR X] - Tool preference: [SPREADSHEET / APP / PAPER] - Biggest money worry: [WHAT KEEPS THEM UP] - How often they will review: [WEEKLY / MONTHLY] </inputs> <task> Write: an encouraging intro on why a simple budget beats a perfect one, Prerequisites (gather last month's statements), a mini-glossary (fixed vs variable, needs vs wants), then numbered steps: total income, list and categorize expenses, pick a simple framework (like 50/30/20) and adapt it, set one savings target, and choose a review ritual. Include a fill-in budget table, a [SCREENSHOT: sheet/app] placeholder, a "what to do in a tight month" section, and a Recap. </task> <constraints> - Keep it judgment-free and doable; no shaming, no 40-category systems. - Provide a concrete fill-in budget table with example numbers. - Address the reader's stated worry directly. </constraints> <format> Return the full budgeting beginner guide as a Markdown artifact, then note the one habit that most determines whether a budget sticks. </format>
Generates a judgment-free beginner budgeting guide with a fill-in table and a review ritual, ready to publish.
Pro tip: Share whether income is steady or irregular; the budgeting framework Claude recommends changes a lot between the two.
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.
Advanced Deep-Dives
5 promptsDeep Dive: Database Indexing
26/30You are a database performance engineer who writes advanced technical deep-dives. <context> I need an advanced tutorial that teaches an experienced developer how to design indexes that actually speed up their queries, with reasoning and measured proof, as a self-contained Markdown document with runnable SQL. </context> <inputs> - Database: [E.G. POSTGRES, MYSQL] - The slow query or workload: [PASTE OR DESCRIBE IT] - Table sizes and shape: [ROW COUNTS, KEY COLUMNS] - Read/write mix: [MOSTLY READS? HEAVY WRITES?] - Current indexes: [WHAT EXISTS NOW] </inputs> <task> Write: the goal (faster queries without wrecking writes), Prerequisites, then a conceptual section on how the index type works (B-tree, composite, partial, covering) tied to the reader's query. Follow with numbered steps: read the query plan (EXPLAIN ANALYZE), identify the bottleneck, design the index with column order justified, create it, and re-measure. Show the before/after query plans and timings in code blocks. Add a trade-offs section (write cost, bloat), an anti-patterns list, and a Recap. </task> <constraints> - Justify column order and index type against the actual query, not generically. - Show real EXPLAIN ANALYZE output before and after with timings. - Cover the write-and-storage trade-off honestly; no "just add indexes". </constraints> <format> Return the full indexing deep-dive as a Markdown artifact, then note the query-plan signal that tells you an index is being ignored. </format>
Produces an advanced database indexing deep-dive with query-plan analysis, justified index design, and before/after timings, ready to use.
Pro tip: Paste the real slow query and its EXPLAIN output; Claude designs the index against your actual plan instead of guessing at columns.
Advanced Automation Techniques
27/30You are an automation architect who writes advanced power-user tutorials. <context> I need an advanced tutorial that levels up someone who builds basic automations into designing robust, multi-step ones with branching, error handling, and rate-limit safety, as a self-contained Markdown document. </context> <inputs> - Platform: [E.G. MAKE, ZAPIER, N8N] - The workflow to build: [MULTI-STEP GOAL] - Where it currently breaks: [FAILURE POINT] - APIs or data volume involved: [DETAILS] - Reader level: [BUILDS SIMPLE ZAPS, WANTS ROBUST ONES] </inputs> <task> Write: the goal (a reliable multi-step automation), Prerequisites, then a concepts section on branching (paths/filters), loops/iterators, data stores, and error handlers. Follow with numbered build steps: structure the flow, add conditional paths, batch and paginate API calls, add retries and error branches, and set rate-limit-safe delays. Each step has a [SCREENSHOT: scenario] placeholder and a concrete config (e.g., the exact filter condition or the retry settings). Add a testing-with-failure-injection section and a Recap. </task> <constraints> - Cover error handling and retries explicitly; a happy-path-only automation is a fail. - Address rate limits and pagination for API-heavy steps. - Show concrete filter/branch conditions, not "add a filter". </constraints> <format> Return the full advanced automation tutorial as a Markdown artifact, then note the failure mode most people forget to handle. </format>
Generates an advanced automation deep-dive covering branching, retries, rate limits, and failure testing, ready to use.
Pro tip: Tell Claude where your current automation breaks; it designs the error branches and retries around that exact failure point.
Optimize App Performance End-to-End
28/30You are a performance engineer who writes systematic optimization tutorials. <context> I need an advanced tutorial that teaches a developer to profile and speed up a slow web app methodically, from measurement to fix to proof, as a self-contained Markdown document. </context> <inputs> - Stack: [FRONTEND, BACKEND, DATABASE] - The symptom: [E.G. SLOW PAGE LOAD, LAGGY API] - Current metrics: [LCP, TTFB, P95 LATENCY IF KNOWN] - Suspected culprit: [IF ANY] - Constraints: [CANT CHANGE X] </inputs> <task> Write: the goal (measurably faster with proof), Prerequisites (baseline measurement first), then a method section on measure-before-you-optimize. Follow with numbered steps across layers: profile the frontend (bundle, render, network), the backend (slow endpoints, N+1 queries), and the database (query plans, caching). Each step names the tool to use, the metric to read, and a code or config fix in a block. Show before/after numbers at each layer. Add a prioritization framework (biggest win first) and a Recap. </task> <constraints> - Establish a baseline metric before any change; optimize by evidence, not hunch. - Cover frontend, backend, and database layers, each with a real tool and metric. - Show before/after numbers to prove each fix worked. </constraints> <format> Return the full performance deep-dive as a Markdown artifact, then note the layer that usually hides the biggest single win. </format>
Builds an end-to-end performance optimization tutorial with layered profiling, evidence-based fixes, and before/after metrics, ready to use.
Pro tip: Share your current metrics (LCP, p95 latency); Claude sequences the fixes so you attack the biggest measured bottleneck first.
Master Advanced Excel Formulas
29/30You are a spreadsheet modeling expert who writes advanced formula tutorials. <context> I need an advanced tutorial that teaches a competent spreadsheet user to solve a real, gnarly problem using powerful formulas, as a self-contained Markdown document with copy-ready formulas. </context> <inputs> - Tool: [EXCEL / GOOGLE SHEETS] - The problem to solve: [E.G. DYNAMIC LOOKUP, ROLLING TOTALS, DEDUPE] - The data shape: [COLUMNS AND WHAT THEY HOLD] - Formulas they know: [SO YOU CAN GO BEYOND THEM] - Constraint: [MUST WORK ON OLD EXCEL? NO ARRAYS?] </inputs> <task> Write: the goal (a robust formula solving their exact problem), Prerequisites, then a concepts section on the functions involved (e.g., INDEX/MATCH or XLOOKUP, FILTER, LET, dynamic arrays). Follow with numbered steps that build the final formula incrementally: start simple, add lookup logic, handle errors with IFERROR, and make it spill or dynamic. Each step shows the exact formula, what each argument does, and the result on sample data. Add a version-compatibility note, a debugging tip, and a Recap. </task> <constraints> - Build the formula step by step; do not just present the final monster formula. - Explain every argument and include error handling (IFERROR or similar). - Note version compatibility if the input flags an old Excel. </constraints> <format> Return the full advanced Excel tutorial as a Markdown artifact, then note the function that makes this class of problem dramatically easier. </format>
Produces an advanced Excel formula tutorial that builds a robust solution step by step with error handling, ready to use.
Pro tip: Describe your data columns and the exact problem; Claude builds the formula incrementally so you understand it, not just paste a black box.
Deep Dive: CI/CD Pipeline Design
30/30You are a platform engineer who writes advanced CI/CD tutorials. <context> I need an advanced tutorial that teaches a developer to design a production-grade CI/CD pipeline for their project, from commit to deploy with safety gates, as a self-contained Markdown document with real config. </context> <inputs> - Stack and repo: [LANGUAGE, WHERE CODE LIVES] - CI platform: [E.G. GITHUB ACTIONS, GITLAB CI] - Deploy target: [WHERE IT SHIPS] - Stages you want: [TEST, LINT, BUILD, DEPLOY, ETC] - Safety needs: [E.G. REQUIRE REVIEW, STAGING GATE] </inputs> <task> Write: the goal (safe, fast, automated shipping), Prerequisites, then a concepts section on pipeline stages, caching, secrets, and environments. Follow with numbered steps to build the pipeline file: trigger on push/PR, run lint and tests in parallel, build and cache dependencies, gate deploy behind a passing suite and manual approval to production, and add a rollback path. Each step includes the actual YAML config block and what it does. Add a secrets-handling note, a make-it-faster section (caching, concurrency), and a Recap. </task> <constraints> - Provide real, valid pipeline YAML for the named platform, not pseudo-config. - Include a deploy gate and a rollback path; no unguarded prod deploys. - Show how secrets are injected safely, never hardcoded. </constraints> <format> Return the full CI/CD deep-dive as a Markdown artifact, then note the gate that prevents the most production incidents. </format>
Generates an advanced CI/CD pipeline tutorial with real YAML, deploy gates, caching, and rollback, ready to use.
Pro tip: Name your CI platform exactly; the YAML syntax differs enough that a generic pipeline would fail to parse on your runner.
Frequently Asked Questions
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.