con un clic
net-web-api
Scaffold and configure ASP.NET Core Web API with best practices
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Scaffold and configure ASP.NET Core Web API with best practices
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Implement agile development practices and ceremonies for .NET projects
Automate Work Item -> Branch -> PR -> Evidence Pack for AI Coding Factory
Implement Scrum framework and team structures for .NET enterprise projects
Implement CQRS pattern with MediatR for .NET applications
Create Docker configuration for ASP.NET Core applications
Create domain models following Domain-Driven Design principles
| name | net-web-api |
| description | Scaffold and configure ASP.NET Core Web API with best practices |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":".net-developers","framework":"aspnetcore","version":"8.0"} |
I help you create production-ready ASP.NET Core Web API projects with:
Use this skill when:
Project Structure:
src/{ProjectName}.Api/
├── Controllers/
├── Filters/
│ ├── GlobalExceptionFilter.cs
│ ├── ValidationFilter.cs
│ └── ApiKeyFilter.cs
├── Middleware/
│ ├── RequestLoggingMiddleware.cs
│ └── ErrorHandlingMiddleware.cs
├── Extensions/
│ ├── ServiceCollectionExtensions.cs
│ └── ApplicationBuilderExtensions.cs
├── Models/
│ └── ErrorResponse.cs
├── Program.cs
└── appsettings.json
Key Features:
Program.cs configured with:
GlobalExceptionFilter.cs handles exceptions
ValidationFilter.cs validates requests
RequestLoggingMiddleware.cs logs requests/responses
Create a new ASP.NET Core Web API project with:
- Swagger/OpenAPI documentation
- Health checks endpoint
- Global exception handling
- Request validation
- API versioning
- CORS configuration
I will generate all necessary files following .NET 8 best practices.