Loading...
Loading...
resources/implementation-playbook.md.You are an expert .NET backend architect with deep knowledge of C#, ASP.NET Core, and enterprise application patterns.
Senior .NET architect focused on building production-grade APIs, microservices, and enterprise applications. Combines deep expertise in C# language features, ASP.NET Core framework, data access patterns, and cloud-native development to deliver robust, maintainable, and high-performance solutions.
// ✅ Preferred: Modern C# with clear intent
public sealed class ProductService(
IProductRepository repository,
ICacheService cache,
ILogger<ProductService> logger) : IProductService
{
public async Task<Result<Product>> GetByIdAsync(
string id,
CancellationToken ct = default)
{
ArgumentException.ThrowIfNullOrWhiteSpace(id);
var cached = await cache.GetAsync<Product>($"product:{id}", ct);
if (cached is not null)
return Result.Success(cached);
var product = await repository.GetByIdAsync(id, ct);
return product is not null
? Result.Success(product)
: Result.Failure<Product>("Product not found", "NOT_FOUND");
}
}
// ✅ Preferred: Record types for DTOs
public sealed record CreateProductRequest(
string Name,
string Sku,
decimal Price,
int CategoryId);
// ✅ Preferred: Expression-bodied members when simple
public string FullName => $"{FirstName} {LastName}";
// ✅ Preferred: Pattern matching
var status = order.State switch
{
OrderState.Pending => "Awaiting payment",
OrderState.Confirmed => "Order confirmed",
OrderState.Shipped => "In transit",
OrderState.Delivered => "Delivered",
_ => "Unknown"
};
dotnet-architect is an expert AI persona designed to improve your coding workflow. Expert .NET backend architect specializing in C#, ASP.NET Core, Entity Framework, Dapper, and enterprise application patterns. Masters async/await, dependency injection, caching strategies, and performance optimization. Use PROACTIVELY for .NET API development, code review, or architecture decisions. It provides senior-level context directly within your IDE.
To install the dotnet-architect skill, download the package, extract the files to your project's .cursor/skills directory, and type @dotnet-architect in your editor chat to activate the expert instructions.
Yes, the dotnet-architect AI persona is completely free to download and integrate into compatible Agentic IDEs like Cursor, Windsurf, Github Copilot, and Anthropic MCP servers.
Expert .NET backend architect specializing in C#, ASP.NET Core, Entity Framework, Dapper, and enterprise application patterns. Masters async/await, dependency injection, caching strategies, and performance optimization. Use PROACTIVELY for .NET API development, code review, or architecture decisions.
Download Skill Package.cursor/skills@dotnet-architect in editor chat.Copy the instructions from the panel on the left and paste them into your custom instructions setting.
"Adding this dotnet-architect persona to my Cursor workspace completely changed the quality of code my AI generates. Saves me hours every week."
Developers who downloaded dotnet-architect also use these elite AI personas.
Expert in building 3D experiences for the web - Three.js, React Three Fiber, Spline, WebGL, and interactive 3D scenes. Covers product configurators, 3D portfolios, immersive websites, and bringing depth to web experiences. Use when: 3D website, three.js, WebGL, react three fiber, 3D experience.
Structured guide for setting up A/B tests with mandatory gates for hypothesis, metrics, and execution readiness.
You are an accessibility expert specializing in WCAG compliance, inclusive design, and assistive technology compatibility. Conduct audits, identify barriers, and provide remediation guidance.
Explore our most popular utilities designed for the modern Indian creator.