Learn Claude Code
A curated collection of tutorials, articles, and resources from the community to help you master Claude Code.
Building a REAL feature with Claude Code: every step explained
01/Videos
How I use Claude Code for real engineering
In this video, I walk through my complete workflow for tackling large coding projects using Claude Code's plan mode. I demonstrate how to start with a rough dictated prompt, use plan mode to explore the codebase and generate clarifying questions, and break complex work into multi-phase plans that can span multiple context windows. I show my custom rules configuration that keeps plans concise and adds unresolved questions, how to monitor context usage throughout implementation, and my strategy of storing plans as GitHub issues to preserve them across context resets. This approach combines upfront planning with aggressive auto-accept during implementation phases, allowing AI to handle substantial features while maintaining control and code quality. I share practical tips including my favorite concision rule, the benefits of multi-phase planning, and how to effectively manage context windows for large projects.
I was wrong about Claude Code (UPDATED AI workflow tutorial)
In this video I talk about my UPDATED AI coding workflow (using Claude Code, why I switched from Cursor, thoughts on the AI coding space) and how it makes me 20x faster as a developer.
Most devs don’t understand how context windows work
A deep dive into the context window - the most important constraint when using AI coding agents. Learn what makes up a context window (input and output tokens), why models have limits, and the critical 'lost-in-the-middle' problem that causes models to deprioritize information buried in long conversations. Discover practical strategies for managing context effectively in Claude Code, including when to clear vs. compact conversations, why bigger context windows aren't always better, and how MCP servers can bloat your context. Understanding context windows is the key skill that separates developers who get great results from coding agents versus those who struggle. Includes real examples and best practices for maintaining lean, focused contexts that maximize AI coding performance.
How I Get AI To Follow My Designs (In-Depth Walkthrough)
In this video I talk about how I get AI coding tools to follow my designs. This 40 mins of REAL thought process that goes on when trying to work with AI to go from design to working code :)
02/Articles
Lessons from using Claude Code skills at Anthropic
Skills have become one of the most used extension points in Claude Code. They're flexible, easy to make, and simple to distribute. Lessons learned from hundreds of skills in active use at Anthropic — what types are worth making, how to write good ones, and when to share them.
Lessons from Building Claude Code: Prompt Caching Is Everything
Long running agentic products like Claude Code are made feasible by prompt caching which allows us to reuse computation from previous roundtrips and significantly decrease latency and cost. At Claude Code, the entire harness is built around prompt caching — a high cache hit rate decreases costs and enables more generous rate limits.