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

wtf.feature-to-taskswtf 任务功能

Agent Skill

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

总安装

689

周安装

29

GitHub Stars

3

下载量

241
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/xiduzo/wtf --skill wtf.feature-to-tasks

简介

wtf.feature-to-tasks 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 它支持基于关键词、任务场景或来源线索进行信息聚合与过滤,适用于功能拆解相关研究。
  • 通过 npx skills add 命令从 GitHub 仓库安装,具体用法需结合原始 README 进一步确认。
  • 安装前请核实权限范围、维护状态,并注意是否涉及联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Feature to Tasks

Break a Feature down into its full set of Tasks and create them one by one. Core value: proposes the complete task list upfront derived from the Feature's Acceptance Criteria, then walks through writing each Task with full user control.

Process

0. GitHub CLI setup

Run the setup check from ../references/gh-setup.md. Stop if gh is not installed or not authenticated. Note whether the extensions are available — this determines whether native sub-issue and dependency links are created downstream (via wtf.write-task).

Skip this step if gh-setup was already confirmed this session (e.g. when chained from wtf.write-feature or wtf.epic-to-features).

1. Identify the Feature

If a Feature number was passed in as context, use it directly. Otherwise search for recent open issues with label feature to populate options and call AskUserQuestion with question: "Which Feature are you breaking into Tasks?", header: "Feature", and options pre-filled with 1–2 likely open Feature issue references inferred from GitHub search (e.g. recent open issues labeled feature).

Fetch the Feature, then find its parent Epic via the sub-issue hierarchy:

gh issue view <feature_number>                                         # ACs, edge cases, user stories
gh sub-issue list <feature_number> --relation parent                   # find parent Epic number
gh issue view <epic_number>                                            # Goal, Context

Extract any existing Proposed Tasks checklist items (named, unnumbered items) from the Feature body. In Step 2, use these as the starting point for the proposal rather than generating from scratch.

List Features already created under the Epic — used in step 4 to identify the next Feature:

gh sub-issue list <epic_number>

2. Propose the full Task list

Based on the Feature's Acceptance Criteria, User Stories, and Edge Cases, derive a proposed list of Tasks. Each task should be a vertical slice — touching all layers needed for one observable, user-facing behavior.

Present the list as plain numbered text, for example:

Here are the Tasks I'd propose to implement this Feature: 1. Add settlement status field to Payment Aggregate 2. Expose settlement status on the payments API endpoint 3. Display settlement status in the merchant dashboard UI 4. Send settlement notification email when status changes

Then call AskUserQuestion with:

  • question: "Does this list look complete? You can add, remove, or rename any Task before we start."
  • header: "Task list"
  • options: [{label: "Looks good", description: "Proceed with this list"}, {label: "Make changes", description: "I want to add, remove, or rename a Task"}]

Wait for the user to confirm or adjust the list. Apply any changes.

3. Walk through Tasks one by one

For each Task in the confirmed list, in order:

  1. Announce: "Creating Task [N/total]: *[task description]*"
  2. Follow the wtf.write-task process, passing:

- The Feature number (skip step 1 of write-task — Feature already fetched) - The task description as the pre-filled proposal in step 2 of write-task (user can confirm or adjust) - Skip write-task clarification questions already answered by the loaded Feature context (ACs, user stories, edge cases). Only ask about scope or contract details that cannot be derived from the Feature.

  1. Before moving to the next Task, call AskUserQuestion with:

- question: "Task [N] created. Ready to continue to Task [N+1]: *[next task description]*?" *(replace [N] and [N+1] with actual numbers and description)* - header: "Continue?" - options: [{label: "Yes, continue", description: "Proceed to the next Task (default)"}, {label: "Pause here", description: "Exit — I'll continue later"}, {label: "Skip this task", description: "Mark as skipped and move on"}, {label: "Add a new task", description: "Insert a new task into the list before continuing"}] - Yes, continue → continue. - Pause here → exit. Print a summary of which Tasks were created and which remain. Suggest /clear before resuming. - Skip this task → mark as skipped in the list and move to the next. - Add a new task → call AskUserQuestion with question: "What is the new task?", header: "New task", and options pre-filled with 1–2 plausible tasks inferred from the remaining Feature ACs not yet covered. Add the confirmed task to the list, then continue.

4. Completion

When all Tasks have been created (or skipped), print a summary:

"Feature #<feature_number> Task breakdown complete. Created: [list with issue numbers] Skipped: [list if any]"

Then call AskUserQuestion with:

  • question: "What's next?"
  • header: "Next step"
  • options: [{label: "Implement first Task", description: "Start implementing the first created Task (default)"}, {label: "Tasks for next Feature", description: "Plan Tasks for the next Feature in the Epic"}, {label: "Stop here", description: "Exit — no further action"}]
  • Implement first Task → follow the wtf.implement-task process with the first created Task number.
  • Tasks for next Feature → follow the wtf.feature-to-tasks process with the next Feature from the gh sub-issue list result fetched in step 1 that does not yet have child tasks.
  • Stop here → exit.
Suggest /clear before continuing if the conversation has grown long.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

37.51%
按下载量换算90

Claude

31.09%
按下载量换算75

Cursor

17.3%
按下载量换算42

Gemini CLI

8.6%
按下载量换算21

安全审计

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

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills