Skip to content
Skill

aspnet-core

by openai

AI Summary

This booster helps developers build, review, and architect ASP.NET Core web applications by providing guidance aligned with current Microsoft best practices. It's essential for teams working with Blazor, Razor Pages, APIs, and other ASP.NET Core patterns.

Install

Copy this and paste it into Claude Code, Cursor, or any AI assistant:

I want to install the "aspnet-core" skill in my project.

Please run this command in my terminal:
# Install skill into your project (17 files)
mkdir -p .claude/skills/aspnet-core && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/aspnet-core/SKILL.md "https://raw.githubusercontent.com/openai/skills/main/skills/.curated/aspnet-core/SKILL.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/aspnet-core/LICENSE.txt "https://raw.githubusercontent.com/openai/skills/main/skills/.curated/aspnet-core/LICENSE.txt" && mkdir -p .claude/skills/aspnet-core/agents && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/aspnet-core/agents/openai.yaml "https://raw.githubusercontent.com/openai/skills/main/skills/.curated/aspnet-core/agents/openai.yaml" && mkdir -p .claude/skills/aspnet-core/assets && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/aspnet-core/assets/dotnet-logo.png "https://raw.githubusercontent.com/openai/skills/main/skills/.curated/aspnet-core/assets/dotnet-logo.png" && mkdir -p .claude/skills/aspnet-core/references && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/aspnet-core/references/_sections.md "https://raw.githubusercontent.com/openai/skills/main/skills/.curated/aspnet-core/references/_sections.md" && mkdir -p .claude/skills/aspnet-core/references && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/aspnet-core/references/apis-minimal-and-controllers.md "https://raw.githubusercontent.com/openai/skills/main/skills/.curated/aspnet-core/references/apis-minimal-and-controllers.md" && mkdir -p .claude/skills/aspnet-core/references && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/aspnet-core/references/data-state-and-services.md "https://raw.githubusercontent.com/openai/skills/main/skills/.curated/aspnet-core/references/data-state-and-services.md" && mkdir -p .claude/skills/aspnet-core/references && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/aspnet-core/references/program-and-pipeline.md "https://raw.githubusercontent.com/openai/skills/main/skills/.curated/aspnet-core/references/program-and-pipeline.md" && mkdir -p .claude/skills/aspnet-core/references && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/aspnet-core/references/realtime-grpc-and-background-work.md "https://raw.githubusercontent.com/openai/skills/main/skills/.curated/aspnet-core/references/realtime-grpc-and-background-work.md" && mkdir -p .claude/skills/aspnet-core/references && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/aspnet-core/references/security-and-identity.md "https://raw.githubusercontent.com/openai/skills/main/skills/.curated/aspnet-core/references/security-and-identity.md" && mkdir -p .claude/skills/aspnet-core/references && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/aspnet-core/references/source-map.md "https://raw.githubusercontent.com/openai/skills/main/skills/.curated/aspnet-core/references/source-map.md" && mkdir -p .claude/skills/aspnet-core/references && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/aspnet-core/references/stack-selection.md "https://raw.githubusercontent.com/openai/skills/main/skills/.curated/aspnet-core/references/stack-selection.md" && mkdir -p .claude/skills/aspnet-core/references && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/aspnet-core/references/testing-performance-and-operations.md "https://raw.githubusercontent.com/openai/skills/main/skills/.curated/aspnet-core/references/testing-performance-and-operations.md" && mkdir -p .claude/skills/aspnet-core/references && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/aspnet-core/references/ui-blazor.md "https://raw.githubusercontent.com/openai/skills/main/skills/.curated/aspnet-core/references/ui-blazor.md" && mkdir -p .claude/skills/aspnet-core/references && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/aspnet-core/references/ui-mvc.md "https://raw.githubusercontent.com/openai/skills/main/skills/.curated/aspnet-core/references/ui-mvc.md" && mkdir -p .claude/skills/aspnet-core/references && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/aspnet-core/references/ui-razor-pages.md "https://raw.githubusercontent.com/openai/skills/main/skills/.curated/aspnet-core/references/ui-razor-pages.md" && mkdir -p .claude/skills/aspnet-core/references && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/aspnet-core/references/versioning-and-upgrades.md "https://raw.githubusercontent.com/openai/skills/main/skills/.curated/aspnet-core/references/versioning-and-upgrades.md"

Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.

Description

Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.

Overview

Choose the right ASP.NET Core application model, compose the host and request pipeline correctly, and implement features in the framework style Microsoft documents today. Load the smallest set of references that fits the task. Do not load every reference by default.

Workflow

• Confirm the target framework, SDK, and current app model. • Open references/stack-selection.md first for new apps or major refactors. • Open references/program-and-pipeline.md next for Program.cs, DI, configuration, middleware, routing, logging, and static assets. • Open exactly one primary app-model reference: • references/ui-blazor.md • references/ui-razor-pages.md • references/ui-mvc.md • references/apis-minimal-and-controllers.md • Add cross-cutting references only as needed: • references/data-state-and-services.md • references/security-and-identity.md • references/realtime-grpc-and-background-work.md • references/testing-performance-and-operations.md • Open references/versioning-and-upgrades.md before introducing new platform APIs into an older solution or when migrating between major versions. • Use references/source-map.md when you need the Microsoft Learn section that corresponds to a task not already covered by the focused references.

Default Operating Assumptions

• Prefer the latest stable ASP.NET Core and .NET unless the repository or user request pins an older target. • As of March 2026, prefer .NET 10 / ASP.NET Core 10 for new production work. Treat ASP.NET Core 11 as preview unless the user explicitly asks for preview features. • Prefer WebApplicationBuilder and WebApplication. Avoid older Startup and WebHost patterns unless the codebase already uses them or the task is migration. • Prefer built-in DI, options/configuration, logging, ProblemDetails, OpenAPI, health checks, rate limiting, output caching, and Identity before adding third-party infrastructure. • Keep feature slices cohesive so the page, component, endpoint, controller, validation, service, data access, and tests are easy to trace. • Respect the existing app model. Do not rewrite Razor Pages to MVC or controllers to Minimal APIs without a clear reason.

Reference Guide

• references/_sections.md: Quick index and reading order. • references/stack-selection.md: Choose the right ASP.NET Core application model and template. • references/program-and-pipeline.md: Structure Program.cs, services, middleware, routing, configuration, logging, and static assets. • references/ui-blazor.md: Build Blazor Web Apps, choose render modes, and use components, forms, and JS interop correctly. • references/ui-razor-pages.md: Build page-focused server-rendered apps with handlers, model binding, and conventions. • references/ui-mvc.md: Build controller/view applications with clear separation of concerns. • references/apis-minimal-and-controllers.md: Build HTTP APIs with Minimal APIs or controllers, including validation and response patterns. • references/data-state-and-services.md: Use EF Core, DbContext, options, IHttpClientFactory, session, temp data, and app state responsibly. • references/security-and-identity.md: Apply authentication, authorization, Identity, secrets, data protection, CORS, CSRF, and HTTPS guidance. • references/realtime-grpc-and-background-work.md: Use SignalR, gRPC, and hosted services. • references/testing-performance-and-operations.md: Add integration tests, browser tests, caching, compression, health checks, rate limits, and deployment concerns. • references/versioning-and-upgrades.md: Handle target frameworks, breaking changes, obsolete APIs, and migrations. • references/source-map.md: Map the official ASP.NET Core documentation tree to the references in this skill.

Discussion

0/2000
Loading comments...

Health Signals

MaintenanceCommitted 10d ago
Active
Adoption1K+ stars on GitHub
16.8k ★ · Popular
DocsREADME + description
Well-documented

GitHub Signals

Stars16.8k
Forks1.0k
Issues188
Updated10d ago
View on GitHub
No License

My Fox Den

Community Rating

Sign in to rate this booster

Works With

Claude Code