aspnet-core

aspnet-core is a skill for Claude Code, Codex from kouroshez/coding-os. It costs 99 tokens per session (850 once invoked), scanned A, original, Apache-2.0.

An ASP.NET Core development guide for C# backend services. It covers API endpoints, services, middleware, dependency injection, data access, and tests.

In plain words
What is it for?
Use it when creating or modifying ASP.NET Core endpoints, controllers, services, repositories, middleware, DTOs, or application wiring.
Why use it?
It separates request handling, business logic, and database access so each part can be tested and changed independently.

Skill for Claude CodeCodex

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/kouroshez/coding-os/aspnet-core
Any agent
npx skills add kouroshez/coding-os --skill aspnet-core
Clone the repo
git clone --depth 1 https://github.com/kouroshez/coding-os

Made for: Claude Code, Codex.

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 aspnet-core

README.md
[![agentmods](https://agentmods.dev/badge/skills/kouroshez/coding-os/aspnet-core.svg)](https://agentmods.dev/skills/kouroshez/coding-os/aspnet-core)
Your own site
<a href="https://agentmods.dev/skills/kouroshez/coding-os/aspnet-core"><img src="https://agentmods.dev/badge/skills/kouroshez/coding-os/aspnet-core.svg" alt="Measured on agentmods" height="20"></a>
Per session 99 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 850 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.00099 $0.00850
Opus 5 $0.00049 $0.00425
Sonnet 5 $0.00020 $0.00170
Haiku 4.5 $0.00010 $0.00085

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

Security

Grade A, and why

aspnet-core 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.

src/templates/aspnet-core/skills/aspnet-core/SKILL.md · 81 lines

How it starts

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

REQUIRED BACKGROUND: You MUST also follow the core clean-code and backend-fundamentals skills. This skill adds ASP.NET Core-specific patterns on top.

aspnet-core

Layer contract (matches structure.tree)

Layer May import Never
*Endpoints.cs / controllers the feature service, DTOs repositories, other endpoints
*Service.cs repositories, other services HttpContext, IHttpContextAccessor, transport types
Repositories/ the DbContext / DB client services, endpoints
Common/ (middleware/filters) services (for auth lookups) repositories

Services stay transport-free — no HttpContext — so they are unit-testable and a transport swap (minimal API → controllers → gRPC) is an endpoint-layer-only change.

DI & wiring

  • Register every service in Program.cs (AddScoped/AddSingleton/AddTransient); resolve by constructor or endpoint-parameter injection — never new a service.
  • Program.cs owns wiring only, not business logic. One WebApplication, middleware pipeline registered once, feature endpoints mapped via <Feature>Endpoints.Map(app).
  • Lifetimes: Scoped for per-request (the default for services touching the DB), Singleton only for stateless/thread-safe helpers, Transient for cheap stateless objects. A captive dependency (Singleton holding a Scoped) is a bug.
  • Keep Program reachable to tests (public partial class Program;) so WebApplicationFactory<Program> can build the app without binding a port.

Endpoints (thin)

  • A handler binds/validates the DTO → calls ONE service method → returns the value (the host serializes). Do not build the response envelope by hand.
  • No try/catch for error shaping in an endpoint — throw a typed exception and let the global middleware shape it.
  • Flow CancellationToken from the handler into every downstream call.

Validation

  • Every body/route/query input is a validated DTO (DataAnnotations or FluentValidation); reject fail-closed before the service runs. The service receives a typed, validated value and never reads the raw request.

Read the full file on GitHub · 81 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. 2d ago First seen · 81 lines · 99 tokens per session scan A c25246a9d246

Subscribe to this mod's changes

aspnet-core is a skill published in the GitHub repository kouroshez/coding-os (6 stars, last pushed 4d ago), licensed Apache-2.0. It adds 99 tokens to every session and 850 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-09-03.

Related

Other skills, from other repositories

sf-knowledge-salesforce-developer-environment-dotnet-tipsheet

Apply Salesforce knowledge and best practices for Setting Up Your .NET Developer Environment.

Avinava/sf-documentation-knowledge · 29 tokens

dotnet-reverse

.NET / C# 二进制逆向。当目标是 .NET assembly(PE 头含 CLR、.exe/.dll 托管程序)、C# 编译产物(含 NativeAOT)、红队 Sharp 工具(Rubeus / SharpHound / SharpHound 等)、.NET 混淆程序(ConfuserEx / SmartAssembly / Babel / Eazfuscator)、.NET loader / info-stealer / 套壳 malware 时使用。优先用 dnSpyEx + de4dot,需要 AI 直接操作时联动 dnSpy MCP。不用于纯 native 二进制(走 reverse-engineering /…

zhaoxuya520/reverse-skill · 144 tokens

build-and-test

How to build and test .NET projects in the Agent Framework repository. Use this when verifying or testing changes.

microsoft/agent-framework · 26 tokens

agui-dotnet-streaming-chat

Get started with the AG-UI .NET SDK: bootstrap and run your first streaming-chat app (client + server) with the AG-UI .NET NuGet packages (AGUI.Client, AGUI.Server, AGUI.Formatting, AGUI.Abstractions). USE FOR: which packages to install and how to wire them; constructing an AGUIChatClient against an endpoint and…

ag-ui-protocol/ag-ui · 223 tokens

agui-dotnet-wire-types

Add or modify a wire/protocol type in the AG-UI .NET SDK AGUI.Abstractions package — a new event, message, or content-part type, the AOT source-gen serializer context, or a polymorphic JSON converter, keeping it AOT-safe, JSON-wire-compatible with the TypeScript reference, and PublicAPI-clean. USE FOR: adding an AG-UI…

ag-ui-protocol/ag-ui · 174 tokens

azure-mgmt-apicenter-dotnet

Azure API Center SDK for .NET. Centralized API inventory management with governance, versioning, and discovery. Use for creating API services, workspaces, APIs, versions, definitions, environments, deployments, and metadata schemas. Triggers: "API Center", "ApiCenterService", "ApiCenterWorkspace", "ApiCenterApi", "API…

microsoft/skills · 97 tokens