Token导航 LogoToken导航TokenDH.com
研究检索权限需确认github未标认证来源可访问clear审计未展示

spec_do-task规范执行任务

Agent Skill

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

总安装

774

周安装

31

GitHub Stars

公开资料未说明

下载量

250
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add ikatsuba/skills --skill "spec:do-task"

简介

将抽象任务转化为可执行的技术步骤。

  • 分解复杂需求为原子级操作项。
  • 提升团队协作与进度跟踪效率。
  • 输出结果需经人工二次确认。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • spec_do-task 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Execute Specific Task

Executes a specific task by its number from a specification's tasks document. This skill allows targeted execution of any task in the plan.

When to use

Use this skill when the user needs to:

  • Execute a specific task out of order
  • Re-run a previously completed task
  • Jump to a particular task in the implementation plan

Specification Files Structure

All specification documents are located in .specs/<spec-name>/ directory:

FileDescription
.specs/<spec-name>/requirements.mdRequirements and acceptance criteria
.specs/<spec-name>/research.mdResearch findings and chosen solutions
.specs/<spec-name>/design.mdTechnical design and architecture
.specs/<spec-name>/tasks.mdImplementation tasks with checkboxes

Always read all four files to understand the full context before executing tasks.

Instructions

Step 1: Parse Arguments

The <args> should contain:

  • Task number (required) - e.g., "1", "1.2", "3.1"
  • Spec name (optional) - e.g., "user-auth"

Format examples:

  • spec:do-task 1.2 - Execute task 1.2 from the current/only spec
  • spec:do-task user-auth 2.1 - Execute task 2.1 from the user-auth spec
  • spec:do-task 3 - Execute major task 3 (and all its subtasks)

Step 2: Locate and Read Specification Documents

  1. If spec name provided, look in .specs/<spec-name>/
  2. If no spec name, check if there's only one spec in .specs/
  3. If multiple specs exist without a name specified, list them and use the AskUserQuestion tool to let the user choose
  4. Read and parse all specification documents:

- requirements.md - understand what needs to be built - research.md - understand chosen solutions and their rationale - design.md - understand how it should be built - tasks.md - get the list of tasks to execute

Step 3: Find the Specified Task

  1. Search for the task matching the provided number
  2. If task number is a major task (e.g., "2"), include all subtasks (2.1, 2.2, etc.)
  3. If task not found, list available tasks and ask for correction

Step 4: Execute a Single Subtask

If the task number points to a single subtask (e.g., "1.2"):

  1. Mark subtask as in-progress - Update the subtask checkbox to [-] in tasks.md
  2. Show task info - Display to the user:

- Subtask number and description - Files to create/modify - Requirements being addressed - Current status (pending/in-progress/completed)

  1. Launch subagent - Use the Task tool with subagent_type: "general-purpose" to execute the subtask:

- Provide the full subtask description, file paths, and requirements - Include relevant context from the spec (requirements.md, design.md) - Include these rules in the prompt: - Implement directly. Do NOT explore the codebase beyond the files listed in the task. - If you need to understand an existing pattern, read ONLY the specific file — do not launch broad searches. - If tests fail because behavior was intentionally changed, update the tests to match the new behavior. NEVER re-add removed functionality to make old tests pass. - For new fields/entities, ensure they appear in ALL layers: schema, query/mutation, API response type, frontend type, and UI rendering.

  1. Verify result - After the subagent completes:

- Confirm every file listed in the subtask was actually modified (git diff --stat) - If the subtask adds a new field, spot-check it appears in all required layers (schema → query → type → UI) - If verification fails, fix directly or re-run the subagent with specific corrections

  1. Mark subtask as complete - Update the subtask checkbox to [x] in tasks.md only after verification passes
  2. Commit the changes - Use the git:commit skill to commit (see Committing Changes section)
  3. If all subtasks of the parent major task are now complete, mark the major task as [x] in tasks.md and commit this change using the git:commit skill

Step 5: Execute a Major Task with Subtasks

If the task number points to a major task (e.g., "2") that has subtasks:

Step 5a: Analyze Subtask Dependencies

Before executing subtasks, analyze whether they can run in parallel. Check each subtask pair for conflicts:

Subtasks are DEPENDENT (must run sequentially) when ANY of the following is true:

  • They modify the same file
  • One creates a file/module/export that another imports or uses
  • One generates types, schemas, or configs consumed by another
  • They have an explicit ordering requirement in the task description
  • One subtask's output is another's input (e.g., "create API" → "write tests for API")
  • They modify related parts of the same system (e.g., both touch the same database table schema)

Subtasks are INDEPENDENT (can run in parallel) when ALL of the following are true:

  • They touch completely different files
  • No data or import dependencies between them
  • No shared state (database tables, config files, global state)
  • Each is self-contained and can be verified independently

When in doubt, choose sequential execution. The quality of the implementation is more important than speed.

Produce a short dependency verdict before proceeding:

Major Task 2 — dependency analysis:
  2.1 Create user model (files: src/models/user.ts)
  2.2 Create auth middleware (files: src/middleware/auth.ts) — depends on 2.1 (imports User type)
  2.3 Add login route (files: src/routes/login.ts) — depends on 2.1, 2.2
  Verdict: SEQUENTIAL — chain of dependencies

Step 5b: Parallel Execution with Concurrent Subagents

Use this strategy when the dependency analysis yields PARALLEL.

  1. Mark all parallel subtasks as in-progress — update each checkbox to [-] in tasks.md
  2. Launch all subagents in a single message — use multiple Task tool calls (one per subtask) in the same response, each with subagent_type: "general-purpose":

- Provide the full subtask description, file paths, and requirements - Include relevant context from the spec (requirements.md, design.md) - Instruct each subagent: implement the subtask but do NOT commit - Include these rules in each prompt: - Implement directly. Do NOT explore the codebase beyond the files listed in the task. - If you need to understand an existing pattern, read ONLY the specific file — do not launch broad searches. - If tests fail because behavior was intentionally changed, update the tests. NEVER re-add removed functionality. - For new fields/entities, ensure they appear in ALL layers: schema, query/mutation, API response type, frontend type, and UI rendering.

  1. Wait for all subagents to complete
  2. Verify results — for each subagent, confirm every file listed in the subtask was modified and new fields appear in all required layers
  3. Mark all subtasks as [x] in tasks.md
  4. Commit all changes together — single commit for the batch using git:commit skill

Constraints:

  • Maximum 3 parallel subagents at a time
  • If more than 3 independent subtasks, batch them in groups of 3
  • If any subagent fails, fall back to sequential for remaining subtasks
  • Subagents must NOT commit — only you commit after verification

Step 5c: Sequential Execution with Subagents

Use this strategy when the dependency analysis yields SEQUENTIAL, or as a fallback.

For each subtask, follow the single subtask execution flow from Step 4 (separate subagent + separate commit per subtask).

After all subtasks complete, mark the major task as [x] in tasks.md and commit using git:commit skill.

Step 6: Report Completion

After completing the task:

  1. Summarize what was implemented
  2. Note if this was a re-execution of a completed task
  3. Note whether parallel or sequential strategy was used
  4. Show related tasks that might need attention

Committing Changes

After sequential subtask execution

Commit each subtask individually using the git:commit skill:

  1. Stage the changed files related to the subtask
  2. Check if tasks.md is tracked by git (run git check-ignore.specs/<spec-name>/tasks.md). If it is NOT ignored, also stage tasks.md in the same commit so the task progress is captured
  3. Invoke the git:commit skill

After parallel subtask execution

Commit ALL subtasks from the parallel batch together as a single commit:

  1. Stage all changed files from all completed parallel subtasks
  2. Include tasks.md if tracked
  3. Invoke the git:commit skill

Skip committing if:

  • The user explicitly asked not to commit
  • The subtask only modified the tasks.md file (checkpoint tasks)

Warning on Dependencies

If the specified task depends on incomplete prerequisite tasks:

  1. Warn the user about missing dependencies
  2. List the prerequisite tasks
  3. Use the AskUserQuestion tool to ask how to proceed, with options like "Execute prerequisites first", "Proceed anyway", "Cancel"

Error Handling

  • If the task fails, keep it marked as [-]
  • If a parallel subagent fails, fall back to sequential for remaining subtasks
  • Report the issue to the user
  • Suggest fixes or ask for guidance

Arguments

  • <args> - Task number and optionally spec name

- Format: [spec-name] <task-number> - Task number: "1", "1.2", "2.3.1", etc. - Spec name: kebab-case identifier

Examples:

  • 1.2 - Task 1.2 from the default/only spec
  • user-auth 3.1 - Task 3.1 from user-auth spec
  • payment-flow 2 - All of task 2 from payment-flow spec

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

26.37%
按下载量换算66

Codex

23.97%
按下载量换算60

OpenCode

16.43%
按下载量换算41

Cursor

12.98%
按下载量换算32

windsurf

7.45%
按下载量换算19

kiro-cli

2.94%
按下载量换算7

安全审计

暂无安全审计结果可展示。

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills