AI Power User
Cheat Sheet

Raglan AI · Raglan Community Workshops · tekete.co.nz/ai-workshop

TAKE THIS HOME
⚡ AI Models — Quick Reference
Model Best for Access
Claude Sonnet Coding, reasoning free limit
Gemini 2.5 Pro Long context, free free tier
GPT-4o General purpose limited free
DeepSeek V3 Coding, analysis free on OpenRouter
Qwen 2.5 Multilingual, free free on OpenRouter
Llama 3.3 Local / private run locally free
⬛ Terminal — Essential Commands
# Install Claude Code (Claude CLI)
npm install -g @anthropic-ai/claude-code
# Run Claude Code in your project folder
cd my-project
claude
# Launch Antigravity (Google's agentic IDE)
# Download from antigravity.google
antigravity
# Set your API key (one-time setup)
export ANTHROPIC_API_KEY="sk-ant-..."
# Add to ~/.zshrc or ~/.bashrc to persist
🔗 OpenRouter — One Key, All Models

openrouter.ai — sign up free, get one API key, access 200+ models including free ones.

DeepSeek V3
Free · coding
Llama 3.3
Free · general
Qwen 2.5
Free · multi
# Use OpenRouter with Claude Code
export OPENROUTER_API_KEY="sk-or-..."
claude --model openrouter/deepseek/deepseek-chat
🎨 Vibe Coding — Prompting Patterns That Work
Give context first
"I'm building a website for my café. I use HTML and CSS only, no frameworks. Help me add a booking form."
Be specific about output
"Write a Python script that reads a CSV and outputs a summary. Show me the full file, not just the changes."
Iterate, don't restart
"That's almost right. Change the button colour to match the header and remove the drop shadow."
Ask it to explain
"Explain what this code does line by line, in plain English, as if I've never programmed before."
Set the persona
"You are a senior developer reviewing my code. Point out security issues and performance problems. Be direct."
🧬 Agentic IDEs — Get Set Up
  • Antigravity — antigravity.google · Free · Google's agentic IDE · Class route
  • Cursor — cursor.sh · Free tier · VS Code fork with AI built-in · Best for beginners
  • Windsurf — codeium.com · Free tier · Clean UI · Good for non-coders
  • VS Code + Copilot — $10/mo · Familiar · Huge extension ecosystem
  • Claude Code — npm install -g · Powerful · Works in any terminal
🔌 Advanced — MCP, Hooks & RAG (Explained Simply)
  • MCP (Model Context Protocol) — lets AI use real tools: browse the web, read your files, call APIs. Like giving AI hands.
  • Hooks — run code automatically when AI does something. E.g. "every time you edit a file, run the tests."
  • Loops / cron — AI that runs on a schedule. E.g. "check my emails every 30 minutes and summarise them."
  • RAG — give AI a knowledge base of your own documents, so it can answer questions from them accurately.
  • GraphRAG — RAG that understands relationships between ideas, not just keyword matches. Smarter retrieval.