Design.dev design.dev
AI Tools

CLAUDE.md Generator

Generate CLAUDE.md files for Claude Code — persistent project memory loaded automatically every session. Build commands, code style, architecture notes, @file imports, and gotchas.

3 Tech Stack Choose your stack

4 Build & Test Commands Optional

5 Code Style & Conventions Customize behavior

7 Gotchas & Anti-Patterns Optional

8 Environment Variables Names only

List variable names only — never paste secret values into CLAUDE.md. The file is committed and read by every session.

9 File Imports @path/to/file

Claude Code resolves @path/to/file imports and inlines their content. Use for additional docs, style guides, or sub-CLAUDE.md files.

10 Scope Where it lives

Preview 0 lines

CLAUDE.md

							

Where to place your file

my-project/
├── CLAUDE.md          ← loaded automatically by Claude Code
├── src/
│   └── feature/
│       └── CLAUDE.md  ← directory-scoped memory (auto-loaded for files in src/feature/)
└── ...

All scopes Claude Code reads:

./CLAUDE.mdProject — shared via git ./CLAUDE.local.mdProject — personal, gitignored src/<dir>/CLAUDE.mdDirectory — auto-loaded by path ~/.claude/CLAUDE.mdUser — global across all projects
Copied to clipboard!