From dotnet-claude-kit
Advises on .NET app architectures via questionnaire on domain complexity, team size, lifetime, compliance, integrations. Recommends Vertical Slice, Clean, DDD+Clean, or Modular Monolith.
npx claudepluginhub codewithmukesh/dotnet-claude-kit --plugin dotnet-claude-kitThis skill uses the workspace's default tool permissions.
1. **Ask before recommending** — Never prescribe an architecture without understanding the project. Run the questionnaire first to gather context about domain, team, lifetime, and constraints.
Designs software architecture, selects patterns like layered, clean, or hexagonal based on project/team size, defines directory structures, and documents trade-offs. Use for system design, monoliths vs microservices.
Designs software architectures evaluating monolith/microservices/serverless/event-driven/CQRS/hexagonal patterns; generates C4 diagrams, ADRs, bounded contexts, and quality analysis.
Advises on architecture for new features, modules, refactoring, or system boundaries by asking questions, surfacing trade-offs, and presenting options. Does not execute.
Share bugs, ideas, or general feedback.
Before recommending an architecture, ask questions across these 6 categories. Not every question applies to every project — skip irrelevant ones.
| # | Question | Low Signal | High Signal |
|---|---|---|---|
| 1 | How many distinct business entities does the system manage? | < 10 entities | 20+ entities with relationships |
| 2 | Do business rules involve multiple entities interacting? | Rules are per-entity CRUD | Complex invariants across entity groups |
| 3 | Are there business workflows with multiple steps? | Simple request → response | Sagas, approval chains, state machines |
| 4 | Do domain experts use specialized vocabulary? | Generic terms (create, update) | Ubiquitous language (underwrite, adjudicate) |
| # | Question | Low Signal | High Signal |
|---|---|---|---|
| 5 | How large is the development team? | 1-3 developers | 8+ developers, multiple teams |
| 6 | Do different teams own different parts of the system? | Single team owns everything | Teams aligned to business domains |
| 7 | What is the team's experience level with .NET? | Junior or mixed | Senior, experienced with patterns |
| # | Question | Low Signal | High Signal |
|---|---|---|---|
| 8 | Expected system lifetime? | < 2 years, MVP/prototype | 5+ years, long-lived product |
| 9 | How many concurrent users or requests per second? | < 100 RPS | 1000+ RPS, variable load |
| 10 | Will the system need to scale independently by feature area? | Uniform load | Hot spots need independent scaling |
| # | Question | Low Signal | High Signal |
|---|---|---|---|
| 11 | Are there audit trail or compliance requirements? | Basic logging sufficient | Full audit trail, SOX/HIPAA/PCI |
| 12 | Do different parts of the system have different security boundaries? | Single auth boundary | Multi-tenant, data isolation |
| # | Question | Low Signal | High Signal |
|---|---|---|---|
| 13 | Is this greenfield or brownfield? | Greenfield, starting fresh | Brownfield, migrating from legacy |
| 14 | Are there existing architectural patterns the team follows? | No established patterns | Strong conventions in place |
| # | Question | Low Signal | High Signal |
|---|---|---|---|
| 15 | How many external systems does this integrate with? | 0-2 simple APIs | 5+ systems with complex contracts |
| 16 | Are there event-driven or async communication needs? | Synchronous request/response | Event sourcing, pub/sub, eventual consistency |
Map questionnaire answers to architecture recommendations:
| Profile | Recommended Architecture | Why |
|---|---|---|
| Low domain complexity, small team, short lifetime | Vertical Slice Architecture | Minimal ceremony, fast feature delivery, easy to understand |
| Low-medium domain complexity, any team size, API-focused | Vertical Slice Architecture | Feature cohesion, one file per operation, natural fit for minimal APIs |
| Medium domain complexity, medium team, long lifetime | Clean Architecture | Enforced boundaries via project references, testable domain, clear dependency direction |
| High domain complexity, specialized vocabulary, complex invariants | DDD + Clean Architecture | Aggregates protect invariants, value objects model domain concepts, domain events decouple side effects |
| Multiple bounded contexts, team-per-domain, independent deployment potential | Modular Monolith | Module isolation, independent data stores, evolution path to microservices |
| Brownfield with existing layered architecture | Clean Architecture | Familiar to teams coming from N-tier, preserves layer separation with better dependency direction |
If signals point to different architectures:
Organize by feature, not by layer. Each operation is a self-contained slice.
src/MyApp.Api/
Features/
Orders/CreateOrder.cs # Request + Handler + Response + Endpoint
Orders/GetOrder.cs
Common/
Behaviors/ValidationBehavior.cs
Persistence/AppDbContext.cs
Best for: CRUD-heavy apps, APIs, MVPs, small-medium teams, short-medium lifetime.
Load skill: vertical-slice
Concentric layers with dependency inversion. Domain at the center, infrastructure at the edge.
src/
MyApp.Domain/ # Entities, interfaces, domain logic
MyApp.Application/ # Use cases, DTOs, validation
MyApp.Infrastructure/ # EF Core, external services
MyApp.Api/ # Endpoints, middleware
Best for: Medium complexity, long-lived systems, teams familiar with layered patterns.
Load skill: clean-architecture
Clean Architecture with tactical DDD patterns: aggregates, value objects, domain events.
src/
MyApp.Domain/ # Aggregates, value objects, domain events, domain services
MyApp.Application/ # Use cases orchestrating aggregates
MyApp.Infrastructure/ # Persistence, external service adapters
MyApp.Api/ # Thin endpoints
Best for: Complex domains, specialized vocabulary, strict invariants, experienced teams.
Load skill: ddd + clean-architecture
Independent modules in a single deployable unit, each with its own architecture internally.
src/
MyApp.Host/ # Wires modules together
Modules/
Orders/ # Own features, own DbContext, own architecture
Catalog/ # Can use VSA, CA, or DDD internally
MyApp.Shared/ # Integration event contracts only
Best for: Multiple bounded contexts, team-per-domain, future microservices extraction.
Load template: modular-monolith
Architecture is not a one-time decision. Systems evolve. Here are the common migration paths:
| From | To | Trigger | How |
|---|---|---|---|
| VSA | CA | Domain logic growing beyond handlers | Extract Domain + Application layers, keep features as use cases |
| VSA | Modular Monolith | Multiple bounded contexts emerging | Group features into modules, add module boundaries |
| CA | DDD + CA | Invariants becoming complex, primitive obsession | Introduce aggregates, value objects, domain events |
| Monolith | Modular Monolith | Teams stepping on each other, shared database coupling | Split into modules with own DbContexts and schemas |
| Modular Monolith | Microservices | Independent scaling needs, independent deployment | Extract modules into separate deployable services |
// BAD — 4 projects, 6+ files per feature for simple CRUD
src/MyApp.Domain/Entities/Product.cs
src/MyApp.Application/Products/CreateProduct/CreateProductCommand.cs
src/MyApp.Application/Products/CreateProduct/CreateProductHandler.cs
src/MyApp.Application/Products/CreateProduct/CreateProductValidator.cs
src/MyApp.Infrastructure/Persistence/ProductRepository.cs
src/MyApp.Api/Endpoints/ProductEndpoints.cs
// GOOD — VSA: 1 file for a simple CRUD feature
src/MyApp.Api/Features/Products/CreateProduct.cs
// BAD — value objects and aggregates for a settings table
public class UserSettings : AggregateRoot // overkill
{
public ThemeName Theme { get; private set; } // value object for "dark"/"light"?
public void ChangeTheme(ThemeName theme) { /* domain event? really? */ }
}
// GOOD — simple entity for simple data
public class UserSettings
{
public Guid UserId { get; init; }
public string Theme { get; set; } = "light";
}
// BAD — splitting into 5 microservices on day one with 2 developers
OrderService (own repo, own DB, own CI/CD)
CatalogService (own repo, own DB, own CI/CD)
IdentityService (own repo, own DB, own CI/CD)
NotificationService (own repo, own DB, own CI/CD)
GatewayService (own repo, own CI/CD)
// GOOD — start as a modular monolith, extract when you have evidence
src/
Modules/Orders/
Modules/Catalog/
Modules/Identity/
Modules/Notifications/
// BAD — "I always use Clean Architecture"
User: "Set up a new project for a todo app"
Agent: *immediately scaffolds 4-project CA solution*
// GOOD — ask first, then recommend
User: "Set up a new project for a todo app"
Agent: "Let me ask a few questions about your project to recommend the best architecture..."
Agent: *runs questionnaire, recommends VSA for low-complexity app*
| Scenario | Recommendation |
|---|---|
| New project, unknown requirements | Run the questionnaire |
| Simple CRUD API, 1-3 developers | VSA |
| Medium complexity, long-lived, experienced team | Clean Architecture |
| Complex domain, specialized vocabulary | DDD + Clean Architecture |
| Multiple bounded contexts, multiple teams | Modular Monolith |
| Existing N-tier codebase, needs modernization | Clean Architecture (familiar migration) |
| MVP / startup, speed is priority | VSA |
| Regulatory / compliance-heavy | Clean Architecture or DDD (enforced boundaries) |
| Will need independent scaling later | Modular Monolith (extraction-ready) |