Skill
.NET Router Skill
Primary router skill for broad .NET work.
dotnet skills install dotnet
Use ManagedCode.Communication when a .NET application needs explicit result objects, structured errors, and predictable service or API boundaries instead of exception-driven control flow.
ManagedCode.Communication into services or APIs- service result contracts - application manager boundaries - API endpoints that translate results into HTTP responses
flowchart LR
A["Domain or service operation"] --> B["ManagedCode.Communication result"]
B --> C["Application or API boundary"]
C --> D["HTTP response or caller-visible contract"]Primary router skill for broad .NET work.
dotnet skills install dotnet
Design or review .NET solution architecture across modular monoliths, clean architecture, vertical slices, microservices, DDD, CQRS, and cloud-native boundaries without…
dotnet skills install architecture
Review .NET changes for bugs, regressions, architectural drift, missing tests, incorrect async or disposal behavior, and platform-specific pitfalls before you approve or merge…
dotnet skills install code-review