my-app/
├── CLAUDE.md
└── .claude/
├── rules/
│ ├── frontend.md
│ ├── api.md
│ └── database.md
├── skills/
│ ├── deploy/SKILL.md
│ ├── launch-copy/SKILL.md
│ ├── seo-audit/SKILL.md
│ └── release-notes/SKILL.md
├── agents/
│ ├── code-reviewer.md
│ ├── security-auditor.md
│ └── growth-researcher.md
└── settings.json
01
CLAUDE.md
Always onAlways-on context: architecture, repository map, build & test commands, team conventions.
Example: npm test before completion
02
Rules
Load by scopeContext by scope: framework patterns, API contracts, database conventions — loaded only when relevant.
Example: frontend rules only for src/ui/**
03
Skills
Repeatable playbooksDeployments, launch copy, SEO audits, release notes and other recurring workflows.
Use when you keep repeating the same workflow
04
Agents
Isolated specialistsCode review, security audits and research — separate context that doesn't pollute the main thread.
Use when noisy work should not pollute main context
05
Hooks
Deterministic controlFormat after edits, block secrets, run tests, validate completion — enforced every time, not suggested.
Wired through settings.json