CLAUDE.md ยท flat 50p tonight
The complete reference for Claude Code IDE setup, commands, keyboard shortcuts, GitHub integration, and proven developer workflows.
Install Claude Code in VSCode, configure keybindings, and set up your first project in under 5 minutes.
Setup Guide โComplete list of Claude Code CLI commands with flags, examples, and when to use each one.
View Commands โMaster every Claude Code keyboard shortcut to speed up your coding sessions by 2-3x.
View Shortcuts โAll /slash commands explained: /review, /fix, /test, /commit, /pr, /explain and more.
View Slash Cmds โPractical tips for integrating Claude Code into daily development โ solo and team workflows.
Read Tips โWire Claude Code into your PR review, CI checks, and issue triage workflows with GitHub.
See Integration โTeam conventions, CLAUDE.md patterns, and architectural guidelines for production codebases.
Learn More โHonest head-to-head comparison: when to use Claude Code, when Cursor wins, and when to use both.
Compare โConnect Claude Code to databases, GitHub, web search, and custom APIs via Model Context Protocol servers.
Setup MCP โWrite a CLAUDE.md that gives Claude persistent context: templates for solo projects, teams, and monorepos.
Read Guide โPrompts and techniques for debugging with Claude Code โ from stack traces to production incidents.
Debug Faster โUse the /review command and GitHub Actions integration to catch bugs before they ship.
Review Guide โSafe multi-file refactors: renames, extractions, restructuring โ with tests green throughout.
Refactor Guide โ/compact vs /clear, how to prime sessions, and controlling token costs in Claude Code.
Manage Context โWrite project memory files that give Claude persistent context โ stack, conventions, commands โ across every session.
CLAUDE.md Guide โStep-by-step install guide for Mac, Linux, and Windows โ npm setup, API key, first session, and error fixes.
Install Guide โIs Claude Code free? Honest breakdown of API costs, Pro vs Max plans, and how to control your monthly spend.
See Pricing โConfigure Claude Code for any project โ CLAUDE.md creation, settings.json permissions, hooks, and team onboarding.
Project Setup โEvery command, shortcut, slash command, CLAUDE.md template, and config option on one printable page.
Open Cheatsheet โUse Shift+Tab to enter Plan Mode โ Claude presents every file it will change before touching anything. Essential for complex refactors.
Learn Plan Mode โ# Install Claude Code globally npm install -g @anthropic-ai/claude-code # Launch in your project root claude # Or open a specific file claude edit src/app.ts # Run a slash command immediately claude /review src/components/Button.tsx
Claude Code connects directly to the Claude API with your ANTHROPIC_API_KEY. It reads your repo, understands your codebase context, and makes targeted edits โ unlike chat-only assistants.
/commit, /pr, and /review understand your git history and write commit messages that follow your repo conventions.CLAUDE.md in your repo root with project-specific instructions. Claude Code reads it automatically every session.# Project Overview Brief description of what this repo does and who uses it. # Architecture - Frontend: React 18 + TypeScript + Vite - Backend: FastAPI + SQLAlchemy - DB: PostgreSQL 16 (dev: Docker, prod: RDS) # Dev Commands - Start dev: `make dev` - Run tests: `make test` - Lint: `make lint` # Conventions - Commit style: conventional commits (feat/fix/chore) - Branch naming: <type>/<ticket>-short-description - No comments explaining WHAT code does โ only WHY # Do Not - Never mock the database in tests - Never use `git push --force` without asking - Never add console.log to production code
A well-written CLAUDE.md is the highest-leverage customization you can make. Claude Code reads it at the start of every session, so your team conventions are automatically enforced without repeating them in every prompt.