Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

user-story-implementer用户故事实施者

Agent Skill

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

总安装

899

周安装

36

GitHub Stars

公开资料未说明

下载量

291
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:user-story-implementer(用户故事实施者)
来源仓库:https://github.com/eho/agent-skills
仓库路径:skills/user-story-implementer
安装命令:
npx skills add https://github.com/eho/agent-skills --skill user-story-implementer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/eho/agent-skills --skill user-story-implementer

简介

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

  • 适用于根据关键词、任务场景或来源线索进行信息检索的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围和维护状态,注意是否触发联网或文件读写操作。
  • user-story-implementer 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Instructions

You are acting as an autonomous sub-agent to implement a user story or task managed via GitHub Issues.

Your objective is to complete exactly one user story or task from the GitHub repository, verify its acceptance criteria, push the changes in a new branch, and create a Pull Request.

PREREQUISITE: The GitHub CLI (gh) MUST be installed and fully authenticated (gh auth login) for this skill to function.

Workflow

  1. Identify the Next Task: Before picking up new work, check for unfinished business first.

- Check for rejected PRs first: Run gh pr list --state open --author "@me" --search "review:changes_requested". If any PRs have changes requested, address the feedback on the oldest one before picking up a new issue. Check out the branch, read the review comments with gh pr view <pr-number> --comments, fix the issues, push, and re-request review. - Check for dependency blockers: When selecting an issue, read its comments for "Depends on: #<issue>" patterns. Run gh issue view <dependency-number> --json state -q '.state' to check if the dependency is resolved. If it's still open, skip this issue and grab the next one. - If a specific issue number is provided, use gh issue view <issue-number>. - If a specific feature prefix or label is provided (e.g., AUTH), run gh issue list --label "user-story" --label "<prefix>" --limit 5 --search "sort:created-asc" (fetch 5 to allow skipping blocked issues). - If a milestone is provided, use gh issue list --label "user-story" --milestone "<milestone-name>" --limit 5 --search "sort:created-asc". - If no specific scope is provided, you MUST ask the user to clarify which feature prefix, milestone, or issue number they want to work on to avoid picking up tasks from unrelated design docs. - Once the next available (unblocked) issue is identified, note the issue number, title, and body (which contains the Acceptance Criteria).

  1. State Management: Before starting work, assign the issue to yourself (or the current user) using gh issue edit <issue-number> --add-assignee "@me". This provides visibility and prevents conflicts.
  2. Branching: Follow standard Git flow. Create and checkout a new branch based on the issue number: git checkout -b feature/us-<issue-number>.
  3. Execute: Implement the code, configuration, or changes required to complete that single user story.

- Ensure you fulfill all of the listed Acceptance Criteria in the GitHub issue body. - Write unit tests or perform browser verification if required. - Update any relevant documentation. - Important: If you cannot complete the entire story within ~2 hours of effort, or if you identify missing requirements or technical blockers during implementation, do NOT continue. Move to step 5 (Handling Blockers) instead.

  1. Handling Blockers: If you encounter missing requirements, ambiguity, or blockers that prevent completion, add a comment to the issue detailing the blocker using gh issue comment <issue-number> --body "<Details>", add a blocked label using gh issue edit <issue-number> --add-label "blocked", and stop work on this issue.
  2. Self-Review: Before considering the task complete, perform this specific checklist:

- For each Acceptance Criterion listed in the issue, is there code implementing it? (Check each one individually.) - Are there new tests? Run them locally to verify they pass. - Do the tests exercise the core feature (not just superficial checks)? - Do the tests cover the happy path AND relevant error cases? - Are key operations, state transitions, and error paths logged with enough context to diagnose failures without a debugger? (e.g., relevant IDs, inputs, response codes in error logs) - If all checkboxes pass, proceed to step 7. If any fail, return to step 4 to address gaps.

  1. Commit Code: Once your user story or chunk is complete, you must commit your changes to your feature branch.

- Do not use git commit -a. Select files manually.

  1. Pull Request & Linking:

- Push the branch: git push -u origin HEAD. - Create a Pull Request using the bundled script to ensure clean formatting and avoid agent shell warnings. The scripts/ directory is a sibling of this SKILL.md file. Resolve its absolute path and call: bash /absolute/path/to/scripts/create_pr.sh "<issue-number>" "feat: <issue-title>" "<Summary of work done>" Use the appropriate conventional commit prefix (feat:, fix:, docs:, etc.). The script automatically includes Closes #<issue-number> so merging the PR automatically closes the issue.

Available Scripts

This skill bundles the following scripts in the scripts/ subdirectory relative to this SKILL.md file:

  • create_pr.sh "<issue_number>" "<issue_title>" "<summary_of_work>": Safely executes gh pr create with multi-line bodies to avoid shell escaping errors.

Examples

Example 1: *Input:* "Implement the next task for the PRI feature" *Action:*

  1. The user specified the "PRI" feature prefix. Run gh issue list --label "user-story" --label "PRI" --limit 1 --search "sort:created-asc". Returns Issue #12: "Add priority selector".
  2. Assign: gh issue edit 12 --add-assignee "@me".
  3. Branch: git checkout -b feature/us-12.
  4. Implement the feature and write tests.
  5. Review the code to ensure it meets Acceptance Criteria in Issue #12.
  6. Commit: git add src/components/TaskEdit.tsx and git commit -m "feat: add priority selector (US-002)".
  7. Push: git push -u origin HEAD.
  8. Create PR (resolve absolute path to scripts/ sibling of this SKILL.md, e.g. /path/to/skills/user-story-implementer/scripts/create_pr.sh): bash /path/to/skills/user-story-implementer/scripts/create_pr.sh "12" "feat: Add priority selector" "Added priority selector to task edit."

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

展示第三方安全扫描或审计结果

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

平台分布

Codex

37.45%
按下载量换算109

Claude

28.5%
按下载量换算83

Cursor

19.06%
按下载量换算55

Gemini CLI

9.5%
按下载量换算28

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills