A tremendous feat of documentation, this guide covers Claude Code from beginner to power user, with production-ready templates for Claude Code features, guides on agentic workflows, and a lot of great learning materials, including quizzes and a handy "cheatsheet". Whether it's the "ultimate" guide to Claude Code will be up to the reader :) https://cc.bruniaux.com/
Find a file
Florian BRUNIAUX c844f74c8f docs: update Claude Code releases to v2.1.25
- Add v2.1.25: Fixed beta header validation for Bedrock/Vertex
- Add v2.1.23: Customizable spinner verbs, mTLS/proxy fixes, terminal performance

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-30 08:48:25 +01:00
.claude/commands feat: add maintenance slash commands for release management 2026-01-21 11:41:24 +01:00
assets feat(visibility): add TTFV optimization, CONTRIBUTING rewrite, and distribution playbooks 2026-01-16 09:27:28 +01:00
docs/resource-evaluations docs: add verified critical bugs tracker (known-issues.md) 2026-01-28 17:59:16 +01:00
examples docs: enrich RTK evaluation with T3 Stack production testing 2026-01-28 14:01:37 +01:00
exports refactor: restructure repo into thematic directories v3.1.0 2026-01-13 15:30:02 +01:00
guide docs: update Claude Code releases to v2.1.25 2026-01-30 08:48:25 +01:00
machine-readable docs: update Claude Code releases to v2.1.25 2026-01-30 08:48:25 +01:00
quiz docs: reference ai-ecosystem.md everywhere + add quiz questions 2026-01-19 13:04:07 +01:00
scripts feat: add GitHub stars verification to sync script 2026-01-27 12:45:18 +01:00
tools feat(guide): add AI Ecosystem section for complementary tools (v3.9.1) 2026-01-19 11:25:36 +01:00
.gitignore docs: add task management workflow and update guides 2026-01-26 14:02:54 +01:00
CHANGELOG.md docs: update CHANGELOG for MCP servers ecosystem documentation 2026-01-28 20:57:43 +01:00
cheatsheet.pdf docs: update cheatsheet to v3.16.0 + Features Méconnues section 2026-01-27 10:42:26 +01:00
CITATION.cff feat(seo): add CITATION.cff and improve AI discoverability 2026-01-17 11:21:58 +01:00
CLAUDE.md docs: add resource-evaluations to tracked docs 2026-01-26 14:02:05 +01:00
CODE_OF_CONDUCT.md feat(visibility): add TTFV optimization, CONTRIBUTING rewrite, and distribution playbooks 2026-01-16 09:27:28 +01:00
CONTRIBUTING.md feat(visibility): add TTFV optimization, CONTRIBUTING rewrite, and distribution playbooks 2026-01-16 09:27:28 +01:00
IDEAS.md docs: v3.9.6 - Trust Calibration, Vibe Coding Trap, reference.yaml sync 2026-01-20 08:36:35 +01:00
LICENSE docs: add complete Claude Code ultimate guide content 2026-01-09 15:18:49 +01:00
README.md release: v3.18.0 - Known Issues Tracker & RTK Integration 2026-01-28 18:20:05 +01:00
VERSION release: v3.18.0 - Known Issues Tracker & RTK Integration 2026-01-28 18:20:05 +01:00

Claude Code Ultimate Guide

Website

Stars Quiz Templates

License: CC BY-SA 4.0 Ask Zread

Master Claude Code with educational depth and practical methodologies. We teach WHY it works → Others provide HOW to configure.


Quick Start

Quickest path: Cheat Sheet — 1 printable page with daily essentials

Interactive onboarding (no clone needed):

claude "Fetch and follow the onboarding instructions from: https://raw.githubusercontent.com/FlorianBruniaux/claude-code-ultimate-guide/main/tools/onboarding-prompt.md"

Browse directly: Full Guide | Examples | Quiz

Prerequisites & Minimal CLAUDE.md Template

Prerequisites: Node.js 18+ | Anthropic API key

# Project: [NAME]

## Tech Stack
- Language: [e.g., TypeScript]
- Framework: [e.g., Next.js 14]
- Testing: [e.g., Vitest]

## Commands
- Build: `npm run build`
- Test: `npm test`
- Lint: `npm run lint`

## Rules
- Run tests before marking tasks complete
- Follow existing code patterns
- Keep commits atomic and conventional

Save as CLAUDE.md in your project root. Claude reads it automatically.


📁 Repository Structure

graph LR
    root[📦 Repository<br/>Root]

    root --> guide[📖 guide/<br/>15K lines]
    root --> examples[📋 examples/<br/>86 templates]
    root --> quiz[🧠 quiz/<br/>227 questions]
    root --> tools[🔧 tools/<br/>utils]
    root --> machine[🤖 machine-readable/<br/>AI index]
    root --> docs[📚 docs/<br/>22 evaluations]

    style root fill:#d35400,stroke:#e67e22,stroke-width:3px,color:#fff
    style guide fill:#2980b9,stroke:#3498db,stroke-width:2px,color:#fff
    style examples fill:#8e44ad,stroke:#9b59b6,stroke-width:2px,color:#fff
    style quiz fill:#d68910,stroke:#f39c12,stroke-width:2px,color:#fff
    style tools fill:#5d6d7e,stroke:#7f8c8d,stroke-width:2px,color:#fff
    style machine fill:#138d75,stroke:#16a085,stroke-width:2px,color:#fff
    style docs fill:#c0392b,stroke:#e74c3c,stroke-width:2px,color:#fff
Detailed Structure (Text View)
📦 claude-code-ultimate-guide/
│
├─ 📖 guide/              Core Documentation (~15K lines)
│  ├─ ultimate-guide.md   Complete reference, 10 sections
│  ├─ cheatsheet.md       1-page printable
│  ├─ architecture.md     How Claude Code works internally
│  ├─ methodologies.md    TDD, SDD, BDD workflows
│  └─ workflows/          Step-by-step guides
│
├─ 📋 examples/           86 Production Templates
│  ├─ agents/             6 custom AI personas
│  ├─ commands/           18 slash commands
│  ├─ hooks/              18 security hooks (bash + PowerShell)
│  ├─ skills/             1 meta-skill (Claudeception)
│  └─ scripts/            Utility scripts (audit, search)
│
├─ 🧠 quiz/               227 Questions
│  ├─ 9 categories        Setup, Agents, MCP, Trust, Advanced...
│  ├─ 4 profiles          Junior, Senior, Power User, PM
│  └─ Instant feedback    Doc links + score tracking
│
├─ 🔧 tools/              Interactive Utilities
│  ├─ onboarding-prompt   Personalized guided tour
│  └─ audit-prompt        Setup audit & recommendations
│
├─ 🤖 machine-readable/   AI-Optimized Index
│  ├─ reference.yaml      Structured index (~2K tokens)
│  └─ llms.txt            Standard LLM context file
│
└─ 📚 docs/               22 Resource Evaluations
   └─ resource-evaluations/  5-point scoring, source attribution

🎯 What Makes This Guide Unique

🎓 Educational Depth

We explain concepts first, not just configs:

  • Architecture — How Claude Code works internally
  • Trade-offs — When to use agents vs skills vs commands
  • Pitfalls — Common mistakes and solutions

📝 227-Question Quiz (Unique in Ecosystem)

Only comprehensive assessment available — test your understanding across 9 categories:

  • Setup & Configuration
  • Agents & Sub-Agents
  • MCP Servers & Integration
  • Trust & Verification
  • Advanced Patterns

Try the Quiz Online → | Run Locally

🔬 Methodologies (Structured Workflows)

Complete guides with rationale and examples:

  • TDD — Test-Driven Development
  • SDD — Specification-Driven Development
  • BDD — Behavior-Driven Development
  • GSD — Get Shit Done pattern

📚 86 Annotated Templates

Educational templates with explanations:

  • Agents (6), Commands (18), Hooks (18), Skills
  • Comments explaining why each pattern works
  • Gradual complexity progression

Browse Catalog →

🔍 22 Resource Evaluations

Systematic assessment of external resources (5-point scoring):

  • Articles, videos, tools, frameworks
  • Honest assessments with source attribution
  • Integration recommendations

See Evaluations →


🎯 Learning Paths

Junior Developer — Foundation path (7 steps)
  1. Quick Start — Install & first workflow
  2. Essential Commands — The 7 commands
  3. Context Management — Critical concept
  4. Memory Files — Your first CLAUDE.md
  5. Learning with AI — Use AI without becoming dependent
  6. TDD Workflow — Test-first development
  7. Cheat Sheet — Print this
Senior Developer — Intermediate path (6 steps)
  1. Core Concepts — Mental model
  2. Plan Mode — Safe exploration
  3. Methodologies — TDD, SDD, BDD reference
  4. Agents — Custom AI personas
  5. Hooks — Event automation
  6. CI/CD Integration — Pipelines
Power User — Comprehensive path (7 steps)
  1. Complete Guide — End-to-end
  2. Architecture — How Claude Code works
  3. Security Hardening — MCP vetting, injection defense
  4. MCP Servers — Extended capabilities
  5. Trinity Pattern — Advanced workflows
  6. Observability — Monitor costs & sessions
  7. Examples — Production templates
Product Manager / DevOps / Designer

Product Manager (5 steps):

  1. What's Inside — Scope overview
  2. Golden Rules — Key principles
  3. Data Privacy — Retention & compliance
  4. Adoption Approaches — Team strategies
  5. PM FAQ — Code-adjacent vs non-coding PMs

Note: Non-coding PMs should consider Claude Cowork Guide instead.

DevOps / SRE (5 steps):

  1. DevOps & SRE Guide — FIRE framework
  2. K8s Troubleshooting — Symptom-based prompts
  3. Incident Response — Workflows
  4. IaC Patterns — Terraform, Ansible
  5. Guardrails — Security boundaries

Product Designer (5 steps):

  1. Working with Images — Image analysis
  2. Wireframing Tools — ASCII/Excalidraw
  3. Figma MCP — Design file access
  4. Design-to-Code Workflow — Figma → Claude
  5. Cheat Sheet — Print this

Progressive Journey

  • Week 1: Foundations (install, CLAUDE.md, first agent)
  • Week 2: Core Features (skills, hooks, trust calibration)
  • Week 3: Advanced (MCP servers, methodologies)
  • Month 2+: Production mastery (CI/CD, observability)

🔧 Rate Limits & Cost Savings

cc-copilot-bridge routes Claude Code through GitHub Copilot Pro+ for flat-rate access ($10/month instead of per-token billing).

# Install
git clone https://github.com/FlorianBruniaux/cc-copilot-bridge.git && cd cc-copilot-bridge && ./install.sh

# Use
ccc   # Copilot mode (flat $10/month)
ccd   # Direct Anthropic mode (per-token)
cco   # Offline mode (Ollama, 100% local)

Benefits: Multi-provider switching, rate limit bypass, 99%+ cost savings on heavy usage.

cc-copilot-bridge


🔑 Golden Rules

  1. Start small — First project: 10-15 lines CLAUDE.md max
  2. Read before edit — Always Read → Understand → Edit (never blind Write)
  3. Test-first — Write test → Watch fail → Implement → Pass
  4. Use /compact before context hits 70% — prevention beats recovery
  5. Review everything — AI code has 1.75× more logic errors (source)
  6. Context = Gold — Clear CLAUDE.md > clever prompts

Context management is critical. See the Cheat Sheet for thresholds and actions.


🤖 For AI Assistants

Resource Purpose Tokens
llms.txt Standard context file ~1K
reference.yaml Structured index with line numbers ~2K

Quick load: curl -sL https://raw.githubusercontent.com/FlorianBruniaux/claude-code-ultimate-guide/main/machine-readable/reference.yaml


🌍 Ecosystem

Positioning: Complementary, Not Competitive

Claude Code has two major community resources:

Resource Focus Best For
This Guide 🎓 Educational depth, methodologies Deep understanding, learning WHY
everything-claude-code ⚙️ Production configs, plugin install Quick setup, battle-tested patterns

Recommended workflow: Learn concepts here → Leverage production configs there → Return for deep dives

Both resources serve different needs. Use what fits your learning style and project requirements.

Claude Cowork (Non-Developers)

Claude Cowork is the companion guide for non-technical users (knowledge workers, assistants, managers).

Same agentic capabilities as Claude Code, but through a visual interface with no coding required.

Claude Cowork Guide — File organization, document generation, automated workflows

Status: Research preview (Pro $20/mo or Max $100-200/mo, macOS only, VPN incompatible)

Complementary Resources

Project Focus Best For
claude-code-templates Distribution (200+ templates) CLI installation (17k)
skills.sh Skills marketplace One-command install (Vercel Labs)
awesome-claude-code Curation Resource discovery
AI Coding Agents Matrix Technical comparison Comparing 23+ alternatives

Community: 🇫🇷 Dev With AI — 1500+ devs on Slack, meetups in Paris, Bordeaux, Lyon

AI Ecosystem Guide — Complete integration patterns with complementary AI tools


📖 About

Origins & Philosophy

This guide is the result of several months of daily practice with Claude Code. I don't claim expertise—I'm sharing what I've learned to help peers and evangelize AI-assisted development best practices.

Philosophy: Learning journey over reference manual. Understanding why before how. Progressive complexity — start simple, master advanced at your pace.

Created with Claude Code. Community-validated through contributions and feedback.

Key Inspirations:

Privacy & Data

Claude Code sends your prompts, file contents, and MCP results to Anthropic servers.


📚 What's Inside

Core Documentation

File Purpose Time
Ultimate Guide Complete reference (~15K lines), 10 sections ~4 hours
Cheat Sheet 1-page printable reference 5 min
Architecture How Claude Code works internally 25 min
Methodologies TDD, SDD, BDD reference 20 min
Workflows Practical guides (TDD, Plan-Driven, Task Management) 30 min
Data Privacy Retention & compliance 10 min
Security Hardening MCP vetting, injection defense 25 min
Production Safety Port stability, DB safety, infrastructure lock 20 min
DevOps & SRE FIRE framework, K8s troubleshooting, incident response 30 min
AI Ecosystem Complementary AI tools & integration patterns 20 min
AI Traceability Code attribution & provenance tracking 15 min
Search Tools Cheatsheet Grep, Serena, ast-grep, grepai comparison 5 min
Learning with AI Use AI without becoming dependent 15 min
Claude Code Releases Official release history 10 min
Examples Library (86 templates)

Agents (6): code-reviewer, test-writer, security-auditor, refactoring-specialist, output-evaluator, devops-sre

Slash Commands (18): /pr, /commit, /release-notes, /diagnose, /security, /refactor, /explain, /optimize, /ship...

Security Hooks (18): dangerous-actions-blocker, prompt-injection-detector, unicode-injection-scanner, output-secrets-scanner...

Skills (1): Claudeception — Meta-skill that auto-generates skills from session discoveries

Plugins (1): SE-CoVe — Chain-of-Verification for independent code review (Meta AI, ACL 2024)

Utility Scripts: session-search.sh, audit-scan.sh

GitHub Actions: claude-pr-auto-review.yml, claude-security-review.yml, claude-issue-triage.yml

Integrations (1): Agent Vibes TTS - Text-to-speech narration for Claude Code responses

Browse Complete Catalog | Interactive Catalog

Knowledge Quiz (227 questions)

Test your Claude Code knowledge with an interactive CLI quiz covering all guide sections.

cd quiz && npm install && npm start

Features: 4 profiles (Junior/Senior/Power User/PM), 10 topic categories, immediate feedback with doc links, score tracking with weak area identification.

Quiz Documentation | Contribute Questions

Resource Evaluations (22 assessments)

Systematic evaluation of external resources (tools, methodologies, articles) before integration into the guide.

Methodology: 5-point scoring system (Critical → Low) with technical review and challenge phase for objectivity.

Evaluations: GSD methodology, Worktrunk, Boris Cowork video, AST-grep, ClawdBot analysis, and more.

Browse Evaluations | Evaluation Methodology


🤝 Contributing

We welcome:

  • Corrections and clarifications
  • New quiz questions
  • Methodologies and workflows
  • Resource evaluations (see process)
  • Educational content improvements

See CONTRIBUTING.md for guidelines.

Ways to Help: Star the repo • Report issues • Submit PRs • Share workflows in Discussions


📄 License & Support

Guide: CC BY-SA 4.0 — Educational content is open for reuse with attribution.

Templates: CC0 1.0 — Copy-paste freely, no attribution needed.

Author: Florian BRUNIAUX | Founding Engineer @Méthode Aristote

Stay Updated: Watch releases | Discussions | Connect on LinkedIn


📚 Further Reading

Official Resources

Community Resources

Tools


Version 3.18.0 | January 2026 | Crafted with Claude