Expert .NET 10 Full-Stack Developer skill. Use this when implementing new features, vertical slices, or modifying existing logic in the MoreSpeakers application. It covers Domain, Data (EF Core), Managers, and Web (Razor Pages + HTMX).
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Expert .NET 10 Full-Stack Developer skill. Use this when implementing new features, vertical slices, or modifying existing logic in the MoreSpeakers application. It covers Domain, Data (EF Core), Managers, and Web (Razor Pages + HTMX).
.NET Feature Implementation Skill
Overview
This skill guides the implementation of features following the Clean Architecture pattern used in MoreSpeakers.com. It ensures consistency across the Domain, Data, Managers, and Web layers.
Architecture Flow
Domain: Define Interfaces, Models, and Enums. (No dependencies)
Data: Implement DataStores using EF Core. (Depends on Domain)
Managers: Implement Business Logic. (Depends on Data + Domain)
Web: Implement UI with Razor Pages and HTMX. (Depends on Managers)
Coding Standards
General C# Guidelines
Namespaces: ALWAYS use File-Scoped Namespaces (e.g., namespace MoreSpeakers.Web;).
Injection: ALWAYS inject Interfaces (IUserManager), never concrete types.
Async: ALWAYS use async/await throughout the stack.
1. Domain Layer (src/MoreSpeakers.Domain)
Models should be POCOs with DataAnnotations for validation.
Interfaces (IDataStore, IManager) should return Task<T>.
2. Data Layer (src/MoreSpeakers.Data)
Pattern: Repository/DataStore pattern.
Context: Use MoreSpeakersDbContext.
Mapping: Use AutoMapper to map between Entity and Domain models if they differ.
NO Migrations: Do not run EF migrations. Schema is handled by sql-schema skill.