Expert .NET 10 Full-Stack Developer skill. Use this when implementing new features, vertical slices, or modifying existing logic in the JJGNET Broadcasting application. It covers Domain, Data (EF Core), Managers, Api, and Web.
Installation
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Expert .NET 10 Full-Stack Developer skill. Use this when implementing new features, vertical slices, or modifying existing logic in the JJGNET Broadcasting application. It covers Domain, Data (EF Core), Managers, Api, and Web.
.NET Feature Implementation Skill
Overview
This skill guides the implementation of features following the Clean Architecture pattern used in JJGNET Broadcasting. It ensures consistency across the Domain, Data, Managers, API, and Web layers.
Architecture Flow
API: Implement Controllers and Services. (Depends on Managers)
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 JosephGuadagno.Broadcasting.Web;).
Injection: ALWAYS inject Interfaces (IUserManager), never concrete types.
Async: ALWAYS use async/await throughout the stack.