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

spec-kit-implement规格套件工具

Agent Skill

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

总安装

194

周安装

8

GitHub Stars

2

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

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

SKILL.md

Spec Kit Implement

Execute approved feature tasks in dependency order and keep tasks.md status accurate.

Invocation Notice

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

When to Use

  • tasks.md exists and you need to execute it phase-by-phase to deliver the feature.
  • Implementation work has started, but task sequencing, checklist gates, or progress tracking is inconsistent.
  • You need deterministic execution behavior before handoff or release readiness checks.

When Not to Use

  • tasks.md does not exist yet (spec-kit-tasks first).
  • You are still writing or revising requirements/design artifacts (spec-kit-specify, spec-kit-clarify, spec-kit-plan).
  • You need read-only consistency analysis rather than execution (spec-kit-analyze).
  • You need coordinated artifact remediation after gaps are discovered (spec-kit-reconcile).

Router Fit

  • Primary route from spec-kit after spec-kit-tasks.
  • Requires planning + task artifacts for the active feature branch.
  • Routes execution-discovered artifact drift to spec-kit-reconcile.

Preconditions

  • Run from repository root (or a subdirectory inside it).
  • Active feature context resolves to a single specs/<feature>/ directory.
  • tasks.md reflects the current approved plan.md.

Workflow

  1. Resolve feature artifacts and enforce implementation gate:

- Run scripts/check-prerequisites.sh --json --require-tasks --include-tasks exactly once. - Parse FEATURE_DIR and AVAILABLE_DOCS. - Derive: - TASKS = FEATURE_DIR/tasks.md - IMPL_PLAN = FEATURE_DIR/plan.md - If prerequisites fail: - missing tasks.md: stop and route to spec-kit-tasks - missing plan.md: stop and route to spec-kit-plan

  1. Enforce checklist gate when checklists exist:

- If FEATURE_DIR/checklists/ exists, scan all checklist files. - If any unchecked items remain, stop and ask whether to proceed anyway. - Continue only after explicit user approval.

  1. Load execution context:

- Required: tasks.md, plan.md. - Optional (when present): data-model.md, contracts/, research.md, quickstart.md. - Use these artifacts as source of truth; do not invent scope beyond them.

  1. Verify ignore-file coverage for active tooling:

- Check relevant ignore files (.gitignore, .dockerignore, .eslintignore, .prettierignore, etc.). - Add only missing critical patterns; preserve existing user/project conventions.

  1. Parse tasks.md into an execution plan before running tasks:

- Extract phase boundaries and phase intent (setup/foundational, user-story phases, polish). - Extract per-task fields: task ID, description, file path, [P] marker, and optional [US#] label. - Build dependency order from task IDs, phase ordering, and explicit sequencing notes. - Treat this parsed structure as execution truth for progress and failure handling.

  1. Execute tasks in phase order:

- Respect ordering and dependency constraints from tasks.md. - Run [P] tasks in parallel only when there is no file overlap or dependency coupling. - Follow tests-before-implementation ordering where test tasks exist. - Complete each phase before moving to the next: - setup/foundational work first, - then user-story phases in priority order, - polish and cross-cutting validation last.

  1. Track progress and failures continuously:

- After each completed task, mark it [X] in tasks.md immediately. - Halt on critical sequential task failures and report the blocking context. - For parallel batches, keep successful items moving and report failed tasks with next actions.

  1. Run completion checks:

- All required tasks are complete. - Implementation aligns with spec.md/plan.md intent. - Required tests/validation pass per project constraints. - If gaps remain (for example missing wiring, acceptance mismatch, integration drift), route to spec-kit-reconcile with a concrete gap report.

  1. Report implementation result:

- Absolute path to tasks.md. - Completed vs remaining task counts. - Checklist gate outcome (if used). - Final status and recommended next step.

Output

  • Updated tasks.md completion state for the active feature.
  • Implementation progress summary with blockers/failures (if any).
  • Final readiness signal for post-implementation verification/review.

Key Rules

  • Treat tasks.md ordering as execution truth.
  • Never mark a task [X] before its work and validations are complete.
  • Do not run [P] tasks concurrently when they touch the same files or dependent resources.
  • Stop and reroute when prerequisite artifacts are missing or invalid.
  • Do not patch spec/plan/tasks ad hoc during execution; use spec-kit-reconcile for structured remediation.

Common Mistakes

  • Starting implementation with stale or missing tasks.md.
  • Skipping checklist acknowledgment when unresolved checklist items exist.
  • Forgetting immediate [X] updates in tasks.md, causing drift between reality and artifact state.
  • Running [P] tasks together despite file/dependency conflicts.
  • Continuing past critical sequential failures instead of stopping and reporting.
  • Editing spec.md/plan.md/tasks.md informally during implementation instead of routing remediation through spec-kit-reconcile.

References

  • references/spec-kit-implement-flow.dot for implementation execution logic workflow
  • references/spec-kit-workflow.dot for overall context of how the implementation fits into the Spec Kit process.
  • scripts/check-prerequisites.sh
  • https://github.com/github/spec-kit/blob/9111699cd27879e3e6301651a03e502ecb6dd65d/templates/commands/implement.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.79%
按下载量换算21

Claude

29.29%
按下载量换算18

Cursor

18.99%
按下载量换算12

Gemini CLI

9.07%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills