skills$openclaw/codemod-gen
lxgicstudios5.5k

by lxgicstudios

codemod-gen – OpenClaw Skill

codemod-gen is an OpenClaw Skills integration for coding workflows. Generate codemods for large-scale code changes. Use when refactoring patterns across many files.

5.5k stars4.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namecodemod-gen
descriptionGenerate codemods for large-scale code changes. Use when refactoring patterns across many files. OpenClaw Skills integration.
ownerlxgicstudios
repositorylxgicstudios/codemod-gen
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lxgicstudios/codemod-gen
last updatedFeb 7, 2026

Maintainer

lxgicstudios

lxgicstudios

Maintains codemod-gen in the OpenClaw Skills directory.

View GitHub profile
File Explorer
9 files
.
src
cli.ts
684 B
index.ts
748 B
_meta.json
286 B
package-lock.json
30.2 KB
package.json
601 B
README.md
313 B
SKILL.md
2.2 KB
tsconfig.json
251 B
SKILL.md

name: codemod-gen description: Generate codemods for large-scale code changes. Use when refactoring patterns across many files.

Codemod 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:

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.

README.md

ai-codemod

AI-powered codemod generator for large-scale code changes

Install

npm install -g ai-codemod

Usage

npx ai-codemod "convert class components to functional"
npx ai-codemod "replace lodash.get with optional chaining"

Setup

export OPENAI_API_KEY=sk-...

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. Needs OPENAI_API_KEY environment variable. ```bash npx ai-codemod --help ```

FAQ

How do I install codemod-gen?

Run openclaw add @lxgicstudios/codemod-gen in your terminal. This installs codemod-gen into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lxgicstudios/codemod-gen. Review commits and README documentation before installing.