Install in Claude Code
Copygit clone --depth 1 https://github.com/chiruu12/OSS-Skills /tmp/oss-find-issue && cp -r /tmp/oss-find-issue/skills/oss-find-issue ~/.claude/skills/oss-find-issueThen start a new Claude Code session; the skill loads automatically.
Definition
SKILL.md
# Find Issue
Find a real, unclaimed issue that matches your skills. from repos that actually want your contribution. This skill does the research; you decide what's worth your time.
## Purpose
Not every issue is worth picking up. Random issues filed by drive-by users often get closed without merging. Issues from maintainers and org members are the ones that get reviewed and merged. This skill finds those, checks if the repo accepts outside contributions, and matches issues to what you actually know. so you don't waste weeks on something that gets rejected or ignored.
## Prerequisites
- A GitHub account with `gh` CLI authenticated
- A target repo or area of interest (language, framework, domain)
## Process
### 1. Understand the contributor
Before searching for anything, understand who's contributing. Ask the user:
- "What languages and frameworks are you comfortable with?"
- "What's your experience level? (first contribution / a few PRs merged / experienced contributor)"
- "Any specific repos or domains you're interested in? (web, CLI tools, data, infra, etc.)"
Do NOT skip this. Issue matching without knowing the contributor is useless.
### 2. Check contribution eligibility
Before looking at a single issue, verify the repo accepts outside contributions:
```bash
# Fetch contribution guidelines
gh api repos/{owner}/{repo}/contents/CONTRIBUTING.md --jq '.content' | base64 -d 2>/dev/null
gh api repos/{owner}/{repo}/contents/.github/CONTRIBUTING.md --jq '.content' | base64 -d 2>/dev/null
gh api repos/{owner}/{repo}/contents/CODE_OF_CONDUCT.md --jq '.content' | base64 -d 2>/dev/null
```
Check for:
- **Explicit "we welcome contributions"**: if absent, that's a yellow flag
- **CLA requirements**: some orgs require signing a Contributor License Agreement before any PR
- **"Internal only" signals**: some repos state contributions are restricted to org members
- **Stale contribution docs**: if CONTRIBUTING.md references tools/processes from 3+ years ago, the repo may not be actively maintained
- **Recent external PRs merged**: strongest signal that outside contributions are welcome
```bash
# Check if external PRs actually get merged
gh pr list -R {owner}/{repo} --state merged --limit 20 --json author,mergedAt,authorAssociation | \
jq '[.[] | select(.authorAssociation != "MEMBER" and .authorAssociation != "OWNER")]'
```
If the repo doesn't accept outside contributions, **tell the user immediately** and suggest alternatives. Don't waste their time.
### 3. Identify maintainers and core contributors
Issues filed by maintainers carry more weight. they represent actual project priorities.
```bash
# Get repo collaborators and recent committers
gh api repos/{owner}/{repo}/contributors --jq '.[0:10] | .[].login'
# Check issue author association
gh issue list -R {owner}/{repo} --state open --json number,title,author,labels,assignees,authorAssociation,createdAt --limit 50
```
Filter for issues where `authorAssociation` is `OWNER`, `MEMBER`, or `COLLABORATOR`. These are the issues maintainers actually care about.
### 4. Search for matching issues
```bash
# Good first issues from maintainers
gh issue list -R {owner}/{repo} --label "good first issue" --state open \
--json number,title,labels,assignees,comments,createdAt,authorAssociation,author
# Help wanted
gh issue list -R {owner}/{repo} --label "help wanted" --state open \
--json number,title,labels,assignees,comments,createdAt,authorAssociation,author
# GSoC-specific (if applicable)
gh issue list -R {owner}/{repo} --label "gsoc" --state open \
--json number,title,labels,assignees,comments,createdAt,authorAssociation,author
```
For each candidate issue, verify:
```bash
# Read full issue with comments
gh issue view {number} -R {owner}/{repo} --json body,comments,assignees,labels,author,authorAssociation,createdAt,updatedAt
# Check for linked PRs (someone might already be working on it)
gh pr list -R {owner}/{repo} --search "#{number}" --state open --json number,title,author
```
### 5. Filter and rank
**Must-have filters** (skip issue if any fail):
- No assignee AND no "I'll take this" / "working on this" in recent comments
- No open PR linked to this issue
- Created or updated within last 6 months
- Clearly scoped. you can describe what needs to change in 2 sentences
- Filed by maintainer/member/collaborator (or explicitly endorsed by one in comments)
**Ranking criteria**:
| Criteria | Weight | What to check |
|----------|--------|---------------|
| Skill match | High | Does the issue require languages/frameworks the user knows? |
| Learning value | High | Will the user learn something non-trivial? |
| Clear scope | High | Is the expected outcome well-defined? |
| Maintainer engagement | Medium | Has a maintainer commented or labeled recently? |
| Impact | Medium | Does this affect real users or is it cosmetic? |
| Complexity fit | Medium | Not trivial (typo fix) but not overwhelming (full rewrite) |
### 6. Present recommendations
For each of the top 3 issues, present:
```
### #{number} - {title}
- **Filed by**: {author} ({authorAssociation})
- **Why this issue**: {one sentence. what makes it a good pick for THIS user}
- **What it involves**: {what needs to change, in plain language}
- **Skills exercised**: {what the user will learn/practice}
- **Complexity**: {low / medium / high. relative to user's stated experience}
- **Maintainer activity**: {last maintainer comment date, engagement level}
- **Link**: {url}
```
### 7. Thinking gate: user decides
**Do NOT let the user just say "number 1."** Ask:
> "Before you pick one. tell me:
> 1. Why does this issue interest you? (What about it matches your skills from step 1?)
> 2. What do you think the fix might involve? (Look at the 'What it involves' section above. does that match what you'd expect?)
> 3. Is the complexity right for you? (Not so easy you learn nothing, not so hard you get stuck for weeks)"
If the user can't articulate why, that's a signal to dig deeper o