.cursor/skills/system-design-expert/SKILL.md
System design and architecture expert. Microservices, scalability, database design, API design, load balancing. Use for architecture decisions.
npx skillsauth add ripgraphics/authorsinfo system-design-expertInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
| Pattern | Use When | Trade-offs | |---------|----------|------------| | Monolith | Small team, MVP, simple domain | Easy to deploy, hard to scale | | Microservices | Large team, complex domain, scale | Flexible, complex ops | | Serverless | Event-driven, variable load | Pay per use, cold starts |
┌─────────────┐ ┌──────────────┐ ┌─────────────┐
│ Client │────▶│ Load Balancer│────▶│ App Server │
└─────────────┘ └──────────────┘ └──────┬──────┘
│
┌────────────────────────────┼────────────────────────────┐
│ │ │
┌────▼────┐ ┌─────▼─────┐ ┌──────▼──────┐
│ Cache │ │ Database │ │ File Storage│
│ (Redis) │ │(PostgreSQL)│ │ (S3) │
└─────────┘ └───────────┘ └─────────────┘
| Users | Architecture | Database | Cache | |-------|--------------|----------|-------| | < 1K | Monolith | Single DB | Optional | | 1K-10K | Monolith + Cache | DB + Read replica | Redis | | 10K-100K | Microservices | Sharded DB | Redis Cluster | | > 100K | Distributed | Multiple DBs | Distributed Cache |
# RESTful conventions
GET /users # List
GET /users/:id # Get one
POST /users # Create
PUT /users/:id # Update (full)
PATCH /users/:id # Update (partial)
DELETE /users/:id # Delete
# Pagination
GET /users?page=1&limit=20
# Filtering
GET /users?status=active&role=admin
# Response format
{
"data": [...],
"meta": { "total": 100, "page": 1 }
}
tools
Webpack build optimization expert with deep knowledge of configuration patterns, bundle analysis, code splitting, module federation, performance optimization, and plugin/loader ecosystem. Use PROACTIVELY for any Webpack bundling issues including complex optimizations, build performance, custom plugins/loaders, and modern architecture patterns. If a specialized expert is a better fit, I will recommend switching and stop.
development
Web application security expert. OWASP Top 10, XSS, SQLi, CSRF, SSRF, authentication bypass, IDOR. Use for web app security testing.
testing
Vitest testing framework expert for Vite integration, Jest migration, browser mode testing, and performance optimization
tools
Vite build optimization expert with deep knowledge of ESM-first development, HMR optimization, plugin ecosystem, production builds, library mode, and SSR configuration. Use PROACTIVELY for any Vite bundling issues including dev server performance, build optimization, plugin development, and modern ESM patterns. If a specialized expert is a better fit, I will recommend switching and stop.