code-migration

code-migration is a skill for Claude Code, Codex from konveyor-ecosystem/playpen-pf-mig-skills. It costs 47 tokens per session (7,818 once invoked), scanned C, original, Apache-2.0.

A guided process for moving Java, Node.js, Python, Go, or .NET applications from one technology version or setup to another. It uses source-code analysis, build results, lint checks, tests, and target documentation to find migration problems.

In plain words
What is it for?
Use it to inspect an application before or during a migration, identify deprecated APIs and breaking changes, apply fixes, and validate the result with builds, linting, and tests.
Why use it?
Technology changes can break code in several different ways, and one check rarely finds them all. This brings those problems together so they can be fixed and checked systematically.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is nohup bash ./ci/start-console.sh > "$WORK_DIR/bridge.log" 2>&1 &.

Good fit Use it to inspect an application before or during a migration, identify deprecated APIs and breaking changes, apply fixes, and validate the result with builds, linting, and tests.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/konveyor-ecosystem/playpen-pf-mig-skills
agentmods
npx agentmods add skills/konveyor-ecosystem/playpen-pf-mig-skills/code-migration-inline

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for code-migration

README.md
[![agentmods](https://agentmods.dev/badge/skills/konveyor-ecosystem/playpen-pf-mig-skills/code-migration-inline/github.svg)](https://agentmods.dev/skills/konveyor-ecosystem/playpen-pf-mig-skills/code-migration-inline)
Your own site
<a href="https://agentmods.dev/skills/konveyor-ecosystem/playpen-pf-mig-skills/code-migration-inline"><img src="https://agentmods.dev/badge/skills/konveyor-ecosystem/playpen-pf-mig-skills/code-migration-inline/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for code-migration

Your own site · 80×15
<a href="https://agentmods.dev/skills/konveyor-ecosystem/playpen-pf-mig-skills/code-migration-inline"><img src="https://agentmods.dev/badge/skills/konveyor-ecosystem/playpen-pf-mig-skills/code-migration-inline.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,818 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00047 $0.07818
Opus 5 $0.00023 $0.03909
Sonnet 5 $0.00009 $0.01564
Haiku 4.5 $0.00005 $0.00782

Measured 9d ago against content hash 648905581099, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade C, and why

code-migration scanned grade C with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

The scan reads SKILL.md. This mod also ships 6 executable files (scripts/compare_screenshots.py, scripts/filter_kantra_false_positives.py, scripts/fix_deprecated_modal_wrapper.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Harvests environment variableshighData exfiltration

Enumerating or grepping the environment for keys collects credentials unrelated to what the mod says it does.

**5f. Collect credentials**: Extract `api_server`, `token`, `kubeconfig_path`, `ca_cert_path`, `context_name`, and `console_url`. Save to `$WORK_DIR/cluster-credentials.json`.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

**5a. Prerequisites**: Verify `kubectl` and `curl` are available. If `kind` is not installed, install it:
skills/code-migration-inline/SKILL.md · 736 lines

How it starts

The opening of the file, as written. The whole thing — 736 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Code Migration

Migrate applications by identifying issues from multiple sources, fixing them systematically, and validating the result.

Issue Sources

Collect issues from ALL of these sources during analysis.

Source Examples
Kantra analysis Deprecated APIs, breaking changes, migration patterns
Build errors Compilation failures, type errors, missing deps
Lint errors Style violations, unused imports
Test failures Broken tests from API changes
Target docs Breaking changes Kantra doesn't detect (check targets/<target>.md)

Kantra is a static source code analysis tool that uses rules to identify migration issues in the source code.


Phase 1: Discovery

Step 1: Explore Project Structure

Discover build system, test commands, and lint configuration.

Find build system:

File Found Build Command
package.json npm run build or yarn build
pom.xml mvn compile or mvn package
build.gradle / build.gradle.kts ./gradlew build
Makefile make
go.mod go build ./...
Cargo.toml cargo build
*.csproj / *.sln dotnet build

Find test commands:

Test Type How to Find
Unit tests Check package.json scripts for test, test:unit; or mvn test, go test ./...
Integration Look for test:integration, test:e2e scripts
E2E Look for Cypress (cypress run), Playwright (npx playwright test), or similar

Find lint command:

Tool Detection
ESLint .eslintrc* file → npm run lint or npx eslint .
Prettier .prettierrc* file → npx prettier --check .
Go golangci-lint run
Python flake8, pylint, ruff

Find dev server command:

Look for how to run the application locally (e.g., npm start, npm run dev).

Record findings:

Build: <command>
Dev server: <command>
Lint: <command>
Unit tests: <command>
Integration tests: <command>
E2E tests: <command>
Primary language: <language>

Read the full file on GitHub · 736 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 736 lines · 0 tokens per session scan C 648905581099

Subscribe to this mod's changes

code-migration is a skill published in the GitHub repository konveyor-ecosystem/playpen-pf-mig-skills (2 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 47 tokens to every session and 7,818 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it C with 2 findings (harvests environment variables, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

insight-error-page

Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…

vercel/next.js · 83 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens