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

spec-driven规格驱动

Agent Skill

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

总安装

2,742

周安装

112

GitHub Stars

5

下载量

887
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于规格驱动的开发流程管理,支持从需求定义到实现验证的全链路结构化推进。

  • 支持在 Codex、Claude、Cursor、Gemini CLI 中运行,适用于新功能开发与系统改造。
  • 通过 GitHub 安装,需结合项目上下文与特征规格文档,自动跳过小范围变更的冗余步骤。
  • 每次任务执行后自动验证,确保不破坏现有功能,适合持续交付与代码审计场景。
  • 建议结合 .agents/project.md 与 .artifacts/state.md 维护项目状态与决策记录。

SKILL.md

Spec-Driven Development

Recommended effort: xhigh for design and audit phases; medium for implement, quick mode, and status checks.

Structured development workflow with adaptive depth. Right ceremony for the right scope.

Workflow

specify --> design* --> tasks* --> implement --> verify --> audit --> done
  ^______________________________________|  (verify after each task)

Adaptive pipeline: Specify and Implement always run; Design and Tasks auto-skip when scope is small enough. Verify runs after every task/range and marks AC checkboxes. Implement finishes at to-review; Audit validates Goals and Success Criteria, then transitions to done. Validate (UAT) is on-demand and can reprove any [x].

Context Loading Strategy

Base load:

  • .agents/project.md (context, if exists)
  • Current feature spec.md

On-demand:

  • .agents/codebase/*.md (brownfield)
  • .agents/knowledge.md (cross-feature decisions and gotchas)
  • decisions.md (designing or implementing from user decisions)
  • design.md (implementing)
  • tasks.md (implementing)
  • research/*.md (new technologies)

Never simultaneous:

  • Multiple feature specs
  • Multiple codebase docs

Artifact Structure Authority

Templates in templates/ are the canonical source of truth for every artifact's structure. Existing artifacts in .artifacts/ may be stale, predate skill updates, or have been authored before current conventions -- they are context, NEVER structural reference.

Load order when creating any artifact:

  1. Load the relevant template from templates/ first
  2. Only then read existing artifacts (spec.md, design.md, tasks.md, etc.) for domain context, prior decisions, or cross-feature continuity

If an existing artifact's structure diverges from the template, follow the template. Do not propagate legacy structure.

Triggers

Feature-Level (auto-sized)

Trigger PatternReference
Create new feature, specify featurespecify.md/spec-driven/references/specify.md)
From PRD, extract from document, use this PRDspecify.md/spec-driven/references/specify.md) (via @file.md)
Modify feature, improve featurespecify.md/spec-driven/references/specify.md) (brownfield)
Discuss feature, capture context, how should this workdiscuss.md/spec-driven/references/discuss.md)
Create technical design, plan featuredesign.md/spec-driven/references/design.md)
Research technology, cache researchresearch.md/spec-driven/references/research.md)
Create taskstasks.md/spec-driven/references/tasks.md)
Implement task, execute taskimplement.md/spec-driven/references/implement.md)
Verify implementation, check adherence, verify codeverify.md/spec-driven/references/verify.md)
Audit feature, validate goals, audit goals and success criteriaaudit.md/spec-driven/references/audit.md)
Validate, UAT, manual testing, test manuallyvalidate.md/spec-driven/references/validate.md)
Quick fix, quick task, small change, bug fixquick-mode.md/spec-driven/references/quick-mode.md)
List features, show statusstatus-specs.md/spec-driven/references/status-specs.md)

Guidelines

Trigger PatternReference
How to write specsspec-writing.md/spec-driven/references/spec-writing.md)
How to decompose taskstasks.md/spec-driven/references/tasks.md)
Codebase explorationcodebase-exploration.md/spec-driven/references/codebase-exploration.md)
Research patternsresearch.md/spec-driven/references/research.md)
Baseline discoverybaseline-discovery.md/spec-driven/references/baseline-discovery.md)
Extract from PRD/docsdoc-extraction.md/spec-driven/references/doc-extraction.md)
Coding principlescoding-principles.md/spec-driven/references/coding-principles.md)
Status workflow, when to update statusstatus-workflow.md/spec-driven/references/status-workflow.md)
Knowledge format, Codebase Feedback formatknowledge.md/spec-driven/references/knowledge.md)

Notes:

  • deep-verify.md is not a direct trigger. It is loaded by verify.md during Step 5 (Code Correctness).
  • baseline-discovery.md is not a direct trigger. It is loaded by specify.md Step 8 for brownfield features.

Cross-References

specify.md --------> discuss.md (when gray areas detected)
specify.md --------> quick-mode.md (when Small scope)
specify.md --------> design.md (when Large/Complex, spec complete)
specify.md --------> implement.md (when Medium, skip design/tasks)
design.md ---------> tasks.md (when Large/Complex)
design.md ---------> research.md (if new tech)
tasks.md ----------> implement.md
implement.md ------> coding-principles.md (loaded before coding)
implement.md ------> verify.md (after every task/range)
verify.md --------> deep-verify.md (code correctness analysis)
verify.md --------> spec.md (marks AC [x] on pass, reverts on regression)
implement.md ------> audit.md (after to-review, validates Goals/Success)
audit.md ---------> spec.md (marks Goals/Success [x], transitions done)
implement.md ------> validate.md (on-demand UAT, any scope)
validate.md ------> audit.md (re-run required after UAT reproves any [x])
implement.md ------> tasks.md (safety valve: >5 inline steps)
specify.md --------> baseline-discovery.md (brownfield features)
design.md ---------> project-index (prompts integrate feedback after Step 8)
implement.md ------> project-index (prompts integrate feedback after Step 10)

Auto-Sizing

Complexity determines depth, not a fixed pipeline. Before starting any feature, assess its scope and apply only what's needed:

ScopeWhatSpecifyDesignTasksImplement
Small≤3 files, one sentence, no user-facing featureQuick mode -- skip pipeline entirely---
MediumCanonical pattern, ≤10 tasks, no novel architectural decisionsSpec (brief)Skip -- explore inlineSkip -- steps implicitImplement + verify per step
LargeNovel architectural decisions, or >10 tasks, or pattern new to this codebaseFull spec + requirement IDsFull designFull breakdown + dependenciesImplement + verify per task
ComplexAmbiguity in problem itself, or new domain to the userFull spec + discuss gray areas/spec-driven/references/discuss.md)Research + full designBreakdown + parallel designImplement + verify per task

Medium vs Large, resolving the gray zone:

Multi-file is not Large. Touching 4-6 files does not upgrade a canonical pattern to Large -- the count of files is incidental. The question is whether the feature requires an architectural decision the reader of the spec could not have predicted from the feature description alone.

  • Dark-mode toggle (localStorage + system preference + CSS vars) -- Medium. Canonical pattern, no novel decision. Files touched is incidental.
  • Add "remember me" checkbox to existing login -- Medium. Pattern known, scope bounded.
  • Add role-based access control to an app without any prior auth model -- Large. Novel decision: where does role live (JWT vs DB lookup), how does enforcement layer work.
  • Build offline-first sync with conflict resolution, no prior CRDT experience -- Complex. Ambiguity in the problem itself (LWW vs CRDT vs event sourcing), new domain.

If you find yourself reaching for design.md because the feature is "multi-component," pause: if every file you will touch is an obvious consequence of the feature description, you are in Medium territory. Design.md exists to capture decisions a peer reviewer could not reconstruct from the spec -- if there are no such decisions, design.md is ceremony.

Rules:

  • Specify and Implement are always required -- you always need to know WHAT and DO it
  • Design is skipped when the change is straightforward (no architectural decisions, no new patterns)
  • Tasks is skipped when there are ≤3 obvious steps (they become implicit in Implement)
  • Discuss is triggered within Specify only when the agent detects ambiguous gray areas that need user input
  • Verify runs after every task/range -- checks design adherence, pattern adherence, code correctness (tooling-aware deep analysis), and visual adherence (optional); also marks AC [x] in spec.md on pass
  • Audit runs before done -- validates Goals and Success Criteria against evidence, marks their [x], and transitions to-review -> done; mandatory for every .artifacts/features/ feature (Medium/Large/Complex)
  • Validate (UAT) is on-demand -- user requests it when they want to manually test, any scope; may revert any [x] if user reproves
  • Quick mode is the express lane -- for bug fixes, config changes, and small tweaks (no audit needed)
  • Verification is continuous -- quality gates and acceptance criteria run after each task or range, never deferred to the end

Safety valve: Even when Tasks is skipped, Implement ALWAYS starts by listing atomic steps inline (see implement.md/spec-driven/references/implement.md)). If that listing reveals >5 steps or complex dependencies, STOP and create a formal tasks.md -- the Tasks phase was wrongly skipped.

Project Structure

.artifacts/
├── features/
│   └── {ID}-{name}/
│       ├── spec.md       # WHAT: Requirements (always created)
│       ├── decisions.md  # WHY: Decisions on gray areas (only when discuss triggered)
│       ├── design.md     # HOW: Architecture (only for Large/Complex)
│       ├── tasks.md      # WHEN: Tasks (only for Large/Complex)
│       └── designs/      # Visual references (optional)
├── quick/                # Quick mode tasks
│   └── NNN-{slug}/
│       └── task.md       # Includes completion fields (patterns_discovered, follow_up)
└── research/             # Research cache (reusable across features)
    └── {topic}.md

Project context:

.agents/
├── project.md            # Project context (project-index)
├── codebase/             # Codebase analysis (project-index)
└── knowledge.md          # Cross-feature decisions and gotchas (spec-driven)
Note: .agents/codebase/ is generated by the project-index skill. .agents/knowledge.md is owned by spec-driven -- it accumulates cross-feature decisions, gotchas, and queues codebase discoveries in a ## Codebase Feedback section for project-index to integrate. project-index reads knowledge.md for context and consumes the Codebase Feedback queue on demand (/project-index integrate feedback), but never rewrites Decisions or Gotchas. spec-driven is the sole writer to knowledge.md; project-index is the sole writer to .agents/codebase/*.md and .agents/project.md. If .agents/ doesn't exist, Specify suggests running project-index for better context (especially for brownfield projects). All feature artifacts stay within .artifacts/.

Templates

ContextTemplate
Feature specspec.md/spec-driven/templates/spec.md)
Discuss contextdecisions.md/spec-driven/templates/decisions.md)
Technical designdesign.md/spec-driven/templates/design.md)
Task breakdowntasks.md/spec-driven/templates/tasks.md)
Quick taskquick-task.md/spec-driven/templates/quick-task.md)
Codebase explorationexploration.md/spec-driven/templates/exploration.md)
Research cacheresearch.md/spec-driven/templates/research.md)
Session dumpsession-dump.md/spec-driven/templates/session-dump.md)

Knowledge Verification Chain

When researching, designing, or making any technical decision, follow this chain in strict order. Never skip steps.

Step 1: Codebase      -> check existing code, conventions, and patterns already in use
Step 2: Project docs  -> README, docs/, inline comments, .agents/codebase/
Step 3: Context7 MCP  -> resolve library ID, then query for current API/patterns
Step 4: Web search    -> official docs, reputable sources, community patterns
Step 5: Flag or ask   -> state partial reasoning tagged "verify", or ask user for direction

Rules:

  • Never skip to Step 5 if Steps 1-4 are available
  • Step 5 output is never presented as fact -- either flagged as uncertain or framed as a direction question to the user
  • NEVER assume or fabricate. If the chain does not resolve an answer, say "I don't know" and ask the user for direction. Inventing APIs, patterns, or behaviors causes cascading failures across design -> tasks -> implementation. Uncertainty is always preferable to fabrication.

Guidelines

DO:

  • Separate content by purpose: spec=WHAT (goals, stories, ACs), design=HOW, tasks=WHEN
  • Follow status flow: draft -> ready -> in-progress -> to-review -> done
  • Use sequential Feature IDs (001, 002)
  • Reuse research cache across features (.artifacts/research/)
  • Consume .agents/ for project context and codebase info (optional -- use if exists)
  • Queue codebase discoveries to .agents/knowledge.md ## Codebase Feedback section -- project-index integrates them into codebase/*.md on demand
  • Record cross-feature decisions and gotchas in .agents/knowledge.md during design and implement
  • Auto-size depth based on complexity -- skip phases that add no value
  • Run verify after each task or range -- design adherence, pattern adherence, visual (if references exist)

DON'T:

  • Reuse Feature IDs from previous features
  • Mix spec, design, and task content in a single file
  • Skip status transitions (e.g., jumping from draft to done)
  • Create feature-specific research files outside.artifacts/research/
  • Generate .agents/ content from scratch (that's project-index's responsibility)
  • Force full pipeline on small/medium changes -- respect auto-sizing
  • Assume or fabricate when information is unavailable -- follow Knowledge Verification Chain
  • Defer verification to the end -- verify runs per task/range, not as a final batch
  • Loop indefinitely on verify findings -- escape after 3 failed fix attempts

Phase Transitions

Each phase (specify, design, research, tasks, implement) should run in a clean context window. A polluted window (used for research and then for implementation) grows large and increases hallucination risk.

Between phases:

finish phase -> append to session dump -> clean window -> start next phase
                                                           ...
                                                         (more phases)
                                                           ...
                                         end of session -> wrap-up (reads dump)
  1. Complete the current phase and write its artifacts to disk
  2. Append session context to .artifacts/.session-dump.md -- a near-complete dump of what happened (decisions, discoveries, blockers, open items, phase completed, next phase). Each phase appends, building a cumulative record
  3. Clear the context window
  4. Start the next phase in a clean window, loading only the artifacts it needs

The session dump is ephemeral -- wrap-up reads it at end of session to compose notes, then the file is disposable. It is not a project artifact.

Sub-agent dispatch:

Research and implementation phases can be delegated to sub-agents for better context isolation and parallelism. The artifacts on disk are the handoff mechanism -- sub-agents don't need to return findings through the context.

  • Research sub-agent: reads codebase + external sources, writes to .artifacts/research/{topic}.md
  • Implementation sub-agents: receive spec + design + task(s), write code to disk. Main agent coordinates and runs verify
  • Parallel tasks ([P] marker) map directly to independent sub-agents

Error Handling

  • No.artifacts/: Create it (features/ and research/ are created on demand)
  • Spec not found: List available features
  • Open questions blocking architecture: Resolve before planning (trigger discuss)
  • Design not found: Suggest design before tasks (or skip if Medium scope)
  • Tasks not found: Suggest tasks before implement (or skip if Medium scope)
  • Scope misjudged: Safety valve catches it -- redirect to appropriate phase

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.89%
按下载量换算345

Claude

28.91%
按下载量换算256

Cursor

19.45%
按下载量换算173

Gemini CLI

9.59%
按下载量换算85

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills