devarch-module
SolidDevArchitecture backend pattern: MediatR CQRS handler/command/query, IResult/IDataResult, Autofac AOP chain, FluentValidation, i18n. backend-expert-csk applies it.
Install
Quality Score: 81/100
Skill Content
Details
- Author
- byerlikaya
- Repository
- byerlikaya/claude-starter-kit
- Created
- 1 months ago
- Last Updated
- yesterday
- Language
- Shell
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
backend-patterns
Apply backend patterns — queues, caching, rate limits, serverless/edge. Use when "queue jobs", "caching layer", "rate limiting", "server actions", or "edge function". Which architecture to pick → audit-backend-architecture.
backend-design
Use when designing or building anything below the API seam -- endpoints, data models, migrations, background jobs, or service boundaries. Contract-first API design with trust-boundary validation, idempotent mutations, reversible migrations, and an explicit error taxonomy.
craft-backend
The Craftsman standard for building and reviewing backend code — API routes/endpoints, rate-limiting middleware on routes, request validation, the authentication boundary, service/business logic, error handling, third-party integrations, and background jobs. Use this WHENEVER the work touches the server side in any form: adding or reviewing a route, validating input, authenticating a request, tracing a 500, writing a service layer, wiring an integration, or enqueueing or handling a job (job scheduling configuration → see craft-infra). Trigger even when the user only says "add an endpoint", "validate this input", "why is this returning 500", or "secure this route" without naming a framework. Owns in-app route rate-limit *middleware* (mount order, keying, 429); abuse-defense *policy* (login/brute-force) → craft-security; platform/edge capacity throttling → craft-infra; LLM spend/token limits on model routes → craft-ai. Authorization *policy* (per-resource authZ, IDOR/tenant scoping) and secrets belong to craft-