一键导入
issues-10-sequential
Address 10 GitHub issues sequentially, creating and merging PRs one by one with CI/CD verification
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Address 10 GitHub issues sequentially, creating and merging PRs one by one with CI/CD verification
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Run linting tools (ruff, black, mypy) and fix placeholder/TRACKED_TASK statements
Run linting tools (ruff, black, mypy) and fix placeholder/TRACKED_TASK statements
Run all tests and iterate to fix failures
Fix 5 GitHub issues in a single combined PR, iterating until CI/CD passes
Review recent assessments and sync GitHub issues - create missing issues and close resolved ones
Run all tests and iterate to fix failures
基于 SOC 职业分类
| name | issues-10-sequential |
| description | Address 10 GitHub issues sequentially, creating and merging PRs one by one with CI/CD verification |
Address up to 10 GitHub issues from this repository sequentially. Each issue gets its own PR that must pass CI/CD before merging. Continue autonomously until all 10 issues are resolved or no more issues remain.
IMPORTANT: Proceed continuously without user intervention until complete.
gh issue list --state open --limit 10 --json number,title,labels,body
For issues 1 through 10 (or until no more issues):
git checkout main && git pull
git checkout -b fix/issue-<NUMBER>-<short-description>
ruff check . --fix && black .git add -A
git commit -m "fix: <description>
Closes #<NUMBER>
Co-Authored-By: Claude <noreply@anthropic.com>"
git push -u origin fix/issue-<NUMBER>-<short-description>
gh pr create --title "fix: <description>" --body "## Summary
<brief description of changes>
## Test plan
- [x] Local linting passes
- [x] Changes address issue requirements
Closes #<NUMBER>"
# Poll CI status until complete
gh pr checks <PR_NUMBER>
gh pr merge <PR_NUMBER> --squash
git checkout main && git pull
git branch -d fix/issue-<NUMBER>-<short-description>
After completing all issues (or exhausting available issues), provide:
## Issues Resolution Summary
| # | Issue | PR | Status |
|---|-------|-----|--------|
| 1 | #XXX - Title | #YYY | Merged |
| 2 | #XXX - Title | #YYY | Merged |
...
**Completed**: X issues
**Remaining open issues in repo**: Y