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

wtf.create-prWTF 创建公关

Agent Skill

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

总安装

682

周安装

29

GitHub Stars

3

下载量

239
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/xiduzo/wtf --skill wtf.create-pr

简介

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

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

SKILL.md

Create PR

Open a pull request for a completed task branch. Core value: reads the full spec hierarchy (Task + Feature + Epic) and the branch diff to write a PR description that explains *why* the change exists — not just what it does.

Process

0. GitHub CLI setup

Run steps 1–2 of ../references/gh-setup.md (install check and auth check). Stop if gh is not installed or not authenticated. Extensions are not required for this skill.

Skip this step if invoked from wtf.verify-task or another skill that already ran gh-setup this session.

1. Confirm the branch

Check the current branch and verify it is not main:

git branch --show-current

If on main, ask: "Which branch should I open a PR from?"

Check whether a PR already exists for this branch:

gh pr list --head <branch_name> --state open

If an open PR already exists, print its URL and call AskUserQuestion with:

  • question: "A PR already exists for this branch. Would you like me to update its description instead?"
  • header: "Existing PR"
  • options: [{label: "Update description", description: "Edit the existing PR's description"}, {label: "Open a new one", description: "Create a new PR anyway"}]
  • Update description → skip to step 5, targeting the existing PR for update via gh pr edit <pr_number>.
  • Open a new one → continue.

2. Identify the Task (if any)

Try to extract a task number from the branch name (e.g. task/42-date-range-filter#42).

If found, call AskUserQuestion with question: "I found Task #<n> linked to this branch. Is that the right task?", header: "Linked task", and options: [{label: "Yes, that's correct", description: "Use Task #<n>"}, {label: "No, use a different task", description: "I'll provide the correct issue number"}].

If not found or the user says no, call AskUserQuestion with question: "Is there a Task issue linked to this work?", header: "Linked task", and options: [{label: "No linked task", description: "Proceed without a task link"}, {label: "Yes — I'll provide the number", description: "Enter the task issue number"}].

3. Lifecycle check (if Task linked)

If a Task issue is known, check its labels:

gh issue view <task_number> --json labels --jq '.labels[].name'

If the verified label is absent, warn the user that the task hasn't been verified yet and that the recommended flow is: write-task → design-task → implement-task → verify-task → create-pr. Then call AskUserQuestion with:

  • question: "This task hasn't been verified yet. How would you like to proceed?"
  • header: "Verify first?"
  • options: [{label: "Verify first", description: "Runwtf.verify-taskbefore opening the PR (default)"}, {label: "Open PR anyway", description: "Skip verification and open the PR now"}]
  • Verify first → follow the wtf.verify-task process, passing the Task number in as context.
  • Open PR anyway → proceed.

If no Task is linked, skip this step.

4. Fetch the spec hierarchy

If a Task issue is known, fetch the full hierarchy:

gh issue view <task_number>    # Gherkin, Contracts, DoD, Test Mapping — also yields feature and epic numbers
# Extract feature and epic numbers, then in parallel:
gh issue view <feature_number> # ACs, user stories
gh issue view <epic_number>    # Goal, context, constraints

If no Task issue, skip hierarchy fetch. The PR will be written from diff context alone (step 5).

5. Inspect the diff

Determine the base branch using the same logic as step 8 (task/* → parent feature branch; feature/* → main), then collect the branch diff against that base:

git log <base_branch>..HEAD --oneline
git diff <base_branch>...HEAD --stat

This avoids including unrelated merged commits when the branch has a long history against main. Use --stat output only unless a specific commit message is ambiguous and cannot be resolved without the diff.

6. Draft the PR

Title generation: Spawn a subagent using the claude-haiku-4-5-20251001 model to generate a PR title per ../references/commit-conventions.md. Pass in the task title (if available), the commit log, and whether this is a breaking change. If the subagent returns nothing usable, generate the title directly following the same rules. Examples: feat(search): add date range filter, fix(payments): prevent double settlement, refactor(orders): extract fulfilment service.

Body: Before drafting, verify .github/pull_request_template.md exists. If missing, ask the user (per ../references/questioning-style.md) whether to run /wtf.setup or cancel — then halt either way.

Use the structure from @.github/pull_request_template.md. Fill in all sections:

  • Summary: derived from the Task's Intent + Functional Description (or commit messages if no Task). Explain the *why*.
  • Changes: grouped logical summary of git diff --stat output — not a file list.
  • Test plan: if a Task exists, derive checklist items from the Gherkin scenario names. If no Task, derive from changed files and commit messages. At minimum one item per observable behavior changed.
  • Related: closure keywords per ../references/commit-conventions.md. If a Task exists, include Closes #<task_number>. If the PR also closes the parent Feature (all sibling tasks already merged), add Closes #<feature_number> on its own line.

7. Review with user

Show the draft title and body. Then call AskUserQuestion with question: "Does this look right?", header: "Review", and options: [{label: "Looks good — create the PR", description: "Proceed with PR creation"}, {label: "I have changes", description: "I want to adjust something first"}].

Apply edits, then proceed.

8. Create the PR

Determine the base branch from the current branch name:

  • task/* branch → target the parent feature branch (feature/<feature-number>-<feature-slug>)
  • feature/* branch → target main
  • Other → call AskUserQuestion with question: "What branch should this PR target?", header: "Base branch", options derived from git branch -r.

Write the body to a temp file, then create the PR:

# Derive a unique suffix from the branch name (fallback to timestamp):
SUFFIX=$(git rev-parse --abbrev-ref HEAD | tr '/' '-' || date +%s)

# task branch:
gh pr create \
  --title "<title>" \
  --body-file /tmp/wtf.create-pr-${SUFFIX}-body.md \
  --base feature/<feature-number>-<feature-slug>

# feature branch:
gh pr create \
  --title "<title>" \
  --body-file /tmp/wtf.create-pr-${SUFFIX}-body.md \
  --base main

Print the PR URL.

9. Update the Task issue (if linked)

If a Task issue is linked, post a comment linking the PR:

gh issue comment <task_number> --body "PR opened: <pr_url>"

10. Offer next steps

Call AskUserQuestion with:

  • question: "What's next?"
  • header: "Next step"
  • options: [{label: "Request a review", description: "Add reviewers to this PR now (default)"}, {label: "Done", description: "Exit — no further action"}]
  • Request a review → call AskUserQuestion with question: "Who should review this?", header: "Reviewer", and options pre-filled with team member usernames inferred from recent git log authors or the repository's CODEOWNERS file. Then: gh pr edit <pr_number> --add-reviewer <username> For multiple reviewers, pass a comma-separated list: --add-reviewer user1,user2. Print the PR URL.
  • Done → exit.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

36.52%
按下载量换算87

Claude

30.08%
按下载量换算72

Cursor

19.68%
按下载量换算47

Gemini CLI

8.62%
按下载量换算21

安全审计

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

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/xiduzo/wtf --skill wtf.create-pr 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills