一键导入
resolve-issues
Fix GitHub issues one by one, each with a commit that closes it. Accepts issue numbers (#123), ranges (#123-125), or fixes all open issues.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Fix GitHub issues one by one, each with a commit that closes it. Accepts issue numbers (#123), ranges (#123-125), or fixes all open issues.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Validates animation durations, enforces typography scale, checks component accessibility, and prevents layout anti-patterns in Tailwind CSS projects. Use when building UI components, reviewing CSS utilities, styling React views, or enforcing design consistency.
Check GitHub Actions status, diagnose failures from logs, fix, push, and loop until CI passes.
Read PR comments on the current branch and address each one through plan mode.
Explore the project and list setup steps needed to run it locally — dependencies, config, services, and manual actions.
Commit, push, and create a PR with summary and test checklist.
Create .superset/config.json with setup and teardown scripts for Superset workspaces.
| name | resolve-issues |
| description | Fix GitHub issues one by one, each with a commit that closes it. Accepts issue numbers (#123), ranges (#123-125), or fixes all open issues. |
Fix GitHub issues from this repository, one at a time, each with its own commit.
Parse $ARGUMENTS:
#123 or 123 — fix that one issue.#123-125 or 123-125 — fix issues #123, #124, #125.#1, #3, #7 — fix those specific issues.gh issue list --state open --json number,title,body --limit 100 to get them.For each issue, in order from lowest to highest number:
gh issue view <number> --json number,title,body,labels to understand what needs to be done.Closes #<number> so GitHub auto-closes the issue on push.
git add <specific files>
git commit -m "$(cat <<'EOF'
<concise description of the fix>
Closes #<number>
EOF
)"