A Claude Code plugin with 25 skills and 5 specialized agents for .NET development. It covers C#, Akka.NET, Aspire, EF Core, testing, and performance optimization. Ideal for operations teams automating .NET workflows.
git clone https://github.com/Aaronontheweb/dotnet-skills.gitA Claude Code plugin with 25 skills and 5 specialized agents for .NET development. It covers C#, Akka.NET, Aspire, EF Core, testing, and performance optimization. Ideal for operations teams automating .NET workflows.
No install command available. Check the GitHub repository for manual installation instructions.
git clone https://github.com/Aaronontheweb/dotnet-skillsCopy the install command above and run it in your terminal.
Launch Claude Code, Cursor, or your preferred AI coding agent.
Use the prompt template or examples below to test the skill.
Adapt the skill to your specific use case and workflow.
Act as a .NET developer with expertise in C# and .NET Core. I need help with [TASK]. Provide code snippets, best practices, and debugging tips. Focus on [SPECIFIC_TECHNOLOGY] if applicable.
# .NET Core API Endpoint Implementation
Here's a complete implementation of a RESTful API endpoint in .NET Core:
```csharp
[ApiController]
[Route("api/[controller]")]
public class ProductsController : ControllerBase
{
private readonly IProductRepository _productRepository;
public ProductsController(IProductRepository productRepository)
{
_productRepository = productRepository;
}
[HttpGet]
public async Task<ActionResult<IEnumerable<Product>>> GetProducts()
{
var products = await _productRepository.GetAllProductsAsync();
return Ok(products);
}
[HttpGet("{id}")]
public async Task<ActionResult<Product>> GetProduct(int id)
{
var product = await _productRepository.GetProductByIdAsync(id);
if (product == null)
{
return NotFound();
}
return Ok(product);
}
}
```
## Best Practices
- Use dependency injection for services
- Implement proper error handling
- Follow RESTful conventions for routes
- Use async/await for I/O operations
## Debugging Tips
- Check your Startup.cs configuration
- Verify your database connection strings
- Use logging to track application flow
- Test your API endpoints with Postman or similar toolsAI assistant built for thoughtful, nuanced conversation
IronCalc is a spreadsheet engine and ecosystem
Service Management That Turns Chaos Into Control
Customer feedback management made simple
Enterprise workflow automation and service management platform
Automate your spreadsheet tasks with AI power
Take a free 3-minute scan and get personalized AI skill recommendations.
Take free scan