askill
claude-md-manager

claude-md-managerSafety 100Repository

Create, audit, and maintain CLAUDE.md documentation files that configure Claude Code for projects. Use this skill when (1) initializing a new project with Claude Code configuration, (2) reviewing or improving existing CLAUDE.md files, (3) organizing project instructions using progressive disclosure patterns, (4) converting repeated instructions into permanent documentation, or (5) setting up agent_docs/ structures for larger codebases. Handles the WHAT/WHY/HOW framework, conciseness optimization, and file import patterns.

11 stars
1.2k downloads
Updated 3/4/2026

Package Files

Loading files...
SKILL.md

CLAUDE.md Manager

Create and maintain effective CLAUDE.md files that configure Claude Code's behavior for your project.

Core Workflow

1. Determine the Mode

Creating new CLAUDE.md:

  • Analyze project structure, tech stack, and conventions
  • Generate focused documentation using WHAT/WHY/HOW framework
  • Target under 100 lines (max 300)

Refreshing existing CLAUDE.md:

  • Audit current content for bloat, staleness, and anti-patterns
  • Identify instructions that should be externalized
  • Optimize for conciseness and relevance

2. Project Analysis (for new files)

Examine:

  • package.json, Cargo.toml, pyproject.toml, etc. for stack
  • Directory structure for architecture patterns
  • Existing README.md for project context
  • .github/, Makefile, scripts for workflows
  • Test directories for testing conventions

3. Apply the WHAT/WHY/HOW Framework

WHAT - Technical reality:

  • Tech stack and key dependencies
  • Directory structure and architecture
  • Key files and entry points

WHY - Context and purpose:

  • What the project does
  • Why certain patterns exist
  • Functional purpose of directories

HOW - Practical workflows:

  • Build commands (package manager specifics)
  • Test execution
  • Development workflow
  • Deployment process

4. Validation Review Pass

After creating or refreshing CLAUDE.md, validate claims against the actual codebase using OSGrep. This catches stale commands, incorrect paths, and drifted conventions.

Validation Steps

1. Validate Commands

# For each command documented, verify it exists
osgrep "dev server startup configuration" -p $REPO -m 3
osgrep "test runner setup" -p $REPO -m 3
osgrep "build script configuration" -p $REPO -m 3

2. Validate Directory Structure

# Verify directories contain what's documented
osgrep "component definitions" -p $REPO/src/components -m 3
osgrep "API route handlers" -p $REPO/src/routes -m 3

3. Validate @import References

# Check each @path/to/file reference exists
test -f $REPO/docs/architecture.md && echo "EXISTS" || echo "MISSING"

4. Validate Conventions

# Verify conventions match actual code patterns
osgrep "error handling patterns" -p $REPO -m 5
osgrep "state management approach" -p $REPO -m 5

Validation Report Format

## Validation Report
- [x] `pnpm dev` - Verified in package.json scripts
- [x] `/src/components` - Contains 23 .tsx files
- [ ] `/src/services` - **EMPTY** - No files found
- [ ] `@agent_docs/testing.md` - **MISSING**
- [ ] "No class components" - **VIOLATION**: Found 2 in /src/legacy/

Deep Validation with /review (Optional)

For large codebases or quarterly audits, run multi-agent review:

/compounding-engineering:workflows:review CLAUDE.md

This invokes architecture-strategist and pattern-recognition-specialist agents to thoroughly verify structure claims and convention accuracy.

Conciseness Rules

Critical constraint: Claude's context window is shared. Every line in CLAUDE.md competes with conversation history and system prompts. LLMs can follow ~150-200 instructions consistently; the system prompt already uses ~50.

Targets:

  • Ideal: Under 60 lines (like HumanLayer's production file)
  • Good: Under 100 lines
  • Maximum: 300 lines (refactor if exceeded)

Techniques:

  • Use file:line references instead of copying code
  • Externalize task-specific docs to agent_docs/
  • Remove anything Claude can infer from code
  • Delete obvious instructions (Claude reads code patterns)

Progressive Disclosure Pattern

When CLAUDE.md grows beyond 100 lines, split into focused files:

agent_docs/
├── building.md          # Build process details
├── testing.md           # Test conventions and execution
├── code-conventions.md  # Style and patterns
├── architecture.md      # System design decisions
└── deployment.md        # Release process

Reference in CLAUDE.md:

# Detailed Guides
- Building: @agent_docs/building.md
- Testing: @agent_docs/testing.md
- Architecture: @agent_docs/architecture.md

Claude loads these only when relevant.

File Import Syntax

CLAUDE.md supports @path/to/file imports:

  • @README.md - Import from project root
  • @docs/guide.md - Import from subdirectory
  • @~/.claude/personal.md - Personal preferences (not committed)
  • Works recursively up to 5 levels
  • Not evaluated inside code blocks

Anti-Patterns to Avoid

Never do these:

  1. Linting via LLM - Use hooks/pre-commit instead:

    # WRONG - Don't add to CLAUDE.md:
    "Always run eslint before committing"
    
    # RIGHT - Use a hook instead
    
  2. Auto-generated CLAUDE.md - /init produces suboptimal results. Craft manually.

  3. Exhaustive style guides - Claude learns from existing code patterns.

  4. Task-specific instructions in root file - Use agent_docs/ instead.

  5. Inline code snippets - Use file:line references that stay current.

  6. Secrets or credentials - CLAUDE.md should be treated as public.

Template Structure

# Project Name

Brief description of what this project does.

## Stack
- [Framework] with [Key libraries]
- [Database/Storage]
- [Key tooling]

## Structure
- `/src` - Application code
- `/tests` - Test suites
- `/docs` - Documentation

## Commands
- Dev: `npm run dev`
- Test: `npm test`
- Build: `npm run build`

## Conventions
- [Critical convention 1]
- [Critical convention 2]

## Workflow
- Branch naming: `feature/description`
- Commits: Conventional Commits format
- PR: Rebase before merge

## Architecture Notes
@docs/architecture.md (if complex)

Audit Checklist (for refresh)

When reviewing existing CLAUDE.md:

  • Under 100 lines? If not, identify extraction candidates
  • Using file:line refs instead of inline code?
  • Task-specific docs in agent_docs/?
  • No linting/style enforcement (use hooks)?
  • No credentials or secrets?
  • No obvious/inferable instructions?
  • All commands actually work?
  • Architecture info still accurate?
  • OSGrep validation run? (commands, directories, conventions)
  • File references still valid?

Global CLAUDE.md Reference

Every project CLAUDE.md should reference the global ~/.claude/CLAUDE.md and its folders. This gives sessions access to:

  • ~/.claude/plans/ — Dated plans (YYYY-MM-DD-description.md) related to the project/directory
  • ~/.claude/agent_docs/ — Domain guides (tools, local ML, RAG, active projects, skills)
  • ~/.claude/userModels/ — User personality and preference models

Reference with @ imports:

@~/.claude/CLAUDE.md
@~/.claude/agent_docs/active-projects.md

When creating a new CLAUDE.md, always check ~/.claude/plans/README.md for plans related to the project directory and link them.

Hierarchical Files

For monorepos, use CLAUDE.md at multiple levels:

/CLAUDE.md              # Repo-wide conventions
/frontend/CLAUDE.md     # Frontend-specific
/backend/CLAUDE.md      # Backend-specific
/services/auth/CLAUDE.md # Service-specific

Each file is concise and scope-appropriate.

Resources

  • references/best-practices.md - Deep dive on effectiveness patterns
  • references/templates.md - Project-type-specific templates
  • scripts/analyze_project.py - Automated project structure analysis

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

95/100Analyzed 2/19/2026

Highly comprehensive skill for managing CLAUDE.md files with clear workflow, validation steps, templates, and anti-patterns. Well-structured with excellent actionability and reusability. Contains all required elements including when-to-use guidance, structured steps, and proper metadata. No safety concerns.

100
95
90
95
95

Metadata

Licenseunknown
Version-
Updated3/4/2026
Publishertdimino

Tags

apici-cddatabasegithubgithub-actionsllmpromptingsecuritytesting