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

spec-kit-checklist规格套件清单

Agent Skill

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

总安装

192

周安装

8

GitHub Stars

2

下载量

64
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ahgraber/skills --skill spec-kit-checklist

简介

spec-kit-checklist 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 了解具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 当前归类为开发类技能,功能聚焦于代码协作信息的组织与处理。

SKILL.md

Spec Kit Checklist

Generate domain-specific checklists that evaluate requirement quality in Spec Kit artifacts.

Invocation Notice

  • Inform the user when this skill is being invoked by name: spec-kit-checklist.

When to Use

  • spec.md exists and you need a checklist to review requirement quality before implementation.
  • You want a focused lens (for example UX, API, security, performance, accessibility) over requirement quality.
  • You need to surface ambiguity, missing coverage, or weak acceptance criteria in writing.

When Not to Use

  • You are writing runtime tests, QA scripts, or implementation verification steps.
  • spec.md does not exist yet (spec-kit-specify first).
  • High-impact ambiguity must be resolved in-spec before checklist generation (spec-kit-clarify).
  • You are generating executable tasks (spec-kit-tasks) or implementing tasks (spec-kit-implement).

Router Fit

  • Primary route from spec-kit when the intent is requirement-quality checklist generation.
  • Can be run as a standalone quality pass after spec-kit-specify/spec-kit-clarify and before or during implementation.
  • Output checklists feed the optional checklist gate in spec-kit-implement.

Preconditions

  • Run from repository root (or a subdirectory inside it).
  • Active feature context resolves to one specs/<feature>/ directory.
  • spec.md exists for that feature.

Workflow

  1. Resolve feature paths and enforce the checklist prerequisite gate:

- Run scripts/check-prerequisites.sh --paths-only --json exactly once. - Parse and retain REPO_ROOT, FEATURE_DIR, and FEATURE_SPEC. - If FEATURE_SPEC (spec.md) is missing, stop and route to spec-kit-specify.

  1. Load checklist context:

- Required: spec.md. - Optional when present: plan.md, tasks.md. - Extract only requirement-relevant content: requirements, acceptance criteria, edge/error cases, non-functional constraints, assumptions/dependencies.

  1. Clarify checklist scope only when needed:

- Ask up to 3 concise, high-impact questions if scope/risk/audience is unclear. - Skip questions already answered in user input or artifacts. - If ambiguity still blocks item quality, ask up to 2 targeted follow-ups (max 5 total).

  1. Choose checklist file target:

- Ensure FEATURE_DIR/checklists/ exists. - Derive a short domain slug from intent (for example ux, api, security, performance). - Create a new file per run: prefer <slug>.md; if it exists, create <slug>-2.md, <slug>-3.md, etc. - Never overwrite existing checklist files.

  1. Generate requirement-quality checklist items:

- Treat each item as a "unit test for requirement writing," not implementation behavior. - Group items under quality categories as needed: - Requirement Completeness - Requirement Clarity - Requirement Consistency - Acceptance Criteria Quality / Measurability - Scenario and Edge-Case Coverage - Non-Functional Requirements - Dependencies and Assumptions - Ambiguities and Conflicts - Use CHK### IDs starting at CHK001 and increment sequentially. - Keep items in question form and focused on what is documented or missing.

  1. Apply strict item-quality rules:

- Prefer patterns such as: - Are <requirements> defined/specified for <scenario>? - Is <term> quantified with measurable criteria? - Are requirements consistent between <section A> and <section B>? - Do not generate implementation checks (for example click/render/load/execute behavior checks). - Do not use runtime-verification framing (Verify, Test, Confirm) for system behavior. - Include traceability on most items (target: >=80%) using markers like [Spec §...], [Gap], [Ambiguity], [Conflict], [Assumption].

  1. Write output using template structure:

- Preferred template: {REPO_ROOT}/templates/checklist-template.md. - Fallback template: assets/checklist-template.md. - Preserve heading order and emit checklist rows in this format: - - [] CHK### <question> [markers]

  1. Validate before final report:

- No implementation/runtime verification items. - IDs are unique and sequential. - Items are requirement-quality questions. - Traceability markers meet target coverage.

  1. Report completion:

- Absolute checklist path. - Item count. - Selected focus areas, depth/audience assumptions, and any explicit must-have user constraints incorporated. - Reminder that each run creates a new checklist file.

Output

  • New checklist file in specs/<feature>/checklists/.
  • Requirement-quality checklist items with sequential CHK### IDs.
  • Summary of scope assumptions and checklist focus.

Key Rules

  • Evaluate the quality of requirements writing, not whether implementation works.
  • Keep items objective, reviewable, and traceable to artifacts.
  • Prefer concise, high-signal checklists over exhaustive low-value lists.

Common Mistakes

  • Writing QA/runtime checks ("verify the API returns 200") instead of requirement-quality checks ("requirement specifies expected response codes").
  • Producing vague items with no traceability marker.
  • Overfitting to implementation details that do not belong in requirements artifacts.
  • Overwriting an existing checklist instead of creating a new file for the run.

References

  • scripts/check-prerequisites.sh
  • assets/checklist-template.md
  • https://github.com/github/spec-kit/blob/9111699cd27879e3e6301651a03e502ecb6dd65d/templates/commands/checklist.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.3%
按下载量换算24

Claude

30.88%
按下载量换算20

Cursor

18.86%
按下载量换算12

Gemini CLI

10.54%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills