reclaude
Refactor CLAUDE.md files to follow progressive disclosure principles. Use when CLAUDE.md is too long or disorganized.
What this skill does
# 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 `## Verification` section 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 build` if 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 ```markdown # 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)
Related in Code Review
gstack
IncludedFast headless browser for QA testing and site dogfooding. Navigate pages, interact with elements, verify state, diff before/after, take annotated screenshots, test responsive layouts, forms, uploads, dialogs, and capture bug evidence. Use when asked to open or test a site, verify a deployment, dogfood a user flow, or file a bug with screenshots. (gstack)
startup-due-diligence
IncludedLegal due diligence review for seed-stage and Series A startups (US, Delaware C-Corp focus). Supports both investor and founder perspectives. Capabilities include: (1) Interactive document review and issue spotting; (2) Document request list generation; (3) Cap table and SAFE/convertible note analysis; (4) Red flag identification with severity ratings; (5) Diligence report generation. TRIGGERS: due diligence, DD, startup investment, cap table review, Series A, seed round, investor diligence, legal review startup, SAFE analysis, convertible note, 409A, founder vesting.
interview-master
IncludedThis skill should be used when the user asks to "generate interview questions", "prepare for interview", "optimize resume", "conduct mock interview", "analyze git commits for resume", "generate resume from code", "review my resume", or mentions interview preparation, career assistance, or extracting project experience from git history. Provides comprehensive interview and career development guidance for both job seekers and interviewers.
fix-issue
IncludedFixes GitHub issues using parallel analysis agents for root cause investigation, code exploration, and regression detection. Reads issue context from gh CLI, searches codebase and memory for related patterns, generates a fix with tests, and links the resolution back to the issue via PR. Includes prevention analysis to avoid recurrence. Use when debugging errors, resolving regressions, fixing bugs, or triaging issues.
sf-apex
IncludedGenerates and reviews Salesforce Apex code with 150-point scoring. TRIGGER when: user writes, reviews, or fixes Apex classes, triggers, test classes, batch/queueable/schedulable jobs, or touches .cls/.trigger files. DO NOT TRIGGER when: LWC JavaScript (use sf-lwc), Flow XML (use sf-flow), SOQL-only queries (use sf-soql), or non-Salesforce code.
swift-development
IncludedComprehensive Swift development for building, testing, and deploying iOS/macOS applications. Use when Claude needs to: (1) Build Swift packages or Xcode projects from command line, (2) Run tests with XCTest or Swift Testing framework, (3) Manage iOS simulators with simctl, (4) Handle code signing, provisioning profiles, and app distribution, (5) Format or lint Swift code with SwiftFormat/SwiftLint, (6) Work with Swift Package Manager (SPM), (7) Implement Swift 6 concurrency patterns (async/await, actors, Sendable), (8) Create SwiftUI views with MVVM architecture, (9) Set up Core Data or SwiftData persistence, or any other Swift/iOS/macOS development tasks.