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 skills add khalilbenaz/claude-skills-collection --skill dotnet-aspire-guidegit clone --depth 1 https://github.com/khalilbenaz/claude-skills-collectionWrote 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/khalilbenaz/claude-skills-collection/dotnet-aspire-guide)<a href="https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/dotnet-aspire-guide"><img src="https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/dotnet-aspire-guide/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/dotnet-aspire-guide"><img src="https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/dotnet-aspire-guide.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00113 | $0.02356 |
| Opus 5 | $0.00056 | $0.01178 |
| Sonnet 5 | $0.00023 | $0.00471 |
| Haiku 4.5 | $0.00011 | $0.00236 |
Grade A, and why
dotnet-aspire-guide 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 8d 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 — 255 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Guide .NET Aspire
Quand utiliser .NET Aspire
| Situation | Recommandation |
|---|---|
| ≥ 2 services qui se parlent en local | Aspire — service discovery automatique |
| Besoin de traces distribuées dès le dev | Aspire — dashboard OTEL intégré |
| Projet mono-service simple | Aspire superflu |
| Cible Azure Container Apps / Kubernetes | Aspire — manifeste généré via azd ou aspirate |
| Équipe < 3 devs, pas de messaging | À évaluer ; Aspire a un coût d'apprentissage |
Version stable 2026 : .NET Aspire 9.x (compatible .NET 8 et .NET 9).
Étape 1 — Créer le squelette
# Prérequis : Docker Desktop actif, workload Aspire installé
dotnet workload install aspire
# Nouveau projet depuis le template
dotnet new aspire-starter -n MySolution -o MySolution
cd MySolution
# Structure générée
# MySolution.AppHost/ orchestrateur
# MySolution.ServiceDefaults/ config partagée
# MySolution.ApiService/ API demo
# MySolution.Web/ Blazor frontend
Pour ajouter Aspire à une solution existante :
dotnet new aspire-apphost -n MySolution.AppHost
dotnet new aspire-servicedefaults -n MySolution.ServiceDefaults
# Puis ajouter les références projets manuellement
Étape 2 — Câbler l'AppHost
L'AppHost est le point d'entrée unique. Il déclare les ressources (infra) et les projets (code), puis les relie.
// MySolution.AppHost/Program.cs
var builder = DistributedApplication.CreateBuilder(args);
// --- Infrastructure ---
var postgres = builder.AddPostgres("postgres")
.WithDataVolume("pgdata") // volume nommé = persistance entre runs
.WithPgAdmin(); // UI admin sur port aléatoire
var orderDb = postgres.AddDatabase("orderdb");
var redis = builder.AddRedis("cache").WithRedisCommander();
var bus = builder.AddRabbitMQ("messaging").WithManagementPlugin();
// --- Services applicatifs ---
var api = builder.AddProject<Projects.MySolution_ApiService>("api")
.WithReference(orderDb) // injecte la conn string via env var
.WithReference(redis)
.WithReference(bus)
.WithReplicas(2); // 2 instances en dev pour tester la LB
builder.AddProject<Projects.MySolution_Web>("web")
.WithExternalHttpEndpoints()
.WithReference(api); // URL résolue par service discovery
builder.Build().Run();
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.
- 8d ago First seen · 255 lines · 113 tokens per session scan A 2e59c71c2e3e
dotnet-aspire-guide is a skill published in the GitHub repository khalilbenaz/claude-skills-collection (22 stars, last pushed 17d ago), licensed MIT. It adds 113 tokens to every session and 2,356 once invoked, about $0.0006 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.
Other skills, from other repositories
n8n-workflow
Build n8n automation workflows — nodes, expressions, error handling, and self-hosted deployment.
stripe-projects
Provision SaaS services + sync creds via Stripe Projects.
api-patterns
API design: naming, versioning, pagination, idempotency, OpenAPI, error contracts and safe retries. Triggers: API design, REST, GraphQL, OpenAPI, Swagger, error response, HTTP status, rate limit.
csharp-patterns
C#/.NET: LINQ, async/await, DI, records, nullable refs, ASP.NET Core, EF Core, MediatR. Triggers: C#, .NET, dotnet, ASP.NET, EF Core, LINQ, record type, IServiceCollection.
java-patterns
Java: Spring Boot, CompletableFuture, records, sealed types, JPA/Hibernate, virtual threads. Triggers: Java, Spring, JPA, Hibernate, Maven, Gradle, virtual thread, sealed class.
docker-devops
Docker/K8s: Dockerfile, multi-stage, compose, manifests, Helm. Triggers: Docker, Dockerfile, container, Kubernetes, k8s, compose, Helm, pod.