From oss-veda
Deep-dive analysis of a specific GitHub issue to assess whether it's worth contributing to. Use this skill when the user pastes a GitHub issue URL or asks "should I work on this issue?" or "is this a good issue for me?" or "analyze this issue". Fetches the issue details, repo health, maintainer profile, and recent PRs, then scores it using the career-impact formula. Returns a clear verdict: high impact (do it), medium (worth considering), or low ROI (skip).
How this skill is triggered — by the user, by Claude, or both
Slash command
/oss-veda:veda-rankThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When the user provides a GitHub issue URL, analyze it for career impact.
When the user provides a GitHub issue URL, analyze it for career impact.
curl -sH "Authorization: Bearer $GITHUB_TOKEN" \
"https://api.github.com/repos/{owner}/{repo}/issues/{number}"
curl -sH "Authorization: Bearer $GITHUB_TOKEN" \
"https://api.github.com/repos/{owner}/{repo}"
curl -sH "Authorization: Bearer $GITHUB_TOKEN" \
"https://api.github.com/repos/{owner}/{repo}/pulls?state=closed&per_page=30"
## Issue Analysis: {issue_title}
**Repo:** {owner}/{repo} (⭐ {stars})
**Issue:** #{number} — {title}
**Labels:** {labels}
**Age:** {days} days
**Comments:** {count} ({maintainer_engaged: yes/no})
### Career Impact Score: {score}/100
| Signal | Score | Detail |
|---|---|---|
| Repo momentum | {x}/100 | {explanation} |
| Issue quality | {x}/100 | {explanation} |
| Your skill fit | {x}/100 | {explanation} |
### Verdict: {HIGH IMPACT / MEDIUM / LOW ROI}
{2-3 sentence strategic reasoning}
### Suggested approach (if verdict is HIGH or MEDIUM)
{Specific PR strategy in 3-4 sentences}
npx claudepluginhub anujdevsingh/oss-veda --plugin oss-vedaProvides a checklist for code reviews covering functionality, security, performance, maintainability, tests, and quality. Use for pull requests, audits, team standards, and developer training.