minimal-api-endpoint-scaffolder

minimal-api-endpoint-scaffolder is a skill for Claude Code, Codex from StefanTheCode/dotnet-ai-toolkit. It costs 106 tokens per session (662 once invoked), scanned A, original, MIT.

A guide for creating ASP.NET Core Minimal API endpoints using a pattern that keeps each request, route handler, and response together. It includes input validation, typed results, route groups, and OpenAPI documentation, which describes an API for people and tools.

In plain words
What is it for?
Use it to add Minimal API endpoints, convert controller actions, group related routes, add validation, define typed responses, or document routes with OpenAPI.
Why use it?
It reduces the boilerplate and inconsistency that can appear when adding API routes. It also makes expected inputs, outputs, validation errors, and HTTP status codes explicit.

Skill for Claude CodeCodex

Part of the dotnet-ai-toolkit plugin — 49 skills shipped together

Install

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.

agentmods
npx agentmods add skills/stefanthecode/dotnet-ai-toolkit/minimal-api-endpoint-scaffolder
Any agent
npx skills add StefanTheCode/dotnet-ai-toolkit --skill minimal-api-endpoint-scaffolder
Clone the repo
git clone --depth 1 https://github.com/StefanTheCode/dotnet-ai-toolkit

Made for: Claude Code, Codex.

Or install dotnet-ai-toolkit, the plugin that ships this one along with the rest of its 49 skills.

Wrote 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.

agentmods badge for minimal-api-endpoint-scaffolder

README.md
[![agentmods](https://agentmods.dev/badge/skills/stefanthecode/dotnet-ai-toolkit/minimal-api-endpoint-scaffolder.svg)](https://agentmods.dev/skills/stefanthecode/dotnet-ai-toolkit/minimal-api-endpoint-scaffolder)
Your own site
<a href="https://agentmods.dev/skills/stefanthecode/dotnet-ai-toolkit/minimal-api-endpoint-scaffolder"><img src="https://agentmods.dev/badge/skills/stefanthecode/dotnet-ai-toolkit/minimal-api-endpoint-scaffolder.svg" alt="Measured on agentmods" height="20"></a>
Per session 106 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 662 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00106 $0.00662
Opus 5 $0.00053 $0.00331
Sonnet 5 $0.00021 $0.00132
Haiku 4.5 $0.00011 $0.00066

Measured 5d ago against content hash 449c427a1478, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

minimal-api-endpoint-scaffolder 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 5d 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.

skills/minimal-api-endpoint-scaffolder/SKILL.md · 60 lines

How it starts

The opening of the file, as written. The whole thing — 60 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Minimal API Endpoint Scaffolder

Generate clean ASP.NET Core Minimal API endpoints — one feature per endpoint (REPR), validated, with TypedResults, grouped routes, and OpenAPI metadata.

Input — point it at your project

Works on a target: a file, folder, project/solution, or GitHub URL. Read one existing endpoint and match its style (Carter module? plain MapGroup? MediatR dispatch?). Detect with: grep -rn "MapGet\|MapPost\|MapGroup\|ICarterModule\|: ControllerBase" --include=*.cs <target>.

Endpoint (REPR + TypedResults)

public static class CreateOrderEndpoint
{
    public static RouteGroupBuilder MapCreateOrder(this RouteGroupBuilder group)
    {
        group.MapPost("/", Handle)
             .WithName("CreateOrder")
             .WithSummary("Creates an order")
             .Produces<OrderResponse>(StatusCodes.Status201Created)
             .ProducesValidationProblem();
        return group;
    }

    public record Request(Guid CustomerId, List<OrderLine> Lines);
    public record OrderResponse(Guid Id);

    private static async Task<Results<Created<OrderResponse>, ValidationProblem>> Handle(
        Request req, IValidator<Request> validator, ISender sender, CancellationToken ct)
    {
        var v = await validator.ValidateAsync(req, ct);
        if (!v.IsValid) return TypedResults.ValidationProblem(v.ToDictionary());

        var id = await sender.Send(new CreateOrderCommand(req.CustomerId, req.Lines), ct);
        return TypedResults.Created($"/orders/{id}", new OrderResponse(id));
    }
}

Route grouping (Program.cs)

var orders = app.MapGroup("/orders").WithTags("Orders").RequireAuthorization();
orders.MapCreateOrder();
orders.MapGetOrderById();

Principles

  • One endpoint per feature — don't pile unrelated routes into one class.
  • TypedResults over Results — they give you compile-time response types and accurate OpenAPI.
  • Validate at the edge, return ValidationProblem (RFC 7807), keep business rules in the handler/domain.
  • Group routes for shared prefix, tags, and auth instead of repeating per endpoint.
  • Don't hand-roll what MapGroup + filters already do.

Read the full file on GitHub · 60 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

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.

  1. 5d ago First seen · 60 lines · 106 tokens per session scan A 449c427a1478

Subscribe to this mod's changes

minimal-api-endpoint-scaffolder is a skill published in the GitHub repository StefanTheCode/dotnet-ai-toolkit (19 stars, last pushed 27d ago), licensed MIT. It adds 106 tokens to every session and 662 once invoked, about $0.0005 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-30.