modular-large-file-refactor
Splits oversized files into manageable modules while maintaining existing functionality.
Install
mkdir -p .claude/skills/modular-large-file-refactor && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/10237" && unzip -o skill.zip -d .claude/skills/modular-large-file-refactor && rm skill.zipInstalls to .claude/skills/modular-large-file-refactor
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Refactor oversized source files into smaller, coherent modules while reducing complexity and preserving behavior. Use when Claude needs to split a large component, hook, service, command handler, or Rust module; untangle mixed responsibilities; extract helpers or submodules; or reorganize code into a clearer modular design without changing the public contract.Key capabilities
- →Split large files
- →Extract modules
- →Reduce complexity
- →Preserve behavior
How it works
Identifies responsibilities and extracts logic into focused modules while maintaining public APIs.
Inputs & outputs
When to use modular-large-file-refactor
- →Refactor a 1000-line file
- →Extract helpers into new modules
- →Improve modularity of services
About this skill
Modular Large File Refactor
Refactor one large file into a small set of focused modules without creating a mess of tiny shards. Optimize for lower cognitive load, stable public APIs, and obvious ownership boundaries.
Workflow
- Find the real target first. In this repository, start with the bundled
scripts/find_large_files.shhelper instead of ad-hoc shell pipelines. - Inspect the oversized file and list its responsibilities before touching code.
- Classify each block as one of: public API, orchestration, pure logic, state management, side effects, types, constants, or UI rendering.
- Choose the smallest useful module split that isolates responsibilities cleanly.
- Extract in safe order: constants/types first, pure helpers next, stateful logic after that, and orchestration last.
- Keep the original entrypoint stable unless the current public surface is the problem.
- Re-run the relevant validation after the split.
Built-in Large File Finder
Use the bundled script first:
bash scripts/find_large_files.sh
What it does well:
- scans the repo's real source roots
- ignores dependency and build directories
- highlights severe offenders at
1000+and800+lines - gives a quick ranked list before deeper analysis
Use the script output to pick the biggest meaningful source file, then start the modular split.
Split Decision Rules
Extract a new module when the code has one clear responsibility.
- Pure transforms, parsers, validators, formatters, and mappers belong in their own helpers.
- Shared types, schemas, and constants move out early because they reduce noise with low risk.
- Repeated UI subsections become components only if they own a meaningful chunk of markup or behavior.
- Stateful logic with a clean interface becomes a hook, service, or internal module.
Keep code together when separation would hide the story.
- Do not create
utils.tsorhelpers.tsdumping grounds. - Do not split a file just to reduce line count.
- Do not move tightly coupled code into distant files if the reader now has to bounce between five places to understand one flow.
Extraction Order
1. Stabilize boundaries
- Identify exports that other files already depend on.
- Preserve existing names and call shapes unless changing the contract is intentional.
- Prefer internal re-exports over churning imports across the repo.
2. Remove passive noise
- Extract constants, literal maps, small types, and Zod schemas first.
- Replace repeated inline conditions or object shapes with named helpers.
3. Isolate pure logic
- Pull complex branches into named functions with narrow inputs and outputs.
- Replace nested conditionals with guard clauses when it improves readability.
- Convert anonymous inline callbacks into named functions when they carry real logic.
4. Isolate stateful logic
- Move reusable or bulky state transitions into hooks, services, or internal modules.
- Keep side effects near the orchestration layer; do not bury network or filesystem calls in generic helpers.
5. Simplify the entrypoint
- Leave the original file as the facade that coordinates extracted parts.
- Aim for the top-level file to read like a table of contents for the feature.
Structural Targets
React and TypeScript
- Put shared UI pieces in sibling component files.
- Put non-visual behavior in hooks.
- Put backend calls in service modules that match existing project patterns.
- Put complex text/data transforms in pure helpers with explicit types.
Rust
- Keep the public module or command handler as the facade.
- Move focused logic into sibling modules under the same directory.
- Separate parsing, validation, repository access, and response formatting when they are currently interleaved.
Cross-cutting rule
- Prefer a small directory with 3-6 purposeful files over one huge file or fifteen trivial ones.
Complexity Reduction Moves
- Replace long
if/elseladders with lookup tables only when the behavior is data-driven. - Collapse duplicated setup/teardown into one helper with explicit naming.
- Break giant functions by phase: parse -> validate -> execute -> format.
- Narrow parameter lists by passing a well-named object only when the fields naturally belong together.
- Keep error handling explicit; do not add broad fallback behavior just to make extraction easier.
Anti-Patterns
- Splitting by arbitrary line ranges instead of responsibility
- Creating circular imports between extracted modules
- Hiding critical behavior in vaguely named helpers
- Moving repository or network calls into "pure" utility files
- Re-exporting everything from everywhere
- Changing filenames, symbols, and call paths more than the refactor requires
Output Expectation
When you finish, describe the refactor in this shape:
- What responsibilities were identified in the original file
- Which modules were extracted and why
- Which public entrypoints stayed stable
- Which risky areas were checked after the split
Reference
Read references/splitting-patterns.md when you need concrete module patterns for React/TypeScript or Rust, or when the right split boundary is not obvious.
When not to use it
- →Splitting for line count only
Prerequisites
Limitations
- →Do not create utility dumping grounds
How it compares
Optimizes for cognitive load and ownership boundaries rather than arbitrary line counts.
Compared to similar skills
modular-large-file-refactor side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| modular-large-file-refactor (this skill) | 0 | 4mo | Review | Advanced |
| software-architecture | 333 | 6mo | No flags | Intermediate |
| oracle | 17 | 2mo | Review | Intermediate |
| clojure-write | 16 | 3mo | No flags | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
software-architecture
davila7
Guide for quality focused software architecture. This skill should be used when users want to write code, design architecture, analyze code, in any case that relates to software development.
oracle
openclaw
Best practices for using the oracle CLI (prompt + file bundling, engines, sessions, and file attachment patterns).
clojure-write
metabase
Guide Clojure and ClojureScript development using REPL-driven workflow, coding conventions, and best practices. Use when writing, developing, or refactoring Clojure/ClojureScript code.
add-uint-support
pytorch
Add unsigned integer (uint) type support to PyTorch operators by updating AT_DISPATCH macros. Use when adding support for uint16, uint32, uint64 types to operators, kernels, or when user mentions enabling unsigned types, barebones unsigned types, or uint support.
cpp-pro
sickn33
Write idiomatic C++ code with modern features, RAII, smart pointers, and STL algorithms. Handles templates, move semantics, and performance optimization. Use PROACTIVELY for C++ refactoring, memory safety, or complex C++ patterns.
python-patterns
affaan-m
Pythonic 惯用法、PEP 8 标准、类型提示以及构建健壮、高效、可维护的 Python 应用程序的最佳实践。