From arbiter-skills
Routes to the correct Arbiter .NET library specialist skill based on the user's needs — Mediation, CommandQuery, Mapping, Dispatcher, Communication, Services, OpenTelemetry, or Messaging.ServiceBus.
How this skill is triggered — by the user, by Claude, or both
Slash command
/arbiter-skills:arbiter-overviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Arbiter (https://github.com/loresoft/Arbiter) is a family of small .NET libraries built around the Mediator pattern and CQRS. Pick packages à la carte.
Arbiter (https://github.com/loresoft/Arbiter) is a family of small .NET libraries built around the Mediator pattern and CQRS. Pick packages à la carte.
| Need | Package | Specialist skill |
|---|---|---|
In-process mediator (IRequest, INotification, pipeline behaviors) | Arbiter.Mediation | arbiter-mediation |
| CQRS commands/queries, filtering, paging, behaviors | Arbiter.CommandQuery | arbiter-commandquery |
| EF Core handlers for the base commands/queries | Arbiter.CommandQuery.EntityFramework | arbiter-commandquery-ef |
| MongoDB handlers for the base commands/queries | Arbiter.CommandQuery.MongoDB | arbiter-commandquery-mongo |
| Minimal API endpoints exposing commands/queries as REST | Arbiter.CommandQuery.Endpoints | arbiter-endpoints |
| MVC controllers exposing commands/queries | Arbiter.CommandQuery.Mvc | arbiter-mvc |
| Source-generated object mapping | Arbiter.Mapping (+ .Generators) | arbiter-mapping |
Blazor dispatcher (WASM/Server/Auto), ModelStateEditor | Arbiter.Dispatcher.Client + Arbiter.Dispatcher.Server | arbiter-dispatcher |
| Email + SMS templates and delivery | Arbiter.Communication + .Azure / .Graph / .Twilio | arbiter-communication |
| CSV, encryption, caching, tokens, URL builder | Arbiter.Services | arbiter-services |
| OpenTelemetry tracing/metrics for Arbiter | Arbiter.OpenTelemetry + .Server / .Monitor | arbiter-opentelemetry |
| Azure Service Bus integration | Arbiter.Messaging.ServiceBus | arbiter-messaging-servicebus |
A common Arbiter app stacks several packages:
Arbiter.Mediation ← always required
Arbiter.CommandQuery ← if you want CQRS commands/queries
Arbiter.Mapping ← for read-model / DTO mapping
Arbiter.CommandQuery.EntityFramework ← pick one data provider
Arbiter.CommandQuery.Endpoints ← pick one web surface
ValueTask<TResponse?>.EntityQuery is the unified query shape (paged or non-paged); use FilterOperators / SortDirections enums (v2.0+).[GenerateMapper] + MapperProfile<TSrc,TDst>; register each closed mapper plus ServiceProviderMapper.IHaveIdentifier<TKey>. Tracked/audited/soft-delete/tenant behaviors are opt-in via marker interfaces.Ask Claude to load the specialist skill — e.g. "use arbiter-commandquery-ef" — or just describe the concrete task ("register CRUD handlers for my Product entity with EF Core") and the matching skill will trigger automatically.
npx claudepluginhub loresoft/arbiter --plugin arbiter-skillsProvides ASP.NET Core MVC controller base classes for exposing Arbiter CQRS commands and queries via controllers instead of minimal API endpoints.
Provides .NET ecosystem guidance: C#/F# language features, project structure, NuGet package selection, and architecture decisions across ASP.NET Core, Blazor, EF Core, and cloud/desktop/mobile targets.
Guides ABP Framework v10.x development with solution templates, layered architecture, module system, CLI commands, and DDD conventions. Use for creating or working on ABP projects.