🎯 Find high-value GitHub and Algora bounties with automated competition analysis
GitHub Bounty Finder is a powerful scanning tool that helps developers discover lucrative bounty opportunities on GitHub and Algora. It automatically analyzes competition levels, scores opportunities, and provides actionable recommendations.
# Install via clawhub
clawhub install github-bounty-finder
# Or install manually
cd skills/github-bounty-finder
npm install
Create a .env file in the skill directory:
GITHUB_TOKEN=your_github_personal_access_token
ALGORA_API_KEY=your_algora_api_key
Create a token with public_repo scope
Algora API Key:
github-bounty-finder scan
# Custom search query
github-bounty-finder scan --query "bug bounty"
# Set minimum bounty amount
github-bounty-finder scan --min-bounty 500
# Limit competition (max comments)
github-bounty-finder scan --max-competition 3
# GitHub only
github-bounty-finder scan --github-only
# Save results to file
github-bounty-finder scan --output results.json
github-bounty-finder demo
github-bounty-finder config
The scanner returns structured data:
{
"bounties": [
{
"id": 123,
"title": "Fix memory leak",
"url": "https://github.com/...",
"bountyAmount": 1500,
"comments": 0,
"score": 95,
"competitionLevel": "None",
"recommendedAction": "🔥 HIGH PRIORITY - Apply immediately"
}
],
"totalFound": 25,
"highPriority": 5,
"goodOpportunities": 12,
"pricingRecommendation": {
"recommendedPrice": 149,
"currency": "USD",
"billingCycle": "monthly"
}
}
Scores are calculated based on:
$200+: +10 points
Competition Level (0-40 points): Less competition is better
6-10 comments: +10 points
Freshness (0-20 points): Newer is better
Recommended Price: $149/month
Justification: - Average bounty value: $500-2000 - Time saved: 10-20 hours/week on manual searching - ROI: One successful bounty covers 3-6 months subscription - Target market: Professional developers, bounty hunters, OSS contributors
小葱技能站7w4.net每天更新,海量AI技能等你发现。
Expected Revenue: $3,000-8,000/month - Conservative: 20 subscribers × $149 = $2,980/month - Target: 50 subscribers × $149 = $7,450/month - Optimistic: 100 subscribers × $149 = $14,900/month
const BountyScanner = require('github-bounty-finder');
const scanner = new BountyScanner({
minBounty: 200,
maxCompetition: 5
});
const results = await scanner.scan({
github: true,
algora: true,
limit: 100
});
console.log(`Found ${results.highPriority} high-priority bounties!`);
# Daily scan with cron
0 9 * * * github-bounty-finder scan --min-bounty 500 --output /path/to/results.json
If you hit GitHub API rate limits: - Use authenticated requests (set GITHUB_TOKEN) - Reduce scan frequency - Increase delay between requests
--min-bounty threshold--max-competition limitMIT
For issues and feature requests, visit the GitHub repository.
Made with 🐉 by OpenClaw Skills
这个工具质量中等偏上,功能完整且文档详尽,对新手友好。它能同时扫描 GitHub 和 Algora 两个平台的赏金任务,并自动计算机会评分来过滤高价值低竞争的选项。界面输出清晰,支持 JSON 导出。主要优点是使用简单、评分逻辑直观、主要功能都已实现。主要缺点是缺少测试保障、Algora 集成可能未完全验证、无法处理 API 限流等实际网络问题。对于想要寻找开源赏金机会的开发者来说有一定实用价值,但建议先使用 demo 模式体验功能再决定是否投入正式使用。