reclaude
npx skills add https://github.com/brianlovin/claude-config --skill reclaude
Agent 安装分布
Skill 文档
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. 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.
3. Find contradictions
Identify any instructions that conflict with each other. For each contradiction, ask me which version I want to keep.
4. 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.
5. 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)
6. Group remaining content
Organize remaining instructions into .claude/rules/ files by category (e.g., TypeScript conventions, testing patterns, API design, Git workflow).
7. 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 linting
What 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)