Minimal, powerful Claude configuration for web development.
your-project/
├── CLAUDE.md # Main instructions (customize this)
└── .claude/
├── settings.json # Permissions and model config
├── agents/ # Specialized agents
│ ├── reviewer.md # Code review
│ ├── refactor.md # Refactoring
│ ├── debug.md # Debugging
│ └── architect.md # Design decisions
└── skills/ # Reusable patterns
├── component.md # React components
├── api.md # API integration
└── testing.md # Testing patterns
Just have CLAUDE.md in your project root. Claude reads it automatically.
Reference agents when you want specialized behavior:
Use @reviewer.md to review this PR
Use @debug.md — the login form submits but nothing happens
Reference skills when generating code:
Create a UserProfile component following @component.md
- Edit
CLAUDE.mdwith your actual tech stack - Add project-specific agents as needed
- Add skills for patterns you repeat often
- Don't over-engineer the config
- Add agents/skills only when you notice repetition
- Update CLAUDE.md as patterns emerge