bwfc-migration

bwfc-migration is a skill for Claude Code, Codex from FritzAndFriends/BlazorWebFormsComponents. It costs 115 tokens per session (11,808 once invoked), scanned A, original, MIT.

A migration guide for moving ASP.NET Web Forms applications to Blazor Server, a .NET framework for interactive web interfaces. It uses the webforms-to-blazor command-line tool and BlazorWebFormsComponents.

In plain words
What is it for?
Use it to migrate ASPX markup, code-behind, project settings, session handling, page life cycles, and data binding. It also helps organize remaining migration tasks.
Why use it?
It reduces the manual work of converting older Web Forms pages and code. It also identifies parts that need decisions about application behavior and design.

Skill for Claude CodeCodex

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/fritzandfriends/blazorwebformscomponents/bwfc-migration
Any agent
npx skills add FritzAndFriends/BlazorWebFormsComponents --skill bwfc-migration
Clone the repo
git clone --depth 1 https://github.com/FritzAndFriends/BlazorWebFormsComponents

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/fritzandfriends/blazorwebformscomponents/bwfc-migration.svg)](https://agentmods.dev/skills/fritzandfriends/blazorwebformscomponents/bwfc-migration)
Your own site
<a href="https://agentmods.dev/skills/fritzandfriends/blazorwebformscomponents/bwfc-migration"><img src="https://agentmods.dev/badge/skills/fritzandfriends/blazorwebformscomponents/bwfc-migration.svg" alt="Measured on agentmods" height="20"></a>
Per session 115 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 11,808 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.00115 $0.11808
Opus 5 $0.00057 $0.05904
Sonnet 5 $0.00023 $0.02362
Haiku 4.5 $0.00012 $0.01181

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

Security

Grade A, and why

bwfc-migration 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 3d 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.

migration-toolkit/skills/bwfc-migration/SKILL.md · 1,158 lines

How it starts

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

Web Forms → Blazor Migration with BWFC

Overview

This skill orchestrates the full migration from ASP.NET Web Forms to Blazor Server using a three-layer architecture:

Layer Executor Coverage Description
L1: Deterministic webforms-to-blazor CLI tool ~70% 27 compiled transforms (16 markup + 11 code-behind), project scaffolding, config migration
L2: Contextual Copilot (this skill) ~15–20% TODO-driven transforms requiring semantic understanding — session state, lifecycle, data binding
L3: Architectural Developer ~10–15% Business logic, custom controls, auth flows, architectural decisions

The CLI tool emits structured // TODO(bwfc-*) comments and a JSON migration report. L2 reads that report and applies contextual transforms per TODO category.

Three-layer migration architecture:


Prerequisites

  • .NET 10 SDK or later
  • Install the global tool:
    dotnet tool install -g Fritz.WebFormsToBlazor
    
  • BlazorWebFormsComponents NuGet package (added automatically by the tool's scaffolding)

Critical Rules

🚨 CRITICAL: USE THE SHIMS — PRIMARY MIGRATION STRATEGY 🚨

ALWAYS inherit from WebFormsPageBase (via _Imports.razor) and use the Web Forms shims. The BlazorWebFormsComponents library provides shims that make Web Forms patterns work AS-IS in Blazor — no manual rewrites needed.

⛔ CRITICAL DATA-CONTROL RULE

  • NEVER replace <asp:ListView>, <asp:FormView>, <asp:GridView>, <asp:DataList>, or <asp:Repeater> with manual HTML, hand-built <table> markup, or @foreach loops.
  • ALWAYS migrate these controls to the BWFC component of the same name: <ListView>, <FormView>, <GridView>, <DataList>, <Repeater>.
  • These data-bound BWFC components already exist and are the correct migration target.
  • If generated BWFC markup is malformed or does not compile, repair the BWFC markup. Do not flatten the control into manual HTML.

Read the full file on GitHub · 1,158 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. 3d ago First seen · 1,158 lines · 115 tokens per session scan A c0842fcd3ffe

Subscribe to this mod's changes

bwfc-migration is a skill published in the GitHub repository FritzAndFriends/BlazorWebFormsComponents (449 stars, last pushed 2mo ago), licensed MIT. It adds 115 tokens to every session and 11,808 once invoked, about $0.0006 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

lumeo

Use when building or editing a Blazor UI that uses the Lumeo component library (the Lumeo NuGet package and its satellites Lumeo.Charts / Lumeo.DataGrid / Lumeo.Editor / Lumeo.Scheduler / Lumeo.Gantt / Lumeo.Motion), or when the user mentions Lumeo components (Button, DataGrid, Sheet, Dialog, Tabs, DatePicker, Toast…

Brain2k-0005/Lumeo · 125 tokens

vela

Compiler-exact code search for .NET solutions - find where a symbol is defined, every reference to it, who calls it, and what a change would break. Covers C#, VB, Razor Pages, MVC views and Blazor components, which grep and every other code-intelligence tool miss. Deterministic, built on Roslyn, never modifies the…

dbhq-uk/vela-skill · 164 tokens

dotnet-sonarjs

Use SonarJS-derived rules in .NET repositories that ship JavaScript or TypeScript frontends and need deeper bug-risk, code-smell, or cognitive-complexity checks than a minimal ESLint baseline. Use when the repo wants eslint-plugin-sonarjs locally or already runs SonarQube or SonarCloud in CI.

managedcode/PrompterOne · 75 tokens

dotnet-biome

Use Biome in .NET repositories that ship Node-based frontend assets and want a fast combined formatter-linter-import organizer for JavaScript, TypeScript, CSS, JSON, GraphQL, or HTML. Use when a repo prefers a modern all-in-one CLI over a larger ESLint plus Prettier style stack.

managedcode/PrompterOne · 68 tokens

dotnet-eslint

Use ESLint in .NET repositories that ship JavaScript, TypeScript, React, or other Node-based frontend assets. Use when a repo needs a configurable CLI lint gate for frontend correctness, import hygiene, unsafe patterns, or framework-specific rules.

managedcode/PrompterOne · 53 tokens

dotnet-vuln-scanner

.NET 组件漏洞扫描 skill。覆盖 NuGet 包、DLL 引用、配置文件中的依赖版本与 CVE/GHSA 触发条件。输出组件漏洞清单、可利用性评估和修复版本建议。.

jinyimeng01/net-code-audit-skill-master · 58 tokens