Token导航 LogoToken导航TokenDH.com
效率执行命令clawhub未标认证来源可访问clear审计提醒

spec-kit规格套件

Agent Skill

spec-kit 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 OpenClaw 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

17,155

周安装

722

GitHub Stars

1

下载量

6,007
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install spec-kit

简介

基于 GitHub Spec Kit 实现规范驱动开发流程自动化。

  • 通过 /speckit.* 斜杠命令初始化项目并生成标准化文档。
  • 支持 Issue 跟踪、PR 审查与 CI/CD 流水线集成。
  • 需配置 GitHub App 权限以读取仓库结构与协作历史。
  • 规范定义变更需同步更新所有关联模块避免版本冲突。spec-kit 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
spec-kit
description
Use GitHub Spec Kit for Spec-Driven Development. Initialize projects, create specifications, and build software using the /speckit.* slash commands. Supports Claude Code, GitHub Copilot, Gemini CLI, and Codebuddy.
metadata

Spec Kit — Spec-Driven Development

Build high-quality software faster using Spec-Driven Development (SDD). Specifications become executable artifacts that generate working implementations, not just documentation.

Homepage: https://github.github.com/spec-kit/ GitHub: https://github.com/github/spec-kit


What is Spec-Driven Development?

SDD flips traditional software development:

TraditionalSpec-Driven
Specs are scaffolding → discardedSpecs are executable → generate code
Code is kingIntent is king
One-shot promptsMulti-step refinement
Focus on "how"Focus on "what" and "why"

Core Philosophy:

  • Intent-driven development
  • Rich specifications with guardrails
  • Heavy reliance on AI model capabilities
  • Technology-independent process

Prerequisites

  • OS: Linux, macOS, Windows (PowerShell supported)
  • AI Agent: Claude Code, GitHub Copilot, Gemini CLI, or Codebuddy CLI
  • Package Manager: uv
  • Python: 3.11+
  • Git: Any recent version

Installation & Setup

Initialize a New Project

# Create new project directory
uvx --from git+https://github.com/github/spec-kit.git specify init <PROJECT_NAME>

# Initialize in current directory
uvx --from git+https://github.com/github/spec-kit.git specify init .
uvx --from git+https://github.com/github/spec-kit.git specify init --here

Specify AI Agent

# Proactively set AI agent during init
uvx --from git+https://github.com/github/spec-kit.git specify init <project> --ai claude
uvx --from git+https://github.com/github/spec-kit.git specify init <project> --ai gemini
uvx --from git+https://github.com/github/spec-kit.git specify init <project> --ai copilot
uvx --from git+https://github.com/github/spec-kit.git specify init <project> --ai codebuddy

Script Type (Shell vs PowerShell)

Auto-selected by OS, or force explicitly:

# Force PowerShell (Windows)
uvx --from git+https://github.com/github/spec-kit.git specify init <project> --script ps

# Force POSIX shell (Linux/macOS)
uvx --from git+https://github.com/github/spec-kit.git specify init <project> --script sh

Skip Tool Checks

uvx --from git+https://github.com/github/spec-kit.git specify init <project> --ai claude --ignore-agent-tools

The 6-Step Spec-Driven Process

Step 1: Initialize

Run specify init to create project structure with templates.

uvx --from git+https://github.com/github/spec-kit.git specify init my-app --ai claude

Creates:

  • .speckit/ directory with configuration
  • Agent-specific templates
  • Git repository structure

Step 2: Define Constitution

Establish core rules and principles for your project.

Slash Command:

/speckit.constitution This project follows a "Library-First" approach. 
All features must be implemented as standalone libraries first. 
We use TDD strictly. We prefer functional programming patterns.

Purpose: Sets guardrails and organizational principles that all specs must follow.


Step 3: Create Specification

Describe what you want to build, not how.

Slash Command:

/speckit.specify Build an application that can help me organize my photos 
in separate photo albums. Albums are grouped by date and can be re-organized 
by dragging and dropping on the main page. Albums are never in other nested 
albums. Within each album, photos are previewed in a tile-like interface.

Best Practices:

  • Focus on user scenarios and behaviors
  • Avoid tech stack details (AI picks appropriate tech)
  • Describe UI/UX in plain language
  • Include constraints and business rules

Step 4: Refine (Clarify)

Identify and resolve ambiguities in your specification.

Slash Command:

/speckit.clarify Focus on security implications and edge cases

What it does:

  • Detects vague or ambiguous requirements
  • Asks clarifying questions
  • Suggests concrete implementations
  • Updates spec with resolved details

Step 5: Plan

Generate detailed implementation plan from specification.

Slash Command:

/speckit.plan

Output:

  • Architecture decisions
  • File structure
  • Implementation steps
  • Testing strategy
  • Dependencies to install

Step 6: Build

Execute the implementation plan.

Slash Command:

/speckit.build

Features:

  • Generates code based on spec + plan
  • Creates files incrementally
  • Runs tests as specified
  • Commits progress to Git

Context Awareness: Git Branch-Based

Spec Kit automatically detects the active feature based on your current Git branch.

Naming Convention:

001-feature-name
002-user-authentication
003-photo-album-grid

To switch between specifications:

git checkout 001-feature-name    # Work on feature 1
git checkout 002-user-auth       # Work on feature 2

Context is automatically loaded when you run Spec Kit commands.


Development Phases

Phase 1: 0-to-1 (Greenfield)

Focus: Generate from scratch

  • Start with high-level requirements
  • Generate specifications
  • Plan implementation steps
  • Build production-ready applications

Phase 2: Creative Exploration

Focus: Parallel implementations

  • Explore diverse solutions
  • Support multiple technology stacks
  • Experiment with UX patterns
  • Compare approaches

Phase 3: Iterative Enhancement (Brownfield)

Focus: Modernization

  • Add features iteratively
  • Modernize legacy systems
  • Adapt existing processes
  • Refactor with specs

All Slash Commands Reference

CommandPurposeWhen to Use
/speckit.constitutionDefine project principlesAt project start
/speckit.specifyCreate specificationFor each new feature
/speckit.clarifyResolve ambiguitiesWhen spec is vague
/speckit.planGenerate implementation planBefore coding
/speckit.buildExecute implementationAfter planning

Enterprise Features

Organizational Constraints

  • Cloud Providers: Target specific platforms (AWS, Azure, GCP)
  • Tech Stacks: Enforce approved technologies
  • Design Systems: Integrate enterprise UI libraries
  • Compliance: Meet security/regulatory requirements

Technology Independence

Spec Kit works with:

  • Any programming language
  • Any framework
  • Any architecture pattern
  • Any deployment target

Local Development (Contributing)

Clone and Setup

git clone https://github.com/github/spec-kit.git
cd spec-kit

Run CLI Directly

# Fastest feedback - no install needed
python -m src.specify_cli --help
python -m src.specify_cli init demo-project --ai claude --script sh

Editable Install

uv venv
source .venv/bin/activate  # Windows: .venv\Scripts\Activate.ps1
uv pip install -e .
specify --help

Test From Branch

# Push branch first
git push origin your-feature-branch

# Test via uvx
uvx --from git+https://github.com/github/spec-kit.git@your-feature-branch \
  specify init demo-branch-test --script ps

Best Practices

Specification Writing

DO:

  • Describe user scenarios
  • Include business rules
  • Mention constraints
  • Use plain language
  • Focus on behavior, not implementation

DON'T:

  • Specify tech stack (let AI choose)
  • Write implementation details
  • Use jargon without context
  • Make assumptions unstated

Example Good Spec

/speckit.specify Build a task management app where:
- Users can create projects with color-coded labels
- Tasks have priorities (High/Medium/Low) with visual indicators
- Drag-and-drop to reorder tasks within a project
- Tasks can be assigned to multiple users
- Due dates trigger notifications 24h before
- Completed tasks archive automatically after 7 days
- Mobile-responsive with touch-friendly interactions

Example Bad Spec

/speckit.specify Build a React app with Redux for state management.
Use Material-UI for components. Store data in PostgreSQL.

Troubleshooting

Command Not Found

Problem: AI agent doesn't recognize /speckit.* commands Solution: Re-run specify init in the project directory

Wrong Context Loaded

Problem: Working on wrong specification Solution: Check current branch with git branch and switch: git checkout <branch>

Script Type Issues

Problem: PowerShell scripts on macOS or vice versa Solution: Force script type: --script sh or --script ps

Agent Tool Missing

Problem: Spec Kit complains about missing AI agent tools Solution: Use --ignore-agent-tools flag during init


Workflow Examples

New Feature Workflow

# 1. Create feature branch
git checkout -b 004-dark-mode

# 2. In AI agent chat:
/speckit.specify Add dark mode toggle to the application. 
System should detect OS preference but allow manual override. 
Store preference in localStorage.

# 3. Clarify ambiguities:
/speckit.clarify Focus on accessibility (WCAG contrast)

# 4. Generate plan:
/speckit.plan

# 5. Build:
/speckit.build

# 6. Commit and PR
git add .
git commit -m "feat: add dark mode toggle"

Brownfield Enhancement

# 1. Switch to existing feature
git checkout 002-user-auth

# 2. Enhance spec:
/speckit.specify Add OAuth2 login with Google and GitHub providers

# 3. Plan the enhancement:
/speckit.plan

# 4. Build iteratively:
/speckit.build

Resources

  • Documentation: https://github.github.com/spec-kit/
  • GitHub Repo: https://github.com/github/spec-kit
  • Contributing: https://github.com/github/spec-kit/blob/main/CONTRIBUTING.md
  • Support: https://github.com/github/spec-kit/blob/main/SUPPORT.md

Key Principles Summary

  1. Intent over Implementation — Describe what, not how
  2. Specifications are Assets — Treat them as primary deliverables
  3. Multi-step Refinement — Iterate: Constitute → Specify → Clarify → Plan → Build
  4. Context-Aware — Git branches maintain feature context
  5. Technology Agnostic — Process works with any stack

_Last updated: 2026-02-28_

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

91.61%
按下载量换算5,503

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install spec-kit 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills