mit einem Klick
mit einem Klick
Check a PR for review comments, evaluate them, and address valid ones
Post a written review file to GitHub as a proper PR review
Create a GitHub PR review with inline comments, preview before posting
Review changes or PRs against project guidelines
Execute an implementation plan, making changes and committing properly
Create an implementation plan from PR review feedback
| name | resolve-issue |
| description | Resolve a GitHub issue end-to-end using sequential subagents |
| argument-hint | <issue-number> |
| allowed-tools | Task, Bash, Read, Glob, Grep, Write |
Resolve a GitHub issue end-to-end by orchestrating the full workflow. Each step runs in a fresh subagent context via the Task tool so that no single context becomes overloaded.
/resolve-issue <issue-number>
Execute these steps sequentially. Each step uses the Task tool with subagent_type: "general-purpose" to spawn a fresh agent. Wait for each step to complete and verify its output before proceeding to the next.
Between steps, you (the orchestrator) handle verification and branch management directly.
Spawn a subagent:
general-purposeAnalyze GitHub issueRead the skill definition at .claude/skills/analyze-issue/SKILL.md and execute it fully. The issue number is $ARGUMENTS. The repository is gittower/git-flow-next.Verify: Use Glob to confirm .ai/issue-$ARGUMENTS-*/analysis.md was created.
Run directly (no subagent needed):
.ai/ folder created in step 1:
ls -d .ai/issue-$ARGUMENTS-*
issue-42-squash-merge → 42-squash-merge)go run main.go feature start <number>-<slug>
If that fails, fall back to:
git checkout -b feature/<number>-<slug> develop
Verify: Confirm current branch is the feature branch.
Save the .ai/ folder path and slug in variables for subsequent steps.
Spawn a subagent:
general-purposeCreate implementation planRead the skill definition at .claude/skills/create-plan/SKILL.md and execute it fully. The current branch is feature/<slug> and the workflow folder is <ai-folder>. Read the analysis at <ai-folder>/analysis.md as input.Verify: Use Glob to confirm <ai-folder>/plan.md was created.
Spawn a subagent:
general-purposeValidate test approachRead the skill definition at .claude/skills/validate-tests/SKILL.md and execute it fully. The workflow folder is <ai-folder>. The plan is at <ai-folder>/plan.md.Verify: Read the plan.md to confirm the test section was reviewed or updated.
Spawn a subagent:
general-purposeImplement the planRead the skill definition at .claude/skills/implement/SKILL.md and execute it fully. Implement from <ai-folder>/plan.md. The current branch is feature/<slug>. Use the /commit skill (read .claude/skills/commit/SKILL.md) for creating commits.Verify (run directly, not in subagent):
go build ./...
go test ./...
If either fails, report the error and ask user whether to retry or abort.
Spawn a subagent:
general-purposeReview changes locallyRead the skill definition at .claude/skills/code-review/SKILL.md and execute it fully. Review all new commits on the current branch vs main. Write the review to <ai-folder>/.Verify: Use Glob to confirm <ai-folder>/review-*.md was created.
Read the review file from step 6. Check for blocking issues or warnings.
If issues found, spawn a subagent:
general-purposeImplement review fixesRead the skill definition at .claude/skills/implement/SKILL.md and execute it fully. Implement fixes from the review at <ai-folder>/review-*.md. The current branch is feature/<slug>. Use the /commit skill (read .claude/skills/commit/SKILL.md) for creating commits.If no issues found, skip this step and report that the review was clean.
Verify (run directly):
go build ./...
go test ./...
Spawn a subagent:
general-purposeGenerate PR summaryRead the skill definition at .claude/skills/pr-summary/SKILL.md and execute it fully. The current branch is feature/<slug> and the workflow folder is <ai-folder>.Verify: Use Glob to confirm <ai-folder>/pr_summary.md was created.
After each step, report to the user:
If any step fails:
When all steps complete, report:
gh pr create command to create the PR