mergerep
2
总安装量
1
周安装量
#66403
全站排名
安装命令
npx skills add https://github.com/vimtor/mergerep --skill mergerep
Agent 安装分布
amp
1
opencode
1
kimi-cli
1
codex
1
claude-code
1
Skill 文档
mergerep
Check a GitHub contributor’s open source merge rate before reviewing their PR. Helps identify low-quality LLM-generated pull requests.
How It Works
- Fetches all public PRs (and optionally issues) by the user via GitHub GraphQL API
- Excludes the user’s own repos â only external contributions count
- Calculates a reputation score: % of merged PR stars out of total PR stars (star-weighted merge rate)
- Breaks down stats per repository
Prerequisites
Requires GitHub CLI (gh) authenticated.
Usage
# Check a specific user
bunx mergerep <username>
# Auto-detect PR author (when run inside a PR branch)
bunx mergerep
# JSON output (for programmatic use)
bunx mergerep <username> --json
# Include issue stats
bunx mergerep <username> --issues
# Highlight a specific repo in output
bunx mergerep <username> --repo owner/name
When to Use
- Reviewing a PR from an external contributor â run
bunx mergerep <author>to check their track record - Triaging incoming PRs â quickly assess if a contributor has a history of merged contributions
- Comparing contributors â use
--jsonto programmatically compare multiple users
Output
The tool outputs:
- Reputation: star-weighted merge rate (green â¥70%, yellow â¥40%, red <40%)
- Pull Requests: total merged/opened with per-repo breakdown
- Issues (with
--issues): total closed/opened with per-repo breakdown
Present Results to User
When presenting mergerep output, summarize:
- The user’s reputation score and what it indicates
- Their overall merge rate
- Notable repos they’ve contributed to
- Whether this suggests the contributor is trustworthy for the current PR