ワンクリックで
ワンクリックで
Resume writing, LinkedIn profile optimization, cover letters, and professional bio creation. Use for career content involving ATS optimization, STAR method, action verbs, and personal branding.
Legal research, jurisdiction-aware analysis, regulatory compliance, case evaluation, license auditing, and structured legal findings. Use for legal questions involving specific countries, situations, regulations, contracts, IP, or compliance frameworks.
Validate agent config, instructions, and project setup for common issues
Concise content creation for tech, finance, and leadership blogging
Framework-based content review with scoring, criticism patterns, and quality standards
Run documentation quality checks and link validation guidance
| name | dotnet |
| description | Clean Architecture principles and C# conventions for .NET projects |
| license | MIT |
| compatibility | opencode |
| metadata | {"author":"shahboura","version":"2.0.0","audience":"developers","workflow":"development"} |
Use this when working on .NET/C# projects that follow Clean Architecture patterns.
CancellationToken through async methods — no exceptions<Nullable>enable</Nullable> in all .csproj files; use string? for nullable, string.Empty for non-nullable defaultsIEntityTypeConfiguration<T> for all EF entity configs; never configure in OnModelCreating directlyAsNoTracking() for all read-only queries; project to DTOs with .Select() earlyrecord types for DTOs, not classessealed to classes that should not be inheritedrequired keyword (C# 11+) for required properties instead of constructor enforcementis not null over != null; use nameof() in exception parameter namesdotnet restore
dotnet build
dotnet format
dotnet test