Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

writing-design-docs编写设计文档

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

998

周安装

40

GitHub Stars

1

下载量

323
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:writing-design-docs(编写设计文档)
来源仓库:https://github.com/neekolas/claude-skills
仓库路径:skills/writing-design-docs
安装命令:
npx skills add https://github.com/neekolas/claude-skills --skill writing-design-docs
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/neekolas/claude-skills --skill writing-design-docs

简介

2 句话

  • 3句话
  • 4句话
  • 目标/非目标
  • 每颗2-3颗子弹
  • 每颗4-5颗子弹
  • 6+ 具有不变量
  • 背景
  • 仅链接
  • 链接+文件列表
  • 链接+文件+影响
  • 系统设计
  • 1 段
  • 接口+功能
  • 图表 + 完整的 API 界面
  • 图书馆
  • 表或“无”
  • 表+理由
  • 表 + 替代方案
  • 测试
  • 3-5耳
  • 8-12 耳 + 边缘情况
  • 15+耳朵+综合优势
  • 常见错误
  • 错误
  • 修复
  • 事后才进行测试
  • 将红/绿 TDD 与规范中定义的测试用例结合使用
  • 目标模糊
  • 添加数字:“将 p99 从 800ms 减少到 200ms”
  • 缺少非目标
  • 未说明的范围 = 假定的范围
  • 实施即设计
  • 契约和行为,而不是代码
  • 没有上下文链接
  • 链接催化剂——未来的读者需要“为什么”
  • 示例
  • 参见示例/
  • 对于分级示例:
  • 小-cli-flag.md
  • — 添加 --verbose
  • 标志(最小但完整)
  • 中型 API 端点.md
  • — 具有身份验证和速率限制的 REST API
  • 大型事件系统.md
  • — 具有重试和 DLQ 的分布式事件管道
  • 每周安装量
  • 40
  • 存储库
  • 尼科拉斯/克劳德-技能
  • GitHub 之星
  • 1
  • 第一次看到
  • 6 天前
  • 安全审计
  • Gen Agent Trust Hub 通行证
  • 套接字通行证
  • 斯尼克警告

SKILL.md

Writing Design Docs

Produce a structured design document that captures what you're building, why, and how you'll verify it works. Output: docs/plans/YYYY-MM-DD-<topic>-design.md. This skill produces the artifact and stops.

Process

digraph design_doc {
    "Explore codebase & context" [shape=box];
    "Propose 2-3 approaches" [shape=box];
    "User selects approach" [shape=diamond];
    "Draft each section" [shape=box];
    "Write EARS requirements" [shape=box];
    "Present to user for review" [shape=box];
    "User approves?" [shape=diamond];
    "Write to docs/plans/" [shape=box];
    "Done" [shape=doublecircle];

    "Explore codebase & context" -> "Propose 2-3 approaches";
    "Propose 2-3 approaches" -> "User selects approach";
    "User selects approach" -> "Propose 2-3 approaches" [label="none fit"];
    "User selects approach" -> "Draft each section" [label="selected"];
    "Draft each section" -> "Write EARS requirements";
    "Write EARS requirements" -> "Present to user for review";
    "Present to user for review" -> "User approves?";
    "User approves?" -> "Draft each section" [label="revise"];
    "User approves?" -> "Write to docs/plans/" [label="yes"];
    "Write to docs/plans/" -> "Done";
}

Proposing Approaches

Before drafting, explore the solution space. Research the codebase and relevant libraries, then propose 2-3 approaches:

  • Lead with your recommendation and explain why
  • For each approach: architecture summary, pros, cons, effort estimate
  • Include at least one simpler/smaller and one more robust/extensible option
  • Let the user select before committing to a design direction

Design Doc Template

Six sections. Scale depth to complexity — see Scaling Guide.

1. Summary

2-4 sentences. What and why. A busy engineer should understand the project from this alone.

2. Project Goals & Non-Goals

Goals: Problem being solved. Invariants that must hold. Be specific — "p99 under 200ms", not "fast".

Non-Goals: Reasonable things explicitly out of scope. Not negated goals — things you're choosing not to address.

3. Context

  • Catalysts: GitHub Issues, Slack threads, or other triggers
  • Codebase: Existing folders, files, and design docs relevant to this work
  • External docs: URLs for third-party library documentation
  • References: Blog posts, RFCs, or source materials that informed the design
  • Impact area: Modules or directories that will be modified

4. System Design

  • Architecture overview: How components fit together. Diagram if helpful.
  • New or modified interfaces: Class/struct definitions, API boundaries. Shape, not implementation.
  • Key functions: Important functions with expected behavior. Contracts and invariants.
  • Alternatives considered: Why rejected approaches didn't make the cut.

5. Libraries & Utilities Required

External dependencies:

PackageVersionPurpose
name^x.y.zWhy needed

Internal modules:

ModulePathPurpose
namesrc/path/What it provides

Write "None" if no dependencies — don't omit the section.

6. Testing & Validation

This is the most important section. It should be the most detailed.

Acceptance Criteria

Use EARS format for every criterion. Each must be testable and unambiguous.

Edge Cases

Address relevant categories: concurrency/race conditions, dependency failures, error handling/recovery, boundary conditions, security considerations.

Verification Commands

Concrete commands to prove correctness. Include linting and formatting checks.

EARS Quick Reference

PatternTemplateExample
UbiquitousTHE SYSTEM SHALL [behavior]THE SYSTEM SHALL encrypt all data at rest
Event-drivenWHEN [event] THE SYSTEM SHALL [behavior]WHEN a request exceeds the rate limit THE SYSTEM SHALL return HTTP 429
State-drivenWHILE [state] THE SYSTEM SHALL [behavior]WHILE the circuit breaker is open THE SYSTEM SHALL return cached responses
OptionalWHERE [feature] THE SYSTEM SHALL [behavior]WHERE verbose logging is enabled THE SYSTEM SHALL log request bodies
UnwantedTHE SYSTEM SHALL NOT [behavior]THE SYSTEM SHALL NOT expose internal error details to clients
ComplexWHEN [a] AND [b] THE SYSTEM SHALL [behavior]WHEN the queue is full AND the message is high-priority THE SYSTEM SHALL evict the oldest low-priority message

Rules: Use SHALL, never "should"/"may". Each requirement independently testable. No vague terms — use measurable criteria.

Scaling Guide

SectionSmall (~150w)Medium (~400w)Large (~800w)
Summary2 sentences3 sentences4 sentences
Goals/Non-Goals2-3 bullets each4-5 bullets each6+ with invariants
ContextLinks onlyLinks + file listLinks + files + impact
System Design1 paragraphInterfaces + functionsDiagram + full API surface
LibrariesTable or "None"Table + rationaleTable + alternatives
Testing3-5 EARS8-12 EARS + edge cases15+ EARS + comprehensive edges

Common Mistakes

MistakeFix
Testing as afterthoughtUse red/green TDD with test cases defined in the spec
Vague goalsAdd numbers: "reduce p99 from 800ms to 200ms"
Missing non-goalsUnstated scope = assumed in scope
Implementation as designContracts and behavior, not code
No context linksLink the catalyst — future readers need the WHY

Examples

See examples/ for graduated examples:

  • small-cli-flag.md — Adding a --verbose flag (minimal but complete)
  • medium-api-endpoint.md — REST API with auth and rate limiting
  • large-event-system.md — Distributed event pipeline with retry and DLQ

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.6%
按下载量换算121

Claude

29.82%
按下载量换算96

Cursor

17.59%
按下载量换算57

Gemini CLI

10.46%
按下载量换算34

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills