← Back to Tutorials

5. References

Glossary

TermDefinition
Vibe CodingAI-native coding where you describe intent and AI generates code
Claude Code CLIAnthropic's terminal-based agentic coding tool
MCPModel Context Protocol — standardized tool interface for AI
Context Fileclaude.md or agents.md — project instructions for AI
CheckpointSaved session state for rollback
YOLO ModeAutonomous mode where AI runs commands without approval
Sub-AgentSpecialized agent within a larger swarm
HookAutomated action triggered by events (pre-commit, post-deploy)
SwarmGroup of coordinated agents working in parallel
SandboxIsolated cloud environment for safe AI code execution

Cheatsheet

# Claude Code CLI Cheatsheet

# Install
npm install -g @anthropic-ai/claude-code

# Start session
claude

# Quick prompt
echo "explain this" | claude -p

# Session controls
/plan       # Generate a plan
/review     # Review changes
/summarize  # Get session summary
/checkpoint # Save state

# Flags
--yolo           # Autonomous mode
--model MODEL    # Use specific Claude model
--resume         # Resume last session
--verbose        # Detailed output

# Config file (claude.json)
{
  "mcpServers": { "serverName": { "command": "node", "args": ["server.js"] } }
}

# Project context (claude.md)
# Place in project root with conventions, stack, and key files.

Claude Model Comparison

ModelBest ForContext
Claude HaikuFast, lightweight tasks200K
Claude SonnetBalanced speed/quality200K
Claude OpusComplex reasoning, code200K
📘 Congratulations! You've completed the Claude Vibe Coding & Engineering course. You can now vibe-code prototypes, engineer production systems with Claude Code CLI, and orchestrate expert-level multi-agent swarms for complex applications.