PERSONAL REFERENCE · SKEETER HANSEN

Claude Code
Cheat Sheet

Slash commands, skills, MCPs, specialists, workflows. Bookmark this. Open whenever you forget what's available.

Twister Hub AI · VCI Workshop Companion · Updated 2026-05-01

🎯 The Mental Model — In 3 Sentences

  • Slash commands = personal shortcuts you type with /. Recipes Claude follows.
  • Skills = capabilities Claude reaches for automatically when your request matches their description.
  • MCPs = external services Claude can talk to (Drive, GitHub, Vercel, Supabase, etc.).
  • Specialists (agents) = short-lived Claude sessions you call in for one specific job.

⚡ Slash Commands — Type / in Claude Code

Your daily drivers

TypeWhat it doesWhen to use
/scaffold appCreate a new project — PRD, spec, CLAUDE.md, SECURITY, package.json, .gitignore, .env.example all pre-filledStarting any project. 8 templates: app, api, lib, site, nextjs-supabase, cli, mcp, docs
/kickoffRead PRD/spec, seed PROGRESS.md, propose next 3 actionsAfter /scaffold, OR starting a new feature
/standupYesterday/Today/Blockers from git commitsFirst thing each morning. /standup · /standup yesterday · /standup week
/reviewPre-commit code review — bugs, security, regressions, missing testsRight before any /commit
/commitSecret scan first, then drafts a commit message for approvalAlways use this instead of raw git commit — saves you from leaking API keys
/deployPre-deploy checks → confirms target → shipsGoing live. Refuses dirty trees + failing tests
/fixDiagnose recent error → propose minimal fixSomething broke and you're not sure why
/helpList available skills + recommend the right oneWhen stuck or unsure what to use
/lead-magnetBuild complete lead magnet bundle: deliverable + opt-in + emails + GHL workflow + socialsNew lead magnet — see /lead-magnet pdf or /lead-magnet vault

TwisterHub-specific

TypeWhat it does
/new-clientScaffold a client folder with locked subfolder tree (PPT, GHL Funnel pages, GPTs, Sessions, Emails, Automations, Assets, Resources, Deliverables, Working, Recordings)
/heygen-skillsCreate HeyGen avatar videos via the v3 Video Agent pipeline

Skill suites — type / to see them grouped

brand-voice:

enforce-voicebrand-voice-enforcementdiscover-brandgenerate-guidelines

marketing:

email-sequencecampaign-plandraft-contentbrand-reviewseo-auditcompetitive-briefperformance-reportcontent-creation

product-management:

brainstormwrite-specroadmap-updatemetrics-reviewsynthesize-researchstakeholder-updatesprint-planning

engineering:

architecturecode-reviewdebugdeploy-checklistdocumentationincident-responsesystem-designtesting-strategytech-debt

productivity:

task-managementstartupdatememory-management

anthropic-skills:

pdfdocxpptxxlsxcanvas-designskill-creatorschedule

Built-in CLI commands

TypeWhat it does
/initInitialize a CLAUDE.md from existing codebase
/mcpMCP panel — manage authentication for connected services
/pluginBrowse + install plugins from the marketplace
/clearClear conversation context

🤖 Built-In Specialists (Agents) — Call by Name

Ship with Claude Code. Call them when a task is too big, too specialized, or would clutter your main conversation.

SpecialistWhat they doBest when
ExploreSearches your project, reports back without polluting context"Find every file that references X." Read-heavy lookups.
PlanDesigns the step-by-step approachBefore any non-trivial feature. Architecture decisions.
code-reviewerAudits changes for bugs, security, qualityRight before committing anything touching auth, payments, secrets
debuggerTraces errors, finds root cause, suggests fixTest fails and you don't know why. New error.
frontend-developerBuilds React/Vue components end-to-endMulti-file UI work
documentation-expertWrites clear technical docsAfter a feature ships, when README is stale
general-purposeUtility player — when nothing else fitsDefault when in doubt

How to call one in:

"Bring in the code-reviewer specialist and have them audit the changes I just made."

"Ask the Explore specialist to find everywhere we handle user login."

🔌 MCPs — Services Claude Can Talk To

13 connected. Each plugs in one specific external capability.

Documentation + research

MCPWhat it gives Claude
context7Real, current library docs — no more making things up
sequential-thinkingStructured step-by-step reasoning on complex problems

Browser + memory

MCPWhat it gives Claude
playwrightOpen websites, click, fill forms, take screenshots
memoryRemembers things across sessions — survives Claude Code restarts

Cloud services (yours)

MCPWhat it gives Claude
supabase (PAT)Run SQL, manage tables, fetch keys — fallback method
supabase-oauthSame but via OAuth — preferred going forward
plugin:vercel:vercelDeploy, sync env vars, inspect deployments — also gives /vercel:* slash commands

Productivity (claude.ai connectors)

MCPWhat it gives Claude
Google DriveRead/search Drive files
GmailRead/search emails, draft replies
Google CalendarList/create/update events
AirtableRead/write Airtable bases
MakeTrigger Make.com scenarios
CanvaRead designs, generate from templates

You can also call MCPs explicitly when accuracy matters:

"Use Context7 to look up the current Next.js routing API."

"Use the Memory MCP to remember that my main project uses Supabase."

🎬 Common Workflows — What to Type When

Starting a new project

mkdir my-project && cd my-project
claude
> /scaffold app
> /kickoff

Starting a new feature on an existing project

> /kickoff <feature description>

Daily standup

> /standup

Before committing

> /review
> /commit

Deploying

> /deploy

Stuck or broken

> /fix
> /help

Writing a marketing email

> Use marketing:email-sequence to draft a 5-email
welcome series for my AI Jumpstart Challenge audience

Brainstorming an idea

> Use product-management:brainstorm to think through
whether I should add a free 3-day challenge to my funnel

Building a lead magnet (TwisterHub)

> /lead-magnet pdf "Top 10 GHL Power Moves" --audience=ghl-users
> /lead-magnet vault "AI Prompts for Realtors" --audience=realtors

Setting up a new client folder

> /new-client Acme Roofing

Drafting on-brand copy

> Write a Facebook post about [topic] in our brand voice
(brand-voice:enforce-voice triggers automatically)

Recording a HeyGen video

> Make a video of me announcing the next Quponing campaign
(heygen-skills triggers automatically)

🛡️ Safety Hooks Running Automatically

HookWhat it does
.env guardianBlocks Claude from reading .env files — prevents API key leaks
Agent teamsCLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 enabled — lets Claude spawn parallel teammates

🚦 The 4-Color Framework — When to Step In

When Claude is working autonomously (long task, you've stepped away):

🟢 Green

What's happening: Claude debugging itself, repetitive execution working

Do this: Leave alone

🟡 Yellow

What's happening: 20+ min since you peeked at PROGRESS.md

Do this: Just peek, don't comment

🟠 Orange

What's happening: Stuck on same test 3x, scope creep, design choice you don't love

Do this: Redirect — "Try X instead."

🔴 Red

What's happening: Deploying to prod, DB migrations, deleting files, gut says off

Do this: Hard-stop — "Pause. Show me what you just did."

Rule: Claude's job is execution. Your job is judgment. Judgment wins.

📁 Where Things Live On Your Computer

~/.claude/                          ← your global Claude Code home
├── settings.json                   ← env vars, hooks, permissions
├── CLAUDE.md                       ← your global handbook
├── commands/                       ← your slash commands
│   ├── scaffold/SKILL.md
│   ├── kickoff/SKILL.md
│   ├── standup/SKILL.md
│   ├── review/SKILL.md
│   ├── commit/SKILL.md
│   ├── deploy/SKILL.md
│   ├── fix/SKILL.md
│   ├── help/SKILL.md
│   └── lead-magnet/SKILL.md
├── agents/                         ← custom specialists you build
└── plugins/                        ← marketplace plugins (Vercel, etc.)
Twister Hub AI/AI Training/Claude Code Workshop/
├── VCI-WORKSHOP-COMPLETION-NOTES.md   ← deep reference for every SOP
├── CLAUDE-CODE-CHEAT-SHEET.md         ← markdown of THIS page
├── BUILD_DAY_RESULTS.md               ← live URLs of shipped apps
├── SOP-Markdown/                      ← all SOPs as markdown for searching
└── Build Day Apps/                    ← lead-magnet, roi-calculator, vault

🆘 When Claude Gets Stuck — Universal Fix

Describe what you saw, ask Claude to fix it. You don't need to know why it broke.

Examples that always work:

  • "The /scaffold command is asking permission on every file. Can you add the safe tools to the pre-approved list?"
  • "My .env hook is blocking .env.example. Can you fix the pattern?"
  • "You committed code that fails tests. The pre-commit check should have stopped that. Can you check the hook?"

📚 Deeper Reference (on disk)

  • VCI-WORKSHOP-COMPLETION-NOTES.md — full per-SOP summaries
  • SOP-Markdown/G05-Prompts.md — official VCI prompt library
  • SOP-Markdown/G06-Stuck.md — troubleshooting guide
  • SOP-Markdown/G07-Glossary.md — every term defined
  • Original SOP PDFs — in your Drive folder, permanent

YOU ARE READY

9 slash commands · 50+ skills · 13 MCPs · 7 specialists · brand voice baked in

This is more capability than 99% of Claude Code users have. Use it like a kitchen — pick the right tool for the right job, and lean on /help whenever you forget what's available.

With Your Success in Mind,
— Skeeter's Claude Code Setup