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

sddSDD 工具

Agent Skill

sdd 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

416

周安装

17

GitHub Stars

59

下载量

135
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/asiaostrich/universal-dev-standards --skill sdd

简介

sdd 用于规格驱动开发,创建、审查与管理代码编写前的正式规格文档。

  • 支持完整生命周期管理,从草稿到归档,适合需要利益相关方签署的正式项目。
  • 通过 npx skills add 命令安装,与 uds spec 形成对比,前者重流程后者重迭代速度。
  • 适用于大型功能或跨团队协作场景,避免“ vibe coding”带来的后期返工风险。
  • sdd 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Spec-Driven Development Assistant | 規格驅動開發助手

Create, review, and manage specification documents before writing code.

在撰寫程式碼前,建立、審查和管理規格文件。

When to Use /sdd vs uds spec | 何時使用

Scenario/sdduds spec
Formal feature development with review cycle
Full spec lifecycle (Draft → Archived)
Quick prototyping / Vibe coding
Small incremental changes
Stakeholder sign-off required
Micro-spec from natural language intent
/sdd = Full specification lifecycle for formal development uds spec = Lightweight micro-specs for rapid iteration /sdd = 正式開發的完整規格生命週期 uds spec = 快速迭代的輕量微規格

TL;DR Quick Checklist | 快速檢查清單

  • Search existing specs: look in specs/, docs/specs/, or project spec directory
  • Decide scope: new feature vs modify existing capability
  • Pick a unique spec ID: SPEC-NNN or kebab-case change ID
  • Write proposal with clear AC (Given/When/Then format)
  • Get approval before implementation begins
  • Implement tasks sequentially, verify against spec
  • Archive spec after completion

Decision Tree | 決策樹

New request? | 新需求?
├─ Bug fix restoring spec behavior? → Fix directly | 直接修復
├─ Typo/format/comment? → Fix directly | 直接修復
├─ Dependency update (non-breaking)? → Fix directly | 直接修復
├─ New feature/capability? → Create proposal | 建立提案
├─ Breaking change? → Create proposal | 建立提案
├─ Architecture change? → Create proposal | 建立提案
└─ Unclear? → Create proposal (safer) | 建立提案(較安全)

Workflow | 工作流程

DISCUSS ──► CREATE ──► REVIEW ──► APPROVE ──► IMPLEMENT ──► VERIFY ──► ARCHIVE

0. Discuss - Clarify Scope | 釐清範圍

Capture gray areas, establish governing principles, resolve ambiguities before writing spec.

1. Create - Write Spec | 撰寫規格

Define requirements, technical design, acceptance criteria, and test plan.

2. Review - Validate | 審查驗證

Check for completeness, consistency, and feasibility with stakeholders.

3. Approve - Sign Off | 核准

Get stakeholder sign-off before implementation begins.

4. Implement - Code | 實作

Develop following the approved spec, referencing requirements and AC.

5. Verify - Confirm | 驗證

Ensure implementation matches spec, all tests pass, AC satisfied.

6. Archive - Close | 歸檔

Archive completed spec with links to commits/PRs.

Spec States | 規格狀態

StateDescription說明
DraftWork in progress草稿中
ReviewUnder review審查中
ApprovedReady for implementation已核准
ImplementedCode complete已實作
ArchivedCompleted or deprecated已歸檔

Spec Structure | 規格結構

# [SPEC-ID] Feature: [Name]

## Overview
Brief description of the proposed change.

## Motivation
Why is this change needed? What problem does it solve?

## Requirements
### Requirement: [Name]
The system SHALL [behavior description].

#### Scenario: [Success case]
- **GIVEN** [initial context]
- **WHEN** [action performed]
- **THEN** [expected result]

## Acceptance Criteria
- AC-1: Given [context], when [action], then [result]

## Technical Design
[Architecture, API changes, database changes]

## Test Plan
- [ ] Unit tests for [component]
- [ ] Integration tests for [flow]

Scenario Formatting Rules | 場景格式規則

  • Use #### Scenario: (h4 header) for each scenario
  • Every requirement MUST have at least one scenario
  • Use GIVEN/WHEN/THEN format for structured behavior
  • Use SHALL/MUST for normative requirements, SHOULD for recommendations

Delta Operations | 變更操作

When modifying existing specs, use delta sections:

OperationDescription說明
## ADDED RequirementsNew capabilities新增功能
## MODIFIED RequirementsChanged behavior修改行為
## REMOVED RequirementsDeprecated features移除功能
## RENAMED RequirementsName changes重新命名

Usage | 使用方式

/sdd                     - Interactive spec creation wizard | 互動式規格建立精靈
/sdd auth-flow           - Create spec for specific feature | 為特定功能建立規格
/sdd review              - Review existing specs | 審查現有規格
/sdd --sync-check        - Check sync status | 檢查同步狀態

Next Steps Guidance | 下一步引導

After /sdd completes, the AI assistant should suggest:

規格文件已建立。建議下一步 / Specification document created. Suggested next steps: - 執行 /derive 從規格推導測試工件 ⭐ Recommended / 推薦 — Derive test artifacts from spec - 執行 /derive bdd 僅推導 BDD 場景 — Derive BDD scenarios only - 執行 /derive tdd 僅推導 TDD 骨架 — Derive TDD skeletons only - 審查 AC 完整性,確保所有驗收條件可測試 — Review AC completeness - 檢查 UDS 規範覆蓋率 → 執行 /audit --patterns — Check UDS standard coverage → Run /audit --patterns

Reference | 參考

AI Agent Behavior | AI 代理行為

完整的 AI 行為定義請參閱對應的命令文件:/sdd For complete AI agent behavior definition, see the corresponding command file: /sdd

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.51%
按下载量换算45

Claude

30.33%
按下载量换算41

Cursor

16.54%
按下载量换算22

Gemini CLI

10.07%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills