Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/zdanovichnick/dotnet-pilot/vertical-slicenpx skills add zdanovichnick/dotnet-pilot --skill vertical-slicegit clone --depth 1 https://github.com/zdanovichnick/dotnet-pilotWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/zdanovichnick/dotnet-pilot/vertical-slice)<a href="https://agentmods.dev/skills/zdanovichnick/dotnet-pilot/vertical-slice"><img src="https://agentmods.dev/badge/skills/zdanovichnick/dotnet-pilot/vertical-slice.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00035 | $0.01609 |
| Opus 5 | $0.00017 | $0.00805 |
| Sonnet 5 | $0.00007 | $0.00322 |
| Haiku 4.5 | $0.00003 | $0.00161 |
Grade A, and why
vertical-slice scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 213 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Vertical Slice Architecture
Reference material for structuring .NET APIs by feature rather than by layer.
Core Concept
Organize code by feature (vertical slice), not by technical layer (horizontal). Each slice owns everything needed for one feature: endpoint, handler, DTOs, validation. Two features never share request/response types — coupling through shared DTOs is how VSA projects collapse back into layered code.
Use when: ≤10 aggregates, CRUD-heavy API, team prefers feature-branch isolation, or Clean Architecture feels like over-engineering.
Avoid when: rich domain model with 10+ aggregates, complex cross-aggregate business rules, or event sourcing is on the roadmap — prefer Clean Architecture or DDD instead. See knowledge/decisions/adr-005-multi-architecture.md.
Folder Structure
src/MyApp/
Features/
Orders/
CreateOrder/
CreateOrderEndpoint.cs # IEndpointGroup implementation
CreateOrderHandler.cs # Command handler (or inline in endpoint)
CreateOrderRequest.cs # Input DTO record
CreateOrderResponse.cs # Output DTO record
CreateOrderValidator.cs # FluentValidation validator
GetOrder/
GetOrderEndpoint.cs
GetOrderQuery.cs
GetOrderResponse.cs
CancelOrder/
CancelOrderEndpoint.cs
CancelOrderCommand.cs
Domain/ # Shared only if 2+ features use it
Orders/
Order.cs
OrderStatus.cs
Infrastructure/
Persistence/
AppDbContext.cs
Configurations/
Program.cs
The Domain/ folder is for shared domain concepts only. If only one feature references an entity, keep it inside that feature's folder.
IEndpointGroup Pattern
Each feature registers its own route via IEndpointGroup. The interface is registered and scanned in Program.cs.
public interface IEndpointGroup
{
void MapEndpoints(IEndpointRouteBuilder app);
}
// Features/Orders/CreateOrder/CreateOrderEndpoint.cs
public class CreateOrderEndpoint : IEndpointGroup
{
public void MapEndpoints(IEndpointRouteBuilder app)
{
app.MapPost("/orders", HandleAsync)
.WithName("CreateOrder")
.WithOpenApi()
.AddEndpointFilter<ValidationFilter<CreateOrderRequest>>()
.RequireAuthorization();
}
private static async Task<IResult> HandleAsync(
CreateOrderRequest request,
AppDbContext db,
CancellationToken ct)
{
var order = new Order(request.CustomerId, request.Items);
db.Orders.Add(order);
await db.SaveChangesAsync(ct);
return TypedResults.Created($"/orders/{order.Id}", new CreateOrderResponse(order.Id));
}
}
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 213 lines · 35 tokens per session scan A ec734a227a30
vertical-slice is a skill published in the GitHub repository zdanovichnick/dotnet-pilot (4 stars, last pushed 9d ago), licensed MIT. It adds 35 tokens to every session and 1,609 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
update-dependencies
Use when the task in front of you is to move dependency pins — packages in either stack, Rust crates, tools, SDKs, GitHub Action references, or container images — or to find out which of them are behind and whether any changed licence.
language-csharp
C# and .NET idioms — .NET 8 LTS, C# NRT, records, value semantics, switch expressions, async/await, Task, ValueTask, CancellationToken, ConfigureAwait, IOptions , LINQ, Span , ArrayPool, hot path, allocation profiling, and performance. Auto-load when working with .cs files, .csproj, .sln, Directory.Build.props, or…
writing-csharp
Idiomatic C# /.NET development. Use when writing C# code, changing .csproj or .sln, or working on ASP.NET Core apps, libraries, CLIs, workers, and xUnit/NUnit/MSTest suites. Emphasizes nullable references, async/await, LINQ discipline, boundary validation, focused dotnet feedback, and minimal dependencies. NOT for Go…
dotnet-backend-expert
This skill should be used when the user is writing, reviewing, debugging, or architecting pure .NET backend code for Kestrel-hosted services. It provides expert critique for REST endpoints, SignalR hubs, TypeScript/React client integration shape, pragmatic Rust interop, application services, AppHost-aware project…
write-dotnet-code
Write and review C#/.NET code in Dynamo following Dynamo coding standards, modern C# patterns, and repo conventions. Use this skill whenever writing C# code, reviewing a PR diff, designing types, managing PublicAPI surface files, choosing patterns, making performance decisions, or refactoring in the Dynamo codebase.…
clean-dotnet-code
Perform janitorial tasks on C#/.NET code including cleanup, modernization, and tech debt remediation.