CLAUDE.md Writer

SkillFiles & storage

Use when creating or refactoring CLAUDE.md files - enforces best practices for size, structure, and content organization

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the CLAUDE.md Writer skill

What this skill tells your AI

The instructions your AI receives, as published by serejaris/personal-corp-os in skills/claude-md-writer/SKILL.md and read by ahel’s review.

Creates and refactors CLAUDE.md files following official Anthropic best practices (2025).

Golden Rules

RuleWhy
CLAUDE.md < 200 linesLoads on EVERY request, costs tokens
Rules files < 500 lines eachOfficial recommendation per file
Critical rules FIRSTTop = highest priority
Modular rules → .claude/rules/Conditional loading, organized
Use paths: frontmatterLoad rules only for matching files
No linting rulesUse ESLint/Prettier/Biome instead
Pointers over copiesFiles change, references stay valid

Memory Hierarchy

Claude Code loads memory in this order (higher = higher priority):

PriorityTypeLocation
HighestEnterprise/Library/Application Support/ClaudeCode/CLAUDE.md
Project./CLAUDE.md or ./.claude/CLAUDE.md
Rules./.claude/rules/*.md (conditional)
User~/.claude/CLAUDE.md
LowestLocal./CLAUDE.local.md (gitignored)

Use /memory command to see currently loaded files.

3-Tier Documentation System

Official recommendation for large projects:

TierLocationLoadsTarget
1. FoundationCLAUDE.mdAlways< 200 lines
2. Component.claude/rules/{component}/When working in component< 500 lines
3. FeatureCo-located with codeWhen working on featureAs needed

Example structure:

.claude/
├── CLAUDE.md                 # Tier 1: always loaded
└── rules/
    ├── database.md           # Tier 2: SQL, migrations
    ├── api.md                # Tier 2: API patterns
    └── frontend/             # Tier 2: subdirectory
        ├── components.md     # paths: src/**/*.tsx
        ├── layout.md         # paths: src/pages/**/*.tsx
        └── tokens.md         # paths: **/*.tsx

Structure Template

# Project Name

One-line description.

## Commands

- `npm run dev` - Development
- `npm run build` - Production
- `npm run test` - Tests

## Architecture

| Path | Purpose |
|------|---------|
| `lib/` | Core logic |
| `app/api/` | API routes |

## Key Patterns

**Pattern Name**: One-line explanation.

## Database (if applicable)

| Table | Key Fields |
|-------|------------|

## Modular Docs

See `.claude/rules/` for:
- `database.md` - queries, schema
- `deploy.md` - deployment

## Tech Stack

One line: Next.js 15, PostgreSQL, TypeScript

Conditional Rules (Path-Specific)

Use YAML frontmatter for file-type-specific rules:

---
paths: "src/api/**/*.ts"
---

# API Rules

- All endpoints must validate input
- Use standard error format

Glob Patterns

PatternMatches
**/*.tsAll .ts files anywhere
src/**/*All files under src/
*.mdMarkdown in project root
src/components/*.tsxComponents in specific dir

Combining Patterns

# Multiple extensions
paths: "src/**/*.{ts,tsx}"

# Multiple directories
paths: "{src,lib}/**/*.ts, tests/**/*.test.ts"

Note: Wrap patterns in quotes for YAML safety.

Rules with paths: only load when working with matching files → saves tokens.

Workflow: New Project

  1. Run /init for base CLAUDE.md
  2. Review and trim generated content
  3. Identify critical rules — what breaks if ignored?
  4. Create .claude/rules/ for domain-specific docs
  5. Keep main file < 100 lines

Workflow: Refactor Existing

  1. Count lines — if > 300, must split
  2. Find task-specific content — SQL, debugging, deploy → extract
  3. Create .claude/rules/:
    • database.md - queries, schema, connection
    • deploy.md - deployment process
    • messaging.md - integrations (Telegram, etc.)
  4. Use @file references — don't duplicate
  5. Keep in CLAUDE.md — only what applies to EVERY task

What Goes Where

ContentLocation
Project descriptionCLAUDE.md
Critical constraintsCLAUDE.md (top!)
Quick start (3 commands)CLAUDE.md
Architecture overviewCLAUDE.md
Key patterns (1-liners)CLAUDE.md
SQL queries/schema.claude/rules/database.md
Deployment steps.claude/rules/deploy.md
API documentation.claude/rules/api.md
Git workflow.claude/rules/git.md
Personal preferencesCLAUDE.local.md (gitignored)
Code style rules.eslintrc / biome.json (NOT docs)

Import Syntax

Reference files instead of duplicating:

@README.md
@docs/architecture.md
@~/.claude/snippets/common.md
  • Relative: @docs/file.md
  • Absolute: @~/path/file.md
  • Max depth: 5 hops

CLAUDE.local.md

Personal project settings (auto-gitignored):

# My Local Settings

- Prefer verbose output
- Run tests after every change
- My worktree location: .trees/

Common Mistakes

MistakeFix
500+ linesSplit into .claude/rules/
SQL examples inlinerules/database.md
"Run prettier" rulesUse tool config files
Full API docsrules/api.md
Deployment instructionsrules/deploy.md
Code in CLAUDE.mdUse @file:line references
Negative rules onlyAdd alternatives: "Don't X; use Y instead"

Quality Checklist

Before finishing:

  • CLAUDE.md < 200 lines?
  • Each rules file < 500 lines?
  • Critical rules at top?
  • No task-specific content in main file?
  • No code style rules (use ESLint/Prettier)?
  • .claude/rules/ for domain-specific docs?
  • Subdirectories for components (frontend/, backend/)?
  • paths: frontmatter for conditional loading?
  • @ references instead of duplication?
  • CLAUDE.local.md for personal prefs?

Useful Commands

CommandPurpose
/initGenerate initial CLAUDE.md
/memoryView loaded memory files

Sources

Official:

  • code.claude.com/docs/en/memory (Memory management, paths, globs)
  • anthropic.com/engineering/claude-code-best-practices
  • claude.com/blog/using-claude-md-files

Community:

  • thedocumentation.org/claude-code-development-kit (3-Tier System)
  • claudefa.st/blog/guide/mechanics/rules-directory
  • humanlayer.dev/blog/writing-a-good-claude-md

Updated: Jan 2026

Signals

GitHub stars
226
Forks
27
Last commit
Aug 2026
Advanced
Catalog kind
skill
Gateway key
claude-md-writer
Source
github.com/serejaris/personal-corp-os