copilot-agentic-workshop api.instructions.md

A set of rules for building ASP.NET Core web API endpoints, which are URLs that software uses to request or change data. It covers route structure, HTTP methods, OpenAPI documentation, and response formats.

In plain words
What is it for?
Use it when adding controllers or Minimal API endpoints to the TaskManager project, including listing, reading, creating, updating, changing state, and deleting tasks.
Why use it?
It keeps endpoints consistent and makes their behavior easier for other developers and API tools to understand.

Instructions file for GitHub Copilot

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 instructions/nunosoarescsw/copilot-agentic-workshop/api
Clone the repo
git clone --depth 1 https://github.com/nunosoarescsw/copilot-agentic-workshop

Made for: GitHub Copilot.

Per session 508 This file is loaded in full into every session.
When invoked 508 The same file — it is already loaded in full.
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 $0.00508 $0.00508
Opus 5 $0.00254 $0.00254
Sonnet 5 $0.00102 $0.00102
Haiku 4.5 $0.00051 $0.00051

Measured 2d ago against content hash be4cf3585061, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

copilot-agentic-workshop api.instructions.md 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 2d 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.

.github/instructions/api.instructions.md · 68 lines

What it actually says

API Endpoint Conventions

Endpoint Structure

Always register endpoints using the MapGroup + extension method pattern:

public static class FeatureEndpoints
{
    public static IEndpointRouteBuilder MapFeatureEndpoints(this IEndpointRouteBuilder routes)
    {
        var group = routes.MapGroup("/api/feature").WithTags("Feature");
        // ... endpoint registrations
        return routes;
    }
}

Then call app.MapFeatureEndpoints() from Program.cs.

HTTP Verb Mapping

Operation Verb Route
List all GET /api/{resource}
Get by ID GET /api/{resource}/{id:guid}
Create POST /api/{resource}
Partial update PATCH /api/{resource}/{id:guid}
State transition POST /api/{resource}/{id:guid}/{action}
Delete DELETE /api/{resource}/{id:guid}

Required Metadata on Every Endpoint

Every endpoint must have:

  • .WithName("VerbResourceName") — e.g. "GetAllTasks", "CreateTask"
  • .WithSummary("Human-readable description") — used by OpenAPI/Swagger

Response Types

Use Results.* helpers — never return IActionResult or raw status codes:

Results.Ok(dto)                          // 200
Results.CreatedAtRoute("Name", new { id }, dto)  // 201
Results.NoContent()                      // 204
Results.NotFound()                       // 404
Results.BadRequest("reason")             // 400

Input Binding

  • Bind from body with [FromBody] for POST/PATCH payloads
  • Bind route parameters directly in the lambda signature: (Guid id, ...)
  • Always pass CancellationToken ct as the last lambda parameter

OpenAPI

  • Use builder.Services.AddOpenApi() and app.MapOpenApi() in Program.cs
  • Do not use the deprecated WithOpenApi() extension on individual endpoints
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. 2d ago First seen · 68 lines · 508 tokens per session scan A be4cf3585061

Subscribe to this mod's changes

copilot-agentic-workshop api.instructions.md is an instructions file published in the GitHub repository nunosoarescsw/copilot-agentic-workshop (1 stars, last pushed 2mo ago), licensed MIT. It adds 508 tokens to every session, about $0.0025 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.

Related

Other instructions, from other repositories

maui integration-tests.instructions.md

Guidance for GitHub Copilot when working with .NET MAUI integration tests.

dotnet/maui · 2,481 tokens

maui handler-patterns.instructions.md

Instructions for dotnet/maui, covering handler mapper and property patterns, property update flow, lifecycle management, null safety in callbacks and native defaults preservation.

dotnet/maui · 464 tokens

maui performance-hotpaths.instructions.md

Instructions for dotnet/maui, covering performance-critical path rules, hot paths in maui, allocation avoidance, caching and invalidation and collection iteration.

dotnet/maui · 441 tokens

cryptoexchange-net

Use CryptoExchange.Net abstractions when generating C#/.NET code that needs to work across MULTIPLE cryptocurrency exchanges (Binance + Bybit + OKX + Kraken + Coinbase + ...) — for arbitrage, best-execution routing, multi-exchange portfolio dashboards, exchange-agnostic trading bots, or comparison tools. Triggers on…

JKorf/CryptoExchange.Net · 2,291 tokens

kraken-net

Use Kraken.Net when generating C#/.NET code that interacts with the Kraken cryptocurrency exchange, including Spot REST, Spot WebSocket v2, Futures REST, Futures WebSocket, account data, market data, order placement, Kraken Earn, local order books, dependency injection, or CryptoExchange.Net SharedApis. Triggers on…

JKorf/Kraken.Net · 1,872 tokens

Kucoin.Net copilot-instructions.md

Instructions for JKorf/Kucoin.Net, covering copilot instructions for kucoin.net, use kucoin.net, not raw http, client setup, result handling and api structure.

JKorf/Kucoin.Net · 849 tokens