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/fortiumpartners/ensemble/dotnet-frameworknpx skills add FortiumPartners/ensemble --skill dotnet-frameworkgit clone --depth 1 https://github.com/FortiumPartners/ensembleWrote 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/fortiumpartners/ensemble/dotnet-framework)<a href="https://agentmods.dev/skills/fortiumpartners/ensemble/dotnet-framework"><img src="https://agentmods.dev/badge/skills/fortiumpartners/ensemble/dotnet-framework.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 | $0.00000 | $0.04348 |
| Opus 5 | $0.00000 | $0.02174 |
| Sonnet 5 | $0.00000 | $0.00870 |
| Haiku 4.5 | $0.00000 | $0.00435 |
Grade A, and why
dotnet-framework 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 4d 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 — 822 lines — stays where its author put it; the contents beside it link to each section on GitHub.
.NET Framework Skill - Quick Reference
Framework: .NET 8+ with ASP.NET Core For Agent: backend-developer Purpose: Fast lookup of common .NET patterns and conventions
1. ASP.NET Core Web APIs
Controller-Based API
[ApiController]
[Route("api/[controller]")]
public class OrdersController : ControllerBase
{
private readonly IMessageBus _bus;
private readonly IQuerySession _session;
public OrdersController(IMessageBus bus, IQuerySession session)
{
_bus = bus;
_session = session;
}
[HttpGet("{id}")]
public async Task<ActionResult<OrderDto>> GetOrder(Guid id)
{
var order = await _session.LoadAsync<Order>(id);
return order is not null
? Ok(OrderDto.FromEntity(order))
: NotFound();
}
[HttpPost]
public async Task<ActionResult<Guid>> CreateOrder(CreateOrderCommand command)
{
var orderId = await _bus.InvokeAsync<Guid>(command);
return CreatedAtAction(nameof(GetOrder), new { id = orderId }, orderId);
}
[HttpPut("{id}")]
public async Task<ActionResult> UpdateOrder(Guid id, UpdateOrderCommand command)
{
if (id != command.OrderId)
return BadRequest("ID mismatch");
await _bus.InvokeAsync(command);
return NoContent();
}
[HttpDelete("{id}")]
public async Task<ActionResult> DeleteOrder(Guid id)
{
await _bus.InvokeAsync(new DeleteOrderCommand(id));
return NoContent();
}
}
Minimal API (.NET 8+)
var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();
var orders = app.MapGroup("/api/orders")
.WithTags("Orders")
.WithOpenApi();
orders.MapGet("/{id}", async (Guid id, IQuerySession session) =>
{
var order = await session.LoadAsync<Order>(id);
return order is not null ? Results.Ok(order) : Results.NotFound();
})
.WithName("GetOrder")
.Produces<Order>(StatusCodes.Status200OK)
.Produces(StatusCodes.Status404NotFound);
orders.MapPost("/", async (CreateOrderCommand cmd, IMessageBus bus) =>
{
var orderId = await bus.InvokeAsync<Guid>(cmd);
return Results.Created($"/api/orders/{orderId}", orderId);
})
.WithName("CreateOrder")
.Produces<Guid>(StatusCodes.Status201Created);
app.Run();
What ships with it
16 files 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.
- examples/.gitkeep 0 B
- examples/event-sourcing.example.cs 21 KB
- examples/README.md 10 KB
- examples/web-api.example.cs 20 KB
- PATTERNS-EXTRACTED.md 18 KB
- README.md 8.3 KB
- REFERENCE.md 25 KB
- templates/.gitkeep 0 B
- templates/controller.template.cs 8.1 KB
- templates/entity.template.cs 6.4 KB
- templates/event.template.cs 9.6 KB
- templates/handler.template.cs 9.8 KB
- templates/minimal-api.template.cs 7.7 KB
- templates/projection.template.cs 9.3 KB
- templates/test.template.cs 15 KB
- VALIDATION.md 14 KB
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.
- 4d ago First seen · 822 lines · 0 tokens per session scan A 1374770c3bc4
dotnet-framework is a skill published in the GitHub repository FortiumPartners/ensemble (11 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 4,348 tokens. 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.
Other skills, from other repositories
debugging-output-and-previewing-html-using-ray
Use when user says "send to Ray," "show in Ray," "debug in Ray," "log to Ray," "display in Ray," or wants to visualize data, debug output, or show diagrams in the Ray desktop application.
rust-system-calls
Guides using bunsys for system calls and file I/O in Rust. Use when implementing file operations, opening fds, or any syscall path instead of std::fs or libc.
write-a-prd
Create a PRD through user interview, codebase exploration, and module design, then submit as a GitHub issue. Use when user wants to write a PRD, create a product requirements document, or plan a new feature.
doncheli-context-health
Report the current state of the context window and recommend compression or cleanup actions. Activate when user mentions "context health", "context window", "how much context", "context full", "running out of context", "compress context".
mongoose-adapter
Wiring @kavo/mongoose into a Nest app — models as entity identities, ObjectId rendered as hex strings and id-keyed DTOs, declared soft delete, ref paths as relation and foreign key at once, and the cross-relation filter that is refused. Use when adding Kavo to a Mongoose/MongoDB project, or answering "how do I use…
task-control-doc
Use when the user wants a master control document for a large, complex, long-running, or multi-session task. Defines how to create a task control doc that captures background, mandatory reads, subtask breakdown, and self-contained work packages so each subtask can be executed in a fresh session with minimal context.