원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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
| 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