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.
npx agentmods add skills/fritzandfriends/blazorwebformscomponents/bwfc-data-migrationnpx skills add FritzAndFriends/BlazorWebFormsComponents --skill bwfc-data-migrationgit clone --depth 1 https://github.com/FritzAndFriends/BlazorWebFormsComponentsWrote 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.
[](https://agentmods.dev/skills/fritzandfriends/blazorwebformscomponents/bwfc-data-migration)<a href="https://agentmods.dev/skills/fritzandfriends/blazorwebformscomponents/bwfc-data-migration"><img src="https://agentmods.dev/badge/skills/fritzandfriends/blazorwebformscomponents/bwfc-data-migration.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00130 | $0.05141 |
| Opus 5 | $0.00065 | $0.02570 |
| Sonnet 5 | $0.00026 | $0.01028 |
| Haiku 4.5 | $0.00013 | $0.00514 |
Grade A, and why
bwfc-data-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.
How it starts
The opening of the file, as written. The whole thing — 591 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Web Forms Data Access & Architecture Migration
Overview
Covers data access and architecture migration — the Layer 2/3 decisions requiring project-specific judgment.
Related: /bwfc-migration (markup), /bwfc-identity-migration (auth)
When to Use This Skill
- Convert
SelectMethodstring →SelectHandlerdelegate, replaceDataSourcecontrols with service injection - Migrate Entity Framework 6 → EF Core
- Convert
Session/ViewState/Applicationstate to Blazor patterns - Migrate
Global.asax→Program.cs,Web.config→appsettings.json - Replace HTTP Handlers/Modules with middleware
Critical Rules
Session State Migration
Use SessionShim (Default — Works Everywhere)
Pages inheriting WebFormsPageBase get a Session property backed by SessionShim.
SessionShim works in BOTH SSR and interactive modes:
- SSR: Reads/writes to ASP.NET Core
ISession(cookie-backed) - Interactive: Uses in-memory
ConcurrentDictionaryscoped per circuit
Original Web Forms:
Session["CartId"] = Guid.NewGuid().ToString();
var cartId = Session["CartId"].ToString();
Session["payment_amt"] = 99.99m;
Migrated Blazor (IDENTICAL):
Session["CartId"] = Guid.NewGuid().ToString();
var cartId = Session["CartId"].ToString();
Session["payment_amt"] = 99.99m;
No IHttpContextAccessor. No Minimal API. No cookies. Just Session["key"].
For non-page components, inject SessionShim directly:
@inject SessionShim Session
@code {
protected override void OnInitialized()
{
var userId = Session["UserId"]?.ToString() ?? "guest";
}
}
When to Upgrade Beyond SessionShim
Only consider alternatives when you need cross-tab or cross-server persistence:
ProtectedBrowserStorage — For data that must survive page refreshes:
@inject ProtectedSessionStorage SessionStorage
protected override async Task OnAfterRenderAsync(bool firstRender)
{
if (firstRender)
{
var result = await SessionStorage.GetAsync<ShoppingCart>("cart");
cart = result.Success ? result.Value! : new ShoppingCart();
}
}
What ships with it
2 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.
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.
- 3d ago First seen · 591 lines · 130 tokens per session scan A c62c4d2b074e
bwfc-data-migration is a skill published in the GitHub repository FritzAndFriends/BlazorWebFormsComponents (449 stars, last pushed 2mo ago), licensed MIT. It adds 130 tokens to every session and 5,141 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.
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…
csharp-dotnet
Use when writing, reviewing, testing, or shipping C# / .NET code — ASP.NET Core APIs (minimal APIs vs controllers), EF Core data access, async correctness, solution layout in .cs/.csproj/.sln. NOT a Java/Spring backend (that is spring-boot), NOT a Node/TypeScript backend (that is nestjs), NOT framework-neutral REST…
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…
dotnet-microsoft-agent-framework
Build .NET AI agents and multi-agent workflows with Microsoft Agent Framework using the right agent type, threads, tools, workflows, hosting protocols, and enterprise guardrails.
dotnet-code-analysis
Use the free built-in .NET SDK analyzers and analysis levels with gradual Roslyn warning promotion. Use when a .NET repo needs first-party code analysis, EnableNETAnalyzers, AnalysisLevel, or warning-as-error policy wired into build and CI.
dotnet-tunit
Write, run, or repair .NET tests that use TUnit. Use when a repo uses TUnit, TUnit.Playwright, [Test], [Arguments], ClassDataSource, SharedType.PerTestSession, or Microsoft.Testing.Platform-based execution.