New to Claude Skills? Learn how to install them →

openai on GitHub

ASP.NET Core

OfficialFree

Build and architect ASP.NET Core applications with official guidance.

by openai24.8k stars on openai/skills
1 views
Updated Jun 24, 2026
Get this skill

Free · Opens the source repo

What ASP.NET Core does

The ASP.NET Core skill provides developers with a structured approach to building, reviewing, refactoring, and architecting web applications using the latest official guidance from Microsoft. It covers various aspects of ASP.NET Core, including Blazor Web Apps, Razor Pages, MVC, Minimal APIs, and more. By following this skill, you can ensure that your application is built using the most current practices and features available in the framework.

This skill emphasizes a careful selection of references tailored to the specific task at hand, allowing developers to avoid unnecessary complexity. It guides users through the development process, starting from confirming the target framework and SDK, to selecting the appropriate application model, and finally implementing features in line with Microsoft's documentation. This structured workflow is particularly beneficial for developers who want to maintain consistency and quality in their ASP.NET Core applications.

Additionally, the skill includes references for cross-cutting concerns such as security, data management, and performance testing. This comprehensive approach ensures that all critical aspects of application development are addressed, from dependency injection and middleware to authentication and deployment strategies. Whether you are starting a new project or upgrading an existing one, this skill provides the necessary resources to navigate the complexities of ASP.NET Core development effectively.

Overall, the ASP.NET Core skill is designed for developers who aim to leverage the full capabilities of the ASP.NET Core framework while adhering to best practices and current standards. It is a valuable resource for anyone involved in .NET web development, ensuring that applications are robust, maintainable, and aligned with the latest advancements in the technology.

When to use it

Use this skill when starting new ASP.NET Core projects or refactoring existing applications to align with current best practices.

When not to use it

This skill may not be suitable for projects that require legacy ASP.NET frameworks or for teams not looking to adopt the latest ASP.NET Core features.

What you can build with it

Starting a New ASP.NET Core Project

Use this skill to select the appropriate application model and set up your project following current best practices.

Refactoring an Existing Application

Leverage the skill to identify outdated patterns and update your application to align with the latest ASP.NET Core features.

Implementing Security Features

Refer to the skill for guidance on applying authentication and authorization best practices in your ASP.NET Core applications.

How to install ASP.NET Core

View source

1. Install with the skills CLI

npx skills add openai/skills/aspnet-core --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by openai

ASP.NET Core

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

  1. Confirm the target framework, SDK, and current app model.
  2. Open references/stack-selection.md first for new apps or major refactors.
  3. Open references/program-and-pipeline.md next for Program.cs, DI, configuration, middleware, routing, logging, and static assets.
  4. Open exactly one primary app-model reference:
  5. Add cross-cutting references only as needed:
  6. Open references/versioning-and-upgrades.md before introducing new platform APIs into an older solution or when migrating between major versions.
  7. 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

Execution Notes

  • When generating new code, start from the correct dotnet new template and keep the generated structure recognizable.
  • When editing an existing solution, follow the solution's conventions first and use these references to avoid framework misuse or outdated patterns.
  • When a task mentions "latest", verify the feature on Microsoft Learn or the ASP.NET Core docs repo before relying on memory.

Frequently asked questions about ASP.NET Core

Similar skills