From trace-mcp
Guides apply_codemod usage for bulk mechanical code changes like regex replacements, function updates, or import fixes across files. Use for any repeated edit pattern 2+ times instead of multiple Edit calls; includes dry-run previews and workflows.
npx claudepluginhub nikolai-vysotskyi/trace-mcp --plugin trace-mcpThis skill uses the workspace's default tool permissions.
`apply_codemod` is the correct tool for any repeated mechanical change. Using `Edit` for the same pattern twice or more is a waste of tokens and is error-prone.
Batch refactors code across multiple files using MorphLLM edit_file. Use for renaming patterns everywhere, style updates, large files (500+ lines), or 5+ edits per file.
Generates jscodeshift codemods from natural language prompts for large-scale code refactoring across files. Use for framework upgrades, library migrations, and pattern enforcement.
Decomposes large-scale changes like migrations, refactors, and codemods into 5-30 independent units, spawns parallel agents in isolated git worktrees, runs tests, and opens PRs for 10+ files.
Share bugs, ideas, or general feedback.
apply_codemod is the correct tool for any repeated mechanical change. Using Edit for the same pattern twice or more is a waste of tokens and is error-prone.
If you are about to make the same kind of change 2 or more times — whether in one file or across many — stop and use apply_codemod. This includes:
async/await to a set of functionsNo exceptions. "It's just three edits" is still a violation — use apply_codemod.
apply_codemod({
pattern: "oldFunction\\(",
replacement: "newFunction(",
file_pattern: "src/**/*.ts",
dry_run: true // default
})
Review the preview: matched files, context lines, and replacement correctness. Look for false positives.
Use filter_content to only touch files that also contain a second marker:
apply_codemod({
pattern: "extractNodes\\(",
replacement: "extractNodes(ctx, ",
file_pattern: "src/**/*.ts",
filter_content: "import.*extractNodes",
dry_run: true
})
For patterns that cross line boundaries, enable multiline mode:
apply_codemod({
pattern: "function\\s+foo\\([^)]*\\)\\s*\\{",
replacement: "async function foo() {",
multiline: true,
dry_run: true
})
apply_codemod({ ..., dry_run: false })
If more than 20 files are affected, add confirm_large: true.
register_edit is not needed for codemods — apply_codemod handles reindexing internally.check_quality_gates with scope: "changed".For changes that span packages or require version awareness (e.g. upgrading a dependency), use plan_batch_change first:
plan_batch_change({
package: "lodash",
from_version: "4.17.0",
to_version: "5.0.0"
})
This returns an impact report with all affected files and import references. Combine it with apply_codemod for the actual rewrite.
Edit with replace_all for renames — use apply_rename (see trace-mcp-refactoring).Edit calls with the same old_string pattern shape — use apply_codemod.confirm_large: true on changes >20 files.