Claude Md Examples
Description
Real-world CLAUDE.md examples for Next.js, FastAPI, Django, Go, React Native. Generate your own free at clskills.in/claude-md-generator
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
CLAUDE.md Examples
n[](https://github.com/Samarth0211/claude-md-examples) [](https://clskills.in)
Real-world CLAUDE.md files for popular tech stacks. Drop any of these into your project root and Claude Code instantly understands your codebase.
**Generate a custom CLAUDE.md for YOUR project (free): [clskills.in/claude-md-generator](https://clskills.in/claude-md-generator)**
What is CLAUDE.md?
A `CLAUDE.md` file tells Claude Code how to work with your specific project — your commands, conventions, architecture, and rules. Without it, Claude guesses. With it, Claude follows your exact standards.
Examples
Next.js + TypeScript + Tailwind
# Project: My SaaS App
## Commands
- `npm run dev` — start development server
- `npm run build` — production build
- `npm test` — run tests with Vitest
- `npm run lint` — ESLint + Prettier check
## Architecture
- `/src/app` — Next.js App Router pages
- `/src/components` — React components (PascalCase)
- `/src/lib` — Utilities and helpers
- `/src/hooks` — Custom React hooks (use* prefix)
- `/prisma` — Database schema and migrations
## Code Style
- TypeScript strict mode, no `any` types
- Functional components only, no class components
- Use Zustand for state management, not Redux
- Tailwind CSS for styling, no CSS modules
- Named exports, not default exports (except pages)
## Conventions
- Components: PascalCase (e.g., `UserProfile.tsx`)
- Hooks: camelCase with `use` prefix (e.g., `useAuth.ts`)
- Utils: camelCase (e.g., `formatDate.ts`)
- API routes: kebab-case (e.g., `/api/user-profile`)
## Testing
- Vitest for unit tests, Playwright for E2E
- Test files: `*.test.ts` co-located with source
- Mock external APIs, never hit real endpoints in tests
## Do NOT
- Don't add comments to obvious code
- Don't use `var`, always
Related Skills
Awesome Go
A curated list of awesome Go frameworks, libraries and software
Development next.js
| The React Framework | 138360 | 1503 | 1 |
Development sharing-skills
skill for guidance.
Development root-cause-tracing
Use when errors occur deep in execution and you need to trace back to find the original trigger.
Development Template Skill
Minimal skeleton for a new skill project structure.
Development Third-party Notices
THE FOLLOWING SETS FORTH ATTRIBUTION NOTICES FOR THIRD PARTY SOFTWARE THAT MAY BE CONTAINED IN PORTIONS OF THI
Development