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

spec-driven-development规范驱动开发

Agent Skill

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

总安装

6,465

周安装

259

GitHub Stars

636

下载量

2,093
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/jasonkneen/kiro --skill spec-driven-development

简介

spec-driven-development 用于查找、检索和筛选相关信息,适合根据任务线索定位内容。

  • 适用于规范驱动开发和项目管理场景。
  • 通过 npx skills add 命令从 GitHub 仓库安装并使用。
  • 需确认权限范围和维护状态,避免触发不必要操作。
  • 可结合原始 README 继续核验具体功能。

SKILL.md

Spec-Driven Development

A comprehensive methodology for systematic software feature development that ensures quality, maintainability, and successful delivery through structured planning.

When to Use This Skill

Ideal scenarios:

  • Complex features with multiple components, integrations, or user interactions
  • High-stakes projects where rework costs are significant
  • Team collaboration requiring shared understanding
  • AI-assisted development where clear structure improves output quality
  • Knowledge preservation for future maintainers

Less suitable:

  • Simple bug fixes with obvious solutions
  • Experimental prototypes for rapid iteration
  • Time-critical hotfixes requiring immediate action
  • Well-established patterns with minimal ambiguity

The Three-Phase Workflow

Phase 1: Requirements Gathering

Purpose: Transform vague feature ideas into clear, testable requirements

Process:

  1. Capture user stories expressing value and purpose
  2. Define acceptance criteria using EARS format (Easy Approach to Requirements Syntax)
  3. Identify edge cases and constraints
  4. Validate completeness and feasibility

EARS Format Patterns:

WHEN [event] THEN [system] SHALL [response]
IF [precondition] THEN [system] SHALL [response]
WHEN [event] AND [condition] THEN [system] SHALL [response]

Example:

**User Story:** As a new user, I want to create an account, so that I can access personalized features.

**Acceptance Criteria:**
1. WHEN user provides valid email and password THEN system SHALL create new account
2. WHEN user provides existing email THEN system SHALL display "email already registered" error
3. WHEN user provides password shorter than 8 characters THEN system SHALL display "password too short" error
4. WHEN account creation succeeds THEN system SHALL send confirmation email

Phase 2: Design Documentation

Purpose: Create a comprehensive technical plan for implementation

Process:

  1. Research technical approaches and constraints
  2. Define system architecture and component interactions
  3. Specify data models and interfaces
  4. Plan error handling and testing strategies

Design Document Structure:

## Overview
[High-level summary of approach]

## Architecture
[System components and their relationships]

## Components and Interfaces
[Detailed component descriptions]

## Data Models
[Data structures and validation rules]

## Error Handling
[Error scenarios and response strategies]

## Testing Strategy
[Testing approach for different layers]

Decision Documentation:

### Decision: [Title]
**Context:** [Situation requiring decision]
**Options Considered:**
1. [Option 1] - Pros: [benefits] / Cons: [drawbacks]
2. [Option 2] - Pros: [benefits] / Cons: [drawbacks]
**Decision:** [Chosen option]
**Rationale:** [Why this was selected]

Phase 3: Task Planning

Purpose: Break design into actionable, sequential implementation steps

Process:

  1. Convert design elements into specific coding tasks
  2. Sequence tasks to enable incremental progress
  3. Define clear objectives and completion criteria
  4. Reference requirements for traceability

Task Structure:

- [ ] 1. [Epic/Major Component]
- [ ] 1.1 [Specific implementation task]
  - [Implementation details]
  - [Files/components to create]
  - _Requirements: [Requirement references]_

Task Sequencing Strategies:

  • Foundation-First: Core interfaces before dependent components
  • Feature-Slice: End-to-end vertical slices for early validation
  • Risk-First: Tackle uncertain areas early
  • Hybrid: Combine approaches based on project needs

Quality Checklists

Requirements Checklist

  • All user roles identified and addressed
  • Normal, edge, and error cases covered
  • Requirements are testable and measurable
  • No conflicting requirements
  • EARS format used consistently

Design Checklist

  • All requirements addressed in design
  • Component responsibilities well-defined
  • Interfaces between components specified
  • Error handling covers expected failures
  • Security considerations addressed

Tasks Checklist

  • All design components have implementation tasks
  • Tasks ordered to respect dependencies
  • Each task produces testable code
  • Requirements references included
  • Scope is appropriate (2-4 hours each)

Integration with AI Workflows

For Claude Code / AI Assistants:

  1. Start with context: Provide project background, constraints, and goals
  2. Work in phases: Complete requirements before design, design before tasks
  3. Iterate: Refine outputs through conversation rather than single requests
  4. Validate: Ask AI to review outputs against checklists
  5. Trace: Maintain links between requirements, design, and tasks

Example prompt for starting a spec:

I'm working on [project context]. We need to add [feature description].

Context:
- Technology: [stack]
- Users: [target audience]
- Constraints: [key limitations]

Please help me develop requirements using the EARS format, starting with user stories and acceptance criteria.

Common Pitfalls to Avoid

  1. Skipping phases: Each phase builds on the previous; shortcuts create problems
  2. Vague requirements: "System should be fast" vs specific, measurable criteria
  3. Implementation details in requirements: Focus on what, not how
  4. Over-engineering design: Solve current requirements, not hypothetical future ones
  5. Monolithic tasks: Break down into 2-4 hour increments
  6. Missing error cases: Always consider what happens when things go wrong

Next Steps

After completing a spec:

  1. Begin implementation following task sequence
  2. Track progress by marking tasks complete
  3. Update spec if implementation reveals gaps
  4. Validate completed work against requirements
  5. Document learnings for future specs

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Gemini CLI

29.25%
按下载量换算612

Antigravity

22.36%
按下载量换算468

Claude Code

16.92%
按下载量换算354

Codex

12.49%
按下载量换算261

OpenCode

8.17%
按下载量换算171

Cursor

3.35%
按下载量换算70

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills