aspnet-core
Build, debug, modernize, or review ASP.NET Core applications with correct hosting, middleware, security, configuration, logging, and deployment patterns on…
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. USE FOR: integrating ManagedCode.Communication into services or APIs; replacing
$ npx -y skills add managedcode/dotnet-skills --skill managedcode-communication --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/managedcode-communicationContext preview
The summary Claude sees to decide when to auto-load this skill.
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. USE FOR: integrating ManagedCode.Communication into services or APIs; replacing
name: managedcode-communication description: "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. USE FOR: integrating ManagedCode.Communication into services or APIs; replacing exception-driven result handling with explicit results; reviewing service boundaries that return. DO NOT USE FOR: unrelated stacks; generic tasks that do not need this specific guidance. INVOKES: inspect the repository context, edit targeted files, and run relevant build, test, lint, or validation commands when changes are made." compatibility: "Requires a .NET application, service layer, or API boundary that integrates ManagedCode.Communication."
Use the package that matches the boundary. Current upstream release reviewed: `v10.2.2`.
dotnet add package ManagedCode.Communication dotnet add package ManagedCode.Communication.AspNetCore dotnet add package ManagedCode.Communication.Extensions dotnet add package ManagedCode.Communication.Orleans
For pinned project files:
<PackageReference Include="ManagedCode.Communication" Version="10.2.2" /> <PackageReference Include="ManagedCode.Communication.AspNetCore" Version="10.2.2" /> <PackageReference Include="ManagedCode.Communication.Extensions" Version="10.2.2" /> <PackageReference Include="ManagedCode.Communication.Orleans" Version="10.2.2" />
1. Confirm the boundary where the library belongs:
2. Keep result creation and error mapping explicit instead of mixing exceptions, nulls, and ad-hoc tuples. 3. Pattern-match result objects at the boundary that converts them into user-facing responses. 4. Do not hide domain failures behind generic success wrappers. 5. Configure framework integration only where it removes manual translation:
6. Validate positive, negative, and error-path handling after integration.
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"]
public sealed class OrderService(IOrderRepository orders)
{
public async Task<Result<OrderDto>> GetAsync(Guid id, CancellationToken ct)
{
var order = await orders.FindAsync(id, ct);
return order is null
? Result<OrderDto>.FailNotFound($"Order {id} was not found.")
: Result<OrderDto>.Succeed(OrderDto.From(order));
}
}Use this shape when absence, validation, authorization, or domain rejection is an expected outcome. Reserve exceptions for unexpected infrastructure faults.
var builder = WebApplication.CreateBuilder(args);
builder.Services.ConfigureCommunication();
var app = builder.Build();
app.MapGroup("/orders")
.WithCommunicationResults()
.MapPost(string.Empty, async (CreateOrder command, OrderService orders, CancellationToken ct) =>
await orders.CreateAsync(command, ct));Handlers can return `Result` or `Result<T>` and let the extension package map failures to HTTP results and problem details at the API boundary.
public async Task<Result<OrderReceipt>> CreateAsync(CreateOrder command, CancellationToken ct)
{
var validation = Validate(command);
if (validation.IsFailed)
{
return Result<OrderReceipt>.Fail(validation.Problem!);
}
return await Result<Order>.From(() => BuildOrder(command))
.ThenAsync(order => SaveAsync(order, ct))
.Then(order => Result<OrderReceipt>.Succeed(new OrderReceipt(order.Id, order.CreatedAt)));
}Use railway-style composition when each step can return a result and the caller should stop at the first real failure.
Stop explaining .NET to your AI. Start building. We've all been there: asking Claude to use Entity Framework, only to get EF6 patterns in a .NET 8 project. Explaining to Copilot that Blazor Server and Blazor WebAssembly aren't the same thing.
Repo: managedcode/dotnet-skills
Build, debug, modernize, or review ASP.NET Core applications with correct hosting, middleware, security, configuration, logging, and deployment patterns on…
Build, upgrade, and operate Aspire 13.5.x C# or TypeScript application hosts with the current CLI, AppHost, ServiceDefaults, integrations, dashboard, testing,…
Build, review, or migrate Azure Functions in .NET with correct execution model, isolated worker setup, bindings, DI, and Durable Functions patterns. USE FOR:…
Build and review Blazor applications across server, WebAssembly, web app, and hybrid scenarios with correct component design, state flow, rendering, and…
Maintain or migrate EF6-based applications with realistic guidance on what to keep, what to modernize, and when EF Core is or is not the right next step. USE…
Design, tune, or review EF Core data access with proper modeling, migrations, query translation, performance, and lifetime management for modern .NET…