maf-migration-plan-creator

maf-migration-plan-creator is a skill for Claude Code, Codex from joslat/maf-doctor. It costs 100 tokens per session (1,095 once invoked), scanned A, original, MIT.

A planning guide that creates a ready-to-run migration plan for moving a .NET codebase to a newer MAF version. MAF is the project's agent and workflow framework.

In plain words
What is it for?
Use it when no migration plan exists or when an audit shows the existing plan must be regenerated, using package inventories, API comparisons, code scans, and dependency checks.
Why use it?
It turns audit findings, package differences, obsolete APIs, and code structure into ordered work that an agent can follow. This reduces the need to design the migration plan by hand.

Skill for Claude CodeCodex

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

Good fit Use it when no migration plan exists or when an audit shows the existing plan must be regenerated, using package inventories, API comparisons, code scans, and dependency checks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/joslat/maf-doctor/maf-migration-plan-creator
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 joslat/maf-doctor --skill maf-migration-plan-creator
Clone the repo
git clone --depth 1 https://github.com/joslat/maf-doctor

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/joslat/maf-doctor/maf-migration-plan-creator/github.svg)](https://agentmods.dev/skills/joslat/maf-doctor/maf-migration-plan-creator)
Your own site
<a href="https://agentmods.dev/skills/joslat/maf-doctor/maf-migration-plan-creator"><img src="https://agentmods.dev/badge/skills/joslat/maf-doctor/maf-migration-plan-creator/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 maf-migration-plan-creator

Your own site · 80×15
<a href="https://agentmods.dev/skills/joslat/maf-doctor/maf-migration-plan-creator"><img src="https://agentmods.dev/badge/skills/joslat/maf-doctor/maf-migration-plan-creator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 100 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,095 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.
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.00100 $0.01095
Opus 5 $0.00050 $0.00548
Sonnet 5 $0.00020 $0.00219
Haiku 4.5 $0.00010 $0.00110

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

Security

Grade A, and why

maf-migration-plan-creator 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 12d 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.

.github/skills/maf-migration-plan-creator/SKILL.md · 97 lines

How it starts

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

migration-plan-creator

This skill produces a src/docs/migration-plan.md that the MAF Migration Agent can execute immediately — no manual editing needed.

When to Use This Skill

  • Starting a new MAF migration with no existing plan
  • Regenerating a plan after the maf-auditor agent has completed a codebase scan
  • Creating a plan for a different codebase (not the reference implementation)

How to Generate a Plan

Step 1 — Gather inputs

Before filling the template, you need:

  1. Package inventory — current versions from all .csproj files
  2. Source pattern scan results — from maf-auditor Phase C (what old patterns exist, which files, how many occurrences)
  3. API diff output — from dotnet-inspect diff (Phase B)
  4. CS0618 pre-check results — from maf-obsolete-api-registry cross-reference (Phase D)
  5. Fan-out topology — from maf-fan-out-validator pre-check (Phase E)

Step 2 — Assign Task IDs

Tasks are numbered by phase. Use this phase → task ID mapping:

Phase Tasks Description
1 T1.1, T1.2, … Package version updates
2 T2.1, T2.2, … Namespace changes
3 T3.1, T3.2, … Instructions/Tools placement
4 T4.1, T4.2, … Executor migration
5 T5.1, T5.2, … Session migration
6 T6.1, T6.2, … Response deserialization
7 T7.1, T7.2, … Streaming rename
8 T8.1, T8.2, … Event type rename
9 T9.1, T9.2, … DevUI/Hosting guard
10 T10.1, T10.2, … Verification grep checks
11 T11.1, T11.2 Polish and done

Step 3 — Fill the template

See template.md in this directory. Every task row must have:

  • Exact file path (relative to repo root)
  • Exact before/after code snippet (copy from source — do not paraphrase)
  • Guide section reference from maf-migration-guide SKILL.md section index
  • % Done: 0%
  • Verified: empty

Step 4 — Order tasks by dependency

Tasks MUST be ordered so that:

  • Packages are updated before any code changes
  • Namespaces are updated before executor migration
  • Source generator package is added before executor classes are created
  • Fan-out executor handlers are migrated before fan-in edges are added
  • DevUI guard is last (it depends on all other tasks completing)

Read the full file on GitHub · 97 lines

Files

What ships with it

1 file 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. 12d ago First seen · 97 lines · 100 tokens per session scan A b4979c770269

Subscribe to this mod's changes

maf-migration-plan-creator is a skill published in the GitHub repository joslat/maf-doctor (14 stars, last pushed 25d ago), licensed MIT. It adds 100 tokens to every session and 1,095 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-30.

Related

Other skills, from other repositories

winui-setup

Install and verify the prerequisites the win-dev-skills WinUI 3 toolchain depends on — .NET SDK 8.0.100+, WinApp CLI 0.6+, and Developer Mode. Use only when the user explicitly asks to set up or repair the toolchain. Do not invoke automatically when another skill reports a missing prerequisite; tell the user what is…

microsoft/win-dev-skills · 88 tokens

winui-wpf-migration

Migrate WPF applications to WinUI 3 — namespace replacement (System.Windows → Microsoft.UI.Xaml), control mapping (DataGrid→ListView, WrapPanel→ItemsRepeater, TabControl→TabView), threading (Dispatcher→DispatcherQueue), imaging (System.Drawing→BitmapImage), MVVM conversion to CommunityToolkit.Mvvm, and…

microsoft/win-dev-skills · 100 tokens

migrate-mstest-v3-to-v4

Use this skill before answering, planning, or editing any MSTest 3.x-to-4.x upgrade or post-upgrade failure. Triggers include "MSTest v4 breaking changes"; CS0507/CS0103/CS1061/CS1615; ExecuteAsync, CallerInfo, DisplayName, or custom TestMethodAttribute; ClassCleanupBehavior; ContainsKey; ThrowsExactly or…

managedcode/dotnet-skills · 179 tokens

wpf

Build and modernize WPF applications on .NET with correct XAML, data binding, commands, threading, styling, and Windows desktop migration decisions. USE FOR: working on WPF UI, MVVM, binding, commands, or desktop modernization; migrating WPF from .NET Framework to .NET; integrating newer Windows capabilities into a…

managedcode/dotnet-skills · 122 tokens

worker-services

Build long-running .NET background services with BackgroundService, Generic Host, graceful shutdown, configuration, logging, and deployment patterns suited to workers and daemons. USE FOR: background services; scheduled workers; hosted services; worker extraction; graceful shutdown, health checks, and service hosting…

managedcode/dotnet-skills · 109 tokens

mcp

Build or consume Model Context Protocol (MCP) servers and clients in .NET using the official MCP C# SDK, including stdio, Streamable HTTP, tools, prompts, resources, and capability negotiation. USE FOR: .NET MCP servers or clients; stdio versus HTTP transport choices; tools, resources, prompts, completions, and…

managedcode/dotnet-skills · 123 tokens