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

spec-workflow规格工作流程

Agent Skill

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

总安装

605

周安装

26

GitHub Stars

1

下载量

212
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/stack-shifter/skills --skill spec-workflow

简介

spec-workflow 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词或任务场景快速定位候选结果时使用。

  • 适用于研究检索类任务,支持基于来源线索和仓库路径进行信息聚合与过滤。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议核实权限范围、维护状态,并注意是否涉及联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Spec Workflow Skill

Purpose

Keep one stable spec per feature as the source of truth. Get user approval before starting implementation. Check in after each logical chunk of work before continuing.

  • Spec = what — locked requirements, stable across the entire feature
  • Plan mode = how — in-session design derived from the spec before each implementation run

When to Use

  • Spec-first workflow for a new feature
  • Stable requirements document driving phased implementation
  • "Do only the next phase" loop
  • Locked requirements with explicit user approval gates

Typical trigger phrases:

  • Spec: build...
  • "create a spec for this feature"
  • "implement the next phase"
  • "use the spec as locked requirements"
  • "set this up in docs/specs"

Do not use for trivial one-off edits unless the user explicitly asks for the workflow.

Canonical Layout

docs/
  specs/
    010_task-management.spec.md
    020_user-invitations.spec.md

If CLAUDE.md exists in the repository, treat it as an additional instruction source alongside AGENTS.md.

Naming

File names: <id>_<slug>.spec.md

Examples: 010_task-management, 011_user-invitations, 012_billing-webhooks

To choose the next prefix, list existing spec files and increment by 1. Do not use vague slugs like stuff, misc, or new-feature.

Spec File

docs/specs/<id>_<slug>.spec.md must contain:

# <Feature Title>

## Overview

## Scope / Non-Scope

### In Scope

### Out of Scope

## Requirements

## Acceptance Criteria

## What This Touches

> A loose list of areas, files, and surfaces likely affected. For human reference — not an ordered plan.

- ...

When drafting, mark every assumption or gap inline rather than guessing:

[NEEDS CLARIFICATION: <specific question>]

Examples:

- Users receive an email on assignment [NEEDS CLARIFICATION: should this also fire for reassignment?]
- Auth method not specified [NEEDS CLARIFICATION: email/password, SSO, or OAuth?]

Do not resolve ambiguities by assuming. Surface them in the draft and ask the user to fill them in before the spec is treated as locked.

After writing a new spec, always output a summary card:

Spec:    <id>_<slug>.spec.md
Branch:  dev-<slug>
Summary: <one-sentence description of the feature>
Open Questions: <count of [NEEDS CLARIFICATION] markers>

Holistic Validation Pass

Run this before drafting or executing against a spec:

  1. Surface audit — find every symbol, config key, route, UI string, contract, and behavior the spec touches. Identify all impacted layers — app, UI, API, data, infrastructure, tests, docs — not just files already named.
  2. Scope consistency — check for contradictions between Overview, Scope, Requirements, and Acceptance Criteria. If an acceptance criterion requires changing an out-of-scope layer, narrow the criterion or bring the layer into scope.
  3. Phase executability — verify each planned phase can be validated using only work from that phase and earlier. Reorder phases when later-phase work is a prerequisite.
  4. Explicit ownership — name every caller, consumer, adapter, handler, test, doc, and config that must change. Do not leave high-risk coupling as implied cleanup.
  5. Contract boundaries — distinguish product, application, storage, integration, and infrastructure behavior. State clearly when a change affects one boundary but intentionally leaves another unchanged.

Present findings in order: contradictions → missing surface → phase/ordering risks → test gaps → doc fixes.

Workflow

Stage 1: Create or refine the spec

  1. Gather context from the repo and the user request.
  2. Run the holistic validation pass.
  3. Draft the spec in docs/specs/ (or the repo's established location). Mark every ambiguity or missing detail with [NEEDS CLARIFICATION: <specific question>] rather than assuming.
  4. Output the summary card.
  5. After outputting the summary card, print all [NEEDS CLARIFICATION] markers as a numbered list so the user can answer them without opening the file. The spec is not locked while markers remain.

When a spec already exists, treat it as the source of truth and run the holistic validation pass before accepting it as execution-ready.

Stage 2: Implementation

Before starting implementation, check the current git branch. If on main or master, ask the user to confirm before creating a dev-<slug> branch (e.g., dev-010-task-management). Do not create it automatically. If already on a dev-* branch, proceed.

Use the locked spec as requirements. Get user approval before executing each phase of work. Stop after each phase and wait for explicit instruction before continuing.

Spec Lock Rule

Treat the spec as locked once the user approves it or asks for implementation without requesting requirement changes.

Do not start implementation while any [NEEDS CLARIFICATION] markers remain. Resolve them first, then treat the cleaned spec as the lockable source of truth.

During implementation, the user may change direction. Use judgment to decide whether the change is small or large:

Small change — absorb it. Update the spec inline and continue. A change is small if it:

  • doesn't invalidate work already completed
  • doesn't change the core approach or architecture
  • can be absorbed into the current or next phase without restructuring

Large change — stop and escalate before touching anything. A change is large if it:

  • invalidates completed work
  • significantly expands or restructures scope
  • changes the core approach or introduces new surfaces

Do not silently absorb a large change by treating it as a small one.

Spec Change Escalation

When a change is too large to absorb inline, say so explicitly before proceeding. Present:

  1. What the user is asking for
  2. Why it is a large change (what it invalidates or restructures)
  3. Proposed spec revision
  4. Revised implementation approach

Wait for user approval before editing the spec or continuing implementation.

Choosing the Active Spec

When multiple specs exist, determine the active file in this order:

  1. Explicit user-provided file or feature ID
  2. Files referenced in the current task context
  3. Files matching the current branch or active feature name
  4. The only matching spec in the repository

If multiple candidates remain, ask the user which to use.

Guardrails

  • Do not advance past the current phase without explicit user instruction.
  • Do not silently change locked requirements by editing the spec during implementation.
  • Do not guess which spec is active when multiple candidates exist.
  • Do not store execution state in the spec.
  • Use the spec as the single source of truth.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.15%
按下载量换算75

Claude

27.02%
按下载量换算57

Cursor

18.67%
按下载量换算40

Gemini CLI

9.85%
按下载量换算21

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills