codemod-gen
Generate codemods for large-scale code changes. Use when refactoring patterns across many files.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/lxgicstudios/ai-codemodCodemod Generator
You need to replace a pattern across 500 files. Find and replace won't cut it. This tool generates AST-based codemods that safely transform your code at scale.
One command. Zero config. Just works.
Quick Start
npx ai-codemod "convert class components to functional"
What It Does
- Generates jscodeshift codemods for your specific transformation
- Handles complex patterns like class to function conversions
- Preserves formatting and comments
- Works across entire codebases
Usage Examples
# Class to functional components
npx ai-codemod "convert class components to functional"
# Modernize code
npx ai-codemod "replace lodash.get with optional chaining"
# API migrations
npx ai-codemod "migrate from moment to date-fns"
# Framework upgrades
npx ai-codemod "update React Router v5 to v6"
Best Practices
- Test on a branch first - always run codemods on a fresh branch
- Review the diff - spot check that transformations are correct
- Run incrementally - do one file type at a time
- Keep the codemod - save it for future use
When to Use This
- Major framework or library upgrades
- Enforcing new code patterns across the codebase
- Deprecating old APIs in favor of new ones
- Standardizing code style at scale
Part of the LXGIC Dev Toolkit
This is one of 110+ free developer tools built by LXGIC Studios. No paywalls, no sign-ups, no API keys on free tiers. Just tools that work.
Find more:
- GitHub: https://github.com/LXGIC-Studios
- Twitter: https://x.com/lxgicstudios
- Substack: https://lxgicstudios.substack.com
- Website: https://lxgicstudios.com
Requirements
No install needed. Just run with npx. Node.js 18+ recommended. Needs OPENAI_API_KEY environment variable.
npx ai-codemod --help
How It Works
Takes your plain English description of the transformation and generates a jscodeshift codemod script. The AI understands AST manipulation and outputs a codemod you can run with jscodeshift or babel.
License
MIT. Free forever. Use it however you want.
Built by LXGIC Studios
- GitHub: github.com/lxgicstudios/ai-codemod
- Twitter: @lxgicstudios
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-lxgicstudios-ai-codemod": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
script-gen
Generate package.json scripts with AI. Use when setting up npm scripts.
email-template-gen
Generate responsive email templates. Use when building transactional emails.
branch-namer
Generate descriptive git branch names from plain English. Use when you need a branch name that follows conventions.
cloudflare-gen
Generate Cloudflare Workers configuration and code. Use when building on the edge.
adr-writer
Generate Architecture Decision Records with AI. Use when documenting technical decisions.