Gog
一个面向 Dev Tools 场景的 Agent 技能。原始说明:Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.
name: github-bounty-hunter
description: Automatically find, analyze, and submit PRs for GitHub issues with bounties. Use when asked to find paid GitHub issues, hunt bounties, make money from open source, find good-first-issues with rewards, or submit PRs for money. Triggered by: "find bounties", "hunt GitHub issues", "make money from GitHub PRs", "find paid issues", "claim bounty".
Find and solve GitHub issues that pay bounties. Submit quality PRs and get paid.
Run the bounty finder:
node scripts/bounty-finder.js [platform] [min-bounty]
Platforms: illbnm (homelab-stack, $50-300/bounty), opire (opire.io), claudi-builders (claude-builders-bounty)
Example:
node scripts/bounty-finder.js illbnm 100
Manual search: Look for repos with bounty label, issues with $ amounts in title, or bounty platform repos.
| Repo | Bounty Range | Competition |
|------|-------------|-------------|
| illbnm/homelab-stack | $50-300 USDT | HIGH (5-8 PRs/issue) |
| claude-builders-bounty | $25-200 | MEDIUM |
| TechGuyTest/* | $20-100 | LOW |
node scripts/check-competition.js [owner] [repo] [issue-number]
This shows how many other PRs exist for the same issue.
POST /repos/:owner/:repo/forks
GET /repos/:owner/:repo/issues/:number
GET /repos/:owner/:repo/contents/:path?ref=:branch
Returns base64-encoded content.
POST /repos/:owner/:repo/git/blobs // create new file blob
POST /repos/:repo/:owner/:git/trees // create tree
POST /repos/:owner/:repo/git/commits // create commit
PATCH /repos/:owner/:repo/git/refs/heads/:branch // update branch
POST /repos/:owner/:repo/pulls
With title: [BOUNTY $X] Issue Title to make it clear.
Use scripts/pr-submitter.js:
node scripts/pr-submitter.js [owner] [repo] [issue-num] [commit-sha] [title]
After PR merges, payment typically comes via:
Wallet for payments: 0x417fd2884CdCF751EDF351eeC07a9fdf06f8Fd32
# Find all illbnm bounties
node scripts/bounty-finder.js illbnm 0
# Check competition for issue #12
node scripts/check-competition.js illbnm homelab-stack 12
# Submit PR after implementation
node scripts/pr-submitter.js [owner] [repo] [issue-num] [commit-sha] [title]
For detailed bounty platform info, see references/bounty-platforms.md.