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

spec-driven规格驱动

Agent Skill

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

总安装

196

周安装

8

GitHub Stars

2

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/b12consulting/skills --skill spec-driven

简介

Spec-Driven Development 方法论要求所有需求与决策记录在 specs/ 文件夹作为唯一真相源。

  • 适用于强调协作透明、变更可追溯的项目,尤其是人类与 AI 协同开发的场景。
  • 配套四技能协同工作:初始化项目结构、创建与管理 tickets、审计规格健康度。
  • 若缺少任一关联技能,可能导致流程断裂或文档不一致,建议同步部署全套工具。
  • 该模式强制结构化表达,不适合偏好自由探索或非确定性强的创意类任务。

SKILL.md

Spec-Driven Development

A methodology for collaborative human-agent project management where all requirements, decisions, and work are documented in a specs/ folder that serves as the project's single source of truth.

Skill Dependencies

This skill is part of a set of four skills designed to work together:

SkillPurpose
spec-driven (this skill)Methodology reference — structure, formats, rules
specs-setupInitialize specs/ for a new project
specs-ticketsCreate and execute tickets through their lifecycle
specs-reviewAudit specs health, consistency, and drift

If any of these skills are missing from the project, instruct the user to install them before proceeding:

npx skills add b12consulting/skills --skill <missing_skill>

Core Principles

  1. Specs are the ground truth. When code and specs disagree, the specs win. Either update the code or create an ADR to change the specs.
  2. Decisions are recorded. Every change to Vision, PRD, Goals, or Architecture is documented with an Architecture Decision Record.
  3. Work is traceable. Every ticket captures research, requirements, plans, and tasks so future contributors understand not just WHAT was built but WHY.
  4. Humans decide, agents execute and propose. Agents can research, draft specs, plan, and implement — but key decisions (scope, architecture, trade-offs) require human confirmation.
  5. Progressive documentation. Create documents when needed, not proactively. A small bug fix doesn't need Research.md.

Truth Hierarchy

When documents conflict, the higher-level document takes precedence:

Vision.md > PRD.md / Goals.md > Architecture/ > Ticket Spec.md > Ticket Plan.md > Ticket Tasks.md

Conflicts must be resolved by either:

  • Creating an ADR and updating the higher-level document
  • Creating a ticket to fix the lower-level document or code

Folder Structure

specs/
├── README.md                    # Project dashboard and navigation
├── Vision.md                    # WHY — vision, problem statement, target audience
├── PRD.md                       # WHAT — functional and non-functional requirements
├── Goals.md                     # HOW WE MEASURE — success metrics, KPIs, milestones
├── Glossary.md                  # Domain vocabulary
├── Changelog.md                 # What shipped and when
├── Architecture/                # Architecture documentation (always a folder)
│   ├── README.md                # Architecture overview (entry point)
│   └── <topic>.md               # Sub-documents split by concern
├── decisions/                   # Architecture Decision Records
│   ├── ADR-001-<title>.md
│   └── ...
└── tickets/                     # Work items
    └── <NNN>-<slug>/            # e.g., 001-user-auth/
        ├── README.md            # Ticket metadata and summary
        ├── Research.md          # Investigation findings (optional)
        ├── Spec.md              # Requirements and acceptance criteria
        ├── Plan.md              # Implementation approach (optional)
        ├── Tasks.md             # Task checklist
        ├── Dependencies.md      # Cross-ticket dependencies (optional)
        ├── Decisions.md         # Open questions and resolved decisions (optional)
        └── Journal.md           # Process record (optional)

Project-Level Documents

DocumentPurposeRequired
README.mdProject dashboard. Status, active tickets, recent ADRs, navigation. Read this first in every conversation.Always
Vision.mdWHY — Vision statement, problem statement, target audience and personas. Rarely changes.Always
PRD.mdWHAT — Functional requirements, non-functional requirements, scope, assumptions & constraints. Traditional PRD scope.Always
Goals.mdHOW WE MEASURE — Success metrics, KPIs, milestones. Reviewed periodically.Always
Architecture/README.mdHOW IT'S BUILT — System overview, components, tech stack, constraints. Links to sub-documents.Always
Glossary.mdDomain terms and definitions. Keeps language consistent across all documents.Always
Changelog.mdShipped changes in reverse chronological order.Always
ADR-NNN-<title>.mdRecords a decision that changed Vision, PRD, Goals, or Architecture.Per decision

Ticket-Level Documents

DocumentPurposeRequired
README.mdTicket metadata (status, owner, dates, Jira link) and one-paragraph summary.Per ticket
Research.mdInvestigation findings, options considered, feasibility.When research was done
Spec.mdThe contract: user stories, acceptance criteria, scope boundaries.Per ticket
Plan.mdImplementation strategy — high-level approach, key design decisions, risks.At planning phase
Tasks.mdConcrete task breakdown with checkboxes.At task definition phase
Dependencies.mdWhat this ticket blocks or is blocked by.When dependencies exist
Decisions.mdQuestions raised and decisions made. Open questions at the top, resolved decisions at the bottom. Becomes a decision record once all questions are answered.When decisions arise
Journal.mdChronological record of key decisions, pivots, and process. Not a chat transcript.For non-trivial tickets

For complete document templates, see templates.md.

Architecture Folder Guidelines

The Architecture/ folder starts with a single README.md as the entry point. Keep architecture documentation high-level and navigable:

  • Start with README.md. It alone is sufficient for most projects.
  • Split when a section exceeds ~200 lines or covers a distinct concern (data model, API contracts, infrastructure).
  • New files go alongside README.md and are linked from it (e.g., data-model.md, api-contracts.md).
  • Never nest deeper than one level within Architecture/. If you need sub-folders, the architecture docs are too detailed — summarize and elevate.
  • Keep each file focused on one architectural concern.

Ticket Naming

Tickets use sequential numbering with a descriptive slug:

<NNN>-<slug>/
  • NNN: Three-digit sequential number, zero-padded (001, 002,...).
  • slug: Lowercase, hyphen-separated description (e.g., user-auth, search-api).
  • The Jira issue key is stored in the ticket's README.md frontmatter, not in the folder name.
  • To determine the next number, scan existing ticket folders and increment the highest by one.

Ticket README Frontmatter

Every ticket has a README.md with this frontmatter:

---
id: "<NNN>"
title: "<Descriptive title>"
status: research | specifying | open-questions | planned | in-progress | done | archived
jira: "" # Optional: Jira issue key (e.g., YAI-042)
owner: "" # Who is responsible
created: YYYY-MM-DD
updated: YYYY-MM-DD
---

Status values:

StatusMeaning
researchInvestigating the problem space
specifyingWriting or refining the spec
open-questionsBlocked on decisions the user must make
plannedPlan and/or tasks defined, ready for implementation
in-progressImplementation underway
doneAll acceptance criteria met, work complete
archivedTicket closed without completion. The reason for archival (superseded, cancelled, etc.) must be documented clearly in the ticket's README.md body.

Ticket Lifecycle

Research → Specify → Plan → Define Tasks → Implement → Done
PhaseFiles ProducedRequires User Validation
ResearchResearch.mdNo (user may review)
SpecifySpec.md, Decisions.md, Dependencies.mdYes — user must validate Spec.md
PlanPlan.mdYes — user must confirm Plan.md
Define TasksTasks.mdYes — user must validate Tasks.md
ImplementCode + testsPer task as appropriate
DoneUpdate README.md status, Changelog.mdYes — user confirms completion

Any participant (human or agent) can execute any phase. The lifecycle defines the *order*, not who does what. The user may write the spec themselves, or the agent may do the research. Flexibility is expected.

Drift Detection

At the start of every conversation on a project with specs/:

  1. Read specs/README.md, then Vision.md, PRD.md, Goals.md, and Architecture/README.md.
  2. If the current code or task contradicts these documents, alert the user immediately.
  3. Resolution options:

- Create an ADR to update the specs (if the code is right and specs are outdated) - Create a ticket to fix the code (if the specs are right and code has drifted)

ADR Trigger Rules

Create an Architecture Decision Record when:

  • A requirement in Vision.md, PRD.md, or Goals.md changes
  • The architecture is modified (new component, technology change, pattern shift)
  • A ticket implementation reveals that specs need updating
  • A significant decision is made that future contributors should understand

ADR Format

# ADR-NNN: <Title>

**Status**: Proposed | Accepted | Deprecated | Superseded by ADR-NNN
**Date**: YYYY-MM-DD
**Ticket**: <link to related ticket, if any>

## Context

What situation or problem prompted this decision?

## Decision

What did we decide?

## Consequences

What are the trade-offs? What becomes easier? What becomes harder?

Operational Standards Check

If the project lacks coding standards (e.g., .instructions.md, CLAUDE.md, copilot-instructions.md), prompt the user to create them before starting any implementation work. Coding standards define HOW to build; specs define WHAT to build. Both are required.

Coding standards live in their respective configuration files — not in specs/.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.92%
按下载量换算21

Claude

30.32%
按下载量换算19

Cursor

19.72%
按下载量换算12

Gemini CLI

10.16%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills