resolve-issue
FeaturedFull issue workflow — fetch details, research, plan solution, implement, and verify.
AI & Automation 421 stars
49 forks Updated today MIT
Install
Quality Score: 93/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Resolve GitHub Issue
Systematically resolve GitHub issues with a structured workflow.
## Your task
Track your progress through the 6 steps below. Report completion of each step before moving to the next.
### Step 1: Get issue details
- Run `gh issue view $ARGUMENTS` to get issue details
- Extract title, description, labels, and comments
- Identify complexity and scope
### Step 2: Research and understand
- Search related PRs: `gh pr list --search "fix issue $ARGUMENTS"`
- Search codebase for relevant files and patterns
- Review similar issues if applicable
### Step 3: Plan solution
- Break the issue into small, manageable tasks
- Identify files that need changes
- Consider edge cases and testing requirements
**CHECKPOINT**: Present the plan and get sign-off before implementing — but right-size the ceremony to the issue:
- **Small, well-scoped** (a few files, an obvious approach): a one-line plan and a quick confirm. If the path is genuinely unambiguous, state your assumption and proceed without waiting — the global "bias toward action" rule applies.
- **Complex or ambiguous** (multiple subsystems, design choices, real risk): present a full implementation plan and wait for explicit approval before proceeding.
When unsure which applies, treat it as complex and ask.
### Step 4: Create or reuse branch, then implement
- Check the current branch first: `git branch --show-current`
- **If already on a feature branch for this issue** (named `<prefix>/gh-$ARGUMENTS-......
Details
- Author
- joshukraine
- Repository
- joshukraine/dotfiles
- Created
- 12 years ago
- Last Updated
- today
- Language
- Shell
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
solve-issue
Solve a GitHub issue end-to-end and open a pull request. Use when the user wants to fix or resolve a specific GitHub issue (often by number or URL), or says "solve issue
4 Updated today
furkankoykiran AI & Automation Listed
fix-issue
Investigate and fix a GitHub issue. Use when given an issue number or URL, or when the user says 'fix issue'.
14 Updated 1 weeks ago
domengabrovsek AI & Automation Featured
github-fix-issue
Fix GitHub issues end-to-end — analysis, branch creation, implementation, testing, and PR submission. Use whenever the user mentions fixing a GitHub issue, says "fix issue
1,609 Updated today
feiskyer