code-transfer
Manages code insertion and extraction tasks, supporting both individual edits and large-scale refactoring.
Install
mkdir -p .claude/skills/code-transfer && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/4383" && unzip -o skill.zip -d .claude/skills/code-transfer && rm skill.zipInstalls to .claude/skills/code-transfer
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.
Transfer code between files with line-based precision. Use when users request copying code from one location to another, moving functions or classes between files, extracting code blocks, or inserting code at specific line numbers.Key capabilities
- →Batch-copies code across files
- →Inserts code at exact line numbers
- →Extracts function or class blocks into new files
- →Creates file backups before insertion
- →Handles multi-file refactoring at scale
How it works
It utilizes a python-based line_insert script for precision insertion or batch processing scripts for large-scale movement.
Inputs & outputs
When to use code-transfer
- →Extracting a class to a new file
- →Moving functions between modules
- →Inserting code blocks at specific lines
About this skill
Code Transfer
Transfer code between files with precise line-based control. Dual-mode operation: native tools (1-10 files) or execution mode (10+ files, 90% token savings).
Operation Modes
Basic Mode (Default)
Use Read, Edit, Bash scripts for 1-10 file operations. Works immediately, no setup required.
Execution Mode (10+ files)
from api.filesystem import batch_copy
from api.code_analysis import find_functions
functions = find_functions('app.py', pattern='handle_.*')
operations = [{
'source_file': 'app.py',
'start_line': f['start_line'],
'end_line': f['end_line'],
'target_file': 'handlers.py',
'target_line': -1
} for f in functions]
batch_copy(operations)
When to Use
- "copy this code to [file]"
- "move [function/class] to [file]"
- "extract this to a new file"
- "insert at line [number]"
- "reorganize into separate files"
Core Operations
1. Extract Source Code
Read(file_path="src/auth.py") # Full file
Read(file_path="src/auth.py", offset=10, limit=20) # Line range
Grep(pattern="def authenticate", -n=true, -A=10) # Find function
2. Insert at Specific Line
Use line_insert.py script for line-based insertion:
python3 skills/code-transfer/scripts/line_insert.py <file> <line_number> <code> [--backup]
Examples:
# Insert function at line 50
python3 skills/code-transfer/scripts/line_insert.py src/utils.py 50 "def helper():\n pass"
# Insert with backup
python3 skills/code-transfer/scripts/line_insert.py src/utils.py 50 "code" --backup
# Insert at beginning
python3 skills/code-transfer/scripts/line_insert.py src/new.py 1 "import os"
When to use:
- User specifies exact line number
- Inserting into new/empty files
- Inserting at beginning/end without context
3. Insert Relative to Content
Use Edit when insertion point is relative to existing code:
Edit(
file_path="src/utils.py",
old_string="def existing():\n pass",
new_string="def existing():\n pass\n\ndef new():\n return True"
)
Workflow Examples
Copy Function Between Files
- Find:
Grep(pattern="def validate_user", -n=true, -A=20) - Extract:
Read(file_path="auth.py", offset=45, limit=15) - Check target:
Read(file_path="validators.py") - Insert: Use
line_insert.pyor Edit based on context
Extract Class to New File
- Locate:
Grep(pattern="class DatabaseConnection", -n=true, -A=50) - Extract:
Read(file_path="original.py", offset=100, limit=50) - Create:
Write(file_path="database.py", content="<extracted>") - Update imports:
Editin original file - Remove old class:
Editwith replacement
Insert at Specific Line
- Validate:
Read(file_path="main.py", offset=20, limit=10) - Insert:
python3 skills/code-transfer/scripts/line_insert.py main.py 25 "logger.info('...')" --backup - Verify:
Read(file_path="main.py", offset=23, limit=5)
Reorganize Into Modules
- Analyze:
Read(file_path="utils.py") - Identify groups:
Grep(pattern="^def |^class ", -n=true) - Extract each category:
Writenew files - Update original: Re-export or redirect
Best Practices
Planning:
- Understand dependencies (imports, references)
- Identify exact start/end of code block
- Check target file structure
- Ensure necessary imports included
Preservation:
- Include docstrings and comments
- Transfer related functions together
- Update imports in both files
- Maintain formatting/indentation
Validation:
- Verify insertion placement
- Check syntax
- Test imports
- Suggest running tests
Backups:
- Use
--backupfor significant changes - Critical file operations
- Large deletions
Integration
- code-refactor: Refactor after transferring
- test-fixing: Run tests after reorganizing
- feature-planning: Plan large reorganizations
When not to use it
- →Manual quick-fix edits
- →Refactoring code that relies on complex IDE-specific symbol resolution
Limitations
- →May struggle with complex conditional logic in large files
- →Requires exact line reference knowledge
How it compares
It operates with precise line-level control instead of relying on generic LLM file-rewrite capabilities that might hallucinate or break context.
Compared to similar skills
code-transfer side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| code-transfer (this skill) | 1 | 9mo | Review | Beginner |
| ast-grep-find | 3 | 7mo | Review | Intermediate |
| clean | 4 | 3mo | Review | Intermediate |
| framework-migration-code-migrate | 1 | 4mo | No flags | Advanced |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by mhattingpete
View all by mhattingpete →You might also like
ast-grep-find
parcadei
AST-based code search and refactoring via ast-grep MCP
clean
catlog22
Intelligent code cleanup with mainline detection, stale artifact discovery, and safe execution. Supports targeted cleanup and confirmation.
framework-migration-code-migrate
sickn33
You are a code migration expert specializing in transitioning codebases between frameworks, languages, versions, and platforms. Generate comprehensive migration plans, automated migration scripts, and
tdd-migrate
parcadei
TDD workflow for migrations - orchestrate agents, zero main context growth
windsurf-multi-file-editing
jeremylongshore
Manage multi-file edits with Cascade coordination. Activate when users mention "multi-file edit", "edit multiple files", "cross-file changes", "refactor across files", or "batch modifications". Handles coordinated multi-file operations. Use when working with windsurf multi file editing functionality. Trigger with phrases like "windsurf multi file editing", "windsurf editing", "windsurf".
windsurf-refactoring-large
jeremylongshore
Manage large-scale refactoring with Cascade coordination. Activate when users mention "large refactoring", "codebase migration", "architecture refactor", "major refactoring", or "system-wide changes". Handles complex refactoring operations. Use when working with windsurf refactoring large functionality. Trigger with phrases like "windsurf refactoring large", "windsurf large", "windsurf".