api-design
This skill should be used when the user needs to "design the API", do "endpoint design", pin down a "request/response shape", choose a "pagination" strategy…
This skill should be used when the user asks to "design a system", "design <a product>" (e.g. "design WhatsApp", "design a URL shortener", "design a news feed"), "high-level architecture for…", "how would you architect…", "system design interview", or wants to scope, diagram,
$ npx -y skills add proyecto26/system-design-skills --skill system-design --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/system-designContext preview
The summary Claude sees to decide when to auto-load this skill.
This skill should be used when the user asks to "design a system", "design <a product>" (e.g. "design WhatsApp", "design a URL shortener", "design a news feed"), "high-level architecture for…", "how would you architect…", "system design interview", or wants to scope, diagram,
name: system-design description: This skill should be used when the user asks to "design a system", "design <a product>" (e.g. "design WhatsApp", "design a URL shortener", "design a news feed"), "high-level architecture for…", "how would you architect…", "system design interview", or wants to scope, diagram, and justify a backend/distributed-system design. It runs a reasoning loop — clarify, estimate, design, weigh trade-offs, stress-test, iterate — and routes to focused building-block skills. Use it whenever a request is an open-ended design problem, even if the user doesn't say "system design".
Drive an open-ended design problem from a vague prompt to a justified, stress-tested architecture — **by reasoning, not by recalling a diagram.** This skill owns the *method* and the *routing*; the actual component recipes live in focused building-block skills it pulls in as needed.
The single most important idea, from which everything here follows:
> Do not memorize architectures; learn the forces that shape them. There is no > single correct solution — success depends on the assumptions you make explicit.
A design that works for 1,000 users may fail at 1,000,000. Treat every architecture as a **hypothesis** that holds until a constraint changes, and be ready to redraw it calmly when one does.
Work this loop out loud. It is a loop, not a checklist — late steps routinely send you back to early ones, and that is the point.
1. **Clarify requirements** — turn the vague prompt into functional requirements, non-functional constraints, and an explicit *out of scope*. Scope to a few core features; say so. → skill `requirements-scoping` 2. **Estimate scale** — back-of-the-envelope QPS, storage, bandwidth, read/write ratio. Numbers decide the design; "high traffic" does not. → skill `back-of-the-envelope` 3. **Propose a high-level design** — sketch the boxes and arrows (clients, LB, services, stores, caches, queues, CDN) and the user-facing API. Get buy-in before going deep. → skill `api-design`, plus the building blocks below. 4. **Evaluate trade-offs** — for every major choice, state what it solves, what it worsens, and what would make you change it. Never name a tool without this. → reference `tradeoff-framework.md` 5. **Stress-test failure modes** — find single points of failure, decide the degradation story, plan recovery. Assume every component breaks. → skill `resilience-failure` 6. **Iterate / deep-dive** — pick the most interesting or fragile component and go deep; let new constraints ("what if writes 10×?", "lose a region?") drive a redesign of the affected part.
These six steps are the same four activities the GUIDE names — **ask refining questions → handle the data → discuss components → discuss trade-offs** — with estimation and failure-testing made explicit. See `references/reasoning-loop.md` for the full walk-through and time budgeting.
This plugin is a wiki of composable parts. As each concern comes up in the loop, **invoke the focused skill** (via the Skill tool) rather than reconstructing its recipe from memory — load it so the options, trade-off table, behavior under stress, and cloud-provider variants come from the skill itself. That invocation is how composition works at runtime: a bare skill name below is a skill to *trigger*, not a file to read. Invoke each as its concern becomes active:
| When the problem turns to… | Use skill | |---|---| | What features / constraints / scope? | `requirements-scoping` | | How many QPS, how much storage, how many servers? | `back-of-the-envelope` | | Endpoints, request/response, pagination, idempotency | `api-design` | | Monolith vs microservices, service boundaries, gateway, discovery | `service-decomposition` | | SQL vs NoSQL, schema, indexing, sharding, replication | `data-storage` | | What to cache, eviction, invalidation, hot keys | `caching` | | Distributing traffic, L4/L7, health checks | `load-balancing` | | Async work, queues vs streams, delivery guarantees | `messaging-streaming` | | CAP, consistency models, quorum, consensus, hashing | `consistency-coordination` | | Fault tolerance, circuit breakers, degradation, rate limiting | `resilience-failure` | | Static/media delivery, edge, geo-routing | `content-delivery` | | How the design evolves with 10×/100× growth | `scaling-evolution` | | How clients resolve the service, geo/failover routing | `dns` | | Unique IDs at scale (Snowflake/UUID/ticket) | `sequencer` | | Storing large/unstructured objects (images, video, files) | `blob-store` | | Metrics/logs/traces, health checks, SLOs, alerting | `observability` | | High-volume log collection/shipping/retention | `distributed-logging` | | Full-text search, inverted index, autocomplete | `distributed-search` | | Background / scheduled / recurring jobs | `task-scheduling` | | Counting likes/views at huge write rates | `sharded-counters` | | Drawing/visualizing the architecture | `architecture-diagram` |
Full descriptions, the bottom-up layering, and "which block answers which question" are in `references/building-blocks-index.md` (the canonical 21-block catalog). Trigger a block directly when the user asks about just that part — the orchestrator is not required for every question.
The GUIDE catalogs ten failure modes. They are not about wrong answers; they are about wrong *signals*. Keep these reflexes (full list and antidotes in `references/failure-modes.md`):
when-to-change. "Industry standard" is not a justification.
behaves under stress — not just what it is cal
Design scalable systems the way strong engineers actually do — by reasoning, not by memorizing diagrams.
Repo: proyecto26/system-design-skills
This skill should be used when the user needs to "design the API", do "endpoint design", pin down a "request/response shape", choose a "pagination" strategy…
This skill should be used when a system design needs a diagram — "draw the architecture", "diagram this system", "show the components", "make an…
This skill should be used when the user needs to "estimate QPS", "back-of-the-envelope" (BOTEC) numbers, "how much storage / bandwidth", "how many servers",…
This skill should be used when the user wants a "blob store" or "object storage", names "S3" or an S3-compatible store, needs to "store images / video /…
This skill should be used when the user asks about a "caching strategy", "cache invalidation", "what to cache", "read-through vs write-through vs write-back",…
This skill should be used when the user asks about the "CAP theorem", "PACELC", a "consistency model", "eventual vs strong consistency", "read-your-writes",…