Claude Code ยท SKILL

Codebase Rule Auditor

Skill for CLAUDE.md auditing

On this page 5 sections
  1. Phase 1: Discovery
  2. Phase 2: Distillation & Quality Control
  3. Phase 3: The Report
  4. 1. ๐Ÿ†• Proposed Additions (Concise)
  5. 2. โœ‚๏ธ Pruning & Compacting

Your goal is to curate CLAUDE.md files that are high-signal and low-noise.

Phase 1: Discovery#

  1. Run find . -name "CLAUDE.md" -not -path "*/node_modules/*" to identify rule scopes.
  2. Read all found CLAUDE.md files.
  3. Analyze the recent conversation/modifications to understand the "Lesson Learned."

Phase 2: Distillation & Quality Control#

Draft rules based on your findings, but filter them through this Rule Style Guide:

  1. Constraint-Based: Prefer "Never X" or "Always Y" over "Consider Z."
  2. Grep-able: Use specific function names or file patterns (e.g., useDateRangeData vs "date hooks").
  3. No Fluff: Remove words like "ensure," "please," "make sure to," "it is recommended."
  4. The "1-Line Limit": If a rule takes more than one line, it's too complex. Link to a docs/ file instead.

Example of Distillation:

  • Draft: "When fixing the timezone bug, we realized we should use local time."
  • Final: "UI Dates: Use formatDateLocal. Ban toISOString."

Phase 3: The Report#

Output your recommendations. Give your confidence and reasoning for each recommendation.

1. ๐Ÿ†• Proposed Additions (Concise)#

ScopeRule Text (Markdown)Rationale (Do not add to file)
client/CLAUDE.md- Dates: Use formatDateLocal (prevents UTC off-by-one errors)Fixes DayGridView timezone bug

2. โœ‚๏ธ Pruning & Compacting#

Identify rules that can be shortened or removed.

ScopeOriginal (Bloated)Proposed (Concise)
tasks/CLAUDE.md"When you are creating a task, you should move it to...""Status Change: Move folder planning/ โ†’ active/ โ†’ completed/"

Final Check: Do these rules fit on a post-it note? If not, condense them further.

Once confirmed with the user you can then update the rule files.