aspnet-core
작성자: openai
ASP.NET Core 웹 애플리케이션을 빌드, 검토, 리팩터링 또는 설계할 때 .NET 웹 개발에 대한 최신 공식 지침을 사용합니다. Blazor Web 작업 시 사용…
npx skills add https://github.com/openai/skills --skill aspnet-coreASP.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
- 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:
- Add cross-cutting references only as needed:
- 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
WebApplicationBuilderandWebApplication. Avoid olderStartupandWebHostpatterns 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.
Execution Notes
- When generating new code, start from the correct
dotnet newtemplate 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.
openai의 다른 스킬
commit
openai
현재 변경 사항과 세션 기록을 사용하여 올바른 git 커밋을 생성합니다.
official
yeet
openai
로컬 변경 사항을 GitHub에 게시하려면 범위를 확인하고, 의도적으로 커밋하고, 브랜치를 푸시하고, GitHub 앱을 통해 초안 PR을 엽니다.
official
codex-cli-runtime
openai
Claude Code에서 codex-companion 런타임을 호출하기 위한 내부 헬퍼 계약
official
codex-result-handling
openai
Codex 도우미 출력을 사용자에게 다시 제시하기 위한 내부 지침
official
gpt-5-4-prompting
openai
Codex 및 GPT-5.4 프롬프트를 작성하기 위한 내부 지침으로, Codex Claude Code 플러그인 내에서 코딩, 리뷰, 진단 및 연구 작업을 수행할 때 사용됩니다.
official
babysit-pr
openai
GitHub 풀 리퀘스트가 생성된 후 리뷰 코멘트, CI 검사/워크플로우 실행, 병합 가능 상태를 지속적으로 폴링하여 PR이 완료될 때까지 관리합니다.
official
code-breaking-changes
openai
호환성 깨는 변경
official
code-review
openai
풀 리퀘스트에 대한 최종 코드 리뷰 실행
official