用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/awslabs/loom --skill issue命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | issue |
| description | Implement a GitHub issue end-to-end — branch, code, test, docs, and commit. |
| argument-hint | <issue-number> |
| allowed-tools | Agent Bash(git *) Bash(gh *) Bash(cd *) Bash(make *) Bash(npm *) Bash(uv *) Bash(python *) Bash(cat *) Bash(ls *) Bash(mkdir *) Bash(cp *) Read Edit Write Grep Glob TaskCreate TaskUpdate TaskGet TaskList |
Implement a GitHub issue end-to-end: fetch the issue, create a feature branch, implement all requirements, test, update docs, and commit.
$ARGUMENTS must be a GitHub issue number (e.g. 78). If missing or non-numeric, ask the user for the issue number.
Run gh issue view $ARGUMENTS --json title,body,labels to get the issue details.
Also check if a matching markdown file exists under tmp/issues/ by looking for files that start with a zero-padded version of the issue number (e.g. issue 78 maps to a file starting with 078-). If the file exists, read it for additional context.
Display the issue title and a brief summary to the user.
Determine the branch name from the matching issue markdown filename under tmp/issues/, but without the .md extension. For example, if the file is 078-my-feature.md, the branch name is 078-my-feature.
If no matching file exists, derive the branch name from the issue number and title: zero-pad the issue number to 3 digits, kebab-case the title, and join with a hyphen (e.g. 078-my-feature-title).
Create and switch to the feature branch: git checkout -b <branch-name>.
Read the full issue body and any linked markdown file. Identify all discrete requirements.
Create a task list using TaskCreate for each requirement so progress can be tracked.
Before writing any code, present the implementation plan to the user and wait for confirmation.
Use an agent team to parallelize independent work where possible:
backend/ following project conventions (Python, FastAPI, type hints, SQLAlchemy).frontend/ following project conventions (TypeScript, ESM, shadcn, Tailwind, Vite).iac/ following AWS SAM / CloudFormation conventions.agents/ with isolated virtual environments.Update TaskUpdate as each requirement is completed.
Run existing tests to check for regressions:
cd backend && make test (or the appropriate makefile target)cd frontend && npm test (if test scripts exist)If the issue specifies new test cases, implement and run them.
All tests must pass before proceeding.
Update the following documentation files to reflect the new changes:
Run the full test suite one more time to confirm nothing was broken during documentation updates.
Review all changes with git diff to verify correctness and ensure no secrets or credentials are included.
Stage and commit all changes locally using semantic commit messages. Group related changes into logical commits:
feat: for new featuresfix: for bug fixesdocs: for documentation updatestest: for test additionsrefactor: for code restructuringchore: for build/config changesDo NOT push to remote. Only commit locally.
Append Co-Authored-By: Claude <noreply@anthropic.com> to each commit message.
Report a summary of all commits created.