Token导航 LogoToken导航TokenDH.com
待分类需要联网github未标认证来源可访问许可证需确认审计未展示

wtf.epic-to-featuresWTF 史诗般的功能

Agent Skill

wtf.epic-to-features 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

724

周安装

29

GitHub Stars

3

下载量

234
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/xiduzo/wtf --skill wtf.epic-to-features

简介

wtf.epic-to-features 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 它适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从 GitHub 仓库安装,具体用法需结合原始 README 进一步确认。
  • 安装前请核实权限范围、维护状态,并注意是否涉及联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Epic to Features

Break an Epic down into its full set of Features and create them one by one. Core value: proposes the complete feature list upfront, then walks through writing each Feature 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-feature and wtf.write-task).

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

1. Identify the Epic

If an Epic number was passed in as context, use it directly. Otherwise call AskUserQuestion with question: "Which Epic are you breaking into Features?", header: "Epic", and options pre-filled with recent open Epic issue numbers and titles found via gh issue list --label epic.

Fetch the Epic:

gh issue view <epic_number>

Extract: Goal, Context, and Success Metrics.

List Features already created under this Epic using the sub-issue hierarchy:

gh sub-issue list <epic_number>

Note which Features already exist. Do not re-propose or re-create them.

2. Propose the full Feature list

Based on the Epic's Goal, Context, and Success Metrics, derive a proposed list of Features that together deliver the Epic's outcome. Each Feature must follow the pattern: [Domain Actor] can [domain verb] [domain object].

If the Epic already has partially-created Features (found via gh sub-issue list), open the list with a note: "Epic #N already has [X] Features created: [list with issue numbers]. Here are the remaining Features I'd propose:"

Present the remaining (or full, if none exist yet) list as plain numbered text, for example:

Here are the Features I'd propose for this Epic: 1. Merchant can view settlement status for a completed payment 2. Merchant can filter settlements by date range 3. Finance Manager can export settlement report as CSV 4. System notifies Merchant when settlement is delayed

Then call AskUserQuestion with:

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

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

3. Walk through Features one by one

For each Feature in the confirmed list, in order:

  1. Announce: "Creating Feature [N/total]: *[capability name]*"
  2. Follow the wtf.write-feature process, passing:

- The Epic number (skip step 1 of write-feature — Epic is already fetched) - The capability name as the pre-filled answer to step 2 of write-feature - Abbreviated clarification: because the capability name already follows the [Actor] can [verb] [object] pattern and the Epic context is already in hand, skip write-feature step 3 (clarification questions) unless something is genuinely ambiguous from the Epic. Write-feature step 4 (user story derivation) and step 5 (DDD Language Guard) should still run silently. Resume from write-feature step 6 (vertical slice assessment).

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

- question: "Feature [N] created. Ready to continue to Feature [N+1]: *[next capability name]*?" - header: "Continue?" - options: [{label: "Yes, continue", description: "Proceed to the next Feature (default)"}, {label: "Pause here", description: "Exit — I'll continue later"}, {label: "Skip this feature", description: "Mark as skipped and move on"}, {label: "Add a new feature", description: "Insert a new feature into the list before continuing"}] - Yes, continue → continue. - Pause here → exit. Print a summary of which Features were created and which remain. Suggest /clear before resuming. - Skip this feature → mark as skipped in the list and move to the next. - Add a new feature → call AskUserQuestion with question: "What is the new feature capability?", header: "New feature", and options pre-filled with 1–2 capability names inferred from the Epic's Goal or Success Metrics not yet represented in the list. Add the confirmed feature to the list, then continue.

4. Completion

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

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

Then call AskUserQuestion with:

  • question: "What's next?"
  • header: "Next step"
  • options: [{label: "Break down first Feature", description: "Plan and create Tasks for the first Feature (default)"}, {label: "Break down next Feature", description: "Plan and create Tasks for a different Feature"}, {label: "Stop here", description: "Exit — no further action"}]
  • Break down first Feature → follow the wtf.feature-to-tasks process with the first created Feature number.
  • Break down next Feature → follow the wtf.feature-to-tasks process with the second created Feature number (or whichever the user specifies).
  • 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

35.37%
按下载量换算83

Claude

31.25%
按下载量换算73

Cursor

19.32%
按下载量换算45

Gemini CLI

9.91%
按下载量换算23

安全审计

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

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills