ClaudeCode
The builder's guide to the most powerful AI coding tool. Everything I learned after 3 months of daily use.
Why Claude Code Changes Everything
I've used every AI coding tool. Copilot, Cursor, Windsurf, Cody. None of them come close to .
Here's why: Claude Code doesn't complete your lines. It understands your codebase. It reads your files, runs your tests, and makes decisions like a senior engineer would.
Like this? Get the next post in your inbox — two emails a week, every one shippable.
Getting Started
Install it globally:
npm install -g @anthropic-ai/claude-code
Then run it in any project directory:
claude
That's it. No config files, no API keys in your terminal, no setup wizard.
Run claude in your project root where your package.json or main config lives. Claude Code reads your project structure to understand context.
The CLAUDE.md File
The most underrated feature. Create a CLAUDE.md in your project root:
# CLAUDE.md
## Project Overview
This is a Next.js 15 newsletter platform.
## Conventions
- Use shadcn/ui components
- Dark mode only
- TypeScript strict mode
Claude Code reads this file automatically and follows your conventions. It's like giving a new team member a perfect onboarding doc.
Subagents: Parallel Work
This is where it gets powerful. Claude Code can spawn subagents — independent workers that handle tasks in parallel:
You: "Build the API endpoints and the frontend components"
Claude: *spawns backend-developer and frontend-developer agents*
Both agents work simultaneously. The backend agent writes API routes while the frontend agent builds React components.
Subagents run on Sonnet by default. Give them focused, self-contained tasks with clear success criteria. Don't ask a subagent to "figure out the architecture" — tell it exactly what files to create.
My Daily Workflow
- Start the day:
claudein project directory - Review what changed: "What did I work on yesterday?"
- Plan the day: "What's the next task from my todo list?"
- Build: "Implement the comment system with threaded replies"
- Verify: Claude runs tests, checks types, confirms build passes
The key insight: Claude Code isn't a tool you use. It's a partner you work with. Treat it like a senior engineer, not a autocomplete engine.
Like this? Get the next post in your inbox — two emails a week, every one shippable.
Your First Agent
Build a working AI agent in 30 minutes. No frameworks, no abstractions — just TypeScript and an API call.