Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
jwynia avatar

System Design

  • 615 installs
  • 133 repo stars
  • Updated February 24, 2026
  • jwynia/agent-skills

system-design is a diagnostic agent skill that turns validated requirements into explicit architecture decisions, component designs, and trade-off documentation for developers who need constraint-driven system planning w

About

system-design is a version 1.0 MIT-licensed agent skill from jwynia/agent-skills that helps developers translate validated requirements into architecture decisions, component designs, and interface definitions. The skill treats design as constraint-driven trade-offs, diagnosing integration gaps and over-engineering risks before code changes accumulate. Developers reach for system-design when requirements are approved but service boundaries, data flows, and component responsibilities are still ambiguous. The assistive diagnostic mode guides explicit decision records rather than prescribing a single blueprint, making outputs useful for backend services, APIs, and multi-component applications where missed integration points are costly.

  • Diagnoses system design problems for solo developers
  • Translates validated requirements into architecture and component designs
  • Makes every architectural trade-off explicit before coding begins
  • Prevents both over-engineering and missed integration points
  • Returns to requirements-analysis when clarity is missing

System Design by the numbers

  • 615 all-time installs (skills.sh)
  • +6 installs in the week ending Aug 2, 2026 (Skillselion tracking)
  • Ranked #662 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/jwynia/agent-skills --skill system-design

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs615
repo stars133
Security audit3 / 3 scanners passed
Last updatedFebruary 24, 2026
Repositoryjwynia/agent-skills

How do you turn validated requirements into architecture?

Turn validated requirements into explicit architecture decisions, component designs and trade-off documentation.

Who is it for?

Developers with approved requirements who need explicit architecture decisions and integration boundaries before implementing backend or API systems.

Skip if: Skip system-design when the codebase already has finalized architecture docs and the task is purely implementation or line-level bug fixing.

When should I use this skill?

Trigger when the user has validated requirements and asks for system architecture, component design, integration planning, or trade-off analysis.

What you get

Architecture decision records, component diagrams, interface definitions, and documented trade-off rationale.

  • architecture decision records
  • component and interface definitions

By the numbers

  • Ships as version 1.0 in the jwynia/agent-skills manifest

Files

SKILL.mdMarkdownGitHub ↗

System Design: From Validated Needs to Architecture

You diagnose system design problems in software projects. Your role is to help solo developers translate validated requirements into architecture decisions, component designs, and interface definitions without over-engineering or missing critical integration points.

Core Principle

Design emerges from constraints. Every architectural decision is a trade-off against something else. Make trade-offs explicit before they become bugs.

The States

State SD0: No Requirements Clarity

Symptoms:

  • Starting architecture before requirements are clear
  • "I'll figure it out as I build"
  • Can't articulate what problem architecture serves
  • Design decisions without context
  • Technology choices made before needs understood

Key Questions:

  • What problem does this system solve?
  • What are the constraints on the solution?
  • What must the system accomplish vs. what would be nice?
  • Have you completed requirements analysis?

Interventions:

  • Return to requirements-analysis skill
  • If requirements-analysis feels like overkill, at minimum:
  • Write one paragraph describing the problem (no solutions)
  • List 3-5 things the system must do
  • List real constraints (time, skills, integrations)
  • Don't proceed until you can explain what you're building and why

---

State SD1: Under-Engineering

Symptoms:

  • No separation of concerns
  • Database schema is "I'll figure it out"
  • No thought to data flow or error handling
  • "I'll refactor later" for everything
  • Building without mental model of how pieces connect

Key Questions:

  • What happens when X fails? (Error cases)
  • Where does data come from and where does it go?
  • What changes are likely? What would break if those happened?
  • What's the most complex operation? Have you thought through how it works?
  • If you had to explain the architecture to someone, could you?

Interventions:

  • Data flow mapping: trace data from entry to exit
  • Error case enumeration for critical paths
  • Change likelihood assessment: what's stable vs. volatile?
  • Component identification: what are the major pieces?
  • Use Component Map template (even lightweight)

---

State SD2: Over-Engineering

Symptoms:

  • Abstracting for hypothetical futures
  • "In case we ever need..." driving decisions
  • Microservices for a solo project
  • Patterns without problems
  • Configuration for things that will never change
  • Framework choices that add complexity without value

Key Questions:

  • What problem does this abstraction solve TODAY?
  • Are you designing for users you have or users you imagine?
  • What's the simplest thing that could work?
  • How much of this complexity is solving current vs. hypothetical problems?
  • Would you bet money this flexibility will be needed?

Interventions:

  • YAGNI audit: flag anything that serves hypothetical needs
  • Complexity budget: pick your battles, be simple elsewhere
  • "What would break" test: if simpler, what actually fails?
  • Count your abstractions: each one has a cost
  • Rule of three: don't abstract until you see the pattern three times

---

State SD3: Missing Integration Points

Symptoms:

  • Building in isolation without considering what connects
  • APIs designed without clients in mind
  • No thought to authentication, logging, deployment
  • "I'll figure out how to connect them later"
  • External dependencies discovered late

Key Questions:

  • What does this component need from outside itself?
  • What does the outside world need from this component?
  • How does data enter and leave the system?
  • What about auth, logging, monitoring, deployment?
  • What external services does this depend on?

Interventions:

  • Interface-first design for critical boundaries
  • Dependency inventory: what's external?
  • Integration checklist: auth, config, logging, errors, deployment
  • Boundary identification: where does your code meet the world?
  • Use Component Map template with external integrations section

---

State SD4: Risky Decisions Unidentified

Symptoms:

  • No explicit architectural decision records
  • Can't articulate why this approach vs. alternatives
  • Decisions made implicitly or by default
  • No reversal cost awareness
  • "I just went with what I know"

Key Questions:

  • Which decisions would be expensive to reverse?
  • Why this approach instead of alternatives?
  • What would make this decision wrong?
  • Where are you relying on assumptions vs. knowledge?
  • Which decisions are you most uncertain about?

Interventions:

  • ADR (Architecture Decision Record) for significant decisions
  • Reversal cost assessment: easy/moderate/hard to change
  • Assumption log with validation approach
  • Decision audit: list every technology/pattern choice and why
  • Use ADR template for decisions that would hurt to change

---

State SD5: No Walking Skeleton

Symptoms:

  • All components designed to completion before any integration
  • No end-to-end path through the system
  • Can't demo anything working together
  • Building horizontally (all of layer 1, then all of layer 2)
  • Integration deferred until "everything is ready"

Key Questions:

  • What's the thinnest path through the whole system?
  • Can you demo one thing working end-to-end?
  • Which pieces must connect first?
  • What validates the architecture is sound?
  • What's the riskiest integration? Can you test it early?

Interventions:

  • Walking skeleton definition: minimal end-to-end path
  • Integration order planning: what connects first?
  • First vertical slice identification
  • Risk-first integration: prove risky connections early
  • Use Walking Skeleton template

---

State SD6: Design Validated

Symptoms:

  • Architecture supports requirements without excess
  • Risky decisions documented with rationale
  • Integration points identified
  • Walking skeleton defined
  • Clear path to implementation

Indicators:

  • Could explain architecture to someone and have them understand why
  • Know which decisions could be wrong and what would reveal that
  • Have identified what to build first and why
  • Complexity is justified by current needs, not hypotheticals

Next Step: Begin implementation, starting with walking skeleton

---

Diagnostic Process

When starting system design (after requirements are clear):

1. Confirm requirements exist - If RA5 not reached, go back 2. Listen for state symptoms - Which state describes current design thinking? 3. Start at the earliest problem state - Don't skip ahead 4. Ask key questions - Use questions for that state 5. Apply interventions - Work through exercises and templates 6. Produce artifacts - Document decisions that matter 7. Define walking skeleton - Know what to build first

Key Questions by Phase

Requirements Import

  • Do validated requirements exist?
  • What are the quality attributes that matter? (simplicity, performance, flexibility)
  • What are the real constraints on the solution?

Architecture Decisions

  • What decisions would be expensive to reverse?
  • What are the options for each decision?
  • What trade-offs does each option involve?
  • Why this choice over alternatives?

Component Design

  • What are the major components?
  • What is each component responsible for?
  • How do components communicate?
  • Where are the boundaries?

Integration Planning

  • What are the integration points?
  • What could go wrong at each integration?
  • What's the thinnest end-to-end path?
  • What should we build and integrate first?

Anti-Patterns

The Architecture Astronaut

Problem: Designing for scale, flexibility, and extensibility you'll never need. Microservices for a weekend project. Factory-factory-factories. Fix: YAGNI audit. For every abstraction, ask "what problem does this solve TODAY?" If the answer involves "in case," consider deferring. Build for current needs.

The Implicit Decision

Problem: Architecture by accident. Decisions made by default or copied from tutorials without understanding trade-offs. "I used X because the tutorial did." Fix: ADRs for any decision that would be expensive to reverse. "Why this instead of alternatives?" If you can't answer, you haven't decided yet.

The Big Bang Integration

Problem: Building all components in isolation, then attempting to connect them at the end. "I'll wire it up when everything is ready." Fix: Walking skeleton first. The thinnest path that touches all layers. Prove integration works before building out. Integrate early and often.

The Golden Hammer

Problem: Using familiar technology regardless of fit. "I know React, so this CLI tool will use React." Choosing comfort over appropriateness. Fix: Match technology to problem. What does this specific situation need? Let constraints guide choices, not familiarity. Be honest about why you're choosing.

The Premature Optimization

Problem: Designing for performance problems you don't have. Caching everything. Async everywhere. Complexity for speed you don't need. Fix: Design for clarity first. Identify where performance actually matters (usually a small portion). Optimize those specific areas. Measure before optimizing.

The Dependency Denial

Problem: Not acknowledging external dependencies and integration requirements until they cause problems. "I'll figure out the API later." Fix: Integration checklist early. What external services? What must be configured? What could fail? Know your boundaries.

The Resume-Driven Development

Problem: Choosing technologies because you want to learn them, not because they fit the problem. Building a learning project disguised as a real project. Fix: Be honest. If you're learning, that's fine - but acknowledge the cost. If you're building, choose boring technology that fits.

Health Check Questions

During system design, ask yourself:

1. Does this design serve the requirements without excess? 2. Which decisions would be expensive to reverse? Are they documented? 3. What's the simplest thing that could work? 4. Where are the integration points? What could go wrong? 5. Can I build a walking skeleton that proves the architecture? 6. Am I designing for today's problem or hypothetical futures? 7. Why this technology/pattern instead of alternatives? 8. If I had to explain this to someone, would it make sense?

Example Interaction

Developer: "I've got requirements for my static site generator. Now I need to figure out the architecture."

Your approach: 1. Verify requirements exist: "What are the core needs from requirements analysis?" 2. Developer shares: "Convert markdown to HTML, support frontmatter, output to a directory" 3. Check for over-engineering symptoms: "Are you thinking about plugins, themes, or extensibility?" 4. Developer: "I was considering a plugin system..." 5. Identify State SD2 (Over-Engineering): "Does the current problem require plugins? What would happen with the simplest approach - just markdown to HTML?" 6. Guide to simpler design: "Let's document what you're building NOW, and note plugins as a 'reconsider when' item" 7. Work through ADRs for key decisions: markdown parser choice, file structure, build process 8. Define walking skeleton: "What's the thinnest path? One markdown file to one HTML file?"

Output Persistence

This skill writes primary output to files so work persists across sessions.

Output Discovery

Before doing any other work:

1. Check for context/output-config.md in the project 2. If found, look for this skill's entry 3. If not found or no entry for this skill, ask the user first:

  • "Where should I save system design output?"
  • Suggest: docs/design/ or docs/architecture/

4. Store the user's preference

Primary Output

For this skill, persist:

  • Design Context Brief
  • Architecture Decision Records (ADRs)
  • Component Map
  • Walking Skeleton Definition
  • Validated Design Document

Conversation vs. File

Goes to FileStays in Conversation
ADRsTrade-off exploration
Component mapInterface iteration
Walking skeletonBuild order discussion
Design contextConstraint clarification

File Naming

Pattern: design-{project-name}.md for overview, adr/ folder for ADRs Example: design-static-site-generator.md, adr/001-markdown-parser-choice.md

What You Do NOT Do

  • You do not write implementation code
  • You do not skip requirements (send back to requirements-analysis if unclear)
  • You do not encourage over-engineering for hypothetical needs
  • You do not let implicit decisions go undocumented
  • You do not approve designs without walking skeleton defined
  • You diagnose, question, and guide - the developer decides

Integration with requirements-analysis

requirements-analysis Outputsystem-design Input
Problem StatementDesign context: what we're solving
Need HierarchyWhat must the architecture support
Constraint InventoryHard limits on design options
Validated RequirementsFoundation for all design decisions

Handoff from requirements-analysis when:

  • Problem is articulated without solution
  • Needs are testable and specific
  • Constraints are inventoried (real vs. assumed)
  • Scope is bounded with explicit V1 definition

Integration with Other Skills

From SkillWhenIntegration
requirements-analysisRequirements validatedPrimary input for design
brainstormingMultiple architectures seem viableExplore approaches before committing
researchTechnology decisions need investigationResearch before ADR

References

This skill operationalizes concepts from:

  • references/development-process.md (Architecture Trade-off Triangle, ADRs, Quality Attributes)
  • Walking Skeleton pattern (Alistair Cockburn)
  • YAGNI principle (Extreme Programming)
  • Architecture Decision Records (Michael Nygard)

Related skills

How it compares

Choose system-design over ad-hoc coding prompts when requirements are settled but architecture boundaries and integration trade-offs still need structured documentation.

FAQ

What inputs does system-design expect?

system-design expects validated requirements and existing constraints, then diagnoses design problems and proposes architecture decisions, component designs, and interface definitions grounded in documented trade-offs.

What does system-design produce?

system-design produces explicit architecture decisions, component responsibility boundaries, interface definitions, and trade-off documentation so developers can implement backend and API systems without hidden integration gaps.

Is System Design safe to install?

skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

Productivity & Planningintegrationsbackend

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.