migration-plan

migration-plan is a skill for Claude Code, Codex from sananthanarayan/skilldrop. It costs 92 tokens per session (1,608 once invoked), scanned A, original, MIT.

A planning guide for moving a system from one technical setup to another in controlled phases. It covers changes such as database structure, APIs, storage systems, platforms, or login providers.

In plain words
What is it for?
Use it to plan database migrations, API upgrades, storage replacements, platform moves, or authentication-provider changes.
Why use it?
It reduces the risk of outages and data mistakes by keeping changes reversible where possible, checking results between phases, and naming the point where reversal is no longer possible.

Skill for Claude CodeCodex

Part of the skilldrop plugin — 51 skills, 4 agents shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/sananthanarayan/skilldrop/migration-plan
Any agent
npx skills add sananthanarayan/skilldrop --skill migration-plan
Clone the repo
git clone --depth 1 https://github.com/sananthanarayan/skilldrop

Made for: Claude Code, Codex.

Or install skilldrop, the plugin that ships this one along with the rest of its 51 skills, 4 agents.

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 migration-plan

README.md
[![agentmods](https://agentmods.dev/badge/skills/sananthanarayan/skilldrop/migration-plan.svg)](https://agentmods.dev/skills/sananthanarayan/skilldrop/migration-plan)
Your own site
<a href="https://agentmods.dev/skills/sananthanarayan/skilldrop/migration-plan"><img src="https://agentmods.dev/badge/skills/sananthanarayan/skilldrop/migration-plan.svg" alt="Measured on agentmods" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,608 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00092 $0.01608
Opus 5 $0.00046 $0.00804
Sonnet 5 $0.00018 $0.00322
Haiku 4.5 $0.00009 $0.00161

Measured 4d ago against content hash f11b570b88a5, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

migration-plan scanned grade A with 0 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 4d ago.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/migration-plan/SKILL.md · 69 lines

How it starts

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

migration-plan

Plans the road from current state to target state so that at every moment the system is in a stable, reversible position — until the one explicitly named point of no return. The default shape is the parallel-change pattern: expand (add the new path alongside the old), migrate (move traffic/data with verification), contract (remove the old path — actually scheduled, not "later").

How to respond

  1. Pin both ends. Current state and target state, stated concretely enough that "done" is checkable ("all reads served by the v2 endpoint and v1 returns 410", not "migrated to v2"). Ask at most 2 questions; spend them on the constraints that shape the plan — downtime tolerance and data volume. Everything else gets [assumption].

  2. Cut phases by the one-change rule. Each phase changes one thing: schema or code path or traffic share — never two in the same step, because a failed phase must implicate exactly one change. ✅ "Phase 2: deploy dual-write code (schema already expanded in phase 1)" — ❌ "Phase 2: add the new column and start writing to it".

  3. Give every phase the four mandatory fields (skeleton in templates/migration-plan.md):

    • Action — what changes
    • Gate — observable criteria to pass before the next phase (error rates, data parity, shadow-diff results), plus bake time; a zero-bake gate is a gate in name only
    • Rollback — the tested way back, ✅ "flip flag orders_v2_read off; old path still receives dual writes, no data loss" — ❌ "redeploy previous version" when data has already moved
    • Blast radius — who/what is affected if this phase fails If a phase has no real rollback, it is the point of no return: name it in bold, schedule it as late as possible, and list what must be verified immediately before crossing it. A plan may have one; a plan with three has its phases cut wrong.
  4. Specify the backfill like an engineer will run it at 2am. Idempotent (safe to re-run), resumable (checkpointed, not restart-from-zero), rate-limited (with the limit and the metric that triggers slowdown), and verified by parity checks at three depths: row/object counts, checksums or aggregates per partition, and a sampled deep-compare. Dual-write without a reconciliation job is drift with a delay timer — if the plan dual-writes, it names the reconciler and its alert.

Read the full file on GitHub · 69 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 4d ago First seen · 69 lines · 92 tokens per session scan A f11b570b88a5

Subscribe to this mod's changes

migration-plan is a skill published in the GitHub repository sananthanarayan/skilldrop (2 stars, last pushed 20d ago), licensed MIT. It adds 92 tokens to every session and 1,608 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. 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

cloud-architect

Designs cloud architectures, creates migration plans, generates cost optimization recommendations, and produces disaster recovery strategies across AWS, Azure, and GCP. Use when designing cloud architectures, planning migrations, or optimizing multi-cloud deployments. Invoke for Well-Architected Framework, cost…

Jeffallan/claude-skills · 71 tokens

azmon-mirroredcatalogs-operations-cli

Brings Azure Monitor, Application Insights, and Log Analytics telemetry into Fabric as Eventhouse external delta tables and correlates it with business data. Use to onboard observability data, judge whether latency or availability affected revenue, or build a Real-Time dashboard and Operations Agent over it.

microsoft/skills-for-fabric · 66 tokens

atmos-auth

Authentication and identity management: providers (SSO/SAML/OIDC/GCP/Atmos Pro), identities, keyring, identity chaining, login/exec/shell/console, and github/sts for private GitHub access.

cloudposse/atmos · 48 tokens

terraform-search-import

Discover existing cloud resources using Terraform Search queries and bulk import them into Terraform management. Use when bringing unmanaged infrastructure under Terraform control, auditing cloud resources, or migrating to IaC.

hashicorp/agent-skills · 39 tokens

x-scorecard

OpenSSF Scorecard for assessing open source project security. Check security best practices and compliance. Dependency: This is an x-cmd module. Install x-cmd first (see x-cmd skill for installation options). see x-cmd skill for installation.

x-cmd/x-cmd · 57 tokens

ssh-mcp-helper

Use when 用户希望安装、配置或新增 ssh-mcp-server 的 MCP 连接(如「帮我装一下 ssh-mcp-server」「给 Cursor/Claude Code 配置 SSH MCP」「在已有 MCP 里加一台远程主机」「ssh-mcp-server 的 mcp.json 怎么写」)。技能通过逐步问答收集主机、认证、传输模式、命令限制等参数,并把生成的 mcpServers JSON 片段写入对应客户端的配置文件。.

classfang/ssh-mcp-server · 110 tokens