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

spec%3ado-all规格%3ado 全部

Agent Skill

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

总安装

212

周安装

9

GitHub Stars

公开资料未说明

下载量

74
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ikatsuba/skills --skill spec:do-all

简介

spec%3ado-all 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 使用前需确认权限范围、维护状态及是否触发联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Execute All Tasks

Executes all pending tasks from a specification's tasks document. Major tasks run sequentially. Subtasks within a single major task can run in parallel via concurrent subagents when they are independent.

When to use

Use this skill when the user needs to:

  • Implement an entire feature based on the tasks document
  • Execute all remaining tasks from a specification
  • Complete the full 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: Locate and Read Specification Documents

  1. If <args> contains a spec name, look in .specs/<spec-name>/
  2. If no spec name provided, list available specs in .specs/ and use the AskUserQuestion tool to let the user choose
  3. 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 2: Parse Tasks

  1. Identify all tasks and subtasks using checkbox markers:

- [] - Pending task (to be executed) - [-] - In progress task (continue execution) - [x] - Completed task (skip)

  1. Build a task list with:

- Task number (e.g., "1.1", "2.3") - Task description - File paths mentioned - Requirements references

  1. Determine execution order based on task numbering

Step 3: Execute Major Tasks Sequentially

CRITICAL RULE: Major tasks ALWAYS execute sequentially, one after another. Never start major task N+1 until major task N is fully complete. Parallelism is ONLY allowed between subtasks of the SAME major task.

For each major task:

  1. Analyze its subtasks for parallelism (see Step 3a)
  2. Execute subtasks using the chosen strategy — parallel or sequential (see Steps 3b/3c)
  3. After ALL subtasks are complete, mark the major task as [x] in tasks.md
  4. Commit the major task completion using the git:commit skill
  5. Only then proceed to the next major task

Step 3a: Analyze Subtask Dependencies

Before executing a major task's 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 for the major task 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

or

Major Task 3 — dependency analysis:
  3.1 Add email validation util (files: src/utils/email.ts)
  3.2 Add phone validation util (files: src/utils/phone.ts)
  3.3 Add address validation util (files: src/utils/address.ts)
  Verdict: PARALLEL — all independent, no shared files or imports

Step 3b: 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 — stage all files from the parallel batch and use git:commit skill once for the group

IMPORTANT constraints for parallel execution:

  • Maximum 3 parallel subagents at a time to avoid resource contention
  • If a major task has more than 3 independent subtasks, batch them in groups of 3
  • If any subagent fails, stop and fall back to sequential execution for remaining subtasks
  • Subagents must NOT commit — only you commit after verifying all results

Step 3c: Sequential Execution with Subagents

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

For each pending subtask in order:

  1. Mark subtask as in-progress — update the checkbox to [-] in tasks.md
  2. Launch subagent — use the Task tool with subagent_type: "general-purpose":

- Provide the full subtask description, file paths, and requirements - Include relevant context from the spec (requirements.md, design.md) - The subagent implements the subtask autonomously

  1. Wait for completion
  2. Verify result — review the subagent's output for success
  3. Mark subtask as complete — update the checkbox to [x] in tasks.md
  4. Commit the changes — use the git:commit skill (see Committing Changes section)
  5. Proceed to next subtask

Example Task tool call for a subtask:

Task tool:
  subagent_type: "general-purpose"
  description: "Execute task 1.2"
  prompt: |
    Execute subtask 1.2 from the specification.

    Task: [Subtask description from tasks.md]
    Files to modify: [file paths]
    Requirements: [requirement references]

    Context from design.md: [relevant design context]

    RULES:
    - Implement directly. Do NOT explore the codebase beyond the files listed above.
    - 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.

When NOT to use subagent:

  • Simple one-line changes
  • Checkpoint/verification tasks (handle these directly)
  • Tasks that require user interaction

Step 3d: Post-Subtask Verification

After each subagent completes (whether parallel or sequential), verify before marking as [x]:

  1. File check — confirm that every file listed in the subtask was actually modified (use git diff --stat)
  2. Field completeness — if the subtask adds a new field or entity, spot-check that it appears in all required layers (schema → query → type → UI)
  3. No regressions — if the subtask modified existing files, ensure no unrelated code was changed or removed

If verification fails, either fix it directly or re-run the subagent with specific correction instructions. Do NOT mark the subtask as [x] until verification passes.

Step 4: Handle Checkpoints

When encountering a checkpoint task:

  1. Run any verification commands specified
  2. Ensure tests pass if mentioned
  3. Summarize progress to the user
  4. Continue to next task unless there are failures

Step 5: Final Summary

After completing all tasks:

  1. Summarize what was implemented
  2. List any issues encountered
  3. Note which major tasks used parallel vs sequential execution
  4. Suggest next steps (e.g., testing, review)

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 — it will analyze staged changes, determine the commit type, and create a properly formatted Conventional Commits message

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 — the commit message should reference the major task (e.g., "feat(auth): implement validation utilities (tasks 3.1-3.3)")

Skip committing if:

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

Error Handling

  • If a task fails, mark it as [-] and report the issue
  • If a parallel subagent fails, fall back to sequential for the remaining subtasks of that major task
  • Use the AskUserQuestion tool to ask how to proceed, with options like "Skip this task", "Retry", "Abort execution"
  • Do not proceed with dependent tasks if a prerequisite fails

Arguments

  • <args> - The spec name (e.g., "user-auth", "payment-flow")

If not provided, list available specs and ask the user to choose.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

34.89%
按下载量换算26

Claude

29.34%
按下载量换算22

Cursor

21.22%
按下载量换算16

Gemini CLI

9.17%
按下载量换算7

安全审计

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

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills