بنقرة واحدة
resolve-issue
Full issue workflow — fetch details, research, plan solution, implement, and verify.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Full issue workflow — fetch details, research, plan solution, implement, and verify.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Create a pull request with auto-generated description, issue linking, ROADMAP updates, and PR-metadata validation.
Merge a pull request with status checks, squash merge, and branch cleanup. Handles worktree contexts.
Fan out a batch of autopilot-queued issues to parallel background worktree subagents — each runs /autopilot — with an Opus gating review on every Sonnet-built PR.
Detailed technical walkthrough covering architecture, test coverage, product tour, and key design decisions.
Pre-PR advisory check for deviations from the project spec. Read-only analysis.
Generate a hands-on QA testing guide as a self-contained HTML page — for Rails apps or static (Hugo) sites. --publish uploads the HTML to the project's configured QA host.
| name | resolve-issue |
| description | Full issue workflow — fetch details, research, plan solution, implement, and verify. |
| argument-hint | [issue-number] |
Systematically resolve GitHub issues with a structured workflow.
Track your progress through the 6 steps below. Report completion of each step before moving to the next.
gh issue view $ARGUMENTS to get issue detailsgh pr list --search "fix issue $ARGUMENTS"CHECKPOINT: Present the plan and get sign-off before implementing — but right-size the ceremony to the issue:
When unsure which applies, treat it as complex and ask.
git branch --show-current
<prefix>/gh-$ARGUMENTS-... — e.g. one created earlier in the same run, including an autopilot fan-out worktree re-entering this step): reuse it — do not create a new branch.main/master or an unrelated branch): determine the branch prefix from the issue's type label (see Branch Naming below) and create the feature branch: git switch -c <prefix>/gh-$ARGUMENTS-<short-description>git branch --show-currentCommit Strategy:
git log --oneline to confirm commits existgh issue view $ARGUMENTS --json body --jq '.body', replace - [ ] with - [x] for completed items, then update with gh issue edit $ARGUMENTS --body "$updated_body"/simplify first to review for code reuse, quality, and efficiency improvements/create-pr (issue number will be inferred from branch name)Use the issue's type label to determine the prefix. Format:
<prefix>/gh-<number>-<short-description>
| Type Label | Branch Prefix | Example |
|---|---|---|
feat | feat/ | feat/gh-41-add-auth |
fix | fix/ | fix/gh-55-fix-login |
chore | chore/ | chore/gh-51-update-deps |
docs | docs/ | docs/gh-60-update-readme |
test | test/ | test/gh-63-add-coverage |
If the issue has no type label, infer from context: bug fixes use fix/, new functionality uses feat/, everything else uses chore/.