smithery.ai

design-architect

Standards for creating technical design documents (design.md). Use when creating or reviewing system designs.

First seen Mar 21, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,806 B
  • docs SUMMARY.md 133 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Design Document Standards

Purpose

Design documents provide the technical blueprint for implementing requirements. They should be comprehensive, well-organized, and easy to navigate.

Structure

Table of Contents

Place after Overview.

## Table of Contents
- [Overview](#overview)
- [Architecture](#architecture)
- [Components and Interfaces](#components-and-interfaces)
- [Data Models](#data-models)
...

Visual Diagrams

Use Mermaid for diagrams.

  • Flowcharts: Process flows.
  • Sequence Diagrams: Component interactions.
  • Class Diagrams: Data models.
flowchart TD
    A[Start] --> B{Decision?}

External References

Create a section for tools, libraries, and specs.

## External References
### Tools and Libraries
- **Actionlint**: [Link](...)

Content Guidelines

Tables

Use tables for structured info (inputs, outputs, config).

Code Examples

Include examples for config files, API usage, and data structures. Specify the language.

Components

For each component, define:

  • Purpose
  • Inputs/Outputs
  • Responsibilities
  • Interactions

Best Practices

  • Context-First: Before designing, Query project-knowledge to understand existing patterns.
  • Contract-First: The FIRST deliverable of any design must be the Interface Definition (e.g., types.ts, interfaces.go). This allows parallel work.
  • Clarity: Be precise about how the system works.
  • Traceability: Reference which requirements are satisfied by which design element.
  • Completeness: Cover error handling, validation, security, and performance.