
Reclaude
- 13 installs
- 356 repo stars
- Updated March 25, 2026
- brianlovin/agent-config
reclaude is a Claude skill that refactors CLAUDE.md files to follow progressive-disclosure principles, moving detail into rules files and ensuring a verification section.
About
reclaude refactors CLAUDE.md files to follow progressive-disclosure principles. It reports line count against thresholds, integrates workflow orchestration, ensures a Verification section exists, finds contradictions, and identifies content to extract into global skills or move into .claude/rules/. It targets a concise root CLAUDE.md with links to detailed rules files.
- Refactors CLAUDE.md files to follow progressive-disclosure principles
- Flags length (ideal <50, acceptable 50-100, refactor >100 lines) and moves detail into .claude/rules/
- Ensures a Verification section, integrates workflow orchestration, and finds contradictions
Reclaude by the numbers
- 13 all-time installs (skills.sh)
- Ranked #1,103 of 1,879 Documentation skills by installs in the Skillselion catalog
- Data as of Aug 1, 2026 (Skillselion catalog sync)
reclaude capabilities & compatibility
- Capabilities
- documentation · refactoring · claude md cleanup
- Use cases
- documentation · refactoring
- Pricing
- Free
What reclaude says it does
Refactor CLAUDE.md files to follow progressive disclosure principles.
**Needs refactoring**: >100 lines (move content to `.claude/rules/` files)
This is critical—Claude performs dramatically better when it can verify its work.
npx skills add https://github.com/brianlovin/agent-config --skill reclaudeAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 13 |
|---|---|
| repo stars | ★ 356 |
| Last updated | March 25, 2026 |
| Repository | brianlovin/agent-config ↗ |
What it does
Refactor a bloated or disorganized CLAUDE.md into a concise, progressive-disclosure file with rules files and verification.
Who is it for?
Cleaning up long or disorganized CLAUDE.md files
When should I use this skill?
Your CLAUDE.md is too long or disorganized
What you get
A concise root CLAUDE.md linking to rules files, with a verification section and no contradictions.
- Refactored CLAUDE.md
- .claude/rules/ files
- Verification section
By the numbers
- Length thresholds: <50 ideal, 50-100 acceptable, >100 refactor
- 8-step refactoring process
Files
reclaude
Refactor CLAUDE.md files to follow progressive disclosure principles.
Prompt
I want you to refactor my CLAUDE.md file to follow progressive disclosure principles.
Follow these steps:
1. Check length
Report the current line count. Flag issues:
- Ideal: <50 lines
- Acceptable: 50-100 lines
- Needs refactoring: >100 lines (move content to
.claude/rules/files)
2. Integrate workflow orchestration
Read the workflow skill at ~/.claude/skills/workflow/SKILL.md and incorporate its principles into the CLAUDE.md or a .claude/rules/workflow.md file. Adapt the content to fit the project — don't copy verbatim, but ensure the key behaviors are represented:
- Plan mode for non-trivial tasks
- Subagent strategy
- Self-improvement loop with
tasks/lessons.md - Verification before marking tasks done
- Elegance checks for non-trivial changes
- Autonomous bug fixing
For short CLAUDE.md files, add a concise workflow section. For longer ones, create .claude/rules/workflow.md and link to it.
3. Ensure verification section exists
Check for a ## Verification section with commands Claude can run after making changes. If missing:
- Look in package.json for test/lint/typecheck/build scripts
- Look for Makefile, justfile, or other task runners
- Add a
## Verificationsection with discovered commands
This is critical—Claude performs dramatically better when it can verify its work.
4. Find contradictions
Identify any instructions that conflict with each other. For each contradiction, ask me which version I want to keep.
5. Check for global skill extraction candidates
Look for content that could become a reusable global skill in ~/.claude/skills/:
- Is about a tool/framework (not project-specific)
- Same instructions appear (or would apply) in 2+ projects
- Is substantial (>20 lines)
If found, suggest creating a global skill with name and description.
6. Identify essentials for root CLAUDE.md
Extract only what belongs in the root CLAUDE.md:
- One-line project description
- Package manager (if not npm)
- Non-obvious commands only (skip
npm test,npm run buildif standard) - Links to
.claude/rules/files with brief descriptions - Verification section (always required)
7. Group remaining content
Organize remaining instructions into .claude/rules/ files by category (e.g., TypeScript conventions, testing patterns, API design, Git workflow).
8. Flag for deletion
Identify content that should be removed entirely:
- API documentation — link to external docs instead
- Code examples — Claude can infer from reading source files
- Interface/type definitions — these exist in the code
- Generic advice — "write clean code", "follow best practices"
- Obvious instructions — "use TypeScript for .ts files"
- Redundant info — things Claude already knows
- Too vague — instructions that aren't actionable
Target Template
# Project Name
One-line description.
## Commands
- `command` - what it does (only non-obvious ones)
## Rules
- [Topic](/.claude/rules/topic.md) — brief description
## Verification
After making changes:
- `npm test` - Run tests
- `npm run lint` - Check lintingWhat to Keep vs Remove
Keep in CLAUDE.md:
- Commands Claude can't guess from package.json
- Non-standard patterns specific to this project
- Project gotchas and footguns
- Links to detailed rules files
Move to `.claude/rules/`:
- Detailed conventions (>10 lines on a topic)
- Style guides
- Architecture decisions
- Workflow documentation
Remove entirely:
- Anything Claude can infer from reading the codebase
- Standard practices for the language/framework
- Documentation that exists elsewhere (link instead)
Related skills
FAQ
When should a CLAUDE.md be refactored?
When it exceeds 100 lines; ideal is under 50, acceptable is 50-100.
Where does detail go?
Into .claude/rules/ files grouped by category, with brief links from the root CLAUDE.md.
What is always required?
A Verification section with commands Claude can run after making changes.