Claude Md Examples banner
Samarth0211 Samarth0211

Claude Md Examples

Development community

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[![GitHub stars](https://img.shields.io/github/stars/Samarth0211/claude-md-examples?style=social)](https://github.com/Samarth0211/claude-md-examples) [![Claude Skills Hub](https://img.shields.io/badge/clskills.in-2%2C300%2B%20skills-6366f1)](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