GitHub Issue Finder
Discover valuable GitHub issues and analyze bug fix feasibility and feature implementation potential. Use when: (1) Finding good issues to contribute to open...
Description
name: issue-finder description: "Discover valuable GitHub issues and analyze bug fix feasibility and feature implementation potential. Use when: (1) Finding good issues to contribute to open source projects, (2) Analyzing bug complexity and fix difficulty, (3) Evaluating feature request feasibility, (4) Assessing contribution value and learning opportunities, (5) Searching for issues by labels, complexity, or project type."
GitHub Issue Finder & Analyzer
Systematically discover and evaluate GitHub issues for open source contribution opportunities.
Core Workflow
1. Issue Discovery
Search for issues using GitHub CLI:
# Find good first issues
gh issue list --repo owner/repo --label "good first issue" --state open
# Find help wanted issues
gh issue list --repo owner/repo --label "help wanted" --state open
# Find bug issues
gh issue list --repo owner/repo --label "bug" --state open
# Find feature requests
gh issue list --repo owner/repo --label "enhancement" --state open
# Search across multiple repos
gh search issues --label "good first issue" --state open --limit 20
Key labels to search:
good first issue- Beginner-friendlyhelp wanted- Maintainers seeking contributorsbug- Defects needing fixesenhancement/feature- New functionalitydocumentation- Doc improvementsperformance- Performance optimizations
2. Issue Evaluation Framework
Read the referenced evaluation criteria: references/evaluation-criteria.md
Feasibility Assessment
Bug Fix Feasibility:
- Reproducibility - Can you reproduce the issue?
- Root Cause - Is the cause identifiable from issue description/code?
- Scope - How many files/components affected?
- Dependencies - Does fix require changes to external dependencies?
- Test Coverage - Are there existing tests? Can you write tests?
Feature Implementation Feasibility:
- Clarity - Is the feature well-defined?
- Alignment - Does it fit project's roadmap/vision?
- Complexity - New code vs. modifying existing code?
- Breaking Changes - Will it break existing functionality?
- Maintainability - Long-term maintenance implications?
Value Assessment
Contribution Value Score (1-10):
| Factor | Weight | Criteria |
|---|---|---|
| Impact | 30% | User-facing vs internal, number of affected users |
| Learning | 25% | New skills/concepts learned |
| Community | 20% | Maintainer responsiveness, community activity |
| Complexity | 15% | Time investment vs. value gained |
| Portfolio | 10% | Demonstrable value for portfolio/career |
Scoring Guide:
- 9-10: High impact, great learning, active maintainers
- 7-8: Good contribution opportunity
- 5-6: Moderate value, consider carefully
- 1-4: Low ROI, skip unless specific reason
3. Issue Analysis Process
Step 1: Gather Information
# Get issue details
gh issue view <issue-number> --repo owner/repo
# Check issue comments/discussion
gh issue view <issue-number> --repo owner/repo --comments
# Check linked PRs
gh pr list --repo owner/repo --search "fixes #<issue-number>"
# Check project files
gh api repos/owner/repo/contents
Step 2: Analyze Codebase Context
# Clone or navigate to repo
cd /path/to/repo
# Understand structure
find . -type f -name "*.ts" | head -20
# Check recent commits
git log --oneline -20
# Look for similar patterns
grep -r "related_functionality" --include="*.ts"
Step 3: Generate Analysis Report
Use the template: references/analysis-template.md
Report Structure:
- Issue Summary
- Root Cause Analysis (for bugs) / Feature Scope (for features)
- Proposed Solution Approach
- Estimated Effort
- Risk Assessment
- Learning Opportunities
- Recommendation
4. Decision Framework
Go/No-Go Checklist:
✅ Proceed if:
- Issue is well-documented
- Maintainers are responsive (< 1 week avg)
- You understand the affected code
- Effort matches available time
- Clear path to solution
❌ Skip if:
- Issue is unclear or lacks details
- Maintainers unresponsive for months
- Requires deep domain expertise you lack
- Breaking changes or major refactoring needed
- No clear acceptance criteria
5. Execution Strategy
Once you've identified a good issue:
- Comment on issue - Express interest, ask clarifying questions
- Wait for maintainer feedback - Get assigned before starting
- Create feature branch -
fix/issue-number-description - Implement incrementally - Small, focused commits
- Test thoroughly - Unit tests, integration tests
- Document changes - Update docs if needed
- Submit PR - Reference issue, describe changes
Advanced Techniques
Pattern-Based Issue Finding
Search for specific code patterns that indicate common issues:
# Find TODO comments
gh search code "TODO" --repo owner/repo
# Find deprecated patterns
gh search code "deprecated" --repo owner/repo --language TypeScript
# Find error handling gaps
gh search code "catch.*{}" --repo owner/repo
Project Health Indicators
Before investing time, check project health:
# Recent activity
gh repo view owner/repo --json updatedAt,pushedAt
# Contributor count
gh api repos/owner/repo/contributors --paginate | jq length
# Open issues/PRs ratio
gh repo view owner/repo --json openIssuesCount,openPullRequestsCount
# CI/CD status
gh api repos/owner/repo/actions/workflows
Healthy Project Signs:
- Recent commits (within days/weeks)
- Active PR reviews
- CI/CD passing
- Maintainers respond to issues/PRs
- Clear contributing guidelines
Batch Analysis
For analyzing multiple issues efficiently:
# Export issues to JSON for analysis
gh issue list --repo owner/repo --state open --limit 50 --json number,title,labels,state,createdAt,comments
# Use the analysis script
python3 scripts/analyze_issues.py --repo owner/repo --output report.md
Best Practices
- Start Small - Begin with
good first issueor documentation - Understand Before Coding - Read code, understand patterns
- Communicate Early - Comment on issue before starting work
- Test Your Changes - Write tests, run existing tests
- Follow Conventions - Match project's coding style
- Be Patient - Reviews take time, iterate on feedback
Common Pitfalls
- Starting work without maintainer acknowledgment
- Missing existing PRs that address the same issue
- Underestimating scope or complexity
- Ignoring project conventions and patterns
- Submitting large, unfocused PRs
Quick Reference
Issue Labels Priority (easiest to hardest):
documentation→good first issue→help wantedbug(small scope) →bug(medium scope)enhancement(small) →feature(medium) →feature(large)
Time Estimation Guide:
- Hours: Documentation, typo fixes, config changes
- Days: Small bug fixes, minor features, test additions
- Weeks: Medium bugs, moderate features, refactoring
- Months: Large features, architectural changes
Success Indicators:
- Clear issue description
- Reproducible steps (for bugs)
- Maintainer engagement
- Existing similar PRs to learn from
- Well-structured codebase
Reviews (0)
No reviews yet. Be the first to review!
Comments (0)
No comments yet. Be the first to share your thoughts!