wicked-garden-engineering-migration-engineer

wicked-garden-engineering-migration-engineer is a skill for Claude Code from mikeparcewski/wicked-garden. It costs 136 tokens per session (2,791 once invoked), scanned A, original, MIT.

A guide for changing live production systems safely. It covers database structure changes, data backfills, API deprecations, rollback plans, and the expand-contract pattern, where changes are introduced in compatible stages.

In plain words
What is it for?
Use it when renaming or reshaping fields, splitting or merging tables or services, changing data types, retiring APIs, or changing message formats.
Why use it?
It reduces the risk of breaking running software while data and users are still active.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter; mentions subagents.

Part of the wicked-garden plugin — 148 skills, 5 commands, 1 agent, 13 hooks shipped together

Good fit Use it when renaming or reshaping fields, splitting or merging tables or services, changing data types, retiring APIs, or changing message formats.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mikeparcewski/wicked-garden/engineering-migration-engineer
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.

Any agent
npx skills add mikeparcewski/wicked-garden --skill engineering-migration-engineer
Clone the repo
git clone --depth 1 https://github.com/mikeparcewski/wicked-garden

Made for: Claude Code.

Or install wicked-garden, the plugin that ships this one along with the rest of its 148 skills, 5 commands, 1 agent, 13 hooks.

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 wicked-garden-engineering-migration-engineer

README.md
[![agentmods](https://agentmods.dev/badge/skills/mikeparcewski/wicked-garden/engineering-migration-engineer.svg)](https://agentmods.dev/skills/mikeparcewski/wicked-garden/engineering-migration-engineer)
Your own site
<a href="https://agentmods.dev/skills/mikeparcewski/wicked-garden/engineering-migration-engineer"><img src="https://agentmods.dev/badge/skills/mikeparcewski/wicked-garden/engineering-migration-engineer.svg" alt="Measured on agentmods" height="20"></a>
Per session 136 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,791 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 18
    Skill selects an external model or provider that may use a different account or billing plan than the operator expects. Undisclosed model switches can cause unexpected cost or quota consumption.
    Fix: Remove the model/provider override or disclose it prominently and require explicit operator approval before invoking an external coding CLI or billed model.
How audits are shown
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.00136 $0.02791
Opus 5 $0.00068 $0.01396
Sonnet 5 $0.00027 $0.00558
Haiku 4.5 $0.00014 $0.00279

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

Security

Grade A, and why

wicked-garden-engineering-migration-engineer 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 8d 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/engineering-migration-engineer/SKILL.md · 328 lines

How it starts

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

Migration Engineer

You move live production systems from one shape to another without breaking them. You specialize in the expand-contract pattern, dual-write/backfill pipelines, versioned deprecation, and verifiable rollback plans. You are the role that answers "how do we ship this breaking change safely?"

When to Invoke

  • Any database schema change beyond adding a nullable column
  • Splitting or merging tables / services
  • Renaming fields or primary keys
  • Changing data types or tightening constraints
  • Sunsetting API versions
  • Consolidating duplicate data sources
  • Breaking changes to event payloads or message formats
  • Multi-month data reshape with production ongoing

For mechanical codebase migrations (cross-cutting refactors, dialect/framework ports, bulk transforms — no production data in flight), the sibling knowledge module engineering/large-scale-migration covers the map→transform→gate pattern.

First Strategy: Use wicked-* Ecosystem

  • Search: Use wicked-garden:search to inventory call sites, consumers, and references
  • Memory: Use the wicked-garden-mem skill (recall action) to recall past migration patterns and pitfalls
  • Data Architect: Coordinate on target schema design
  • Contract Testing: Coordinate on API version compatibility matrix
  • Tasks: Track migration phases via TaskCreate/TaskUpdate with metadata={event_type, chain_id, source_agent, phase}

Core Pattern: Expand-Contract

Every non-additive change follows the same five-phase pattern:

┌─────────┐   ┌──────────┐   ┌──────────┐   ┌───────────┐   ┌─────────┐
│ EXPAND  │ → │ BACKFILL │ → │ MIGRATE  │ → │  CUTOVER  │ → │ CONTRACT│
│  (add)  │   │  (fill)  │   │ (switch) │   │ (enforce) │   │ (drop)  │
└─────────┘   └──────────┘   └──────────┘   └───────────┘   └─────────┘
   both           new          writers          readers         old
   live           shape          on new          on new          dies

Read the full file on GitHub · 328 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. 8d ago First seen · 328 lines · 136 tokens per session scan A 80743bdba061

Subscribe to this mod's changes

wicked-garden-engineering-migration-engineer is a skill published in the GitHub repository mikeparcewski/wicked-garden (9 stars, last pushed yesterday), licensed MIT. It adds 136 tokens to every session and 2,791 once invoked, about $0.0007 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

event-store-design

Design and implement event stores for event-sourced systems. Use when building event sourcing infrastructure, choosing event store technologies, or implementing event persistence patterns.

wshobson/agents · 33 tokens

convex-explain-app

Explain an existing Convex app — data model + relationships, public vs internal functions, auth/ownership model, components, a request→data flow — read from the schema and function surface. Read-only.

openclaw/clawhub · 47 tokens

platform-custom-field-generate

Use this skill when users need to create, generate, or validate Salesforce Custom Field metadata. Trigger when users mention custom fields, field types, Roll-up Summary fields, Master-Detail relationships, Lookup relationships, formula fields, picklists, dependent (controlling) picklists, referencing a value set from…

forcedotcom/sf-skills · 194 tokens

openloomi-api

OpenLoomi ships a local-first HTTP API served from the desktop app (port 3414, fallback 3515). All auth, Memory, AI, RAG, Loop, and Audit data live in a local SQLite database — your data stays on your machine and the OpenLoomi app is the source of truth. The only externally-routed auth path is the Composio OAuth…

melandlabs/openloomi · 106 tokens

nornicdb-grpc

Drive NornicDB over gRPC — the Qdrant-compatible surface (Collections, Points, Snapshots) plus the additive NornicSearch service. Use when ingesting via Qdrant SDKs, migrating from Qdrant, or running hybrid text+vector search from a non-Bolt client. Covers connection, RPC catalog, collection→database mapping…

orneryd/NornicDB · 98 tokens

field-service-sobject-create-configure

Headless 360 REST API deployment step for creating sObject records. Handles describe-based field discovery, required-field derivation, entity-relationship ordering, and composite graph transactions. Use this skill when a designer skill (or a user directly) needs to create sObject records after design confirmation…

forcedotcom/sf-skills · 74 tokens