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

spec-kit-plan规格套件计划

Agent Skill

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

总安装

222

周安装

9

GitHub Stars

2

下载量

70
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

spec-kit-plan 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 了解具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 当前归类为研究检索类技能,适用于信息探索与筛选场景。

SKILL.md

Spec Kit Plan

Generate implementation design artifacts from the approved feature specification.

Invocation Notice

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

When to Use

  • spec.md exists and you need plan.md plus Phase 0/1 design outputs for task generation.
  • plan.md is missing, stale, or invalid after changes to spec.md or memory/constitution.md.
  • The next step is spec-kit-tasks, but technical context and design decisions are not yet documented.

When Not to Use

  • No usable spec.md exists yet (spec-kit-specify first).
  • High-impact ambiguity in spec.md still blocks architecture or validation decisions (spec-kit-clarify first).
  • You are decomposing design into executable work items (spec-kit-tasks).
  • You only need a read-only consistency audit (spec-kit-analyze).
  • You are reconciling cross-artifact drift discovered mid-work (spec-kit-reconcile).

Router Fit

  • Primary route from spec-kit after spec-kit-specify / spec-kit-clarify.
  • Must complete before spec-kit-tasks.
  • Depends on constitution output from spec-kit-constitution.

Preconditions

  • Work from the target repository root.
  • Active feature branch resolves to a spec directory (NNN-feature-name format when git is available).
  • memory/constitution.md exists and is current for planning gates.

Workflow

  1. Resolve active feature paths and initialize plan.md:

- Run scripts/setup-plan.sh --json exactly once. - Parse and retain: FEATURE_SPEC, IMPL_PLAN, SPECS_DIR, BRANCH. - If the script exits non-zero (for example branch gate failure), stop and report the blocking error.

  1. Enforce artifact gates before writing design outputs:

- If FEATURE_SPEC (spec.md) is missing, stop and route to spec-kit-specify. - If memory/constitution.md is missing, stop and route to spec-kit-constitution. - If spec.md has unresolved high-impact ambiguity that can change architecture, data model, testing, UX, operations, or compliance, stop and route to spec-kit-clarify.

  1. Load planning inputs with template fallback:

- Required: spec.md, memory/constitution.md. - Preferred plan template: {REPO_ROOT}/.specify/templates/plan-template.md. - Fallback template: assets/plan-template.md. - Preserve template heading order; replace placeholders rather than adding parallel structures.

  1. Draft plan.md core sections:

- Complete Summary and Technical Context. - Mark unknown technical decisions as NEEDS CLARIFICATION. - Fill Constitution Check from memory/constitution.md with explicit pass/fail status. - Select one concrete project structure and remove unused template options. - Use Complexity Tracking only when a constitutional violation remains and is explicitly justified.

  1. Run Phase 0 research (research.md):

- Turn each NEEDS CLARIFICATION in Technical Context into a focused research question. - Record outcomes as: - Decision - Rationale - Alternatives considered - Resolve all blockers needed for design decisions before continuing.

  1. Run Phase 1 design outputs:

- Create/update data-model.md with entities, fields, relationships, validation rules, and state transitions where relevant. - Create/update contracts/ for externally visible interfaces that the feature introduces or modifies. - Create/update quickstart.md with concrete validation flow for the designed feature. - Reflect final decisions back into plan.md so downstream task generation has a single source of truth.

  1. Update agent context (explicit user approval required):

- Before running the script, ask for explicit approval to update agent context files (for example AGENTS.md, CLAUDE.md, GEMINI.md, .github/agents/copilot-instructions.md). - Run scripts/update-agent-context.sh from repository root only after user approval. - If an agent type is provided by the user, pass it as the first argument. - If approval is declined or unavailable, skip this step and report it as skipped. - Report script failures explicitly; do not silently skip context updates.

  1. Re-check gates and report completion:

- Re-evaluate Constitution Check after Phase 1 outputs. - Stop with ERROR if unresolved constitutional violations or unresolved blocking clarifications remain. - Report BRANCH, absolute artifact paths, and readiness for spec-kit-tasks.

Output

  • plan.md:

- Fully populated from the selected plan template. - Technical Context reflects final decisions from Phase 0. - Constitution Check is explicit (pass, fail, or justified exception). - Project Structure shows one concrete layout (no placeholder option blocks).

  • research.md:

- One entry per planning unknown using: - Decision - Rationale - Alternatives considered - Resolves all blocking NEEDS CLARIFICATION items required for design.

  • data-model.md:

- Captures entities, fields, relationships, validation constraints, and relevant state transitions. - Maps model decisions back to spec requirements where practical.

  • contracts/* (when applicable):

- Defines each new/changed external interface (endpoint/event/schema). - Includes input/output shape, validation/error behavior, and compatibility notes.

  • quickstart.md:

- Describes a concrete validation flow for the designed feature. - Covers primary success path plus key error/edge behavior from the spec.

  • Updated agent context file(s) from scripts/update-agent-context.sh (only when user-approved):

- Contains newly introduced technologies from the final plan. - Preserves user-maintained manual sections.

  • If the user does not approve context updates:

- Report that agent context sync was intentionally skipped.

Key rules

  • Use absolute paths in completion reporting.
  • Treat missing prerequisites as hard stops with reroutes to the owning sibling skill.
  • Do not generate tasks.md or implementation code in this skill.
  • Keep plan artifacts at design granularity: architecture, data model, interfaces/contracts, constraints, and validation approach.
  • Do not include execution-level content such as code snippets, patch-style file edits, command runbooks, or checklist task breakdowns.
  • Do not leave blocking NEEDS CLARIFICATION unresolved by completion.
  • Emit ERROR for unresolved constitution gates without justification.
  • Never run scripts/update-agent-context.sh without explicit user approval in the current session.

Common Mistakes

  • Planning without an approved spec — the plan will lack stable requirements and churn.
  • Using the wrong template source path (spec-template instead of plan-template).
  • Keeping placeholder project-structure options in plan.md instead of selecting one concrete layout.
  • Including execution details in plan artifacts (code snippets, exact commands, patch-level file changes, or task checklists) — design belongs in spec-kit-plan; execution belongs to spec-kit-tasks and spec-kit-implement.
  • Skipping the post-design constitution re-check before handing off to spec-kit-tasks.
  • Running context-file updates automatically without asking the user to approve changes to AGENTS.md/CLAUDE.md/related files.

References

  • references/spec-kit-workflow.dot for overall context of where planning fits in the Spec Kit sequence.
  • scripts/setup-plan.sh
  • scripts/update-agent-context.sh
  • assets/plan-template.md
  • https://github.com/github/spec-kit/blob/9111699cd27879e3e6301651a03e502ecb6dd65d/templates/commands/plan.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.98%
按下载量换算27

Claude

29.99%
按下载量换算21

Cursor

18.19%
按下载量换算13

Gemini CLI

9.03%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills