The CLAUDE.md file is a special configuration file that tells Claude Code how to behave in your project. Coddo includes a built-in editor so you can manage it without leaving the app.
What is CLAUDE.md?
CLAUDE.md is a markdown file at the root of your project that gives Claude Code project-specific instructions. It’s read by Claude Code every time it starts a session.
Common things to include:
- Project structure - Describe your file organization
- Tech stack - List frameworks, libraries, and tools
- Conventions - Coding style, naming patterns, file naming
- Build commands - How to build, test, and run the project
- Important rules - Things Claude should always or never do
Using the editor
- Click the CLAUDE.md icon in the sidebar
- The editor opens as a full-screen overlay
- Edit the markdown content
- Changes are saved directly to the
CLAUDE.md file in your project root
A well-written CLAUDE.md dramatically improves Claude Code’s output quality. The more context you give, the better the results.
Generate with AI
If you don’t have a CLAUDE.md file yet, or if you want to start fresh, click the Regenerate button. Coddo will use Claude Code to analyze your project’s codebase and automatically generate a complete CLAUDE.md tailored to your project - including the tech stack, file structure, conventions, and build commands.
This is the fastest way to initialize your project configuration.
Example CLAUDE.md
# My Project
## Stack
- React 19 + TypeScript
- Tailwind CSS v4
- Zustand for state management
## Commands
- `npm run dev` - Start dev server
- `npm run build` - Production build
- `npm run test` - Run tests
## Conventions
- Use functional components with hooks
- Name components in PascalCase
- Use kebab-case for file names
- Always add TypeScript types
## Rules
- Never use `any` type
- Always handle errors with try/catch
- Write tests for new features
Tips
- Keep it concise - Claude Code reads the entire file for every session
- Focus on what’s unique to your project
- Update it as your project evolves
- Include examples of patterns you want Claude to follow