Source profileQuality 85/100

Benknightdark/neo-skills/skills/neo-dotnet-minimal-apis/SKILL.md

neo-dotnet-minimal-apis

Use this skill when building, debugging, refactoring, or reviewing ASP.NET Core Minimal APIs, lightweight endpoints, route groups, endpoint filters, typed results, OpenAPI metadata, or high-performance .NET API services without controllers.

Source repository stars
7
Declared platforms
0
Static risk flags
0
Last source update
2026-08-05
Source checked
2026-08-05

Decision brief

What it does—and where it fits

NET Core Minimal APIs, lightweight endpoints, route groups, endpoint filters, typed results, OpenAPI metadata, or high-performance . NET API services without controllers.

Best for

  • Use this skill when building, debugging, refactoring, or reviewing ASP.

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/Benknightdark/neo-skills --skill "skills/neo-dotnet-minimal-apis"
Safe inspection promptEditorial

Inspect the Agent Skill "neo-dotnet-minimal-apis" from https://github.com/Benknightdark/neo-skills/blob/c3e3d1bcf6aae00a729ceab257e6a68dd40d89ec/skills/neo-dotnet-minimal-apis/SKILL.md at commit c3e3d1bcf6aae00a729ceab257e6a68dd40d89ec. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Workflow

    1. Perceive (Architecture Awareness): - Check .csproj to identify TargetFramework. - Analyze Program.cs to distinguish whether it uses simple endpoints or adopts a Module-based or Vertical Slice organization. - Identify whether OpenAPI (Swagger) support has been configured. 2. R…

    Perceive (Architecture Awareness):Check .csproj to identify TargetFramework.Analyze Program.cs to distinguish whether it uses simple endpoints or adopts a Module-based or Vertical Slice organization.
  2. 02

    Trigger On

    The user requests to create, debug, refactor, or review .NET Minimal APIs.

    The user requests to create, debug, refactor, or review .NET Minimal APIs.The project's Program.cs contains WebApplication.CreateBuilder(args) and is not configured with a Controllers directory.The target framework is .NET 6.0 (LTS) and above.
  3. 03

    Feature Roadmap (.NET 6 - 10)

    Minimal Hosting: Simplified startup process and top-level statements.

    Minimal Hosting: Simplified startup process and top-level statements.Route Groups: Use MapGroup to consolidate prefixes and authentication.Endpoint Filters: Implement interception logic within Minimal APIs.
  4. 04

    .NET 6 & 7 (Foundation)

    Minimal Hosting: Simplified startup process and top-level statements.

    Minimal Hosting: Simplified startup process and top-level statements.Route Groups: Use MapGroup to consolidate prefixes and authentication.Endpoint Filters: Implement interception logic within Minimal APIs.

Permission review

Static risk signals and limitations

No configured static risk pattern was detected

This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score85/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars7SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
Benknightdark/neo-skills
Skill path
skills/neo-dotnet-minimal-apis/SKILL.md
Commit
c3e3d1bcf6aae00a729ceab257e6a68dd40d89ec
License
MIT
Collected
2026-08-05
Default branch
main
View the original SKILL.md

.NET Minimal APIs Expert Skill

Trigger On

  • The user requests to create, debug, refactor, or review .NET Minimal APIs.
  • The project's Program.cs contains WebApplication.CreateBuilder(args) and is not configured with a Controllers directory.
  • The target framework is .NET 6.0 (LTS) and above.
  • There is a need to optimize API performance or simplify Web API architecture.

Workflow

  1. Perceive (Architecture Awareness):
    • Check .csproj to identify TargetFramework.
    • Analyze Program.cs to distinguish whether it uses simple endpoints or adopts a Module-based or Vertical Slice organization.
    • Identify whether OpenAPI (Swagger) support has been configured.
  2. Reason (Planning Phase):
    • Evaluate whether "Route Groups" need to be introduced to optimize organizational structure.
    • Determine whether to use "Endpoint Filters" to handle cross-cutting concerns (such as parameter validation).
    • Choose the most appropriate syntax based on the .NET version (e.g., TypedResults in .NET 7+).
  3. Act (Execution Phase):
    • Write clean, high-performance Minimal API code, prioritizing Lambdas or extension methods.
    • Implement strong typing and DTOs (prioritize using record).
    • Integrate dependency injection, avoiding the Service Locator pattern.
  4. Validate (Standard Validation):
    • Validate whether the endpoints correctly return expected HTTP status codes.
    • Check whether the generated OpenAPI documentation is complete.
    • Ensure asynchronous operations correctly pass the CancellationToken.

Feature Roadmap (.NET 6 - 10)

.NET 6 & 7 (Foundation)

  • Minimal Hosting: Simplified startup process and top-level statements.
  • Route Groups: Use MapGroup to consolidate prefixes and authentication.
  • Endpoint Filters: Implement interception logic within Minimal APIs.
  • Typed Results: Improved unit testing and Swagger support.

.NET 8 & 9 (Productivity)

  • Antiforgery: Built-in anti-forgery token support.
  • Form Binding: Support for [FromForm] parameter binding.
  • HybridCache: High-performance multi-level caching support.
  • OpenAPI Improvements: Better OpenAPI code generation.

.NET 10+ (Version-Specific Features)

  • Native AOT Optimization: AOT-optimized compilation tailored for Minimal APIs.
  • Enhanced Middleware Patterns: New middleware designed for lightweight architectures.

Coding Standards

  • Clean Routing: Prioritize using extension methods to modularize routes.
  • Strong Typing: Prioritize using TypedResults and Results<T1, T2>.
  • Async Safety: Always accept and pass down CancellationToken.
  • DI Best Practices: Services should be defined directly in the Handler parameters.

Deliver

  • Version-Optimized API Code: Provide the most appropriate modern API code based on the target .NET version.
  • Modular Architecture: Provide structural suggestions for extracting Program.cs routes into extension methods.
  • OpenAPI Configuration: Provide comprehensive Swagger/OpenAPI configuration suggestions.

Validate

  • Ensure the provided code executes correctly in a .NET 6+ environment.
  • Validate endpoint security (authentication, authorization, Antiforgery).
  • Check if the code complies with high-performance best practices for Minimal APIs (e.g., avoiding closures, reducing allocations).

Documentation

Official References

Internal References

Alternatives

Compare before choosing

Computed 976

mgiovani/cc-arsenal

team-review

Multi-agent review team: architecture, security, performance, testing, style, docs/UX, plus an adversary that cross-examines the other 6, for security-sensitive, architectural, or large PRs (15+ files) where a single-agent pass risks missing cross-cutting issues. Use for auth/payments/PII changes, schema/pattern changes, compliance sign-off, or when asked to 'get the review team on this' / 'multi-agent review' / 'thorough review before merge'. For a standard PR or a quick pre-merge check, use /r

Computed 964,944

dotnet/skills

dotnet-webapi

Guides creation and modification of ASP.NET Core Web API endpoints with correct HTTP semantics, OpenAPI metadata, and error handling. USE FOR: adding new API endpoints (controllers or minimal APIs), wiring up OpenAPI/Swagger, creating .http test files, setting up global error handling middleware. DO NOT USE FOR: general C# coding style, EF Core data access or query optimization (use optimizing-ef-core-queries), frontend/Blazor work, gRPC services, or SignalR hubs.

Computed 96107

AI-Unified-Process/marketplace

reverse-engineer

Reverse-engineers an existing software project into AI Unified Process artifacts: a PlantUML use case diagram, per-use-case specification documents, and an entity model with a Mermaid ER diagram. Use when the user asks to "reverse engineer this codebase", "extract use cases from existing code", "document the system we already have", "generate use case specs from controllers", "derive an entity model from the database", "create AIUP artifacts from a legacy project", or mentions reverse engineerin

Computed 9510,879

Jeffallan/claude-skills

fastapi-expert

Use when building high-performance async Python APIs with FastAPI and Pydantic V2. Invoke to create REST endpoints, define Pydantic models, implement authentication flows, set up async SQLAlchemy database operations, add JWT authentication, build WebSocket endpoints, or generate OpenAPI documentation. Trigger terms: FastAPI, Pydantic, async Python, Python API, REST API Python, SQLAlchemy async, JWT authentication, OpenAPI, Swagger Python.