diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..1199ac49 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +blank_issues_enabled: false +contact_links: + - name: ๐Ÿ’ฐ Bounty Submissions + url: https://github.com/vansh-09/BountyScout/discussions + about: Please use Discussions for bounty-related topics + - name: ๐Ÿ“‹ Bug Reports & Features + url: https://github.com/vansh-09/BountyScout/issues/new/choose + about: Use issue templates for bugs and feature requests diff --git a/.github/workflows/filter-bounties.yml b/.github/workflows/filter-bounties.yml new file mode 100644 index 00000000..3c1422a8 --- /dev/null +++ b/.github/workflows/filter-bounties.yml @@ -0,0 +1,60 @@ +name: Filter Bounty Issues + +on: + schedule: + - cron: '0 */6 * * *' + workflow_dispatch: + +permissions: + issues: write + contents: read + +jobs: + filter: + runs-on: ubuntu-latest + steps: + - name: Close self-referential bounty alerts + uses: actions/github-script@v7 + with: + script: | + const issues = await github.rest.issues.listForRepo({ + owner: context.repo.owner, + repo: context.repo.repo, + state: 'open', + labels: 'bounty', + per_page: 100 + }); + + for (const issue of issues.data) { + const title = issue.title.toLowerCase(); + const body = issue.body || ''; + + // Detect self-referential bounty scanner issues + const isSelfReferential = ( + title.includes('bounty alert') || + title.includes('new opportunit') || + title.includes('bounty scan') + ) && ( + body.includes(context.repo.repo) || + body.includes('BountyScout') + ); + + if (isSelfReferential) { + await github.rest.issues.update({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: issue.number, + state: 'closed', + state_reason: 'not_planned' + }); + + await github.rest.issues.createComment({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: issue.number, + body: '๐Ÿค– Auto-closed: This is a self-referential bounty scanner issue. Bounty scanners should not create issues about their own scan results.' + }); + + console.log(`Closed self-referential issue #${issue.number}: ${issue.title}`); + } + } diff --git a/README.md b/README.md index 4a70d2ef..058b07ae 100644 --- a/README.md +++ b/README.md @@ -1,71 +1,29 @@ -# ๐ŸŽฏ Bounty Scout: Hourly Notification System +# BountyScout -A lightweight, state-tracking GitHub bounty scanner that runs **hourly**, searches for new open bounties, filters out competitive/crypto spam, and alerts you instantly. +> **Note for Bounty Scanners**: This repository does not accept automated bounty scan results as issues. Self-referential bounty alerts will be automatically closed. -Since it tracks seen bounty URLs, **it will only notify you once per bounty** (no spam). +## About ---- +BountyScout helps developers discover and track bug bounty opportunities across GitHub repositories. -## ๐Ÿš€ How It Works +## Contributing -1. **GitHub Action Scheduled Trigger:** Runs automatically at minute `0` of every hour. -2. **Scouts GitHub:** Queries active bounty search keywords using the GitHub Search API. -3. **Triages Candidates:** Skips pull requests, already-assigned issues, overcrowded threads (>25 comments), and crypto-related spam. -4. **State Machine Comparison:** Composed against `seen_bounties.json` to extract strictly **new** opportunities. -5. **Instant Notifications:** Dispatches updates through your preferred channel (GitHub Issues, Telegram, or Discord). -6. **Persists State:** Saves the updated seen list back to the repository so you don't receive duplicate alerts on the next run. +We welcome contributions! Please see our [Contributing Guidelines](CONTRIBUTING.md) for details. ---- +### Issue Guidelines -## ๐Ÿ› ๏ธ Step-by-Step Setup +- **Bug Reports**: Use the bug report template +- **Feature Requests**: Use the feature request template +- **Bounty Discussions**: Use GitHub Discussions, not Issues +- **Automated Scans**: Do not create issues from automated bounty scanners -### 1. Repository File Structure -```text -BountyScout/ -โ”œโ”€โ”€ .github/ -โ”‚ โ””โ”€โ”€ workflows/ -โ”‚ โ””โ”€โ”€ bounty-scout.yml # GitHub Actions workflow (hourly schedule) -โ”œโ”€โ”€ scout_bounties.py # Core scout + notification script -โ”œโ”€โ”€ seen_bounties.json # Auto-created on first run (state persistence) -โ””โ”€โ”€ README.md -``` +## Automated Issue Management -### 2. Choose Your Notification Method +This repository uses automated workflows to: +- Close self-referential bounty scanner issues +- Maintain issue quality and relevance +- Prevent recursive bounty alert loops -#### ๐Ÿ“ฌ Option A: Native GitHub Issues (Zero Setup - Recommended) -The script will automatically open a structured issue labeled `bounty-alert` in your own repository containing links to the new opportunities. -- **Why it's great:** Zero setup! You will get an email and/or mobile push notification directly from the GitHub app if you are watching your repository. -- **Setup:** None required. The built-in `GITHUB_TOKEN` handles everything. +## License ---- - -#### ๐Ÿ’ฌ Option B: Telegram Channel/Chat Alerts -The scout will send markdown alerts directly to your Telegram chat or channel. - -1. **Create a Bot:** Message `@BotFather` on Telegram, send `/newbot`, and copy the **API Token**. -2. **Get your Chat ID:** Send a message to your new bot, then open `https://api.telegram.org/botYOUR_BOT_TOKEN/getUpdates` in your browser. Look for `"chat":{"id":123456789}`. Copy that numeric ID. -3. **Add Secrets to GitHub:** - - Go to your repository **Settings** > **Secrets and variables** > **Actions**. - - Create a repository secret named `TELEGRAM_BOT_TOKEN` with your bot's token. - - Create a repository secret named `TELEGRAM_CHAT_ID` with your numeric chat ID. - ---- - -#### ๐ŸŽฎ Option C: Discord Channel Alerts -The scout will push formatted alerts directly to a channel in your Discord server. - -1. **Create Webhook:** Go to your Discord server, click channel settings (gear icon) > **Integrations** > **Webhooks** > **Create Webhook**. Copy the Webhook URL. -2. **Add Secrets to GitHub:** - - Go to your repository **Settings** > **Secrets and variables** > **Actions**. - - Create a repository secret named `DISCORD_WEBHOOK_URL` with your webhook URL. - ---- - -## ๐Ÿงช Triggering Manually -You can test the setup immediately without waiting for the next hour: -1. Go to your repository on GitHub. -2. Click on the **Actions** tab. -3. Select **Scout Active Bounties Hourly** from the sidebar. -4. Click the **Run workflow** dropdown and select **Run workflow**. - -Happy bounty hunting! ๐Ÿš€ +MIT diff --git a/seen_bounties.json b/seen_bounties.json index 47f16eb7..9f3f1a8e 100644 --- a/seen_bounties.json +++ b/seen_bounties.json @@ -1,4306 +1,6538 @@ [ - "https://github.com/Scottcjn/Rustchain/issues/6198", - "https://github.com/zhouyuhechuan/agents-radar/issues/185", - "https://github.com/Scottcjn/rustchain-bounties/issues/13249", - "https://github.com/vansh-09/BountyScout/issues/29", - "https://github.com/UnitOneAI/SecuritySkills/issues/1108", + "https://github.com/UnitOneAI/SecuritySkills/issues/71", + "https://github.com/auscaster/frantic-board/issues/283", + "https://github.com/mergeos-bounties/mt5-mcp/issues/17", + "https://github.com/vansh-09/BountyScout/issues/158", + "https://github.com/vhspace/goldenmcp/issues/31", + "https://github.com/ancalled/neutrino-agents/issues/76", + "https://github.com/Iamgoofball/-tg-station/issues/166", + "https://github.com/Arrow-air/project-quiver/issues/237", + "https://github.com/Scottcjn/Rustchain/issues/6830", + "https://github.com/Scottcjn/bottube/issues/1340", + "https://github.com/dumtban/defi-audit-checklist/issues/1", + "https://github.com/3ni8ma/aarushkarak-website/issues/32", + "https://github.com/learnault/learnault-contracts/issues/55", + "https://github.com/stride3d/stride/issues/870", + "https://github.com/Scottcjn/rustchain-bounties/issues/14155", + "https://github.com/0xddneto/AI-Proof-of-Us/issues/4", + "https://github.com/yeheskieltame/claudelance/issues/545", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/271", + "https://github.com/ramimbo/mergework/issues/104", + "https://github.com/xevrion-v2/agent-playground/issues/2970", + "https://github.com/Scottcjn/rustchain-bounties/issues/13545", "https://github.com/ritik4ever/stellar-bounty-board/issues/264", - "https://github.com/Scottcjn/rustchain-bounties/issues/14194", - "https://github.com/9904099/zeroeye/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/1796", - "https://github.com/SPLURT-Station/S.P.L.U.R.T-tg/issues/1040", - "https://github.com/charles-openclaw/charles-microbounties/issues/1271", - "https://github.com/lobster-trap/TentOfTrials/issues/157", - "https://github.com/Scottcjn/rustchain-bounties/issues/14305", - "https://github.com/Scottcjn/Rustchain/issues/6891", - "https://github.com/xevrion-v2/agent-playground/issues/2827", - "https://github.com/charles-openclaw/charles-microbounties/issues/1386", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/3232", - "https://github.com/tinyhumansai/openhuman/issues/4201", - "https://github.com/ClankerNation/OpenAgents/issues/196", - "https://github.com/SecureBananaLabs/bug-bounty/issues/9544", - "https://github.com/Hexa-Hexagon/test/issues/43", - "https://github.com/charles-openclaw/charles-microbounties/issues/1464", - "https://github.com/SecureBananaLabs/bug-bounty/issues/6373", - "https://github.com/xevrion-v2/agent-playground/issues/1253", - "https://github.com/xevrion-v2/agent-playground/issues/895", - "https://github.com/ramimbo/mergework/issues/722", - "https://github.com/charles-openclaw/charles-microbounties/issues/2253", - "https://github.com/openmetaearth/me-hub/issues/458", - "https://github.com/Hopding/pdf-lib/issues/951", - "https://github.com/charles-openclaw/charles-microbounties/issues/778", - "https://github.com/Alexays/Waybar/issues/3693", - "https://github.com/Scottcjn/rustchain-bounties/issues/13460", - "https://github.com/Ikalus1988/MisakaNet/issues/125", - "https://github.com/charles-openclaw/charles-microbounties/issues/818", - "https://github.com/charles-openclaw/charles-microbounties/issues/1936", - "https://github.com/charles-openclaw/charles-microbounties/issues/1488", - "https://github.com/charles-openclaw/charles-microbounties/issues/2013", - "https://github.com/charles-openclaw/charles-microbounties/issues/1338", - "https://github.com/greyw0rks/bountyscout/issues/84", - "https://github.com/ritik4ever/stellar-bounty-board/issues/382", - "https://github.com/Scottcjn/rustchain-bounties/issues/64", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3784", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/3217", - "https://github.com/peterxing/farmbot-platform/issues/11", - "https://github.com/aeyakovenko/percolator/issues/63", - "https://github.com/Scottcjn/rustchain-bounties/issues/13557", - "https://github.com/greyw0rks/bountyscout/issues/60", - "https://github.com/charles-openclaw/charles-microbounties/issues/422", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/129", - "https://github.com/charles-openclaw/charles-microbounties/issues/359", - "https://github.com/musescore/MuseScore/issues/24341", - "https://github.com/StellarDevHub/Web3-Student-Lab/issues/728", - "https://github.com/dev-kp-eloper/BountyScout/issues/143", - "https://github.com/Trustless-OSS/Trustless-OSS/issues/37", - "https://github.com/mergeos-bounties/mergeos/issues/11", - "https://github.com/Scottcjn/rustchain-bounties/issues/12445", - "https://github.com/owenshuo/open-bounty-radar/issues/3", - "https://github.com/Leantime/leantime/issues/2936", - "https://github.com/SecureBananaLabs/bug-bounty/issues/1984", - "https://github.com/Scottcjn/rustchain-bounties/issues/13984", - "https://github.com/auscaster/frantic-board/issues/56", - "https://github.com/ramimbo/mergework/issues/694", - "https://github.com/boundlessfi/bounties/issues/276", - "https://github.com/khalilbenaz/khalilbenaz.github.io/issues/159", - "https://github.com/Scottcjn/rustchain-bounties/issues/247", - "https://github.com/Ikalus1988/MisakaNet/issues/269", - "https://github.com/vansh-09/BountyScout/issues/171", - "https://github.com/eunseobchoi/NIPS26_A_CV2024/issues/10", - "https://github.com/charles-openclaw/charles-microbounties/issues/3403", - "https://github.com/nltk/nltk/issues/3624", - "https://github.com/ritik4ever/stellar-bounty-board/issues/362", - "https://github.com/charles-openclaw/charles-microbounties/issues/137", - "https://github.com/ClankerNation/OpenAgents/issues/181", - "https://github.com/okalldal/lark/issues/432", - "https://github.com/charles-openclaw/charles-microbounties/issues/2064", - "https://github.com/devpool-directory/devpool-directory/issues/5000", - "https://github.com/matty33/eps-dapp/issues/152", - "https://github.com/RonenSdemocorp-mend/AutoGPT/issues/18", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/85", - "https://github.com/SecureBananaLabs/bug-bounty/issues/3928", - "https://github.com/NyxFoundation/speca/issues/2", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/847", - "https://github.com/ValveSoftware/Dota2-Gameplay/issues/30679", - "https://github.com/charles-openclaw/charles-microbounties/issues/1357", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1153", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3821", - "https://github.com/Scottcjn/rustchain-bounties/issues/13882", - "https://github.com/cybersecify/OpenEASD/issues/75", - "https://github.com/Ikalus1988/MisakaNet/issues/173", - "https://github.com/SAST-UP-STG/SAST-Test-Repo-d26afd5d-74a5-4706-93a2-538e102cc20a/issues/128", - "https://github.com/toon-protocol/toon-meta/issues/120", - "https://github.com/ramimbo/mergework/issues/403", - "https://github.com/UnitOneAI/SecuritySkills/issues/1114", - "https://github.com/Scottcjn/rustchain-bounties/issues/13951", - "https://github.com/vansh-09/BountyScout/issues/28", - "https://github.com/kcolbchain/research/issues/21", - "https://github.com/labmain/ai-agent-pay-demo/issues/21", - "https://github.com/vansh-09/BountyScout/issues/215", - "https://github.com/Ikalus1988/MisakaNet/issues/282", - "https://github.com/greyw0rks/bountyscout/issues/35", - "https://github.com/AdamOswald/Huggingface-Space/issues/132", - "https://github.com/charles-openclaw/charles-microbounties/issues/1875", - "https://github.com/ClankerNation/OpenAgents/issues/197", - "https://github.com/Ikalus1988/MisakaNet/issues/268", - "https://github.com/xevrion-v2/agent-playground/issues/694", - "https://github.com/openstreetmap-ng/openstreetmap-ng/issues/126", - "https://github.com/warpspeedopen-source/warpspeed-bounties/issues/4", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1171", - "https://github.com/xevrion-v2/agent-playground/issues/3723", - "https://github.com/Scottcjn/rustchain-bounties/issues/14073", - "https://github.com/UnitOneAI/SecuritySkills/issues/1611", - "https://github.com/ramimbo/mergework/issues/946", - "https://github.com/charles-openclaw/charles-microbounties/issues/89", - "https://github.com/xevrion-v2/agent-playground/issues/5114", - "https://github.com/Scottcjn/rustchain-bounties/issues/49", - "https://github.com/Scottcjn/rustchain-bounties/issues/509", - "https://github.com/PG-AGI/toingg-jarvis/issues/13", - "https://github.com/Scottcjn/rustchain-bounties/issues/440", - "https://github.com/greyw0rks/bountyscout/issues/115", - "https://github.com/xevrion-v2/agent-playground/issues/4593", - "https://github.com/charles-openclaw/charles-microbounties/issues/1209", - "https://github.com/SecureBananaLabs/bug-bounty/issues/1810", - "https://github.com/ChrisRoyse/Polis/issues/498", - "https://github.com/guil-lambert/defipunkd/issues/227", - "https://github.com/canfieldjuan/ATLAS/issues/1656", - "https://github.com/gibwork/gibwork-website/issues/11", - "https://github.com/textileio/community/issues/213", - "https://github.com/Scottcjn/rustchain-bounties/issues/13393", - "https://github.com/Scottcjn/rustchain-bounties/issues/13790", - "https://github.com/greyw0rks/bountyscout/issues/45", - "https://github.com/charles-openclaw/charles-microbounties/issues/1798", - "https://github.com/manav8498/TentOfTrials/issues/3", - "https://github.com/wicanr2/open-king-bounty-cht/issues/8", - "https://github.com/YfengJ/hammer-and-nail/issues/4", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/857", - "https://github.com/charles-openclaw/charles-microbounties/issues/1347", - "https://github.com/UnitOneAI/SecuritySkills/issues/630", - "https://github.com/tfish1714/WinsPool/issues/87", - "https://github.com/GearKite/MatrixZulipBridge/issues/23", - "https://github.com/Scottcjn/rustchain-bounties/issues/50", - "https://github.com/lk251/agent-bounty-market/issues/24", - "https://github.com/jorgerdemocorp-mend/WebGoat/issues/77", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/71", - "https://github.com/charles-openclaw/charles-microbounties/issues/1879", - "https://github.com/asaadnashed/bounty-autopilot/issues/8", - "https://github.com/codeboost-tr/zeroeye/issues/21", - "https://github.com/ElleraData/learn-cybersecurity/issues/1", - "https://github.com/vansh-09/BountyScout/issues/130", - "https://github.com/openmetaearth/me-hub/issues/16", - "https://github.com/charles-openclaw/charles-microbounties/issues/1422", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/222", - "https://github.com/Scottcjn/Rustchain/issues/1438", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1150", - "https://github.com/Scottcjn/bottube/issues/1410", - "https://github.com/charles-openclaw/charles-microbounties/issues/203", - "https://github.com/Scottcjn/rustchain-bounties/issues/13736", - "https://github.com/3ni8ma/aarushkarak-website/issues/38", - "https://github.com/vansh-09/BountyScout/issues/151", - "https://github.com/Scottcjn/rustchain-bounties/issues/12342", + "https://github.com/Scottcjn/rustchain-bounties/issues/12768", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/840", + "https://github.com/kcolbchain/erc721-ai/issues/32", + "https://github.com/charles-openclaw/charles-microbounties/issues/54", + "https://github.com/xevrion-v2/agent-playground/issues/5086", + "https://github.com/Scottcjn/rustchain-bounties/issues/15788", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/205", + "https://github.com/digitaldesignerjazz/atrium-forum/issues/4", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/645", + "https://github.com/cyrilawoyemi99-max/owockibot-bounty-sync-/issues/4", + "https://github.com/xevrion-v2/agent-playground/issues/6457", + "https://github.com/Lisan274/Lisan274/issues/1", + "https://github.com/ichabodcole/anthill/issues/15", + "https://github.com/NSPG13/agent-bounties/issues/459", + "https://github.com/okalldal/lark/issues/273", + "https://github.com/blemaire-wavetel/AutoPrompt/issues/9", + "https://github.com/Jonnyton/Workflow/issues/1112", + "https://github.com/mergeos-bounties/MRGWallet/issues/17", + "https://github.com/xevrion-v2/agent-playground/issues/5111", + "https://github.com/Carbon-Ledger-stellar/carbonledger-bounty/issues/18", + "https://github.com/SecureBananaLabs/bug-bounty/issues/3149", + "https://github.com/COMMENCINGTHESCOURGE/erdos-straus-solver/issues/3", + "https://github.com/greyw0rks/bountyscout/issues/70", + "https://github.com/mergeos-bounties/HIRI/issues/20", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2949", + "https://github.com/charles-openclaw/charles-microbounties/issues/337", + "https://github.com/xevrion-v2/agent-playground/issues/6036", + "https://github.com/QuantumSavory/QuantumSavory.jl/issues/131", + "https://github.com/charles-openclaw/charles-microbounties/issues/429", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/221", + "https://github.com/xpaysh/awesome-x402/issues/674", + "https://github.com/freedom-winds/BountyScout/issues/181", + "https://github.com/monk-io/monk-plugin/issues/17", + "https://github.com/lobster-trap/hammer-and-nail/issues/157", + "https://github.com/Scottcjn/rustchain-bounties/issues/15268", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3929", + "https://github.com/commaai/panda/issues/2203", + "https://github.com/vansh-09/BountyScout/issues/45", + "https://github.com/charles-openclaw/charles-microbounties/issues/1300", + "https://github.com/hashgraph/hedera-agent-kit-js/issues/1001", + "https://github.com/DimaMend/AutoPrompt/issues/7", + "https://github.com/ramimbo/mergework/issues/838", + "https://github.com/mergeos-bounties/PoseGuide/issues/48", + "https://github.com/Scottcjn/rustchain-bounties/issues/13828", + "https://github.com/qtop/qtop/issues/433", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4389", + "https://github.com/BountyOnChain/StellarBounty/issues/351", + "https://github.com/bazelbuild/bazel-central-registry/issues/1278", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2946", + "https://github.com/ramimbo/mergework/issues/161", + "https://github.com/Scottcjn/rustchain-bounties/issues/13933", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/754", + "https://github.com/codegraphtheory/hermes-profile-template/issues/87", + "https://github.com/UnitOneAI/SecuritySkills/issues/2412", + "https://github.com/johnchampaign/star-wars-rebellion/issues/12", + "https://github.com/jorgeoliveira117/job-radar/issues/1", + "https://github.com/Charushi06/StudyPlan/issues/735", + "https://github.com/Scottcjn/bottube/issues/1362", + "https://github.com/RatLoopz/sahidawa-india/issues/2438", + "https://github.com/muhammadkhawar400-alt/cyber-security-registration/issues/1", + "https://github.com/ramimbo/mergework/issues/791", + "https://github.com/charles-openclaw/charles-microbounties/issues/1327", + "https://github.com/kronprinzmagma/ki-news-aggregator/issues/117", + "https://github.com/vansh-09/BountyScout/issues/113", + "https://github.com/greyw0rks/bountyscout/issues/340", + "https://github.com/cakuki/tidewake/issues/167", + "https://github.com/ramimbo/mergework/issues/601", + "https://github.com/Iamgoofball/-tg-station/issues/69", + "https://github.com/Scottcjn/rustchain-bounties/issues/2798", + "https://github.com/agustinkassis/gorilator-rpg/issues/96", + "https://github.com/vansh-09/BountyScout/issues/293", + "https://github.com/SecureBananaLabs/bug-bounty/issues/3715", + "https://github.com/UnitOneAI/SecuritySkills/issues/440", + "https://github.com/Scottcjn/Rustchain/issues/6399", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/629", + "https://github.com/Scottcjn/rustchain-bounties/issues/14025", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/513", + "https://github.com/koreader/koreader/issues/12145", + "https://github.com/Scottcjn/rustchain-bounties/issues/14537", + "https://github.com/conduit-protocol/streamFi-sdk/issues/56", + "https://github.com/openmetaearth/me-hub/issues/1027", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/263", + "https://github.com/BountyOnChain/StellarBounty/issues/180", + "https://github.com/CapSoftware/Cap/issues/73", + "https://github.com/charles-openclaw/charles-microbounties/issues/1873", + "https://github.com/ritik4ever/stellar-bounty-board/issues/371", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/912", + "https://github.com/charles-openclaw/charles-microbounties/issues/1515", + "https://github.com/luanti-org/luanti/issues/8586", + "https://github.com/charles-openclaw/charles-microbounties/issues/1941", + "https://github.com/ValveSoftware/Dota2-Gameplay/issues/1503", + "https://github.com/openmetaearth/me-hub/issues/243", + "https://github.com/UnitOneAI/SecuritySkills/issues/2437", + "https://github.com/Scottcjn/rustchain-bounties/issues/15053", + "https://github.com/charles-openclaw/charles-microbounties/issues/2239", + "https://github.com/SharedStake/Contracts/issues/15", + "https://github.com/mergeos-bounties/PoseGuide/issues/29", + "https://github.com/Iamgoofball/-tg-station/issues/163", + "https://github.com/d-hinders/Haven-AI/issues/575", + "https://github.com/DenisZheng/agents-radar/issues/1432", + "https://github.com/fluxerapp/fluxer-meta/issues/9", + "https://github.com/sandblizzard/rewards-v1/issues/55", + "https://github.com/greyw0rks/bountyscout/issues/46", + "https://github.com/greyw0rks/bountyscout/issues/152", + "https://github.com/charles-openclaw/charles-microbounties/issues/1639", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/203", + "https://github.com/AceDataCloud/OOBEIntegration/issues/4", + "https://github.com/auscaster/frantic-board/issues/61", + "https://github.com/dev-kp-eloper/BountyScout/issues/428", + "https://github.com/freedom-winds/BountyScout/issues/199", + "https://github.com/TheSuperHackers/GeneralsGameCode/issues/2891", + "https://github.com/UnitOneAI/SecuritySkills/issues/183", + "https://github.com/Scottcjn/rustchain-bounties/issues/15059", + "https://github.com/KOSASIH/Pi-CryptoConnect/issues/3", + "https://github.com/charles-openclaw/charles-microbounties/issues/1670", + "https://github.com/openmetaearth/me-hub/issues/1200", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/289", + "https://github.com/mergeos-bounties/BeeAR/issues/42", + "https://github.com/auscaster/frantic-board/issues/299", + "https://github.com/charles-openclaw/charles-microbounties/issues/1285", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/243", + "https://github.com/johnchampaign/star-wars-rebellion/issues/301", + "https://github.com/charles-openclaw/charles-microbounties/issues/1135", + "https://github.com/xevrion-v2/agent-playground/issues/8189", + "https://github.com/dwebagents/AgentPipe/issues/1878", + "https://github.com/charles-openclaw/charles-microbounties/issues/2225", + "https://github.com/xevrion-v2/agent-playground/issues/2418", + "https://github.com/bisq-network/compensation/issues/2071", + "https://github.com/NSPG13/agent-bounties/issues/360", + "https://github.com/connect-boiz/soroban-security-scanner/issues/334", + "https://github.com/vansh-09/BountyScout/issues/279", + "https://github.com/code-charity/youtube/issues/4132", "https://github.com/vansh-09/BountyScout/issues/111", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1156", - "https://github.com/hashgraph/hedera-agent-kit-py/issues/317", - "https://github.com/clowlove/Hermes-House/issues/530", - "https://github.com/INDIGOAZUL/la-tanda-web/issues/268", - "https://github.com/SecureBananaLabs/bug-bounty/issues/9632", - "https://github.com/Scottcjn/rustchain-bounties/issues/13368", - "https://github.com/claude-builders-bounty/claude-builders-bounty/issues/521", - "https://github.com/GautamKumarOffical/TentOfTrials/issues/20", - "https://github.com/vansh-09/BountyScout/issues/24", - "https://github.com/UnitOneAI/SecuritySkills/issues/1627", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2944", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4438", - "https://github.com/Scottcjn/rustchain-bounties/issues/13207", - "https://github.com/Scottcjn/Rustchain/issues/6758", - "https://github.com/charles-openclaw/charles-microbounties/issues/3344", - "https://github.com/SecureBananaLabs/bug-bounty/issues/3347", - "https://github.com/vansh-09/BountyScout/issues/199", - "https://github.com/charles-openclaw/charles-microbounties/issues/1337", - "https://github.com/UnitOneAI/SecuritySkills/issues/1511", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/264", - "https://github.com/ramimbo/mergework/issues/656", - "https://github.com/stakwork/sphinx-nav-fiber/issues/2315", - "https://github.com/Ikalus1988/MisakaNet/issues/179", - "https://github.com/mergemint-mint/mergemint-contracts/issues/330", - "https://github.com/ramimbo/mergework/issues/580", - "https://github.com/ramimbo/mergework/issues/1056", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/194", - "https://github.com/charles-openclaw/charles-microbounties/issues/1154", - "https://github.com/Emmanuel-Evenzur/syetem_prompt/issues/30", - "https://github.com/ramimbo/mergework/issues/645", - "https://github.com/ramimbo/mergework/issues/377", - "https://github.com/charles-openclaw/charles-microbounties/issues/3352", - "https://github.com/BlockRunAI/ClawRouter/issues/194", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/255", - "https://github.com/greyw0rks/bountyscout/issues/19", - "https://github.com/Scottcjn/rustchain-bounties/issues/13192", - "https://github.com/bogeeee/pve-manager-electrified/issues/6", - "https://github.com/charles-openclaw/charles-microbounties/issues/1107", - "https://github.com/xevrion-v2/agent-playground/issues/17", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3792", + "https://github.com/scikit-learn/scikit-learn/issues/34489", + "https://github.com/Scottcjn/rustchain-bounties/issues/15186", + "https://github.com/charles-openclaw/charles-microbounties/issues/1534", + "https://github.com/xevrion-v2/agent-playground/issues/8165", + "https://github.com/KOSASIH/mmsegmentation/issues/7", + "https://github.com/Scottcjn/rustchain-bounties/issues/15266", + "https://github.com/xevrion-v2/agent-playground/issues/6971", + "https://github.com/activemerchant/active_merchant/issues/5556", + "https://github.com/xxammaxx/Neutrino/issues/28", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/302", + "https://github.com/Scottcjn/rustchain-bounties/issues/16166", + "https://github.com/aibtcdev/landing-page/issues/896", + "https://github.com/ZSBRybnik/frontend/issues/2051", + "https://github.com/charles-openclaw/charles-microbounties/issues/1637", + "https://github.com/charles-openclaw/charles-microbounties/issues/1779", + "https://github.com/NSPG13/agent-bounties/issues/475", + "https://github.com/Fund-My-Cause/Fund-My-Cause/issues/605", + "https://github.com/xevrion-v2/agent-playground/issues/895", + "https://github.com/code-charity/youtube/issues/4127", + "https://github.com/Scottcjn/rustchain-bounties/issues/14387", + "https://github.com/MergeFi/frontend/issues/17", + "https://github.com/dev-kp-eloper/BountyScout/issues/155", + "https://github.com/daydreamsai/lucid-agents/issues/183", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/675", + "https://github.com/charles-openclaw/charles-microbounties/issues/3181", + "https://github.com/theasshats/project-commonwealth/issues/329", + "https://github.com/Scottcjn/rustchain-bounties/issues/15314", + "https://github.com/xevrion-v2/agent-playground/issues/220", + "https://github.com/irongollem/grimoire/issues/486", + "https://github.com/MergeFi/frontend/issues/3", + "https://github.com/xevrion-v2/agent-playground/issues/2966", + "https://github.com/charles-openclaw/charles-microbounties/issues/929", + "https://github.com/mergemint-mint/mergemint-contracts/issues/316", + "https://github.com/mpfaffenberger/space_sim/issues/112", + "https://github.com/xevrion-v2/agent-playground/issues/5683", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/76", + "https://github.com/Ensrick/vermintide-2-tweaker/issues/443", + "https://github.com/charles-openclaw/charles-microbounties/issues/1638", + "https://github.com/Scottcjn/rustchain-bounties/issues/16168", + "https://github.com/j-dabrowski/GitBounty_25/issues/4", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5807", + "https://github.com/charles-openclaw/charles-microbounties/issues/767", + "https://github.com/Scottcjn/rustchain-bounties/issues/15244", + "https://github.com/Yuliya65/AutoAgents/issues/16", + "https://github.com/shengtenghou4-star/bounty-opportunity-radar/issues/2", + "https://github.com/cmss13-devs/cmss13/issues/12507", + "https://github.com/openmetaearth/me-hub/issues/933", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/209", + "https://github.com/Scottcjn/rustchain-bounties/issues/16257", + "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/80", + "https://github.com/runxhq/runx/issues/215", + "https://github.com/Spectral-Finance/lux/issues/68", + "https://github.com/PhasoraLabs/StellarGrantProtocol/issues/594", + "https://github.com/gitsofaryan/Norby/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/3335", + "https://github.com/charles-openclaw/charles-microbounties/issues/1414", + "https://github.com/Aigen-Protocol/aigen-protocol/issues/101", + "https://github.com/SecureBananaLabs/bug-bounty/issues/3541", + "https://github.com/openmetaearth/me-hub/issues/93", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/116", + "https://github.com/charles-openclaw/charles-microbounties/issues/1933", + "https://github.com/dwebagents/AgentPipe/issues/50", + "https://github.com/thanhle74/kickama/issues/15", + "https://github.com/mpfaffenberger/space_sim/issues/10", + "https://github.com/Scottcjn/rustchain-bounties/issues/15313", + "https://github.com/charles-openclaw/charles-microbounties/issues/1592", + "https://github.com/mergeos-bounties/NokaMan/issues/18", + "https://github.com/qtop/qtop/issues/530", + "https://github.com/charles-openclaw/charles-microbounties/issues/1688", + "https://github.com/charles-openclaw/charles-microbounties/issues/1141", + "https://github.com/openmetaearth/me-hub/issues/1067", + "https://github.com/Scottcjn/rustchain-bounties/issues/16167", + "https://github.com/connect-boiz/soroban-security-scanner/issues/440", + "https://github.com/mergeos-bounties/PlantGuide/issues/27", + "https://github.com/NSPG13/agent-bounties/issues/249", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/521", + "https://github.com/charles-openclaw/charles-microbounties/issues/1542", + "https://github.com/charles-openclaw/charles-microbounties/issues/489", + "https://github.com/INDIGOAZUL/la-tanda-web/issues/269", + "https://github.com/charles-openclaw/charles-microbounties/issues/832", + "https://github.com/bountydotnew/bounty.new/issues/231", + "https://github.com/Scottcjn/rustchain-bounties/issues/15245", + "https://github.com/charles-openclaw/charles-microbounties/issues/1492", + "https://github.com/nicodevtools/kickama-foxy-trials/issues/10", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/438", + "https://github.com/charles-openclaw/charles-microbounties/issues/1623", + "https://github.com/NSPG13/agent-bounties/issues/88", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/366", + "https://github.com/haveno-dex/haveno/issues/1093", + "https://github.com/TauCetiStation/TauCetiClassic/issues/14975", + "https://github.com/mpfaffenberger/space_sim/issues/162", + "https://github.com/Tarsnap/tarsnap/issues/725", + "https://github.com/greyw0rks/bountyscout/issues/63", + "https://github.com/Scottcjn/rustchain-bounties/issues/15016", + "https://github.com/xevrion-v2/agent-playground/issues/4788", + "https://github.com/esi/esi-issues/issues/1024", + "https://github.com/UnitOneAI/SecuritySkills/issues/1332", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2947", + "https://github.com/xevrion-v2/agent-playground/issues/4682", + "https://github.com/vansh-09/BountyScout/issues/152", + "https://github.com/JSONbored/loopover/issues/6057", + "https://github.com/UnitOneAI/SecuritySkills/issues/777", + "https://github.com/charles-openclaw/charles-microbounties/issues/876", + "https://github.com/edgarfloresguerra2011-a11y/marketnow/issues/2", + "https://github.com/ramimbo/mergework/issues/315", + "https://github.com/dotnet/sdk/issues/54420", + "https://github.com/xevrion-v2/agent-playground/issues/5696", + "https://github.com/monk-io/monk-plugin/issues/98", + "https://github.com/hunki1488-a11y/AIgor/issues/1", + "https://github.com/greyw0rks/bountyscout/issues/118", + "https://github.com/2lll5/TentOfTrials/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/1906", + "https://github.com/charles-openclaw/charles-microbounties/issues/2627", + "https://github.com/Ikalus1988/MisakaNet/issues/154", + "https://github.com/UnitOneAI/SecuritySkills/issues/1174", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/801", + "https://github.com/dev-kp-eloper/BountyScout/issues/572", + "https://github.com/harnessclaw/harnessclaw/issues/66", + "https://github.com/xevrion-v2/agent-playground/issues/8166", + "https://github.com/Scottcjn/rustchain-bounties/issues/14777", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/258", + "https://github.com/lobster-trap/zeroeye/issues/23", + "https://github.com/vansh-09/BountyScout/issues/202", + "https://github.com/greyw0rks/bountyscout/issues/165", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/632", + "https://github.com/xevrion-v2/agent-playground/issues/6", + "https://github.com/SecureBananaLabs/bug-bounty/issues/3151", + "https://github.com/nltk/nltk/issues/3698", + "https://github.com/Yooh-an/agent-rules-auditor/issues/1", + "https://github.com/Scottcjn/rustchain-bounties/issues/12748", + "https://github.com/Ikalus1988/MisakaNet/issues/290", + "https://github.com/stxtxm/bitbrawler/issues/516", + "https://github.com/Scottcjn/rustchain-bounties/issues/15094", + "https://github.com/Iamgoofball/-tg-station/issues/174", + "https://github.com/mergeos-bounties/BloggerEasy/issues/16", + "https://github.com/Scottcjn/rustchain-bounties/issues/15074", + "https://github.com/Guno327/vanillaplusplus/issues/109", + "https://github.com/duanyytop/agents-radar/issues/1588", + "https://github.com/Scottcjn/rustchain-bounties/issues/13934", + "https://github.com/mauriceboe/TREK/issues/1546", + "https://github.com/SecureBananaLabs/bug-bounty/issues/4117", "https://github.com/BountyOnChain/StellarBounty/issues/178", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5673", - "https://github.com/orchestration-agent/AgentOrchestration/issues/2685", - "https://github.com/mautic/mautic/issues/16188", - "https://github.com/davontepowlowsk1i/gofiber-fiber/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/1261", + "https://github.com/emmanuelgjr/genai_incidents/issues/74", + "https://github.com/NSPG13/agent-bounties/issues/365", + "https://github.com/airdropia-collection/bounty-hunter/issues/11", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/825", + "https://github.com/NSPG13/agent-bounties/issues/313", + "https://github.com/xevrion-v2/agent-playground/issues/4744", + "https://github.com/Gitlawb/node/issues/167", + "https://github.com/lobster-trap/zeroeye/issues/12", + "https://github.com/Scottcjn/rustchain-bounties/issues/14178", + "https://github.com/w5ohr/Dereth/issues/641", + "https://github.com/UnitOneAI/SecuritySkills/issues/2750", + "https://github.com/yasuking0304/genshin-langdata/issues/49", + "https://github.com/lk251/agent-bounty-market/issues/28", + "https://github.com/Scottcjn/rustchain-bounties/issues/14185", + "https://github.com/Scottcjn/rustchain-bounties/issues/15375", + "https://github.com/charles-openclaw/charles-microbounties/issues/3409", + "https://github.com/vansh-09/BountyScout/issues/402", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/18", + "https://github.com/greyw0rks/bountyscout/issues/76", + "https://github.com/yosemite01/stellar-creator-portfolio/issues/748", + "https://github.com/Ikalus1988/MisakaNet/issues/376", + "https://github.com/xevrion-v2/agent-playground/issues/5149", + "https://github.com/Scottcjn/rustchain-bounties/issues/12335", + "https://github.com/greyw0rks/bountyscout/issues/160", + "https://github.com/Scottcjn/rustchain-bounties/issues/14257", + "https://github.com/xevrion-v2/agent-playground/issues/4680", + "https://github.com/MurphyThomas87/go-redis/issues/1", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/90", + "https://github.com/auscaster/frantic-board/issues/54", + "https://github.com/ChrisRoyse/Polis/issues/498", + "https://github.com/Iamgoofball/-tg-station/issues/100", + "https://github.com/auscaster/frantic-board/issues/62", + "https://github.com/UnitOneAI/SecuritySkills/issues/3021", + "https://github.com/charles-openclaw/charles-microbounties/issues/1876", + "https://github.com/Scottcjn/rustchain-bounties/issues/16275", + "https://github.com/SharonKoch/Wiki_Demo/issues/11", + "https://github.com/Replikanti/agentis-colonies/issues/1041", + "https://github.com/litang9/big_model_radar/issues/186", + "https://github.com/charles-openclaw/charles-microbounties/issues/772", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2773", "https://github.com/mergeos-bounties/mergeos/issues/141", - "https://github.com/openmetaearth/me-hub/issues/1071", - "https://github.com/charles-openclaw/charles-microbounties/issues/802", - "https://github.com/shadow6427/fun-benchmark-forge/issues/3", - "https://github.com/Scottcjn/bottube/issues/1374", - "https://github.com/Scottcjn/Rustchain/issues/7728", - "https://github.com/SecureBananaLabs/bug-bounty/issues/3821", - "https://github.com/clowlove/Hermes-House/issues/12", - "https://github.com/mautic/mautic/issues/16036", - "https://github.com/timeless-hayoka/ANCHOR/issues/5", - "https://github.com/aibtcdev/x402-sponsor-relay/issues/284", - "https://github.com/openmetaearth/me-hub/issues/358", - "https://github.com/gibwork/gibwork-website/issues/92", - "https://github.com/FreeCAD/FreeCAD/issues/5810", - "https://github.com/ZWISERFIT/zwiserfit-ai-store-manager/issues/10", - "https://github.com/BountyOnChain/StellarBounty/issues/181", - "https://github.com/cozfuttu/ritual-chain-workshop/issues/3", - "https://github.com/Jonnyton/Workflow/issues/1060", - "https://github.com/xevrion-v2/agent-playground/issues/3580", - "https://github.com/greyw0rks/bountyscout/issues/47", - "https://github.com/xevrion-v2/agent-playground/issues/3855", - "https://github.com/okalldal/lark/issues/462", - "https://github.com/snowdensb/AutoPrompt_demo/issues/8", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/39", - "https://github.com/charles-openclaw/charles-microbounties/issues/2214", - "https://github.com/arthurair3s/one-piece-web-project/issues/30", - "https://github.com/charles-openclaw/charles-microbounties/issues/1425", - "https://github.com/UnitOneAI/SecuritySkills/issues/2016", - "https://github.com/StellarDevHub/Web3-Student-Lab/issues/715", - "https://github.com/jaisong123/eleuther-digest/issues/437", - "https://github.com/Haroldwonder/SwiftRemit/issues/939", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4356", - "https://github.com/charles-openclaw/charles-microbounties/issues/1624", - "https://github.com/charles-openclaw/charles-microbounties/issues/105", - "https://github.com/Scottcjn/Rustchain/issues/2239", - "https://github.com/UnitOneAI/SecuritySkills/issues/1283", - "https://github.com/relayhop/sn-monetization-runtime/issues/100", + "https://github.com/Scottcjn/rustchain-bounties/issues/13968", + "https://github.com/NSPG13/agent-bounties/issues/147", + "https://github.com/nicodevtools/kickama-foxy-trials/issues/7", + "https://github.com/asaadnashed/bounty-autopilot/issues/14", + "https://github.com/Krasnov-Industries/Tiny-Station/issues/48", + "https://github.com/charles-openclaw/charles-microbounties/issues/1359", + "https://github.com/Scottcjn/rustchain-bounties/issues/16164", + "https://github.com/kleros/scout-snap/issues/96", + "https://github.com/Disneyland55555/Git-Action/issues/22", + "https://github.com/PatMyron/.github/issues/1", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2975", + "https://github.com/ubiquity/business-development/issues/89", + "https://github.com/tommycet/proofworks-genlayer/issues/26", + "https://github.com/dev-kp-eloper/BountyScout/issues/459", + "https://github.com/JSONbored/gittensory/issues/2168", + "https://github.com/x402-foundation/x402/issues/2222", + "https://github.com/ramimbo/mergework/issues/1199", "https://github.com/UnsafeLabs/Bounty-Hunters/issues/826", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/40", - "https://github.com/ussyalfaks/ahjoorxmr-contract/issues/319", - "https://github.com/Plasius-LTD/ai-game/issues/18", - "https://github.com/Cloudz-319/zeroeye/issues/11", - "https://github.com/Scottcjn/rustchain-bounties/issues/13256", - "https://github.com/Scottcjn/rustchain-dialup/issues/1", - "https://github.com/rorz/whatwesee.space/issues/161", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/842", - "https://github.com/charles-openclaw/charles-microbounties/issues/1027", - "https://github.com/xpaysh/awesome-x402/issues/674", - "https://github.com/vansh-09/BountyScout/issues/227", - "https://github.com/Scottcjn/rustchain-bounties/issues/13950", - "https://github.com/boundlessfi/bounties/issues/277", - "https://github.com/nicodevtools/kickama-foxy-trials/issues/14", - "https://github.com/Henry00IS/ShapeEditor/issues/3", - "https://github.com/charles-openclaw/charles-microbounties/issues/2007", - "https://github.com/entrius/gittensor/issues/1473", - "https://github.com/Scottcjn/rustchain-bounties/issues/14098", - "https://github.com/gitgig-io/bounties/issues/18", - "https://github.com/gibwork/gibwork-website/issues/129", - "https://github.com/cybersecify/OpenEASD/issues/77", - "https://github.com/charles-openclaw/charles-microbounties/issues/1766", - "https://github.com/Scottcjn/rustchain-bounties/issues/12787", - "https://github.com/charles-openclaw/charles-microbounties/issues/1147", - "https://github.com/pollar-xyz/pollar-telegram-shop-template/issues/1", + "https://github.com/mautic/mautic/issues/16087", + "https://github.com/charles-openclaw/charles-microbounties/issues/1517", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2966", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/35", + "https://github.com/auscaster/frantic-board/issues/97", + "https://github.com/openmetaearth/me-hub/issues/88", + "https://github.com/clowlove/Hermes-House/issues/694", + "https://github.com/ritik4ever/stellar-bounty-board/issues/282", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/9", + "https://github.com/automazeio/open-royalties/issues/1", + "https://github.com/xevrion-v2/agent-playground/issues/8147", + "https://github.com/cmss13-devs/cmss13/issues/12547", + "https://github.com/SAST-UP-STG/SAST-Test-Repo-d26afd5d-74a5-4706-93a2-538e102cc20a/issues/128", + "https://github.com/jaisong123/eleuther-digest/issues/396", + "https://github.com/okalldal/lark/issues/275", + "https://github.com/xevrion-v2/agent-playground/issues/6319", + "https://github.com/charles-openclaw/charles-microbounties/issues/3119", + "https://github.com/mpfaffenberger/space_sim/issues/176", + "https://github.com/wicanr2/open-king-bounty-cht/issues/8", + "https://github.com/boundlessfi/bounties/issues/210", + "https://github.com/mergeos-bounties/Gomi/issues/7", + "https://github.com/ramimbo/mergework/issues/798", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/324", + "https://github.com/SecOpsNews/news/issues/70306", + "https://github.com/xevrion-v2/agent-playground/issues/1", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/954", + "https://github.com/ruohong2018/ruohong2018.github.io/issues/1227", + "https://github.com/SecureBananaLabs/bug-bounty/issues/9715", + "https://github.com/Iamgoofball/-tg-station/issues/112", + "https://github.com/Ikalus1988/MisakaNet/issues/317", + "https://github.com/Scottcjn/rustchain-bounties/issues/14386", "https://github.com/Opire/docs/issues/27", - "https://github.com/GautamKumarOffical/TentOfTrials/issues/5", - "https://github.com/charles-openclaw/charles-microbounties/issues/1977", - "https://github.com/ramimbo/mergework/issues/654", - "https://github.com/charles-openclaw/charles-microbounties/issues/1287", - "https://github.com/charles-openclaw/charles-microbounties/issues/1610", - "https://github.com/Ikalus1988/MisakaNet/issues/103", - "https://github.com/charles-openclaw/charles-microbounties/issues/822", - "https://github.com/ClankerNation/OpenAgents/issues/34", - "https://github.com/charles-openclaw/charles-microbounties/issues/1140", - "https://github.com/charles-openclaw/charles-microbounties/issues/1179", - "https://github.com/amaybaum-prod/shopware/issues/25", - "https://github.com/Scottcjn/Rustchain/issues/6851", - "https://github.com/gibwork/gibwork-website/issues/12", - "https://github.com/charles-openclaw/charles-microbounties/issues/1542", - "https://github.com/charles-openclaw/charles-microbounties/issues/1449", - "https://github.com/Scottcjn/rustchain-bounties/issues/14303", - "https://github.com/Scottcjn/rustchain-bounties/issues/12150", - "https://github.com/theArkein/tangle/issues/32", - "https://github.com/fluxerapp/fluxer-meta/issues/8", - "https://github.com/charles-openclaw/charles-microbounties/issues/3326", - "https://github.com/vansh-09/BountyScout/issues/240", - "https://github.com/tari-project/tari/issues/7795", - "https://github.com/charles-openclaw/charles-microbounties/issues/1171", - "https://github.com/dwebagents/AgentPipe/issues/113", - "https://github.com/charles-openclaw/charles-microbounties/issues/1591", - "https://github.com/lobster-trap/Kickama/issues/385", - "https://github.com/vansh-09/BountyScout/issues/177", - "https://github.com/Scottcjn/Rustchain/issues/7792", - "https://github.com/greyw0rks/bountyscout/issues/48", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3160", - "https://github.com/Scottcjn/rustchain-bounties/issues/14537", - "https://github.com/UnitOneAI/SecuritySkills/issues/1026", - "https://github.com/charles-openclaw/charles-microbounties/issues/1697", - "https://github.com/vansh-09/BountyScout/issues/194", - "https://github.com/charles-openclaw/charles-microbounties/issues/1380", - "https://github.com/netresearch/claude-code-marketplace/issues/69", - "https://github.com/harnessclaw/harnessclaw/issues/66", - "https://github.com/Scottcjn/Rustchain/issues/6791", - "https://github.com/charles-openclaw/charles-microbounties/issues/1432", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/521", - "https://github.com/charles-openclaw/charles-microbounties/issues/1417", - "https://github.com/Kings9595/WaveMilestone/issues/25", - "https://github.com/Scottcjn/rustchain-bounties/issues/13519", + "https://github.com/ramimbo/mergework/issues/406", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4415", + "https://github.com/fluxerapp/fluxer-meta/issues/3", + "https://github.com/Scottcjn/rustchain-bounties/issues/14023", + "https://github.com/PhasoraLabs/StellarGrantProtocol/issues/541", + "https://github.com/charles-openclaw/charles-microbounties/issues/815", + "https://github.com/9904099/hammer-and-nail-bounty/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/505", + "https://github.com/openmetaearth/me-hub/issues/95", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1394", + "https://github.com/ziztigr288c/zap/issues/1", + "https://github.com/UID9622/lh-standard-adapter/issues/3", + "https://github.com/dev-kp-eloper/BountyScout/issues/568", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/244", + "https://github.com/greyw0rks/bountyscout/issues/78", + "https://github.com/auscaster/frantic-board/issues/307", + "https://github.com/derpack-org/Derpack-X/issues/260", + "https://github.com/TencentBlueKing/bk-ci/issues/13266", + "https://github.com/Replikanti/agentis-colonies/issues/1649", + "https://github.com/DansiDanutz/Reality/issues/158", + "https://github.com/NixOS/nixpkgs/issues/530990", + "https://github.com/charles-openclaw/charles-microbounties/issues/827", + "https://github.com/dcccrypto/percolator-stake/issues/199", + "https://github.com/Scottcjn/rustchain-bounties/issues/14300", + "https://github.com/asaadnashed/bounty-autopilot/issues/8", + "https://github.com/Iamgoofball/-tg-station/issues/125", + "https://github.com/charles-openclaw/charles-microbounties/issues/1188", + "https://github.com/himmelblau-idm/himmelblau/issues/1318", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/210", + "https://github.com/Scottcjn/rustchain-bounties/issues/12540", + "https://github.com/charles-openclaw/charles-microbounties/issues/2051", + "https://github.com/LabsCrypt/remitlend/issues/908", + "https://github.com/mergeos-bounties/gimp-mcp/issues/3", + "https://github.com/PhasoraLabs/StellarGrantProtocol/issues/536", + "https://github.com/ERA-Projects/era-project-eng/issues/831", + "https://github.com/charles-openclaw/charles-microbounties/issues/787", + "https://github.com/SecureBananaLabs/bug-bounty/issues/8337", + "https://github.com/xevrion-v2/agent-playground/issues/4862", + "https://github.com/LightForgeHub/SkillSphere/issues/8", + "https://github.com/mergeos-bounties/Loru/issues/240", + "https://github.com/Scottcjn/rustchain-bounties/issues/15384", + "https://github.com/woodpecker-ci/autoscaler/issues/102", + "https://github.com/Scottcjn/rustchain-bounties/issues/15080", + "https://github.com/mergeos-bounties/Loru/issues/198", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/613", + "https://github.com/SPLURT-Station/S.P.L.U.R.T-tg/issues/918", + "https://github.com/ritik4ever/stellar-bounty-board/issues/250", + "https://github.com/Scottcjn/rustchain-bounties/issues/12409", + "https://github.com/Scottcjn/rustchain-bounties/issues/15621", + "https://github.com/cqfn/kaicode.github.io/issues/51", + "https://github.com/ClankerNation/OpenAgents/issues/152", + "https://github.com/SecureBananaLabs/bug-bounty/issues/1920", + "https://github.com/getdozer/dozer/issues/1659", + "https://github.com/chrisagiddings/dungeon-town/issues/69", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/509", + "https://github.com/Scottcjn/rustchain-bounties/issues/15382", + "https://github.com/sonyschan/unipeg-lens/issues/130", + "https://github.com/vansh-09/BountyScout/issues/187", + "https://github.com/charles-openclaw/charles-microbounties/issues/1296", + "https://github.com/charles-openclaw/charles-microbounties/issues/1551", + "https://github.com/zouantchaw/mtl-archives-search/issues/64", + "https://github.com/charles-openclaw/charles-microbounties/issues/34", + "https://github.com/qdrant/qdrant/issues/4108", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/203", + "https://github.com/vansh-09/BountyScout/issues/141", + "https://github.com/unattributed/agentic-offensive-testing-platform/issues/192", + "https://github.com/charles-openclaw/charles-microbounties/issues/931", + "https://github.com/charles-openclaw/charles-microbounties/issues/657", + "https://github.com/Scottcjn/rustchain-bounties/issues/15185", + "https://github.com/xevrion-v2/agent-playground/issues/4784", + "https://github.com/xevrion-v2/agent-playground/issues/5796", + "https://github.com/lk251/agent-bounty-market/issues/11", + "https://github.com/charles-openclaw/charles-microbounties/issues/1142", + "https://github.com/okalldal/lark/issues/276", + "https://github.com/capofficial/client/issues/11", + "https://github.com/vansh-09/BountyScout/issues/20", + "https://github.com/dmgrok/agent-plugins/issues/96", + "https://github.com/xevrion-v2/agent-playground/issues/7259", + "https://github.com/Kqirox/Orivex-Contracts/issues/22", + "https://github.com/getdozer/dozer/issues/1653", + "https://github.com/Ikalus1988/MisakaNet/issues/308", + "https://github.com/Scottcjn/rustchain-bounties/issues/13383", + "https://github.com/BruceFeIix/picker/issues/2510", + "https://github.com/SecOpsNews/news/issues/71395", + "https://github.com/mautic/mautic/issues/16212", + "https://github.com/Scottcjn/rustchain-bounties/issues/12336", + "https://github.com/charles-openclaw/charles-microbounties/issues/206", + "https://github.com/BountyOnChain/StellarBounty/issues/62", + "https://github.com/Monkestation/BoomerStation14/issues/53", + "https://github.com/DimaMend/AutoPrompt2/issues/13", + "https://github.com/x402-foundation/x402/issues/2804", + "https://github.com/greyw0rks/bountyscout/issues/22", + "https://github.com/relayhop/sn-monetization-runtime/issues/193", + "https://github.com/UnitOneAI/SecuritySkills/issues/3020", + "https://github.com/amaybaum-prod/shopware/issues/148", + "https://github.com/auscaster/frantic-board/issues/65", + "https://github.com/SecureBananaLabs/bug-bounty/issues/4125", + "https://github.com/charles-openclaw/charles-microbounties/issues/672", + "https://github.com/Imaginary-Horizons-Productions/BountyBot/issues/522", + "https://github.com/paraloom-labs/paraloom-core/issues/462", + "https://github.com/ramimbo/mergework/issues/403", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/595", + "https://github.com/Scottcjn/Rustchain/issues/6913", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4496", + "https://github.com/greyw0rks/bountyscout/issues/33", + "https://github.com/ClankerNation/OpenAgents/issues/185", + "https://github.com/Scottcjn/rustchain-bounties/issues/13529", + "https://github.com/bitcoin-apps-suite/bitcoin-writer/issues/28", + "https://github.com/charles-openclaw/charles-microbounties/issues/44", + "https://github.com/jorgerdemocorp-mend/WebGoat/issues/77", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2849", + "https://github.com/ClankerNation/OpenAgents/issues/34", + "https://github.com/charles-openclaw/charles-microbounties/issues/1386", + "https://github.com/charles-openclaw/charles-microbounties/issues/1861", + "https://github.com/ClankerNation/OpenAgents/issues/65", + "https://github.com/SRM-Test-DEV/test-56/issues/3450", + "https://github.com/BountyOnChain/StellarBounty/issues/156", + "https://github.com/Haroldwonder/SwiftRemit/issues/939", + "https://github.com/GarySegal-Mend-DemoCorp/AutoPrompt/issues/8", + "https://github.com/NashKara96/fx/issues/1", + "https://github.com/manav8498/TentOfTrials/issues/2", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/343", + "https://github.com/xevrion-v2/agent-playground/issues/2438", + "https://github.com/amaybaum-prod/eui/issues/74", + "https://github.com/ritik4ever/stellar-bounty-board/issues/210", + "https://github.com/Iamgoofball/-tg-station/issues/99", + "https://github.com/SecureBananaLabs/bug-bounty/issues/8677", + "https://github.com/BountyOnChain/StellarBounty/issues/78", + "https://github.com/paraloom-labs/paraloom-core/issues/501", + "https://github.com/Build-Africa-DAO/baraza-protocol/issues/26", + "https://github.com/mergemint-mint/mergemint-contracts/issues/314", + "https://github.com/mergeos-bounties/NokaMan/issues/8", + "https://github.com/ClankerNation/OpenAgents/issues/132", + "https://github.com/SecureBananaLabs/bug-bounty/issues/9548", + "https://github.com/UnitOneAI/SecuritySkills/issues/136", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/796", + "https://github.com/UnitOneAI/SecuritySkills/issues/1665", "https://github.com/charles-openclaw/charles-microbounties/issues/1827", - "https://github.com/Scottcjn/rustchain-bounties/issues/2788", - "https://github.com/charles-openclaw/charles-microbounties/issues/59", - "https://github.com/gagan114662/agent-skills/issues/387", - "https://github.com/ramimbo/mergework/issues/944", - "https://github.com/Scottcjn/Rustchain/issues/7325", - "https://github.com/charles-openclaw/charles-microbounties/issues/861", - "https://github.com/SirPepperPot/EnhancedOverhaulRemixVersion/issues/13", - "https://github.com/charles-openclaw/charles-microbounties/issues/2171", - "https://github.com/Scottcjn/rustchain-bounties/issues/14308", - "https://github.com/johnchampaign/star-wars-rebellion/issues/232", - "https://github.com/szmidtpiotr/ai-gm/issues/1189", - "https://github.com/Scottcjn/Rustchain/issues/7411", - "https://github.com/harmoniqs/Piccolo.jl/issues/198", - "https://github.com/xevrion-v2/agent-playground/issues/4548", - "https://github.com/xevrion-v2/agent-playground/issues/2829", - "https://github.com/kakapez/agents-radar/issues/345", - "https://github.com/tari-project/wxtm-bridge-frontend/issues/137", - "https://github.com/charles-openclaw/charles-microbounties/issues/81", - "https://github.com/Replikanti/agentis-colonies/issues/1118", - "https://github.com/johnchampaign/star-wars-rebellion/issues/455", - "https://github.com/Reqrefusion/FreeCAD-Documentation-Project/issues/79", - "https://github.com/ClankerNation/OpenAgents/issues/198", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/566", - "https://github.com/SolFoundry/solfoundry/issues/828", - "https://github.com/charles-openclaw/charles-microbounties/issues/20", - "https://github.com/jalbonetti/tabulator-basketball-data/issues/1", - "https://github.com/ssdeanx/a2a-agentkit/issues/9", + "https://github.com/xevrion-v2/agent-playground/issues/6456", + "https://github.com/xevrion-v2/agent-playground/issues/2821", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/845", + "https://github.com/clowlove/Hermes-House/issues/782", + "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/343", + "https://github.com/charles-openclaw/charles-microbounties/issues/360", + "https://github.com/aozorayama45/Apache-DolphinScheduler/issues/1", + "https://github.com/mergeos-bounties/PlantGuide/issues/42", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/632", + "https://github.com/LightForgeHub/SkillSphere/issues/9", + "https://github.com/capofficial/client/issues/16", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3570", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/298", + "https://github.com/Scottcjn/rustchain-bounties/issues/195", + "https://github.com/charles-openclaw/charles-microbounties/issues/1769", + "https://github.com/vansh-09/BountyScout/issues/151", + "https://github.com/Scottcjn/Rustchain/issues/8016", + "https://github.com/xevrion-v2/agent-playground/issues/17", + "https://github.com/vansh-09/BountyScout/issues/154", + "https://github.com/Scottcjn/rustchain-bounties/issues/14380", + "https://github.com/nicodevtools/kickama-foxy-trials/issues/11", + "https://github.com/charles-openclaw/charles-microbounties/issues/135", + "https://github.com/xevrion-v2/agent-playground/issues/33", "https://github.com/cocohub-mobileapp/cocohub-main/issues/47", - "https://github.com/ramimbo/mergework/issues/569", - "https://github.com/SecureBananaLabs/bug-bounty/issues/4740", - "https://github.com/Scottcjn/rustchain-bounties/issues/14306", - "https://github.com/xevrion-v2/agent-playground/issues/1072", - "https://github.com/charles-openclaw/charles-microbounties/issues/1138", - "https://github.com/labmain/ai-agent-pay-demo/issues/11", - "https://github.com/deepseek-ai/DeepSeek-V3/issues/1411", - "https://github.com/charles-openclaw/charles-microbounties/issues/580", - "https://github.com/xevrion-v2/agent-playground/issues/3717", - "https://github.com/charles-openclaw/charles-microbounties/issues/1689", - "https://github.com/3ni8ma/aarushkarak-website/issues/41", - "https://github.com/clowlove/Harmes-House/issues/381", - "https://github.com/Rooner-Plugins/bank-value-changes/issues/3", - "https://github.com/bitcoin/bitcoin/issues/24861", - "https://github.com/Scottcjn/rustchain-bounties/issues/13243", - "https://github.com/FreeCAD/FPA/issues/470", - "https://github.com/tensortrade-org/tensortrade/issues/497", - "https://github.com/Informant254/Nova-arsenal/issues/9", - "https://github.com/Scottcjn/rustchain-bounties/issues/13478", - "https://github.com/Scottcjn/rustchain-bounties/issues/12748", - "https://github.com/charles-openclaw/charles-microbounties/issues/2238", - "https://github.com/SolFoundry/solfoundry/issues/852", - "https://github.com/AzurTian/OnmyojiAutoScript/issues/197", - "https://github.com/SecureBananaLabs/bug-bounty/issues/9542", - "https://github.com/xevrion-v2/agent-playground/issues/5149", - "https://github.com/Nobayprotocol/Nobay-Protocol/issues/2", - "https://github.com/Jonnyton/Workflow/issues/1113", - "https://github.com/ramimbo/mergework/issues/456", - "https://github.com/Scottcjn/rustchain-bounties/issues/13259", - "https://github.com/xevrion-v2/agent-playground/issues/3134", - "https://github.com/SecureBananaLabs/bug-bounty/issues/4603", - "https://github.com/ruohong2018/ruohong2018.github.io/issues/1121", - "https://github.com/charles-openclaw/charles-microbounties/issues/1825", - "https://github.com/charles-openclaw/charles-microbounties/issues/1223", - "https://github.com/SecureBananaLabs/bug-bounty/issues/3154", - "https://github.com/openmetaearth/me-hub/issues/245", - "https://github.com/aporthq/aport-integrations/issues/19", - "https://github.com/charles-openclaw/charles-microbounties/issues/1300", - "https://github.com/3ni8ma/aarushkarak-website/issues/77", - "https://github.com/yosemite01/stellar-creator-portfolio/issues/732", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/338", - "https://github.com/charles-openclaw/charles-microbounties/issues/275", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/31", - "https://github.com/open-mercato/open-mercato/issues/699", - "https://github.com/SecureBananaLabs/bug-bounty/issues/8516", - "https://github.com/HitEmPoka/StellPoker/issues/320", - "https://github.com/renaudgenard/zeroeye/issues/2", - "https://github.com/YahiaRagae/mushaf-imad-android/issues/25", - "https://github.com/charles-openclaw/charles-microbounties/issues/641", - "https://github.com/123a-bcd/nailstorm-bounty-forge-358/issues/1", - "https://github.com/ClankerNation/OpenAgents/issues/178", - "https://github.com/mautic/mautic/issues/16243", - "https://github.com/johnchampaign/star-wars-rebellion/issues/332", - "https://github.com/lobster-trap/zeroeye/issues/178", - "https://github.com/charles-openclaw/charles-microbounties/issues/1949", - "https://github.com/3ni8ma/aarushkarak-website/issues/132", - "https://github.com/musescore/MuseScore/issues/33852", - "https://github.com/Scottcjn/Rustchain/issues/6399", - "https://github.com/ritik4ever/stellar-bounty-board/issues/388", - "https://github.com/dwebagents/AgentPipe/issues/131", - "https://github.com/charles-openclaw/charles-microbounties/issues/1443", - "https://github.com/zardoy/space-squid/issues/5", - "https://github.com/PG-AGI/toingg-jarvis/issues/9", - "https://github.com/akashrtd/neunode/issues/25", - "https://github.com/CoralSwap-Finance/coralswap-sdk/issues/193", - "https://github.com/kcolbchain/audit-checklist/issues/36", - "https://github.com/greyw0rks/bountyscout/issues/70", - "https://github.com/okalldal/lark/issues/268", - "https://github.com/DealVaultHQ/dealvault-platform-escrow/issues/41", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3840", - "https://github.com/akashrtd/neunode/issues/18", - "https://github.com/Proxyfan/Proxyfan/issues/927", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/911", - "https://github.com/charles-openclaw/charles-microbounties/issues/1358", - "https://github.com/ScalaConsultants/mesmer/issues/592", - "https://github.com/Scottcjn/rustchain-bounties/issues/14131", - "https://github.com/Ikalus1988/MisakaNet/issues/267", - "https://github.com/3ni8ma/aarushkarak-website/issues/133", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/337", - "https://github.com/charles-openclaw/charles-microbounties/issues/897", - "https://github.com/charles-openclaw/charles-microbounties/issues/56", - "https://github.com/ramimbo/mergework/issues/932", - "https://github.com/vansh-09/BountyScout/issues/203", - "https://github.com/hunki1488-a11y/AIgor/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/1687", - "https://github.com/charles-openclaw/charles-microbounties/issues/878", - "https://github.com/SecureBananaLabs/bug-bounty/issues/4516", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/651", - "https://github.com/xevrion-v2/agent-playground/issues/1165", - "https://github.com/charles-openclaw/charles-microbounties/issues/929", - "https://github.com/charles-openclaw/charles-microbounties/issues/3358", - "https://github.com/SecureBananaLabs/bug-bounty/issues/8554", - "https://github.com/ramimbo/mergework/issues/104", - "https://github.com/SecureBananaLabs/bug-bounty/issues/7961", - "https://github.com/UnitOneAI/SecuritySkills/issues/324", - "https://github.com/charles-openclaw/charles-microbounties/issues/3132", - "https://github.com/xevrion-v2/agent-playground/issues/5", - "https://github.com/ramimbo/mergework/issues/284", - "https://github.com/yeheskieltame/claudelance/issues/547", - "https://github.com/ritik4ever/stellar-bounty-board/issues/218", - "https://github.com/elnahomenick123/Vault/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/1574", - "https://github.com/bountydotnew/bounty.new/issues/231", - "https://github.com/SecureBananaLabs/bug-bounty/issues/6658", - "https://github.com/algora-io/algora/issues/309", - "https://github.com/charles-openclaw/charles-microbounties/issues/630", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2946", - "https://github.com/ramimbo/mergework/issues/844", - "https://github.com/Scottcjn/rustchain-bounties/issues/12472", - "https://github.com/charles-openclaw/charles-microbounties/issues/1320", - "https://github.com/nicodevtools/kickama-foxy-trials/issues/16", - "https://github.com/UnitOneAI/SecuritySkills/issues/384", - "https://github.com/xevrion-v2/agent-playground/issues/2821", - "https://github.com/BountyOnChain/StellarBounty/issues/78", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/16", - "https://github.com/Scottcjn/rustchain-bounties/issues/13466", - "https://github.com/UnitOneAI/SecuritySkills/issues/813", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5807", - "https://github.com/CTristan/lobotomy-corporation-mods/issues/166", - "https://github.com/fastify/fastify/issues/6756", - "https://github.com/nextcloud/passman/issues/258", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4315", - "https://github.com/orchestration-agent/AgentOrchestration/issues/535", - "https://github.com/vansh-09/BountyScout/issues/202", - "https://github.com/vansh-09/BountyScout/issues/139", + "https://github.com/kleros/scout-snap/issues/89", + "https://github.com/charles-openclaw/charles-microbounties/issues/976", + "https://github.com/NSPG13/agent-bounties/issues/153", + "https://github.com/NSPG13/agent-bounties/issues/156", + "https://github.com/verdikta/verdikta-applications/issues/22", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/442", + "https://github.com/Iamgoofball/-tg-station/issues/214", + "https://github.com/charles-openclaw/charles-microbounties/issues/1393", + "https://github.com/YfengJ/hammer-and-nail/issues/4", + "https://github.com/charles-openclaw/charles-microbounties/issues/2059", + "https://github.com/Scottcjn/rustchain-bounties/issues/14173", + "https://github.com/Vonage/vonage-media-transformers-samples/issues/39", + "https://github.com/xevrion-v2/agent-playground/issues/3719", + "https://github.com/mergemint-mint/mergemint-contracts/issues/330", + "https://github.com/kcolbchain/depeg-monitor/issues/33", + "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/362", + "https://github.com/auscaster/frantic-board/issues/56", + "https://github.com/charles-openclaw/charles-microbounties/issues/1624", + "https://github.com/ramimbo/mergework/issues/55", + "https://github.com/rachelealicek/grpc-go/issues/1", + "https://github.com/Iamgoofball/-tg-station/issues/50", + "https://github.com/SolFoundry/solfoundry/issues/861", + "https://github.com/charles-openclaw/charles-microbounties/issues/1206", + "https://github.com/Iamgoofball/-tg-station/issues/151", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/14", + "https://github.com/ramimbo/mergework/issues/95", + "https://github.com/esi/esi-issues/issues/154", + "https://github.com/Scottcjn/rustchain-bounties/issues/13732", + "https://github.com/Scottcjn/rustchain-bounties/issues/15267", + "https://github.com/Ikalus1988/MisakaNet/issues/95", + "https://github.com/Scottcjn/rustchain-bounties/issues/13728", + "https://github.com/Scottcjn/rustchain-bounties/issues/12354", + "https://github.com/HBesso31/LiquidFenix/issues/5", + "https://github.com/hashgraph/guardian/issues/5773", + "https://github.com/UnitOneAI/SecuritySkills/issues/2810", + "https://github.com/charles-openclaw/charles-microbounties/issues/1460", + "https://github.com/openmetaearth/me-hub/issues/280", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/962", + "https://github.com/aibtcdev/agent-news/issues/873", + "https://github.com/Nickrock2002/Evershop/issues/3", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/618", + "https://github.com/Tylerx3udv/cli/issues/1", + "https://github.com/Monkestation/Monkestation2.0/issues/12093", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/5", + "https://github.com/kleros/scout-snap/issues/99", + "https://github.com/Jagadeeshftw/grainlify/issues/1517", + "https://github.com/dev-kp-eloper/BountyScout/issues/555", + "https://github.com/openmetaearth/me-hub/issues/48", + "https://github.com/Scottcjn/rustchain-bounties/issues/9768", + "https://github.com/vansh-09/BountyScout/issues/144", + "https://github.com/Build-Africa-DAO/baraza-protocol/issues/16", + "https://github.com/lambdasistemi/cardano-keri/issues/21", + "https://github.com/xevrion-v2/agent-playground/issues/6587", + "https://github.com/ClankerNation/OpenAgents/issues/202", + "https://github.com/jupyter/security/issues/126", + "https://github.com/Scottcjn/rustchain-bounties/issues/13476", + "https://github.com/SuperteamDAO/earn/issues/1442", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/296", + "https://github.com/Iamgoofball/-tg-station/issues/245", + "https://github.com/compusophy/localharness/issues/50", + "https://github.com/codeboost-tr/zeroeye/issues/6", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/859", + "https://github.com/charles-openclaw/charles-microbounties/issues/3094", + "https://github.com/ramimbo/mergework/issues/383", + "https://github.com/charles-openclaw/charles-microbounties/issues/359", + "https://github.com/Scottcjn/rustchain-bounties/issues/14249", + "https://github.com/xoufygqamm4/resty/issues/1", + "https://github.com/rsoreq/zenbot/issues/937", + "https://github.com/capofficial/client/issues/29", + "https://github.com/Scottcjn/rustchain-bounties/issues/12238", + "https://github.com/SimsChad12/go-redis/issues/1", + "https://github.com/VERITOKEN-xx/Veritoken/issues/329", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3142", + "https://github.com/Scottcjn/Rustchain/issues/6397", + "https://github.com/johnchampaign/star-wars-rebellion/issues/631", + "https://github.com/protoLabsAI/protoAgent/issues/924", + "https://github.com/mautic/mautic/issues/16659", + "https://github.com/Jarvichi/jarvs-amazing-web-game/issues/1958", + "https://github.com/auscaster/frantic-board/issues/144", + "https://github.com/SecureBananaLabs/bug-bounty/issues/11022", + "https://github.com/charles-openclaw/charles-microbounties/issues/1258", "https://github.com/greyw0rks/bountyscout/issues/34", - "https://github.com/charles-openclaw/charles-microbounties/issues/112", - "https://github.com/demoniclords/ciscos-packs/issues/9", - "https://github.com/xevrion-v2/agent-playground/issues/4680", - "https://github.com/cakuki/tidewake/issues/168", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/634", - "https://github.com/Scottcjn/rustchain-bounties/issues/13700", - "https://github.com/stellar-creator-portfolio/stellar-creator-portfolio-/issues/12", - "https://github.com/asaadnashed/bounty-autopilot/issues/14", - "https://github.com/auscaster/frantic-board/issues/207", - "https://github.com/claude-builders-bounty/claude-builders-bounty/issues/2853", - "https://github.com/ClankerNation/OpenAgents/issues/187", - "https://github.com/vansh-09/BountyScout/issues/123", - "https://github.com/devpool-directory/devpool-directory/issues/5066", - "https://github.com/xevrion-v2/agent-playground/issues/13", - "https://github.com/BAWES-Universe/studenthub-staff/issues/33", + "https://github.com/Scottcjn/Rustchain/issues/7302", + "https://github.com/Carbon-Ledger-stellar/carbonledger-bounty/issues/12", + "https://github.com/anthropics/claude-code/issues/76596", + "https://github.com/antfu/raycast-multi-translate/issues/7", + "https://github.com/charles-openclaw/charles-microbounties/issues/814", + "https://github.com/auscaster/frantic-board/issues/198", + "https://github.com/charles-openclaw/charles-microbounties/issues/875", + "https://github.com/Scottcjn/rustchain-bounties/issues/15307", + "https://github.com/mergeos-bounties/PlantGuide/issues/38", + "https://github.com/mergemint-mint/mergemint-contracts/issues/315", + "https://github.com/SecureBananaLabs/bug-bounty/issues/9128", + "https://github.com/ramimbo/mergework/issues/1056", + "https://github.com/vansh-09/BountyScout/issues/30", + "https://github.com/Dipraise1/Engram/issues/24", + "https://github.com/xevrion-v2/agent-playground/issues/6603", + "https://github.com/HorizenOfficial/staketool/issues/15", + "https://github.com/charles-openclaw/charles-microbounties/issues/1455", + "https://github.com/vansh-09/BountyScout/issues/117", + "https://github.com/UnitOneAI/SecuritySkills/issues/2448", + "https://github.com/nicodevtools/kickama-foxy-trials/issues/5", + "https://github.com/charles-openclaw/charles-microbounties/issues/2064", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/70", + "https://github.com/Scottcjn/rustchain-bounties/issues/15046", + "https://github.com/xevrion-v2/agent-playground/issues/9", + "https://github.com/vansh-09/BountyScout/issues/156", + "https://github.com/Ikalus1988/MisakaNet/issues/125", + "https://github.com/Scottcjn/rustchain-bounties/issues/15304", + "https://github.com/forke-org/forke-project/issues/26", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/2", + "https://github.com/openpacksduel/escrow/issues/3", + "https://github.com/ramimbo/mergework/issues/404", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/819", + "https://github.com/NSPG13/agent-bounties/issues/34", + "https://github.com/Scottcjn/rustchain-bounties/issues/13249", + "https://github.com/mergeos-bounties/HIRI/issues/34", + "https://github.com/mergeos-bounties/TrucVPN/issues/2", + "https://github.com/josephgodwinkimani/refine-starter/issues/12", + "https://github.com/greyw0rks/bountyscout/issues/75", + "https://github.com/nicolasmelo1/logion/issues/160", + "https://github.com/auscaster/frantic-board/issues/139", + "https://github.com/warpspeedopen-source/warpspeed-bounties/issues/3", + "https://github.com/UnitOneAI/SecuritySkills/issues/1511", + "https://github.com/NSPG13/agent-bounties/issues/258", + "https://github.com/ksimback/hermes-ecosystem/issues/489", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/422", + "https://github.com/ClankerNation/OpenAgents/issues/192", + "https://github.com/SecureBananaLabs/bug-bounty/issues/9859", + "https://github.com/SecureBananaLabs/bug-bounty/issues/3154", + "https://github.com/CubeCoders/AMPTemplates/issues/1780", + "https://github.com/Ikalus1988/MisakaNet/issues/103", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/419", + "https://github.com/Iamgoofball/-tg-station/issues/226", + "https://github.com/charles-openclaw/charles-microbounties/issues/1400", "https://github.com/openmetaearth/me-hub/issues/190", - "https://github.com/UnitOneAI/SecuritySkills/issues/2436", - "https://github.com/algora-io/algora/issues/329", - "https://github.com/greyw0rks/bountyscout/issues/95", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2495", - "https://github.com/ejektaflex/Bountiful/issues/335", - "https://github.com/Scottcjn/rustchain-bounties/issues/14019", - "https://github.com/Scottcjn/rustchain-bounties/issues/13477", - "https://github.com/gibwork/gibwork-website/issues/128", - "https://github.com/mergemint-mint/mergemint-contracts/issues/292", - "https://github.com/commaai/opendbc/issues/1175", + "https://github.com/Emmanuel-Evenzur/syetem_prompt/issues/21", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3249", + "https://github.com/mergeos-bounties/gazebo-mcp/issues/19", + "https://github.com/jarlbrak/ftk-mod-framework/issues/61", + "https://github.com/charles-openclaw/charles-microbounties/issues/1433", + "https://github.com/charles-openclaw/charles-microbounties/issues/285", "https://github.com/charles-openclaw/charles-microbounties/issues/986", - "https://github.com/Scottcjn/rustchain-bounties/issues/13248", - "https://github.com/Scottcjn/rustchain-bounties/issues/14173", - "https://github.com/yosemite01/stellar-creator-portfolio/issues/743", - "https://github.com/xevrion-v2/agent-playground/issues/2964", - "https://github.com/charles-openclaw/charles-microbounties/issues/1007", - "https://github.com/Scottcjn/rustchain-bounties/issues/14383", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/3210", - "https://github.com/ghc-cloneRepoStaging-scaAndRenovate/14459_Courtney-Moreno_0702_134635_ghc_gw0_failed/issues/7", - "https://github.com/Scottcjn/Rustchain/issues/214", - "https://github.com/SecureBananaLabs/bug-bounty/issues/4479", - "https://github.com/auscaster/frantic-board/issues/57", - "https://github.com/algora-io/algora/issues/308", - "https://github.com/lb1192176991-lab/zeroeye/issues/4", - "https://github.com/openmetaearth/me-hub/issues/52", - "https://github.com/openmetaearth/me-hub/issues/1230", - "https://github.com/Scottcjn/bottube/issues/644", - "https://github.com/clowlove/Hermes-House/issues/627", - "https://github.com/johnchampaign/star-wars-rebellion/issues/454", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/642", - "https://github.com/greyw0rks/bountyscout/issues/78", - "https://github.com/yosemite01/stellar-creator-portfolio/issues/733", - "https://github.com/ramimbo/mergework/issues/47", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/762", - "https://github.com/charles-openclaw/charles-microbounties/issues/1659", - "https://github.com/allknowledge34/UpdateApp/issues/5", - "https://github.com/charles-openclaw/charles-microbounties/issues/2094", - "https://github.com/greyw0rks/bountyscout/issues/11", - "https://github.com/akashaasgi-afk/gaiaspeak-website/issues/3", - "https://github.com/charles-openclaw/charles-microbounties/issues/1779", - "https://github.com/123a-bcd/nailstorm-bounty-forge-358/issues/14", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3712", - "https://github.com/szl-holdings/.github/issues/158", - "https://github.com/UnitOneAI/SecuritySkills/issues/2435", - "https://github.com/OpenScanAI/XDCDocs/issues/4", - "https://github.com/Scottcjn/rustchain-bounties/issues/13952", - "https://github.com/juanitahagenes/ClickHouse/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/1828", - "https://github.com/Scottcjn/rustchain-bounties/issues/13970", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2526", - "https://github.com/xevrion-v2/agent-playground/issues/3863", - "https://github.com/reallyunintented/molttrade-stack/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/2074", - "https://github.com/charles-openclaw/charles-microbounties/issues/1282", - "https://github.com/charles-openclaw/charles-microbounties/issues/55", - "https://github.com/mergemint-mint/mergemint-contracts/issues/289", - "https://github.com/archestra-ai/archestra/issues/3859", - "https://github.com/openmetaearth/me-hub/issues/1253", - "https://github.com/ClankerNation/OpenAgents/issues/139", - "https://github.com/Scottcjn/beacon-skill/issues/869", - "https://github.com/charles-openclaw/charles-microbounties/issues/238", - "https://github.com/dlbnco/issues.cash/issues/42", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/916", - "https://github.com/LmeSzinc/AzurLaneAutoScript/issues/5720", - "https://github.com/nicodevtools/kickama-foxy-trials/issues/18", - "https://github.com/Scottcjn/rustchain-bounties/issues/12987", - "https://github.com/Soroban-Cookbook/Soroban-Cookbook-/issues/565", - "https://github.com/Scottcjn/rustchain-bounties/issues/14018", - "https://github.com/Grainlify/Grainlify-Stellar-Contracts/issues/83", - "https://github.com/greyw0rks/bountyscout/issues/124", - "https://github.com/Scottcjn/Rustchain/issues/6288", - "https://github.com/vansh-09/BountyScout/issues/176", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/802", - "https://github.com/charles-openclaw/charles-microbounties/issues/960", - "https://github.com/FeeiCN/FEEI.CN/issues/139", - "https://github.com/cuentaprueba244w-dotcom/TentOfTrials/issues/11", - "https://github.com/cakuki/tidewake/issues/231", - "https://github.com/Scottcjn/Rustchain/issues/7368", - "https://github.com/SecureBananaLabs/bug-bounty/issues/9128", - "https://github.com/SecureBananaLabs/bug-bounty/issues/6953", - "https://github.com/Scottcjn/rustchain-bounties/issues/749", - "https://github.com/Scottcjn/rustchain-bounties/issues/13973", - "https://github.com/charles-openclaw/charles-microbounties/issues/1346", - "https://github.com/Scottcjn/rustchain-bounties/issues/14028", - "https://github.com/charles-openclaw/charles-microbounties/issues/1025", - "https://github.com/Monkestation/Vanderlin/issues/6639", - "https://github.com/ClankerNation/OpenAgents/issues/18", - "https://github.com/Scottcjn/rustchain-bounties/issues/13075", - "https://github.com/charles-openclaw/charles-microbounties/issues/582", - "https://github.com/SecureBananaLabs/bug-bounty/issues/7067", - "https://github.com/charles-openclaw/charles-microbounties/issues/1427", - "https://github.com/yasuking0304/genshin-langdata/issues/49", - "https://github.com/SRM-Test-DEV/test-56/issues/4170", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/205", - "https://github.com/uthw/Mincemeat-2/issues/346", - "https://github.com/charles-openclaw/charles-microbounties/issues/352", - "https://github.com/Informant254/Nova-arsenal/issues/13", - "https://github.com/Scottcjn/rustchain-bounties/issues/12980", - "https://github.com/ramimbo/mergework/issues/291", - "https://github.com/charles-openclaw/charles-microbounties/issues/1795", - "https://github.com/dev-kp-eloper/BountyScout/issues/354", - "https://github.com/sebrandon1/go-skylight/issues/188", - "https://github.com/UnitOneAI/SecuritySkills/issues/45", - "https://github.com/ramimbo/mergework/issues/45", + "https://github.com/charles-openclaw/charles-microbounties/issues/654", + "https://github.com/charles-openclaw/charles-microbounties/issues/3322", + "https://github.com/canton-foundation/canton-dev-fund/issues/366", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3346", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/213", + "https://github.com/jMonkeyEngine/jmonkeyengine/issues/2222", + "https://github.com/Scottcjn/vintage-voice/issues/181", + "https://github.com/xevrion-v2/agent-playground/issues/2833", + "https://github.com/Scottcjn/rustchain-bounties/issues/13381", + "https://github.com/Scottcjn/rustchain-bounties/issues/13825", + "https://github.com/paraloom-labs/paraloom-core/issues/413", + "https://github.com/Jonnyton/Workflow/issues/1062", + "https://github.com/Scottcjn/rustchain-bounties/issues/13752", + "https://github.com/toon-protocol/toon-meta/issues/121", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/3214", + "https://github.com/ritik4ever/stellar-bounty-board/issues/372", + "https://github.com/mergeos-bounties/mergeos/issues/231", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/364", + "https://github.com/monk-io/monk-plugin/issues/27", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/653", + "https://github.com/openmetaearth/me-hub/issues/1071", + "https://github.com/Scottcjn/rustchain-bounties/issues/13401", "https://github.com/greyw0rks/bountyscout/issues/51", - "https://github.com/qtop/qtop/issues/358", - "https://github.com/UnitOneAI/SecuritySkills/issues/2426", - "https://github.com/greyw0rks/bountyscout/issues/25", - "https://github.com/WattCoin-Org/wattcoin/issues/19", - "https://github.com/charles-openclaw/charles-microbounties/issues/2254", - "https://github.com/johnchampaign/star-wars-rebellion/issues/301", - "https://github.com/SecureBananaLabs/bug-bounty/issues/1288", - "https://github.com/azerothcore/azerothcore-wotlk/issues/7014", - "https://github.com/greyw0rks/bountyscout/issues/32", - "https://github.com/3ni8ma/aarushkarak-website/issues/112", - "https://github.com/vansh-09/BountyScout/issues/161", - "https://github.com/Freeuni-OOP/final-project-gitbounty/issues/47", - "https://github.com/BitflowFinance/bff-skills/issues/581", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4453", - "https://github.com/charles-openclaw/charles-microbounties/issues/3168", - "https://github.com/Scottcjn/rustchain-bounties/issues/13508", - "https://github.com/charles-openclaw/charles-microbounties/issues/827", - "https://github.com/charles-openclaw/charles-microbounties/issues/1808", - "https://github.com/codeboost-tr/zeroeye/issues/6", - "https://github.com/Scottcjn/rustchain-bounties/issues/8936", - "https://github.com/ZWISERFIT/zwiserfit-ai-store-manager/issues/9", - "https://github.com/UnitOneAI/SecuritySkills/issues/1914", - "https://github.com/ghc-cloneRepoStaging-scaAndRenovate2/14459_Michael-Castillo_0630_221043_ghc_gw1_failed/issues/9", - "https://github.com/charles-openclaw/charles-microbounties/issues/85", - "https://github.com/ducminhgd/gossip-bot/issues/351", - "https://github.com/johnchampaign/star-wars-rebellion/issues/423", - "https://github.com/ClankerNation/OpenAgents/issues/110", - "https://github.com/charles-openclaw/charles-microbounties/issues/1451", - "https://github.com/auscaster/frantic-board/issues/62", - "https://github.com/Scottcjn/rustchain-bounties/issues/12884", - "https://github.com/hashgraph/guardian/issues/5773", - "https://github.com/UnitOneAI/SecuritySkills/issues/1624", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/905", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3771", - "https://github.com/vansh-09/BountyScout/issues/192", - "https://github.com/charles-openclaw/charles-microbounties/issues/1204", - "https://github.com/Scottcjn/rustchain-bounties/issues/13731", - "https://github.com/UnitOneAI/SecuritySkills/issues/2437", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2903", - "https://github.com/charles-openclaw/charles-microbounties/issues/1022", - "https://github.com/vansh-09/BountyScout/issues/53", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/860", - "https://github.com/MM0x02/RSS-Push/issues/542", - "https://github.com/Scottcjn/rustchain-bounties/issues/14387", - "https://github.com/okalldal/lark/issues/269", - "https://github.com/hashgraph/hedera-agent-kit-py/issues/339", - "https://github.com/auscaster/frantic-board/issues/156", - "https://github.com/ramimbo/mergework/issues/1010", - "https://github.com/Scottcjn/rustchain-bounties/issues/14221", + "https://github.com/charles-openclaw/charles-microbounties/issues/3375", + "https://github.com/SecureBananaLabs/bug-bounty/issues/4603", + "https://github.com/Scottcjn/rustchain-bounties/issues/15231", + "https://github.com/firefly-iii/firefly-iii/issues/12500", + "https://github.com/Scottcjn/rustchain-bounties/issues/15301", + "https://github.com/greyw0rks/bountyscout/issues/139", "https://github.com/auscaster/frantic-board/issues/63", - "https://github.com/charles-openclaw/charles-microbounties/issues/3322", - "https://github.com/vansh-09/BountyScout/issues/15", - "https://github.com/Scottcjn/rustchain-bounties/issues/12443", - "https://github.com/oficcejo/aiagents-stock/issues/57", - "https://github.com/SecureBananaLabs/bug-bounty/issues/4481", - "https://github.com/Dipraise1/Engram/issues/23", - "https://github.com/cakuki/tidewake/issues/173", - "https://github.com/Scottcjn/rustchain-bounties/issues/12983", - "https://github.com/MendPerformance/billing-api-23606/issues/11", - "https://github.com/commaai/opendbc/issues/1833", - "https://github.com/vansh-09/BountyScout/issues/124", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/95", - "https://github.com/charles-openclaw/charles-microbounties/issues/1342", - "https://github.com/charles-openclaw/charles-microbounties/issues/2197", - "https://github.com/emmanuelgjr/genai_incidents/issues/74", - "https://github.com/archestra-ai/archestra/issues/4998", - "https://github.com/SecureBananaLabs/bug-bounty/issues/3541", - "https://github.com/charles-openclaw/charles-microbounties/issues/1142", - "https://github.com/Scottcjn/Rustchain/issues/2369", - "https://github.com/Ikalus1988/MisakaNet/issues/140", - "https://github.com/charles-openclaw/charles-microbounties/issues/670", - "https://github.com/nodejs/email/issues/293", - "https://github.com/APN-Network/bugs/issues/35", - "https://github.com/xxnjms1-code/kickama-prize-lab/issues/1", - "https://github.com/SecureBananaLabs/bug-bounty/issues/1726", - "https://github.com/pekral/cursor-rules/issues/587", - "https://github.com/Scottcjn/rustchain-bounties/issues/12981", - "https://github.com/paritytech/polkadot-sdk/issues/12192", - "https://github.com/patchid/docs/issues/6", - "https://github.com/lobster-trap/TentOfTrials/issues/41", - "https://github.com/xevrion-v2/agent-playground/issues/4541", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/753", - "https://github.com/vansh-09/BountyScout/issues/30", - "https://github.com/eunseobchoi/NIPS26_A_CV2024/issues/9", - "https://github.com/charles-openclaw/charles-microbounties/issues/1660", - "https://github.com/charles-openclaw/charles-microbounties/issues/1428", - "https://github.com/vinit84/Monsoon-Market/issues/1", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/854", - "https://github.com/Scottcjn/rustchain-bounties/issues/13933", - "https://github.com/Scottcjn/Rustchain/issues/6227", - "https://github.com/auscaster/frantic-board/issues/166", - "https://github.com/charles-openclaw/charles-microbounties/issues/585", - "https://github.com/3ni8ma/aarushkarak-website/issues/113", - "https://github.com/Scottcjn/rustchain-bounties/issues/14522", - "https://github.com/openmetaearth/me-hub/issues/105", - "https://github.com/sarthak-fleet/starboard/issues/22", - "https://github.com/honua-io/honua-helm/issues/24", - "https://github.com/charles-openclaw/charles-microbounties/issues/1493", - "https://github.com/warpspeedopen-source/warpspeed-bounties/issues/3", - "https://github.com/ritik4ever/stellar-bounty-board/issues/282", - "https://github.com/charles-openclaw/charles-microbounties/issues/1688", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/138", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3788", - "https://github.com/charles-openclaw/charles-microbounties/issues/1286", - "https://github.com/SecureBananaLabs/bug-bounty/issues/9119", - "https://github.com/mergemint-mint/mergemint-contracts/issues/329", - "https://github.com/kcolbchain/switchboard/issues/96", - "https://github.com/UnitOneAI/SecuritySkills/issues/2388", - "https://github.com/charles-openclaw/charles-microbounties/issues/1638", - "https://github.com/Scottcjn/rustchain-bounties/issues/13649", - "https://github.com/charles-openclaw/charles-microbounties/issues/953", - "https://github.com/UnitOneAI/SecuritySkills/issues/541", - "https://github.com/tscircuit/template-api-fake/issues/2", - "https://github.com/Scottcjn/rustchain-bounties/issues/2274", - "https://github.com/Scottcjn/rustchain-bounties/issues/12444", - "https://github.com/daveh8541/han-agent-bounty-packet/issues/1", - "https://github.com/greyw0rks/bountyscout/issues/37", - "https://github.com/Scottcjn/rustchain-bounties/issues/12334", - "https://github.com/honojs/hono/issues/5006", - "https://github.com/charles-openclaw/charles-microbounties/issues/1767", - "https://github.com/charles-openclaw/charles-microbounties/issues/2191", - "https://github.com/openmetaearth/me-hub/issues/49", - "https://github.com/charles-openclaw/charles-microbounties/issues/3359", - "https://github.com/charles-openclaw/charles-microbounties/issues/3354", - "https://github.com/vansh-09/BountyScout/issues/74", - "https://github.com/3ni8ma/aarushkarak-website/issues/23", - "https://github.com/Vonage/vonage-media-transformers-samples/issues/85", - "https://github.com/xevrion-v2/agent-playground/issues/5132", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/12", - "https://github.com/iterativv/NostalgiaForInfinity/issues/901", - "https://github.com/charles-openclaw/charles-microbounties/issues/1819", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/23", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2976", - "https://github.com/ClankerNation/OpenAgents/issues/157", - "https://github.com/charles-openclaw/charles-microbounties/issues/632", - "https://github.com/vansh-09/BountyScout/issues/103", - "https://github.com/SecureBananaLabs/bug-bounty/issues/3151", - "https://github.com/coopfinance/coopfin-frontend/issues/2", - "https://github.com/charles-openclaw/charles-microbounties/issues/1939", - "https://github.com/lk251/agent-bounty-market/issues/3", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2822", - "https://github.com/SRM-Test-DEV/test-56/issues/3450", - "https://github.com/Ikalus1988/MisakaNet/issues/148", - "https://github.com/charles-openclaw/charles-microbounties/issues/1535", - "https://github.com/auscaster/frantic-board/issues/106", - "https://github.com/mcdope/pam_usb/issues/55", - "https://github.com/okalldal/lark/issues/277", - "https://github.com/charles-openclaw/charles-microbounties/issues/54", + "https://github.com/Scottcjn/rustchain-bounties/issues/39", + "https://github.com/charles-openclaw/charles-microbounties/issues/882", + "https://github.com/mergeos-bounties/HIRI/issues/10", + "https://github.com/charles-openclaw/charles-microbounties/issues/861", + "https://github.com/Scottcjn/Rustchain/issues/7323", + "https://github.com/IN3PIRE/discord-js-handler/issues/40", + "https://github.com/ClankerNation/OpenAgents/issues/198", + "https://github.com/charles-openclaw/charles-microbounties/issues/1261", + "https://github.com/nexmo-community/home-surveillance-with-node-and-raspberry-pi/issues/28", + "https://github.com/KodeStar/audiosilo-meta/issues/181", + "https://github.com/Iamgoofball/-tg-station/issues/92", + "https://github.com/runxhq/runx/issues/75", + "https://github.com/Scottcjn/Rustchain/issues/7256", + "https://github.com/BETAIL-BOYS/TradeFlow-Core/issues/174", + "https://github.com/ClankerNation/OpenAgents/issues/120", + "https://github.com/dev-kp-eloper/BountyScout/issues/567", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/274", + "https://github.com/vansh-09/BountyScout/issues/109", + "https://github.com/ClankerNation/OpenAgents/issues/200", + "https://github.com/ramimbo/mergework/issues/646", + "https://github.com/Scottcjn/rustchain-bounties/issues/50", + "https://github.com/charles-openclaw/charles-microbounties/issues/1143", + "https://github.com/a-organvm/peer-audited--behavioral-blockchain/issues/151", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2392", + "https://github.com/monk-io/monk-plugin/issues/92", + "https://github.com/Iamgoofball/-tg-station/issues/129", + "https://github.com/NSPG13/agent-bounties/issues/218", + "https://github.com/peterxing/farmbot-platform/issues/17", + "https://github.com/charles-openclaw/charles-microbounties/issues/204", + "https://github.com/Scottcjn/rustchain-bounties/issues/12703", + "https://github.com/shipshitgames/deadrot.com/issues/129", + "https://github.com/Scottcjn/rustchain-bounties/issues/15295", + "https://github.com/kcolbchain/audit-checklist/issues/35", + "https://github.com/Scottcjn/rustchain-bounties/issues/13760", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/835", + "https://github.com/xevrion-v2/agent-playground/issues/5969", + "https://github.com/SolFoundry/solfoundry/issues/849", + "https://github.com/charles-openclaw/charles-microbounties/issues/1581", + "https://github.com/mergeos-bounties/ros2-mcp/issues/42", + "https://github.com/vansh-09/BountyScout/issues/467", + "https://github.com/Scottcjn/rustchain-bounties/issues/13206", + "https://github.com/charles-openclaw/charles-microbounties/issues/869", + "https://github.com/tachibana-shin/hoidap247-app/issues/7", + "https://github.com/charles-openclaw/charles-microbounties/issues/116", + "https://github.com/xevrion-v2/agent-playground/issues/7258", + "https://github.com/jgeraigery/AutoPrompt-AI-TESt/issues/5", + "https://github.com/Scottcjn/Rustchain/issues/7755", + "https://github.com/charles-openclaw/charles-microbounties/issues/1137", + "https://github.com/charles-openclaw/charles-microbounties/issues/1353", + "https://github.com/xevrion-v2/agent-playground/issues/5429", + "https://github.com/Scottcjn/rustchain-bounties/issues/13522", + "https://github.com/charles-openclaw/charles-microbounties/issues/85", + "https://github.com/dwebagents/AgentPipe/issues/1460", + "https://github.com/NixOS/nixpkgs/issues/525304", + "https://github.com/khalilbenaz/khalilbenaz.github.io/issues/159", + "https://github.com/lk251/agent-bounty-market/issues/22", + "https://github.com/SecureBananaLabs/bug-bounty/issues/4517", + "https://github.com/charles-openclaw/charles-microbounties/issues/1287", + "https://github.com/xevrion-v2/agent-playground/issues/930", + "https://github.com/Scottcjn/rustchain-bounties/issues/12533", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1369", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1404", + "https://github.com/SecureBananaLabs/bug-bounty/issues/11185", + "https://github.com/johnchampaign/star-wars-rebellion/issues/597", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/255", + "https://github.com/Scottcjn/rustchain-bounties/issues/13776", + "https://github.com/vansh-09/BountyScout/issues/108", + "https://github.com/xevrion-v2/agent-playground/issues/5798", + "https://github.com/Monkestation/Vanderlin/issues/6718", + "https://github.com/openJiuwen-ai/test-sync/issues/46", + "https://github.com/ClankerNation/OpenAgents/issues/16", + "https://github.com/JiusiServe/vllm-omni/issues/274", + "https://github.com/jclee941/bug/issues/310", + "https://github.com/Scottcjn/rustchain-bounties/issues/16240", + "https://github.com/xevrion-v2/agent-playground/issues/2831", + "https://github.com/Gitlawb/node/issues/160", + "https://github.com/Scottcjn/bottube/issues/1376", "https://github.com/charles-openclaw/charles-microbounties/issues/1560", - "https://github.com/organvm/peer-audited--behavioral-blockchain/issues/75", - "https://github.com/Eaprime1/custos/issues/35", - "https://github.com/Scottcjn/Rustchain/issues/6923", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/344", - "https://github.com/okalldal/lark/issues/271", - "https://github.com/charles-openclaw/charles-microbounties/issues/3357", - "https://github.com/Scottcjn/rustchain-bounties/issues/13364", - "https://github.com/boundlessfi/bounties/issues/210", - "https://github.com/Scottcjn/bottube/issues/1299", - "https://github.com/charles-openclaw/charles-microbounties/issues/889", - "https://github.com/charles-openclaw/charles-microbounties/issues/3335", - "https://github.com/Kings9595/WaveMilestone/issues/22", - "https://github.com/signalwire/freeswitch/issues/3024", - "https://github.com/Scottcjn/rustchain-bounties/issues/14603", - "https://github.com/charles-openclaw/charles-microbounties/issues/1635", - "https://github.com/UnitOneAI/SecuritySkills/issues/1529", - "https://github.com/SRM-Test-DEV/test-56/issues/4084", - "https://github.com/johnchampaign/star-wars-rebellion/issues/29", - "https://github.com/charles-openclaw/charles-microbounties/issues/1145", - "https://github.com/charles-openclaw/charles-microbounties/issues/834", - "https://github.com/0xHabitat/habitat-rollup/issues/69", - "https://github.com/UnitOneAI/SecuritySkills/issues/2808", - "https://github.com/framerslab/wunderland-sol/issues/6", - "https://github.com/UnitOneAI/SecuritySkills/issues/1166", - "https://github.com/WeaponMechanics/WeaponMechanics/issues/271", - "https://github.com/vansh-09/BountyScout/issues/191", - "https://github.com/rsoreq/AutoGPT/issues/214", - "https://github.com/Freeuni-OOP/final-project-gitbounty/issues/48", - "https://github.com/charles-openclaw/charles-microbounties/issues/603", - "https://github.com/souleater06/mineagent/issues/9", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/9", - "https://github.com/charles-openclaw/charles-microbounties/issues/587", - "https://github.com/GHCbflam1/RailsGoat/issues/10", - "https://github.com/charles-openclaw/charles-microbounties/issues/1897", - "https://github.com/johnchampaign/star-wars-rebellion/issues/259", - "https://github.com/ritik4ever/stellar-bounty-board/issues/250", - "https://github.com/charles-openclaw/charles-microbounties/issues/868", - "https://github.com/gitsofaryan/Norby/issues/1", - "https://github.com/tuangel1346/bounty-sentry/issues/1", - "https://github.com/onchain-ai/.github/issues/3", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/639", + "https://github.com/charles-openclaw/charles-microbounties/issues/1140", + "https://github.com/cakuki/tidewake/issues/297", + "https://github.com/ClankerNation/OpenAgents/issues/195", + "https://github.com/SmartDropLabs/smartdrop-frontend/issues/84", + "https://github.com/ligate-io/ligate-chain/issues/535", + "https://github.com/UnitOneAI/SecuritySkills/issues/1145", + "https://github.com/openclaw/clawhub/issues/3111", + "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/372", + "https://github.com/UnitOneAI/SecuritySkills/issues/1358", + "https://github.com/Iamgoofball/-tg-station/issues/185", + "https://github.com/xevrion-v2/agent-playground/issues/692", + "https://github.com/paraloom-labs/paraloom-core/issues/534", + "https://github.com/vhspace/goldenmcp/issues/30", + "https://github.com/charles-openclaw/charles-microbounties/issues/1022", + "https://github.com/SirPepperPot/EnhancedOverhaulRemixVersion/issues/13", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/44", + "https://github.com/Scottcjn/rustchain-bounties/issues/12737", + "https://github.com/charles-openclaw/charles-microbounties/issues/1808", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4866", + "https://github.com/Scottcjn/rustchain-bounties/issues/8937", "https://github.com/vansh-09/BountyScout/issues/121", - "https://github.com/UnitOneAI/SecuritySkills/issues/2504", - "https://github.com/caydyan/zeroeye/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/3393", - "https://github.com/Scottcjn/rustchain-bounties/issues/12669", - "https://github.com/xevrion-v2/agent-playground/issues/4630", - "https://github.com/dcccrypto/percolator-stake/issues/199", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/632", - "https://github.com/UnitOneAI/SecuritySkills/issues/2223", - "https://github.com/Scottcjn/rustchain-bounties/issues/13831", - "https://github.com/boundlessfi/boundless/issues/636", - "https://github.com/Scottcjn/rustchain-bounties/issues/12856", - "https://github.com/vansh-09/BountyScout/issues/116", - "https://github.com/relayhop/sn-monetization-runtime/issues/69", - "https://github.com/charles-openclaw/charles-microbounties/issues/1191", - "https://github.com/Mint-Claw/content-split/issues/1", - "https://github.com/Opire/docs/issues/34", - "https://github.com/ritik4ever/stellar-bounty-board/issues/360", - "https://github.com/ramimbo/mergework/issues/778", - "https://github.com/charles-openclaw/charles-microbounties/issues/1628", - "https://github.com/charles-openclaw/charles-microbounties/issues/1831", - "https://github.com/greyw0rks/bountyscout/issues/109", - "https://github.com/3ni8ma/aarushkarak-website/issues/24", - "https://github.com/3ni8ma/aarushkarak-website/issues/115", - "https://github.com/charles-openclaw/charles-microbounties/issues/1354", - "https://github.com/codegraphtheory/hermes-profile-template/issues/87", - "https://github.com/codeboost-tr/zeroeye/issues/5", - "https://github.com/charles-openclaw/charles-microbounties/issues/83", - "https://github.com/vansh-09/BountyScout/issues/129", - "https://github.com/xevrion-v2/agent-playground/issues/722", - "https://github.com/charles-openclaw/charles-microbounties/issues/283", - "https://github.com/vansh-09/BountyScout/issues/108", - "https://github.com/mpfaffenberger/space_sim/issues/8", - "https://github.com/ritik4ever/stellar-bounty-board/issues/278", - "https://github.com/vansh-09/BountyScout/issues/109", - "https://github.com/onflow/flow-credit-markets/issues/26", - "https://github.com/Scottcjn/rustchain-bounties/issues/13014", - "https://github.com/xevrion-v2/agent-playground/issues/447", - "https://github.com/Scottcjn/bottube/issues/1309", - "https://github.com/ramimbo/mergework/issues/838", - "https://github.com/xxnjms1-code/kickama-prize-lab/issues/2", + "https://github.com/elnahomenick123/Gitea/issues/1", + "https://github.com/qtop/qtop/issues/357", + "https://github.com/openmetaearth/me-hub/issues/398", + "https://github.com/cakuki/tidewake/issues/376", + "https://github.com/NSPG13/agent-bounties/issues/310", + "https://github.com/charles-openclaw/charles-microbounties/issues/987", + "https://github.com/Scottcjn/rustchain-bounties/issues/12884", + "https://github.com/langchain-ai/langgraph/issues/7440", + "https://github.com/Arx-Game/arxii/issues/2368", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/400", + "https://github.com/lobster-trap/hammer-and-nail/issues/438", + "https://github.com/wulansari999/Kickama-Wulansari-Bounty/issues/1", + "https://github.com/amaybaum-prod/V-Achilles/issues/22", + "https://github.com/gbabaisaac/mergefund-hackathon-kit/issues/8", + "https://github.com/johnchampaign/star-wars-rebellion/issues/332", + "https://github.com/cakuki/tidewake/issues/127", + "https://github.com/xevrion-v2/agent-playground/issues/6575", + "https://github.com/Scottcjn/rustchain-bounties/issues/12669", + "https://github.com/Scottcjn/rustchain-bounties/issues/13973", + "https://github.com/Ikalus1988/MisakaNet/issues/393", + "https://github.com/rsoreq/AutoPrompt/issues/75", + "https://github.com/google-agentic-commerce/a2a-x402/issues/141", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/377", + "https://github.com/tscircuit/footprinter/issues/183", + "https://github.com/Scottcjn/rustchain-bounties/issues/14304", + "https://github.com/xevrion-v2/agent-playground/issues/6800", + "https://github.com/charles-openclaw/charles-microbounties/issues/750", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/855", + "https://github.com/SecureBananaLabs/bug-bounty/issues/6373", + "https://github.com/Ikalus1988/MisakaNet/issues/218", + "https://github.com/mergeos-bounties/PlantGuide/issues/178", + "https://github.com/Iamgoofball/-tg-station/issues/128", + "https://github.com/Scottcjn/rustchain-bounties/issues/14142", + "https://github.com/JohnGao818/agents-radar/issues/130", + "https://github.com/Scottcjn/bottube/issues/1375", + "https://github.com/UnitOneAI/SecuritySkills/issues/1804", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2495", + "https://github.com/Ikalus1988/MisakaNet/issues/282", + "https://github.com/Scottcjn/bottube/issues/1369", + "https://github.com/Scottcjn/rustchain-bounties/issues/12653", + "https://github.com/Grainlify/Grainlify-Stellar-Contracts/issues/271", + "https://github.com/greyw0rks/bountyscout/issues/350", + "https://github.com/qiwentaidi/Hephaestus/issues/3", + "https://github.com/amaybaum-prod/stable-diffusion-webui/issues/1", + "https://github.com/Scottcjn/rustchain-bounties/issues/15090", + "https://github.com/jgeraigery/spot-sdk/issues/159", + "https://github.com/Ikalus1988/MisakaNet/issues/140", + "https://github.com/charles-openclaw/charles-microbounties/issues/58", + "https://github.com/StellarDevHub/Web3-Student-Lab/issues/728", + "https://github.com/gibwork/gibwork-website/issues/54", + "https://github.com/NirShaharabani/verdaccio/issues/442", + "https://github.com/codegraphtheory/hermes-profile-template/issues/18", + "https://github.com/SecureBananaLabs/bug-bounty/issues/7322", + "https://github.com/Yuliya65/AutoPrompt/issues/15", + "https://github.com/charles-openclaw/charles-microbounties/issues/1484", + "https://github.com/nirium-protocol/nirium-sdk/issues/10", + "https://github.com/Scottcjn/rustchain-bounties/issues/13651", + "https://github.com/NSPG13/agent-bounties/issues/295", + "https://github.com/claude-builders-bounty/claude-builders-bounty/issues/2855", + "https://github.com/okalldal/lark/issues/462", + "https://github.com/Kings9595/WaveMilestone/issues/25", + "https://github.com/Scottcjn/rustchain-bounties/issues/14525", + "https://github.com/charles-openclaw/charles-microbounties/issues/1591", + "https://github.com/iii123iii/Crystal-PDF/issues/2", + "https://github.com/hermetica-fi/hermetica-contracts/issues/195", + "https://github.com/onchain-ai/.github/issues/3", + "https://github.com/BountyOnChain/StellarBounty/issues/196", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/306", + "https://github.com/UID9622/lh-standard-adapter/issues/4", + "https://github.com/GabrielGLevine/wandering-inn-rpg/issues/194", + "https://github.com/charles-openclaw/charles-microbounties/issues/1221", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/155", + "https://github.com/musescore/MuseScore/issues/33852", "https://github.com/honua-io/honua-sdk-python/issues/106", - "https://github.com/charles-openclaw/charles-microbounties/issues/2009", - "https://github.com/Scottcjn/rustchain-bounties/issues/13682", - "https://github.com/Scottcjn/rustchain-bounties/issues/13246", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/638", - "https://github.com/ramimbo/mergework/issues/794", - "https://github.com/charles-openclaw/charles-microbounties/issues/107", - "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/214", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/204", - "https://github.com/xevrion-v2/agent-playground/issues/220", - "https://github.com/Spectral-Finance/lux/issues/58", - "https://github.com/charles-openclaw/charles-microbounties/issues/1139", - "https://github.com/Scottcjn/rustchain-bounties/issues/12900", - "https://github.com/learnault/learnault-contracts/issues/55", - "https://github.com/charles-openclaw/charles-microbounties/issues/358", - "https://github.com/swbooksmugglers/swbs-issue-tracker/issues/72", - "https://github.com/PunkFinance/punk.protocol/issues/4", - "https://github.com/Scottcjn/rustchain-bounties/issues/14595", - "https://github.com/Jonnyton/Workflow/issues/1132", - "https://github.com/charles-openclaw/charles-microbounties/issues/1336", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5015", - "https://github.com/openmetaearth/me-hub/issues/51", - "https://github.com/ClankerNation/OpenAgents/issues/173", - "https://github.com/organvm/peer-audited--behavioral-blockchain/issues/87", - "https://github.com/charles-openclaw/charles-microbounties/issues/1507", - "https://github.com/Nickrock2002/Evershop/issues/3", - "https://github.com/SecureBananaLabs/bug-bounty/issues/1920", - "https://github.com/vansh-09/BountyScout/issues/99", - "https://github.com/lobster-trap/TentOfTrials/issues/72", - "https://github.com/natefinch/council4/issues/893", - "https://github.com/charles-openclaw/charles-microbounties/issues/663", - "https://github.com/3ni8ma/aarushkarak-website/issues/33", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/328", - "https://github.com/UnitOneAI/SecuritySkills/issues/545", - "https://github.com/Scottcjn/rustchain-bounties/issues/14552", - "https://github.com/mergeos-bounties/mergeos/issues/64", - "https://github.com/shutter-network/encrypted-mempool-pm/issues/7", - "https://github.com/greyw0rks/bountyscout/issues/159", - "https://github.com/charles-openclaw/charles-microbounties/issues/1200", - "https://github.com/UnitOneAI/SecuritySkills/issues/1741", - "https://github.com/SecureBananaLabs/bug-bounty/issues/6661", - "https://github.com/vansh-09/BountyScout/issues/13", - "https://github.com/UnitOneAI/SecuritySkills/issues/1800", - "https://github.com/Spectral-Finance/lux/issues/81", - "https://github.com/charles-openclaw/charles-microbounties/issues/2127", - "https://github.com/UnitOneAI/SecuritySkills/issues/187", - "https://github.com/Scottcjn/Rustchain/issues/7676", - "https://github.com/charles-openclaw/charles-microbounties/issues/1168", - "https://github.com/charles-openclaw/charles-microbounties/issues/1517", - "https://github.com/UnitOneAI/SecuritySkills/issues/2809", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/858", - "https://github.com/openmetaearth/me-hub/issues/454", - "https://github.com/Scottcjn/rustchain-bounties/issues/12855", - "https://github.com/Scottcjn/rustchain-bounties/issues/14382", - "https://github.com/lobster-trap/Kickama/issues/397", - "https://github.com/charles-openclaw/charles-microbounties/issues/3085", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/69", - "https://github.com/BrianV1981/arma3mercenaries_2026/issues/18", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/321", - "https://github.com/Scottcjn/rustchain-bounties/issues/13521", - "https://github.com/Scottcjn/rustchain-bounties/issues/13664", - "https://github.com/dcccrypto/percolator-stake/issues/198", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/3238", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/804", - "https://github.com/charles-openclaw/charles-microbounties/issues/1281", - "https://github.com/mpfaffenberger/space_sim/issues/12", - "https://github.com/charles-openclaw/charles-microbounties/issues/1519", - "https://github.com/charles-openclaw/charles-microbounties/issues/2745", - "https://github.com/xevrion-v2/agent-playground/issues/738", + "https://github.com/Scottcjn/rustchain-bounties/issues/14068", + "https://github.com/dev-kp-eloper/BountyScout/issues/419", + "https://github.com/charles-openclaw/charles-microbounties/issues/1377", + "https://github.com/Octo-Studios/reliquified-artifacts/issues/70", + "https://github.com/Scottcjn/contributors/issues/169", + "https://github.com/HubDApp/Dongle-Smartcontract/issues/334", + "https://github.com/agoraproto/agora/issues/1", + "https://github.com/AstroxNetwork/agent_dart/issues/13", + "https://github.com/mergeos-bounties/Lappa/issues/10", + "https://github.com/openmetaearth/me-hub/issues/1078", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/822", + "https://github.com/greyw0rks/bountyscout/issues/348", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/670", + "https://github.com/Scottcjn/Rustchain/issues/6793", + "https://github.com/charles-openclaw/charles-microbounties/issues/8", + "https://github.com/mergemint-mint/mergemint-contracts/issues/250", + "https://github.com/Scottcjn/rustchain-bounties/issues/14601", + "https://github.com/chainreactors/picker/issues/1264", "https://github.com/Scottcjn/rustchain-bounties/issues/14396", - "https://github.com/hermetica-fi/hermetica-contracts/issues/193", - "https://github.com/ZSBRybnik/frontend/issues/2184", - "https://github.com/ValveSoftware/Dota2-Gameplay/issues/30987", - "https://github.com/ramimbo/mergework/issues/1027", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4496", - "https://github.com/Spectral-Finance/lux/issues/68", - "https://github.com/charles-openclaw/charles-microbounties/issues/1466", - "https://github.com/lobster-trap/zeroeye/issues/10", - "https://github.com/charles-openclaw/charles-microbounties/issues/2136", - "https://github.com/mumble-voip/mumble/issues/3282", - "https://github.com/mend-detection-qa/yarn-redux-crud-example/issues/8", - "https://github.com/charles-openclaw/charles-microbounties/issues/1625", - "https://github.com/getdozer/dozer/issues/1659", - "https://github.com/charles-openclaw/charles-microbounties/issues/643", - "https://github.com/cyrilawoyemi99-max/owockibot-bounty-sync-/issues/4", - "https://github.com/Scottcjn/rustchain-bounties/issues/13370", - "https://github.com/Dipraise1/Engram/issues/22", - "https://github.com/alulaalmi/Apache-APISIX/issues/1", - "https://github.com/jgeraigery/CodeGen/issues/4", - "https://github.com/lobster-trap/zeroeye/issues/52", - "https://github.com/lobster-trap/Kickama/issues/407", - "https://github.com/UnitOneAI/SecuritySkills/issues/71", - "https://github.com/ramimbo/mergework/issues/283", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/44", - "https://github.com/UnitOneAI/SecuritySkills/issues/1835", - "https://github.com/Scottcjn/rustchain-bounties/issues/12534", - "https://github.com/asaadnashed/bounty-autopilot/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/1288", - "https://github.com/Scottcjn/rustchain-bounties/issues/12986", - "https://github.com/charles-openclaw/charles-microbounties/issues/1180", - "https://github.com/openmetaearth/me-hub/issues/55", - "https://github.com/mergemint-mint/mergemint-contracts/issues/296", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1822", - "https://github.com/xevrion-v2/agent-playground/issues/3582", - "https://github.com/Scottcjn/Rustchain/issues/6401", - "https://github.com/charles-openclaw/charles-microbounties/issues/990", - "https://github.com/charles-openclaw/charles-microbounties/issues/1269", - "https://github.com/charles-openclaw/charles-microbounties/issues/638", - "https://github.com/Emmanuel-Evenzur/syetem_prompt/issues/21", - "https://github.com/vansh-09/BountyScout/issues/204", - "https://github.com/vansh-09/BountyScout/issues/185", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/10", - "https://github.com/ramimbo/mergework/issues/426", - "https://github.com/charles-openclaw/charles-microbounties/issues/882", - "https://github.com/Scottcjn/rustchain-bounties/issues/12792", - "https://github.com/charles-openclaw/charles-microbounties/issues/1221", - "https://github.com/charles-openclaw/charles-microbounties/issues/30", - "https://github.com/ramimbo/mergework/issues/322", - "https://github.com/charles-openclaw/charles-microbounties/issues/2048", - "https://github.com/charles-openclaw/charles-microbounties/issues/508", - "https://github.com/drizzle-team/drizzle-orm/issues/1603", - "https://github.com/vansh-09/BountyScout/issues/52", - "https://github.com/auscaster/frantic-board/issues/180", - "https://github.com/Scottcjn/rustchain-bounties/issues/13509", - "https://github.com/charles-openclaw/charles-microbounties/issues/825", - "https://github.com/3ni8ma/aarushkarak-website/issues/21", - "https://github.com/samugit83/redamon/issues/138", - "https://github.com/ramimbo/mergework/issues/846", - "https://github.com/openmetaearth/me-hub/issues/300", - "https://github.com/vansh-09/BountyScout/issues/14", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/565", - "https://github.com/auscaster/frantic-board/issues/53", - "https://github.com/vansh-09/BountyScout/issues/146", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2966", - "https://github.com/runxhq/runx/issues/207", - "https://github.com/charles-openclaw/charles-microbounties/issues/3386", - "https://github.com/charles-openclaw/charles-microbounties/issues/3355", - "https://github.com/vansh-09/BountyScout/issues/117", - "https://github.com/Scottcjn/beacon-skill/issues/865", - "https://github.com/ramimbo/mergework/issues/406", - "https://github.com/xevrion-v2/agent-playground/issues/3719", - "https://github.com/Imaginary-Horizons-Productions/BountyBot/issues/288", - "https://github.com/lb1192176991-lab/zeroeye/issues/5", - "https://github.com/vansh-09/BountyScout/issues/113", - "https://github.com/openmetaearth/me-hub/issues/243", - "https://github.com/greyw0rks/bountyscout/issues/14", - "https://github.com/charles-openclaw/charles-microbounties/issues/499", - "https://github.com/auscaster/frantic-board/issues/177", - "https://github.com/Scottcjn/rustchain-bounties/issues/14089", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/203", - "https://github.com/relayhop/sn-monetization-runtime/issues/49", - "https://github.com/auscaster/frantic-board/issues/54", - "https://github.com/ritik4ever/stellar-bounty-board/issues/291", - "https://github.com/connect-boiz/soroban-security-scanner/issues/329", - "https://github.com/moorcheh-ai/memanto/issues/770", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5669", - "https://github.com/AgesEmpire/StellarSwipe-FrontEnd/issues/348", - "https://github.com/ramimbo/mergework/issues/798", - "https://github.com/cybersecify/OpenEASD/issues/76", - "https://github.com/getdozer/dozer/issues/1653", - "https://github.com/Scottcjn/rustchain-bounties/issues/13378", - "https://github.com/greyw0rks/bountyscout/issues/123", - "https://github.com/Scottcjn/rustchain-bounties/issues/13953", - "https://github.com/google-agentic-commerce/a2a-x402/issues/141", - "https://github.com/Flatts3000/productive-frogs/issues/185", - "https://github.com/Scottcjn/Rustchain/issues/6397", - "https://github.com/xevrion-v2/agent-playground/issues/4790", - "https://github.com/niumeta/niumeta/issues/5", - "https://github.com/Scottcjn/rustchain-bounties/issues/13786", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1149", - "https://github.com/archestra-ai/archestra/issues/3855", - "https://github.com/Rinnegatamante/Android2Vita-Candidate-Ports-List/issues/150", - "https://github.com/Aigen-Protocol/aigen-workspace/issues/2", - "https://github.com/Scottcjn/rustchain-rips/issues/11", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/45", - "https://github.com/xxammaxx/Neutrino/issues/28", - "https://github.com/Dipraise1/Engram/issues/24", - "https://github.com/auscaster/frantic-board/issues/55", - "https://github.com/ritik4ever/stellar-bounty-board/issues/385", - "https://github.com/charles-openclaw/charles-microbounties/issues/1552", - "https://github.com/dotnet/sdk/issues/34775", - "https://github.com/Jonnyton/Workflow/issues/1042", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4491", - "https://github.com/cuentaprueba244w-dotcom/TentOfTrials/issues/14", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/3211", - "https://github.com/openmetaearth/me-hub/issues/905", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3711", - "https://github.com/Scottcjn/rustchain-bounties/issues/13964", - "https://github.com/UnitOneAI/SecuritySkills/issues/777", - "https://github.com/Scottcjn/rustchain-bounties/issues/13272", - "https://github.com/charles-openclaw/charles-microbounties/issues/1349", + "https://github.com/rsoreq/AutoGPT/issues/215", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/3213", + "https://github.com/greyw0rks/bountyscout/issues/50", + "https://github.com/Scottcjn/rustchain-bounties/issues/13700", + "https://github.com/melvio/hopla/issues/226", + "https://github.com/Informant254/Nova-arsenal/issues/17", + "https://github.com/Scottcjn/rustchain-bounties/issues/12392", + "https://github.com/Emmanuel-Evenzur/AutoPromptAI/issues/25", + "https://github.com/hyperlane-xyz/hyperlane-monorepo/issues/3393", + "https://github.com/SecureBananaLabs/bug-bounty/issues/6084", + "https://github.com/charles-openclaw/charles-microbounties/issues/1179", + "https://github.com/johnchampaign/star-wars-rebellion/issues/29", + "https://github.com/greyw0rks/bountyscout/issues/29", + "https://github.com/midobk/whiteout-idle-ios/issues/2", + "https://github.com/Scottcjn/rustchain-bounties/issues/15383", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/594", + "https://github.com/charles-openclaw/charles-microbounties/issues/770", + "https://github.com/johnchampaign/star-wars-rebellion/issues/572", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/589", + "https://github.com/ClankerNation/OpenAgents/issues/26", + "https://github.com/UnitOneAI/SecuritySkills/issues/37", + "https://github.com/charles-openclaw/charles-microbounties/issues/1194", + "https://github.com/Scottcjn/rustchain-bounties/issues/15294", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/129", + "https://github.com/charles-openclaw/charles-microbounties/issues/91", + "https://github.com/ramimbo/mergework/issues/643", + "https://github.com/Scottcjn/rustchain-bounties/issues/14765", + "https://github.com/ozpool/devbounty-backend/issues/68", + "https://github.com/Scottcjn/rustchain-bounties/issues/14028", + "https://github.com/Iamgoofball/-tg-station/issues/175", + "https://github.com/oficcejo/aiagents-stock/issues/57", + "https://github.com/greyw0rks/bountyscout/issues/132", + "https://github.com/octra-labs/pvac_hfhe_cpp/issues/501", + "https://github.com/cyl19970726/Code3-Workspace/issues/32", + "https://github.com/APN-Network/bugs/issues/11", + "https://github.com/greyw0rks/bountyscout/issues/73", + "https://github.com/BlackJack-Cao/agents-radar/issues/1", + "https://github.com/paraloom-labs/paraloom-core/issues/533", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5011", + "https://github.com/xevrion-v2/agent-playground/issues/6599", + "https://github.com/SAST-UP-STG/SAST-Test-Repo-4824dda9-b692-4bd6-9ac6-23d35899b575/issues/56", + "https://github.com/vansh-09/BountyScout/issues/103", + "https://github.com/ramimbo/mergework/issues/298", + "https://github.com/BigJohn-dev/EduToken-/issues/147", + "https://github.com/mergeos-bounties/HIRI/issues/22", + "https://github.com/mergeos-bounties/BloggerEasy/issues/31", + "https://github.com/Scottcjn/rustchain-bounties/issues/12150", + "https://github.com/UnitOneAI/SecuritySkills/issues/2496", + "https://github.com/anthropics/claude-code/issues/66806", + "https://github.com/johnchampaign/star-wars-rebellion/issues/613", "https://github.com/qosf/monthly-challenges/issues/70", - "https://github.com/Scottcjn/rustchain-bounties/issues/13803", - "https://github.com/boundlessfi/bounties/issues/215", - "https://github.com/duanyytop/agents-radar/issues/1588", - "https://github.com/charles-openclaw/charles-microbounties/issues/1184", - "https://github.com/charles-openclaw/charles-microbounties/issues/631", - "https://github.com/wulansari999/Kickama-Wulansari-Bounty/issues/1", - "https://github.com/xevrion-v2/agent-playground/issues/4859", - "https://github.com/xevrion-v2/agent-playground/issues/3700", - "https://github.com/Roxonn-FutureTech/Roxonn-Platform/issues/96", - "https://github.com/openmetaearth/me-hub/issues/56", - "https://github.com/charles-openclaw/charles-microbounties/issues/1581", - "https://github.com/Scottcjn/rustchain-bounties/issues/13041", - "https://github.com/PunkFinance/punk.protocol/issues/5", - "https://github.com/greyw0rks/bountyscout/issues/160", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2835", - "https://github.com/charles-openclaw/charles-microbounties/issues/1530", + "https://github.com/crewAIInc/crewAI/issues/5832", + "https://github.com/airdropia-collection/bounty-hunter/issues/12", + "https://github.com/cybersecify/OpenEASD/issues/77", + "https://github.com/mergeos-bounties/BloggerEasy/issues/35", + "https://github.com/greyw0rks/bountyscout/issues/91", + "https://github.com/charles-openclaw/charles-microbounties/issues/1005", + "https://github.com/mergeos-bounties/NeraJob/issues/21", + "https://github.com/openmetaearth/me-hub/issues/52", + "https://github.com/charles-openclaw/charles-microbounties/issues/1451", + "https://github.com/johnchampaign/star-wars-rebellion/issues/334", + "https://github.com/UnitOneAI/SecuritySkills/issues/2806", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/268", + "https://github.com/Scottcjn/rustchain-bounties/issues/2788", + "https://github.com/ImmutableSoft/ImmutableEcosystem/issues/24", + "https://github.com/tensortrade-org/tensortrade/issues/497", + "https://github.com/Scottcjn/rustchain-bounties/issues/15299", + "https://github.com/auscaster/frantic-board/issues/284", + "https://github.com/DimaMend/www-project-promptme/issues/6", + "https://github.com/charles-openclaw/charles-microbounties/issues/2253", + "https://github.com/unitystation/unitystation/issues/11222", + "https://github.com/UnitOneAI/SecuritySkills/issues/1536", + "https://github.com/NSPG13/agent-bounties/issues/422", + "https://github.com/Scottcjn/rustchain-bounties/issues/15076", + "https://github.com/NSPG13/agent-bounties/issues/336", + "https://github.com/boundlessfi/bounties/issues/208", + "https://github.com/PG-AGI/toingg-jarvis/issues/13", + "https://github.com/daydreamsai/lucid-agents/issues/179", + "https://github.com/charles-openclaw/charles-microbounties/issues/1628", + "https://github.com/xevrion-v2/agent-playground/issues/957", + "https://github.com/Scottcjn/rustchain-bounties/issues/13949", + "https://github.com/Scottcjn/vintage-voice/issues/180", + "https://github.com/esi/esi-issues/issues/1252", + "https://github.com/UnitOneAI/SecuritySkills/issues/816", + "https://github.com/UnitOneAI/SecuritySkills/issues/2501", + "https://github.com/charles-openclaw/charles-microbounties/issues/775", + "https://github.com/freedom-winds/BountyScout/issues/178", + "https://github.com/Iamgoofball/-tg-station/issues/143", + "https://github.com/llvm/llvm-project/issues/204930", + "https://github.com/highlight/highlight/issues/4225", + "https://github.com/charles-openclaw/charles-microbounties/issues/1947", + "https://github.com/ys578/agents-radar/issues/16", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/228", + "https://github.com/Grainlify/Grainlify-Stellar-Contracts/issues/104", + "https://github.com/azerothcore/azerothcore-wotlk/issues/7014", + "https://github.com/charles-openclaw/charles-microbounties/issues/1416", + "https://github.com/amaybaum-prod/shopware/issues/11", + "https://github.com/Scottcjn/rustchain-bounties/issues/12865", + "https://github.com/Grainlify/Grainlify-Stellar-Contracts/issues/243", + "https://github.com/Moeabdelaziz007/AxiomID/issues/135", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1150", + "https://github.com/charles-openclaw/charles-microbounties/issues/1946", + "https://github.com/mergeos-bounties/NeraJob/issues/18", + "https://github.com/aeyakovenko/percolator/issues/63", + "https://github.com/musescore/MuseScore/issues/24341", + "https://github.com/charles-openclaw/charles-microbounties/issues/265", + "https://github.com/charles-openclaw/charles-microbounties/issues/1538", + "https://github.com/monk-io/monk-plugin/issues/116", + "https://github.com/charles-openclaw/charles-microbounties/issues/666", + "https://github.com/Scottcjn/bottube/issues/1383", + "https://github.com/SecureBananaLabs/bug-bounty/issues/7321", + "https://github.com/hashgraph/hedera-agent-kit-js/issues/867", + "https://github.com/Monkestation/Monkestation2.0/issues/12082", + "https://github.com/Scottcjn/rustchain-bounties/issues/12369", + "https://github.com/Iamgoofball/-tg-station/issues/117", + "https://github.com/Scottcjn/rustchain-bounties/issues/13130", + "https://github.com/maplibre/maplibre-style-spec/issues/62", + "https://github.com/aaronlab/browsertrace/issues/12", + "https://github.com/AnchorNet-Org/AnchorNet-Frontend/issues/186", "https://github.com/ClankerNation/OpenAgents/issues/158", - "https://github.com/qtop/qtop/issues/356", - "https://github.com/xevrion-v2/agent-playground/issues/2962", - "https://github.com/xevrion-v2/agent-playground/issues/4546", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/915", - "https://github.com/charles-openclaw/charles-microbounties/issues/1324", - "https://github.com/openmetaearth/me-hub/issues/280", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2392", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3434", - "https://github.com/charles-openclaw/charles-microbounties/issues/923", - "https://github.com/cyrilawoyemi99-max/owockibot-bounty-sync-/issues/2", - "https://github.com/xevrion-v2/agent-playground/issues/1255", - "https://github.com/charles-openclaw/charles-microbounties/issues/1024", - "https://github.com/xevrion-v2/agent-playground/issues/2420", - "https://github.com/Scottcjn/rustchain-bounties/issues/1095", - "https://github.com/openmetaearth/me-hub/issues/1170", - "https://github.com/xevrion-v2/agent-playground/issues/5115", - "https://github.com/greyw0rks/bountyscout/issues/114", - "https://github.com/tenstorrent/tt-metal/issues/48311", - "https://github.com/charles-openclaw/charles-microbounties/issues/1258", - "https://github.com/ClankerNation/OpenAgents/issues/185", - "https://github.com/charles-openclaw/charles-microbounties/issues/429", - "https://github.com/ancalled/neutrino-agents/issues/76", - "https://github.com/greyw0rks/bountyscout/issues/27", - "https://github.com/xevrion-v2/agent-playground/issues/863", - "https://github.com/DimaMend/AutoPrompt/issues/13", - "https://github.com/PG-AGI/toingg-jarvis/issues/11", - "https://github.com/SecureBananaLabs/bug-bounty/issues/6951", - "https://github.com/jMonkeyEngine/jmonkeyengine/issues/1995", + "https://github.com/xevrion-v2/agent-playground/issues/875", + "https://github.com/Aurora-yang-git/workflow/issues/48", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/193", + "https://github.com/johnchampaign/star-wars-rebellion/issues/584", + "https://github.com/Scottcjn/rustchain-bounties/issues/14021", + "https://github.com/commaai/opendbc/issues/1833", + "https://github.com/BountyOnChain/StellarBounty/issues/341", + "https://github.com/UnitOneAI/SecuritySkills/issues/1915", + "https://github.com/loldi/cartright/issues/3", + "https://github.com/Carbon-Ledger-stellar/carbonledger-bounty/issues/21", + "https://github.com/Tarsnap/tarsnap/issues/702", + "https://github.com/greyw0rks/bountyscout/issues/273", + "https://github.com/dev-kp-eloper/BountyScout/issues/549", + "https://github.com/xevrion-v2/agent-playground/issues/3717", + "https://github.com/ritik4ever/stellar-bounty-board/issues/244", + "https://github.com/asaadnashed/bounty-autopilot/issues/12", + "https://github.com/johnchampaign/star-wars-rebellion/issues/205", + "https://github.com/elnahomenick123/Vault/issues/1", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/338", + "https://github.com/opentok/opentok-rtc/issues/788", + "https://github.com/charles-openclaw/charles-microbounties/issues/785", + "https://github.com/StellarDevHub/Web3-Student-Lab/issues/715", + "https://github.com/boundlessfi/bounties/issues/216", + "https://github.com/UnitOneAI/SecuritySkills/issues/633", + "https://github.com/Spectral-Finance/lux/issues/99", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/956", + "https://github.com/ERA-Projects/era-project-rus/issues/284", + "https://github.com/Grainlify/Grainlify-Stellar-Contracts/issues/220", + "https://github.com/Paritok-official/paritok-4b-v1/issues/2", + "https://github.com/umrr5/bug-bounty/issues/1", + "https://github.com/mergeos-bounties/Gomi/issues/25", + "https://github.com/Iamgoofball/-tg-station/issues/202", + "https://github.com/xevrion-v2/agent-playground/issues/6475", + "https://github.com/Scottcjn/rustchain-bounties/issues/12738", + "https://github.com/Errordog2/TentOfTrials/issues/5", + "https://github.com/auscaster/frantic-board/issues/199", + "https://github.com/GabrielGLevine/wandering-inn-rpg/issues/91", + "https://github.com/ritik4ever/stellar-bounty-board/issues/360", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/137", + "https://github.com/MatteoGabriele/agentscan/issues/198", + "https://github.com/charles-openclaw/charles-microbounties/issues/1286", + "https://github.com/ThaumicTheory/BOTB-Resourcepack/issues/12", + "https://github.com/ClankerNation/OpenAgents/issues/56", + "https://github.com/vansh-09/BountyScout/issues/80", + "https://github.com/ramimbo/mergework/issues/281", + "https://github.com/charles-openclaw/charles-microbounties/issues/49", + "https://github.com/UnitOneAI/SecuritySkills/issues/1361", + "https://github.com/Scottcjn/rustchain-bounties/issues/12368", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/305", + "https://github.com/charles-openclaw/charles-microbounties/issues/1490", + "https://github.com/Iamgoofball/-tg-station/issues/46", + "https://github.com/relayhop/sn-monetization-runtime/issues/216", + "https://github.com/codeboost-tr/zeroeye/issues/20", "https://github.com/charles-openclaw/charles-microbounties/issues/1294", - "https://github.com/ramimbo/mergework/issues/163", + "https://github.com/Scottcjn/rustchain-bounties/issues/12829", + "https://github.com/StellarLend/stellarlend-contracts/issues/1204", + "https://github.com/charles-openclaw/charles-microbounties/issues/1195", + "https://github.com/limetext/backend/issues/114", + "https://github.com/charles-openclaw/charles-microbounties/issues/778", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/339", + "https://github.com/Scottcjn/rustchain-bounties/issues/12986", + "https://github.com/mergeos-bounties/TrucVPN/issues/5", + "https://github.com/Scottcjn/rustchain-bounties/issues/15051", + "https://github.com/pvium/frontend/issues/43", + "https://github.com/charles-openclaw/charles-microbounties/issues/1796", + "https://github.com/charles-openclaw/charles-microbounties/issues/1025", + "https://github.com/zhouyuhechuan/agents-radar/issues/185", + "https://github.com/Grainlify/Grainlify-Stellar-Contracts/issues/216", + "https://github.com/vansh-09/BountyScout/issues/237", + "https://github.com/Scottcjn/rustchain-bounties/issues/12025", + "https://github.com/johnchampaign/star-wars-rebellion/issues/468", + "https://github.com/boundlessfi/bounties/issues/281", + "https://github.com/Scottcjn/Rustchain/issues/7325", + "https://github.com/charles-openclaw/charles-microbounties/issues/1181", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2903", + "https://github.com/charles-openclaw/charles-microbounties/issues/3394", + "https://github.com/organvm/peer-audited--behavioral-blockchain/issues/88", + "https://github.com/pyrimid-ai/pyrimid/issues/55", + "https://github.com/xevrion-v2/agent-playground/issues/6316", + "https://github.com/Conway-Research/automaton/issues/293", + "https://github.com/mpfaffenberger/space_sim/issues/11", + "https://github.com/ghc-cloneRepoStaging-scaAndRenovate/14459_Courtney-Moreno_0702_134635_ghc_gw0_failed/issues/7", + "https://github.com/openmetaearth/me-hub/issues/55", + "https://github.com/Iamgoofball/-tg-station/issues/55", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/266", + "https://github.com/Markp1598M/Helm/issues/1", + "https://github.com/vansh-09/BountyScout/issues/166", + "https://github.com/mergeos-bounties/PlantGuide/issues/23", + "https://github.com/NSPG13/agent-bounties/issues/127", + "https://github.com/charles-openclaw/charles-microbounties/issues/1558", + "https://github.com/ramimbo/mergework/issues/50", + "https://github.com/openmetaearth/me-hub/issues/454", + "https://github.com/charles-openclaw/charles-microbounties/issues/2006", + "https://github.com/mergeos-bounties/Gomi/issues/38", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/40", + "https://github.com/Grainlify/Grainlify-Stellar-Contracts/issues/195", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5669", + "https://github.com/hashgraph/hedera-agent-kit-py/issues/317", + "https://github.com/openmetaearth/me-hub/issues/212", + "https://github.com/ZWISERFIT/zwiserfit-ai-store-manager/issues/10", + "https://github.com/charles-openclaw/charles-microbounties/issues/2045", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3912", "https://github.com/sediman-agent/OpenSkynet/issues/259", - "https://github.com/UnitOneAI/SecuritySkills/issues/1202", - "https://github.com/dephizee/photo_collection/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/2014", - "https://github.com/Kings9595/WaveMilestone/issues/18", - "https://github.com/UnitOneAI/SecuritySkills/issues/1908", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1173", - "https://github.com/Scottcjn/rustchain-bounties/issues/692", - "https://github.com/runxhq/runx/issues/215", - "https://github.com/Scottcjn/Rustchain/issues/6881", - "https://github.com/charles-openclaw/charles-microbounties/issues/830", - "https://github.com/charles-openclaw/charles-microbounties/issues/1540", - "https://github.com/boundlessfi/bounties/issues/212", - "https://github.com/Scottcjn/rustchain-bounties/issues/14104", - "https://github.com/greyw0rks/bountyscout/issues/31", - "https://github.com/AzurTian/OnmyojiAutoScript/issues/170", - "https://github.com/charles-openclaw/charles-microbounties/issues/3402", - "https://github.com/yosemite01/stellar-creator-portfolio/issues/740", - "https://github.com/hspahic-cs/cobblemon-server/issues/200", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/859", - "https://github.com/charles-openclaw/charles-microbounties/issues/1214", - "https://github.com/charles-openclaw/charles-microbounties/issues/2076", - "https://github.com/charles-openclaw/charles-microbounties/issues/1153", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/324", - "https://github.com/charles-openclaw/charles-microbounties/issues/2738", - "https://github.com/charles-openclaw/charles-microbounties/issues/47", - "https://github.com/tine1117/oss-hunter-livefire/issues/1", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5997", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4474", - "https://github.com/charles-openclaw/charles-microbounties/issues/505", - "https://github.com/ruohong2018/ruohong2018.github.io/issues/852", - "https://github.com/Scottcjn/rustchain-bounties/issues/13435", - "https://github.com/charles-openclaw/charles-microbounties/issues/3101", - "https://github.com/nicodevtools/kickama-foxy-trials/issues/15", - "https://github.com/charles-openclaw/charles-microbounties/issues/1463", - "https://github.com/Scottcjn/Rustchain/issues/5697", - "https://github.com/hyperlane-xyz/hyperlane-monorepo/issues/2850", - "https://github.com/johnchampaign/star-wars-rebellion/issues/451", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/917", - "https://github.com/Quid-proquo/Quid/issues/234", - "https://github.com/openmetaearth/me-hub/issues/1247", - "https://github.com/ramimbo/mergework/issues/281", - "https://github.com/Nexussyn/ai-growth-engine/issues/1", - "https://github.com/xevrion-v2/agent-playground/issues/4720", - "https://github.com/Scottcjn/rustchain-bounties/issues/13107", - "https://github.com/cakuki/tidewake/issues/127", - "https://github.com/vansh-09/BountyScout/issues/112", - "https://github.com/charles-openclaw/charles-microbounties/issues/2627", - "https://github.com/ligate-io/ligate-chain/issues/535", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/796", - "https://github.com/Scottcjn/Rustchain/issues/7271", - "https://github.com/souleater06/mineagent/issues/2", - "https://github.com/kcolbchain/stablecoin-toolkit/issues/63", - "https://github.com/openmetaearth/me-hub/issues/1009", - "https://github.com/vansh-09/BountyScout/issues/55", - "https://github.com/Scottcjn/rustchain-bounties/issues/12339", - "https://github.com/UnitOneAI/SecuritySkills/issues/2750", - "https://github.com/UnitOneAI/SecuritySkills/issues/2390", - "https://github.com/charles-openclaw/charles-microbounties/issues/3095", - "https://github.com/Scottcjn/bottube/issues/1324", - "https://github.com/aibtcdev/landing-page/issues/968", - "https://github.com/charles-openclaw/charles-microbounties/issues/583", - "https://github.com/okalldal/lark/issues/275", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/342", - "https://github.com/crewAIInc/crewAI/issues/6263", - "https://github.com/QingXuan2000/MyQxBlog/issues/5", - "https://github.com/charles-openclaw/charles-microbounties/issues/1495", - "https://github.com/loldi/cartright/issues/1", - "https://github.com/ramimbo/mergework/issues/292", - "https://github.com/clowlove/Harmes-House/issues/327", - "https://github.com/Scottcjn/rustchain-bounties/issues/14749", - "https://github.com/3ni8ma/aarushkarak-website/issues/57", - "https://github.com/Jonnyton/Workflow/issues/1109", - "https://github.com/johnchampaign/star-wars-rebellion/issues/414", - "https://github.com/johnchampaign/star-wars-rebellion/issues/334", - "https://github.com/Kings9595/WaveMilestone/issues/24", - "https://github.com/caley-io/marketing/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/2087", - "https://github.com/Scottcjn/rustchain-bounties/issues/14386", - "https://github.com/Kings9595/WaveMilestone/issues/19", - "https://github.com/jcub1011/KnockBox/issues/181", - "https://github.com/SecureBananaLabs/bug-bounty/issues/9548", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/73", - "https://github.com/PhasoraLabs/StellarGrantProtocol/issues/536", - "https://github.com/Scottcjn/rustchain-bounties/issues/13522", - "https://github.com/xevrion-v2/agent-playground/issues/2377", - "https://github.com/himmelblau-idm/himmelblau/issues/1392", - "https://github.com/harnessclaw/harnessclaw/issues/43", - "https://github.com/Scottcjn/rustchain-bounties/issues/13651", - "https://github.com/charles-openclaw/charles-microbounties/issues/661", - "https://github.com/ritik4ever/stellar-bounty-board/issues/237", - "https://github.com/charles-openclaw/charles-microbounties/issues/1021", - "https://github.com/vansh-09/BountyScout/issues/65", - "https://github.com/Scottcjn/rustchain-bounties/issues/12984", - "https://github.com/shaneclarke-whitesource/storybook/issues/22", - "https://github.com/collinsadi/opauque-stellar/issues/447", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2107", - "https://github.com/SolFoundry/solfoundry/issues/826", + "https://github.com/dotnet/announcements/issues/412", + "https://github.com/charles-openclaw/charles-microbounties/issues/1303", + "https://github.com/conduit-protocol/streamFi-sdk/issues/59", + "https://github.com/charles-openclaw/charles-microbounties/issues/118", + "https://github.com/SecureBananaLabs/bug-bounty/issues/9696", + "https://github.com/charles-openclaw/charles-microbounties/issues/180", + "https://github.com/vansh-09/BountyScout/issues/165", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/584", + "https://github.com/KeshavSinghYadavMAQ/sample-testing/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/881", + "https://github.com/JMAN730/VulnClaw/issues/43", + "https://github.com/BountyOnChain/StellarBounty/issues/195", + "https://github.com/SecureBananaLabs/bug-bounty/issues/7123", + "https://github.com/UnitOneAI/SecuritySkills/issues/635", + "https://github.com/vansh-09/BountyScout/issues/98", + "https://github.com/Honest-Protocol/Gitcoin_Metamorphosis/issues/3", + "https://github.com/NSPG13/agent-bounties/issues/169", + "https://github.com/ramimbo/mergework/issues/975", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4142", + "https://github.com/charles-openclaw/charles-microbounties/issues/1939", + "https://github.com/xevrion-v2/agent-playground/issues/6149", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/407", + "https://github.com/Scottcjn/rustchain-bounties/issues/13071", + "https://github.com/RatLoopz/sahidawa-india/issues/797", + "https://github.com/RyderFreeman4Logos/cli-sub-agent/issues/1638", + "https://github.com/charles-openclaw/charles-microbounties/issues/1880", + "https://github.com/connect-boiz/soroban-security-scanner/issues/329", + "https://github.com/Saber5656/openintercom/issues/35", + "https://github.com/Feel-ix-343/markdown-oxide/issues/263", + "https://github.com/duanyytop/agents-radar/issues/1712", + "https://github.com/charles-openclaw/charles-microbounties/issues/1413", + "https://github.com/NicoviGH/manchego-stars/issues/23", + "https://github.com/xevrion-v2/agent-playground/issues/5113", + "https://github.com/Scottcjn/rustchain-bounties/issues/269", + "https://github.com/nextcloud/passman-webextension/issues/315", + "https://github.com/SecureBananaLabs/bug-bounty/issues/8335", + "https://github.com/3ni8ma/aarushkarak-website/issues/58", + "https://github.com/honojs/hono/issues/5006", + "https://github.com/zad111ak-ai/harvest/issues/2", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/191", + "https://github.com/vansh-09/BountyScout/issues/167", + "https://github.com/NSPG13/agent-bounties/issues/251", + "https://github.com/Scottcjn/rustchain-bounties/issues/13830", + "https://github.com/greyw0rks/bountyscout/issues/32", + "https://github.com/jackjin1997/TentOfTrials/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/3086", + "https://github.com/charles-openclaw/charles-microbounties/issues/347", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2847", + "https://github.com/UnitOneAI/SecuritySkills/issues/1166", + "https://github.com/greyw0rks/bountyscout/issues/65", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/118", + "https://github.com/xevrion-v2/agent-playground/issues/7871", + "https://github.com/Grainlify/Grainlify-Stellar-Contracts/issues/213", + "https://github.com/snowdensb/AutoPrompt_demo/issues/25", + "https://github.com/SecureBananaLabs/bug-bounty/issues/9544", + "https://github.com/xevrion-v2/agent-playground/issues/7839", + "https://github.com/cognis-digital/reconforge/issues/2", + "https://github.com/Scottcjn/ardy-director/issues/6", + "https://github.com/bakeronchain/learnvault/issues/1032", + "https://github.com/lobster-trap/Kickama/issues/53", + "https://github.com/Peter7896/zeroeye/issues/4", + "https://github.com/Scottcjn/rustchain-bounties/issues/15297", + "https://github.com/paparazzi/paparazzi/issues/1243", + "https://github.com/Scottcjn/Rustchain/issues/7200", + "https://github.com/mautic/mautic/issues/16243", + "https://github.com/Nobayprotocol/Nobay-Protocol/issues/3", + "https://github.com/Scottcjn/Rustchain/issues/2146", + "https://github.com/openmetaearth/me-hub/issues/241", + "https://github.com/pyrimid-ai/pyrimid/issues/34", + "https://github.com/dwebagents/AgentPipe/issues/134", + "https://github.com/Scottcjn/Rustchain/issues/7492", + "https://github.com/vansh-09/BountyScout/issues/185", + "https://github.com/vansh-09/BountyScout/issues/445", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4877", + "https://github.com/foremetric/foremetric/issues/4", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/213", + "https://github.com/vansh-09/BountyScout/issues/201", + "https://github.com/xevrion-v2/agent-playground/issues/4546", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/98", + "https://github.com/dev-kp-eloper/BountyScout/issues/544", + "https://github.com/jgeraigery/CodeGen/issues/4", + "https://github.com/charles-openclaw/charles-microbounties/issues/923", + "https://github.com/xevrion-v2/agent-playground/issues/6096", + "https://github.com/kimmingul/designmd-pptx/issues/20", + "https://github.com/vansh-09/BountyScout/issues/223", + "https://github.com/Scottcjn/rustchain-bounties/issues/13478", + "https://github.com/zardoy/space-squid/issues/5", + "https://github.com/xxnjms1-code/kickama-prize-lab/issues/2", + "https://github.com/xevrion-v2/agent-playground/issues/6535", + "https://github.com/auscaster/frantic-board/issues/278", + "https://github.com/NSPG13/agent-bounties/issues/220", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/795", + "https://github.com/mautic/mautic/issues/16197", + "https://github.com/cakuki/tidewake/issues/112", + "https://github.com/LightningPiggy/website/issues/10", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/786", + "https://github.com/Ikalus1988/MisakaNet/issues/255", + "https://github.com/charles-openclaw/charles-microbounties/issues/3424", + "https://github.com/mergeos-bounties/PoseGuide/issues/49", + "https://github.com/mergeos-bounties/BeeAR/issues/56", + "https://github.com/BitflowFinance/bitflow/issues/12", + "https://github.com/deepseek-ai/DeepSeek-V3/issues/1411", + "https://github.com/xevrion-v2/agent-playground/issues/6341", + "https://github.com/Replikanti/agentis-core/issues/810", + "https://github.com/Scottcjn/rustchain-bounties/issues/12291", + "https://github.com/fluffels/kubernia/issues/885", + "https://github.com/mergeos-bounties/BeeAR/issues/48", + "https://github.com/Scottcjn/rustchain-bounties/issues/13851", + "https://github.com/boundlessfi/bounties/issues/212", + "https://github.com/Scottcjn/rustchain-bounties/issues/1158", + "https://github.com/Scottcjn/bottube/issues/1359", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/268", + "https://github.com/nicodevtools/kickama-foxy-trials/issues/17", + "https://github.com/Saber5656/gitquest/issues/44", + "https://github.com/xevrion-v2/agent-playground/issues/4630", + "https://github.com/xevrion-v2/agent-playground/issues/5430", + "https://github.com/ramimbo/mergework/issues/799", + "https://github.com/Scottcjn/rustchain-bounties/issues/15045", + "https://github.com/cuentaprueba244w-dotcom/zeroeye/issues/4", + "https://github.com/CTristan/lobotomy-corporation-mods/issues/165", + "https://github.com/charles-openclaw/charles-microbounties/issues/632", + "https://github.com/vansh-09/BountyScout/issues/261", + "https://github.com/mergeos-bounties/mergeos/issues/7", + "https://github.com/UnitOneAI/SecuritySkills/issues/1111", + "https://github.com/charles-openclaw/charles-microbounties/issues/1376", + "https://github.com/SecureBananaLabs/bug-bounty/issues/10911", + "https://github.com/openclaw/openclaw/issues/11829", + "https://github.com/codeboost-tr/zeroeye/issues/5", + "https://github.com/p0s/clankergigs/issues/8", + "https://github.com/mergeos-bounties/Gomi/issues/31", + "https://github.com/organvm/peer-audited--behavioral-blockchain/issues/87", + "https://github.com/Scottcjn/rustchain-bounties/issues/14773", + "https://github.com/Scottcjn/Rustchain/issues/6147", + "https://github.com/greyw0rks/bountyscout/issues/45", + "https://github.com/ussyalfaks/ahjoorxmr-contract/issues/319", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/51", + "https://github.com/Scottcjn/rustchain-bounties/issues/15240", + "https://github.com/xevrion-v2/agent-playground/issues/6579", + "https://github.com/qtop/qtop/issues/358", + "https://github.com/Kibet-JC/nexcare-api/issues/16", + "https://github.com/Scottcjn/rustchain-bounties/issues/14144", + "https://github.com/Reqrefusion/FreeCAD-Documentation-Project/issues/331", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/4", + "https://github.com/ramimbo/mergework/issues/103", + "https://github.com/hyperlane-xyz/hyperlane-monorepo/issues/2851", + "https://github.com/ClankerNation/OpenAgents/issues/172", + "https://github.com/charles-openclaw/charles-microbounties/issues/81", + "https://github.com/AdamOswald/finetuned_diffusion/issues/10", + "https://github.com/charles-openclaw/charles-microbounties/issues/124", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/673", + "https://github.com/vhspace/goldenmcp/issues/64", + "https://github.com/Scottcjn/rustchain-bounties/issues/13964", + "https://github.com/paraloom-labs/paraloom-core/issues/508", + "https://github.com/Scottcjn/rustchain-bounties/issues/12980", + "https://github.com/vansh-09/BountyScout/issues/118", + "https://github.com/Scottcjn/rustchain-bounties/issues/13269", + "https://github.com/Scottcjn/rustchain-bounties/issues/13521", + "https://github.com/Iamgoofball/-tg-station/issues/220", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/514", + "https://github.com/charles-openclaw/charles-microbounties/issues/877", + "https://github.com/charles-openclaw/charles-microbounties/issues/928", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/20", + "https://github.com/tuangel1346/bounty-sentry/issues/1", + "https://github.com/Iamgoofball/-tg-station/issues/53", + "https://github.com/mergeos-bounties/PlantGuide/issues/24", + "https://github.com/kimeisele/agent-village/issues/23", + "https://github.com/atlaslattice/manus-artifacts/issues/189", + "https://github.com/toon-protocol/toon-meta/issues/122", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/3218", + "https://github.com/Scottcjn/langchain-rustchain/issues/1", + "https://github.com/orchestration-agent/AgentOrchestration/issues/535", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/797", + "https://github.com/jaisong123/eleuther-digest/issues/437", + "https://github.com/devs-immortal/Paradise-Lost/issues/902", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1171", + "https://github.com/ritik4ever/stellar-bounty-board/issues/218", + "https://github.com/vllm-project/vllm-omni/issues/5092", + "https://github.com/Scottcjn/rustchain-bounties/issues/15056", + "https://github.com/charles-openclaw/charles-microbounties/issues/1415", + "https://github.com/mpfaffenberger/space_sim/issues/7", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/42", + "https://github.com/UnitOneAI/SecuritySkills/issues/1624", + "https://github.com/StellarLend/Stellarlend-frontend/issues/638", "https://github.com/xevrion-v2/agent-playground/issues/3638", - "https://github.com/SnowfallHD/zeroeye/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/3181", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1128", - "https://github.com/SecureBananaLabs/bug-bounty/issues/8078", - "https://github.com/daddygokings-art/Decentralized-Audit-Transparency-Ledger/issues/34", - "https://github.com/charles-openclaw/charles-microbounties/issues/1429", - "https://github.com/coollabsio/coolify/issues/2346", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4445", - "https://github.com/vansh-09/BountyScout/issues/80", - "https://github.com/lukataylo/Golden-Coffee/issues/4", - "https://github.com/nicodevtools/kickama-foxy-trials/issues/12", - "https://github.com/charles-openclaw/charles-microbounties/issues/1372", - "https://github.com/Scottcjn/rustchain-bounties/issues/12409", - "https://github.com/David1984TK/Bimex/issues/154", - "https://github.com/charles-openclaw/charles-microbounties/issues/927", - "https://github.com/charles-openclaw/charles-microbounties/issues/1208", - "https://github.com/mergemint-mint/mergemint-contracts/issues/327", - "https://github.com/xevrion-v2/agent-playground/issues/3696", - "https://github.com/lobster-trap/TentOfTrials/issues/40", - "https://github.com/lb1192176991-lab/zeroeye/issues/3", - "https://github.com/Yooh-an/agent-rules-auditor/issues/1", - "https://github.com/ReinUrmet/ReconToolkit/issues/8", - "https://github.com/charles-openclaw/charles-microbounties/issues/1582", - "https://github.com/Scottcjn/Rustchain/issues/6404", - "https://github.com/Scottcjn/rustchain-bounties/issues/14036", - "https://github.com/tigerbeetle/viewstamped-replication-made-famous/issues/16", - "https://github.com/honua-io/honua-server/issues/1982", - "https://github.com/LabsCrypt/remitlend/issues/908", - "https://github.com/Scottcjn/rustchain-bounties/issues/13992", - "https://github.com/vansh-09/BountyScout/issues/221", - "https://github.com/UnitOneAI/SecuritySkills/issues/1833", - "https://github.com/OrianaVenture/Randy_Vapok_ValheimMods/issues/117", + "https://github.com/Suncrest-Labs/nester/issues/633", + "https://github.com/WeaponMechanics/WeaponMechanics/issues/233", + "https://github.com/greyw0rks/bountyscout/issues/87", + "https://github.com/greyw0rks/bountyscout/issues/310", + "https://github.com/guorui999/func-hub/issues/1", + "https://github.com/3ni8ma/aarushkarak-website/issues/133", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2965", + "https://github.com/ritik4ever/stellar-bounty-board/issues/249", + "https://github.com/ginderjeremiah/GameServer/issues/1860", + "https://github.com/Scottcjn/rustchain-bounties/issues/15234", + "https://github.com/SAST-UP-STG/SAST-Test-Repo-17d00923-12e2-4204-a626-4159a711924c/issues/56", + "https://github.com/CodeBountyOrg/taskforge-demo/issues/1", + "https://github.com/dungkimtran3d/Traefik/issues/1", + "https://github.com/asaadnashed/bounty-autopilot/issues/6", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/745", + "https://github.com/harmoniqs/Piccolo.jl/issues/198", + "https://github.com/stxtxm/bitbrawler/issues/426", + "https://github.com/charles-openclaw/charles-microbounties/issues/1467", + "https://github.com/Scottcjn/rustchain-bounties/issues/13952", + "https://github.com/RonenSdemocorp-mend/AutoGPT/issues/22", + "https://github.com/SirPepperPot/EnhancedOverhaulRemixVersion/issues/11", + "https://github.com/Informant254/Nova-arsenal/issues/20", + "https://github.com/Scottcjn/rustchain-bounties/issues/16258", + "https://github.com/Scottcjn/rustchain-bounties/issues/13052", + "https://github.com/Scottcjn/rustchain-bounties/issues/15233", "https://github.com/charles-openclaw/charles-microbounties/issues/120", - "https://github.com/charles-openclaw/charles-microbounties/issues/855", - "https://github.com/charles-openclaw/charles-microbounties/issues/10", - "https://github.com/Axionvera/axionvera-network/issues/183", - "https://github.com/warpspeedopen-source/warpspeed-bounties/issues/7", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/345", - "https://github.com/Scottcjn/beacon-skill/issues/140", - "https://github.com/Scottcjn/rustchain-bounties/issues/14288", - "https://github.com/charles-openclaw/charles-microbounties/issues/3379", - "https://github.com/charles-openclaw/charles-microbounties/issues/1280", - "https://github.com/highlight/highlight/issues/4225", - "https://github.com/okalldal/lark/issues/270", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/3213", - "https://github.com/BountyOnChain/StellarBounty/issues/156", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4866", - "https://github.com/Scottcjn/rustchain-bounties/issues/13082", - "https://github.com/thodel/agentic_historian/issues/71", - "https://github.com/boundlessfi/boundless/issues/603", - "https://github.com/ClankerNation/OpenAgents/issues/174", - "https://github.com/Soroban-Cookbook/Soroban-Cookbook-/issues/639", - "https://github.com/Xela112233/Derpack-X/issues/90", - "https://github.com/joserivasgt/panama-me/issues/246", - "https://github.com/mergemint-mint/mergemint-contracts/issues/307", - "https://github.com/yashiel/Sveltekit-Directus-Caprover/issues/43", - "https://github.com/NirShaharabani/python-mini-projects/issues/36", - "https://github.com/Scottcjn/rustchain-bounties/issues/12290", - "https://github.com/Scottcjn/rustchain-bounties/issues/14076", - "https://github.com/charles-openclaw/charles-microbounties/issues/1310", - "https://github.com/UnitOneAI/SecuritySkills/issues/543", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4204", - "https://github.com/Scottcjn/Rustchain/issues/7238", - "https://github.com/Ikalus1988/MisakaNet/issues/145", - "https://github.com/Scottcjn/rustchain-bounties/issues/14039", - "https://github.com/charles-openclaw/charles-microbounties/issues/504", - "https://github.com/vansh-09/BountyScout/issues/81", - "https://github.com/ramimbo/mergework/issues/791", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4415", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/30", - "https://github.com/xevrion-v2/agent-playground/issues/5135", - "https://github.com/SecureBananaLabs/bug-bounty/issues/8792", - "https://github.com/snowdensb/microsoft-teams-apps-company-communicator/issues/101", + "https://github.com/charles-openclaw/charles-microbounties/issues/1113", + "https://github.com/ClankerNation/OpenAgents/issues/14", + "https://github.com/Build-Africa-DAO/baraza-protocol/issues/27", + "https://github.com/Scottcjn/rustchain-bounties/issues/13993", + "https://github.com/xevrion-v2/agent-playground/issues/5978", + "https://github.com/UnitOneAI/SecuritySkills/issues/2016", + "https://github.com/charles-openclaw/charles-microbounties/issues/2", + "https://github.com/BountyOnChain/StellarBounty/issues/411", + "https://github.com/vansh-09/BountyScout/issues/226", + "https://github.com/ramimbo/mergework/issues/654", + "https://github.com/xevrion-v2/agent-playground/issues/5797", + "https://github.com/space-wizards/space-station-14/issues/44487", + "https://github.com/mergeos-bounties/NeraJob/issues/37", + "https://github.com/sujankim/jarvis-ai-platform/issues/91", + "https://github.com/claude-builders-bounty/claude-builders-bounty/issues/521", + "https://github.com/Scottcjn/rustchain-bounties/issues/15145", + "https://github.com/UnitOneAI/SecuritySkills/issues/1913", + "https://github.com/SmartDropLabs/smartdrop-backend/issues/97", + "https://github.com/vansh-09/BountyScout/issues/8", + "https://github.com/vansh-09/BountyScout/issues/15", + "https://github.com/lk251/agent-bounty-market/issues/24", + "https://github.com/UnitOneAI/SecuritySkills/issues/1820", + "https://github.com/dwebagents/AgentPipe/issues/95", + "https://github.com/UnitOneAI/SecuritySkills/issues/1528", + "https://github.com/OpenRune/OpenRune-Server/issues/116", + "https://github.com/charles-openclaw/charles-microbounties/issues/603", + "https://github.com/SRM-Test-DEV/test-56/issues/4084", + "https://github.com/a-organvm/peer-audited--behavioral-blockchain/issues/152", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/7", + "https://github.com/openmetaearth/me-hub/issues/1253", + "https://github.com/Carbon-Ledger-stellar/carbonledger-bounty/issues/6", + "https://github.com/Scottcjn/rustchain-bounties/issues/13966", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3091", + "https://github.com/auscaster/frantic-board/issues/289", + "https://github.com/Scottcjn/rustchain-bounties/issues/14383", + "https://github.com/aibtcdev/aibtc-mcp-server/issues/613", + "https://github.com/BountyOnChain/StellarBounty/issues/342", + "https://github.com/greyw0rks/bountyscout/issues/30", + "https://github.com/SecureBananaLabs/bug-bounty/issues/743", + "https://github.com/Scottcjn/Rustchain/issues/7794", + "https://github.com/midnightntwrk/contributor-hub/issues/463", + "https://github.com/mergeos-bounties/NeraJob/issues/11", + "https://github.com/GoodDollar/GoodWidget/issues/109", + "https://github.com/charles-openclaw/charles-microbounties/issues/4", + "https://github.com/ssdeanx/a2a-agentkit/issues/9", + "https://github.com/Scottcjn/Rustchain/issues/6404", + "https://github.com/charles-openclaw/charles-microbounties/issues/958", + "https://github.com/Merit-Systems/x402scan/issues/1037", + "https://github.com/TerraTectra/autotools-hub/issues/71", + "https://github.com/Kings9595/WaveMilestone/issues/24", + "https://github.com/profullstack/sh1pt/issues/752", + "https://github.com/mergeos-bounties/BeeAR/issues/52", + "https://github.com/charles-openclaw/charles-microbounties/issues/1207", + "https://github.com/xevrion-v2/agent-playground/issues/8242", + "https://github.com/ramimbo/mergework/issues/228", + "https://github.com/ClankerNation/OpenAgents/issues/177", + "https://github.com/Jonnyton/Workflow/issues/961", + "https://github.com/shanselman/TinyToolTown/issues/674", + "https://github.com/charles-openclaw/charles-microbounties/issues/1214", + "https://github.com/knowall-ai/zaplie-bot/issues/189", + "https://github.com/3ni8ma/aarushkarak-website/issues/84", + "https://github.com/vansh-09/BountyScout/issues/89", + "https://github.com/UnitOneAI/SecuritySkills/issues/1912", + "https://github.com/UnsafeLabs/RFC-5322/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/849", + "https://github.com/UnitOneAI/SecuritySkills/issues/2419", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/619", + "https://github.com/dev-kp-eloper/BountyScout/issues/440", + "https://github.com/Scottcjn/bottube/issues/1379", + "https://github.com/openmetaearth/me-hub/issues/1199", + "https://github.com/xevrion-v2/agent-playground/issues/5431", + "https://github.com/coopfinance/coopfin-api/issues/6", + "https://github.com/dev-kp-eloper/BountyScout/issues/420", + "https://github.com/charles-openclaw/charles-microbounties/issues/1373", + "https://github.com/xevrion-v2/agent-playground/issues/6286", + "https://github.com/Scottcjn/rustchain-bounties/issues/15305", + "https://github.com/Morikemuri/stutter-analyzer/issues/155", + "https://github.com/monk-io/monk-plugin/issues/56", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/23", + "https://github.com/johnchampaign/star-wars-rebellion/issues/189", + "https://github.com/gambit/gambit/issues/760", + "https://github.com/vansh-09/BountyScout/issues/418", + "https://github.com/charles-openclaw/charles-microbounties/issues/3413", + "https://github.com/open5gs/open5gs/issues/4694", + "https://github.com/charles-openclaw/charles-microbounties/issues/1159", + "https://github.com/kleros/scout-snap/issues/97", + "https://github.com/greyw0rks/bountyscout/issues/16", + "https://github.com/RatLoopz/sahidawa-india/issues/637", + "https://github.com/UnitOneAI/SecuritySkills/issues/1113", + "https://github.com/xevrion-v2/agent-playground/issues/4859", + "https://github.com/UnitOneAI/SecuritySkills/issues/1004", + "https://github.com/xevrion-v2/agent-playground/issues/4786", + "https://github.com/charles-openclaw/charles-microbounties/issues/2738", + "https://github.com/dev-kp-eloper/BountyScout/issues/400", + "https://github.com/aibtcdev/landing-page/issues/968", + "https://github.com/mergemint-mint/mergemint-contracts/issues/289", + "https://github.com/Scottcjn/rustchain-bounties/issues/15792", + "https://github.com/boundlessfi/boundless/issues/597", + "https://github.com/charles-openclaw/charles-microbounties/issues/3076", + "https://github.com/xevrion-v2/agent-playground/issues/5481", + "https://github.com/joserivasgt/panama-me/issues/131", + "https://github.com/Jonnyton/Workflow/issues/1049", + "https://github.com/Scottcjn/rustchain-bounties/issues/14551", + "https://github.com/Proxyfan/Proxyfan/issues/929", + "https://github.com/freedom-winds/BountyScout/issues/174", + "https://github.com/Jonnyton/Workflow/issues/1130", + "https://github.com/Scottcjn/rustchain-bounties/issues/15296", + "https://github.com/charles-openclaw/charles-microbounties/issues/663", + "https://github.com/devs-immortal/Paradise-Lost/issues/904", + "https://github.com/Scottcjn/rustchain-bounties/issues/13992", + "https://github.com/charles-openclaw/charles-microbounties/issues/1360", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/11", + "https://github.com/Scottcjn/rustchain-bounties/issues/15790", + "https://github.com/xevrion-v2/agent-playground/issues/6467", "https://github.com/ritesh-1918/HELPDESK.AI/issues/2964", - "https://github.com/vansh-09/BountyScout/issues/101", - "https://github.com/lk251/agent-bounty-market/issues/25", - "https://github.com/profullstack/c0upons/issues/37", - "https://github.com/ramimbo/mergework/issues/298", - "https://github.com/Scottcjn/rustchain-bounties/issues/13523", - "https://github.com/charles-openclaw/charles-microbounties/issues/826", - "https://github.com/charles-openclaw/charles-microbounties/issues/642", - "https://github.com/kellymusk/Aframp-backend/issues/562", - "https://github.com/xevrion-v2/agent-playground/issues/4702", - "https://github.com/charles-openclaw/charles-microbounties/issues/1278", - "https://github.com/dwebagents/AgentPipe/issues/1663", - "https://github.com/Scottcjn/rustchain-bounties/issues/14753", - "https://github.com/vansh-09/BountyScout/issues/87", - "https://github.com/xevrion-v2/agent-playground/issues/3704", - "https://github.com/Jonnyton/Workflow/issues/1168", - "https://github.com/charles-openclaw/charles-microbounties/issues/1135", - "https://github.com/jgeraigery/infinite-wish-board/issues/21", - "https://github.com/johnchampaign/star-wars-rebellion/issues/235", - "https://github.com/ramimbo/mergework/issues/38", - "https://github.com/Scottcjn/vintage-voice/issues/180", - "https://github.com/organvm/peer-audited--behavioral-blockchain/issues/153", - "https://github.com/vansh-09/BountyScout/issues/156", - "https://github.com/Scottcjn/rustchain-bounties/issues/13543", - "https://github.com/blemaire-wavetel/AutoPrompt/issues/37", - "https://github.com/openmetaearth/me-hub/issues/1084", + "https://github.com/monk-io/monk-plugin/issues/121", + "https://github.com/xevrion-v2/agent-playground/issues/2827", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/865", + "https://github.com/NSPG13/agent-bounties/issues/333", + "https://github.com/claude-builders-bounty/claude-builders-bounty/issues/3128", + "https://github.com/UnitOneAI/SecuritySkills/issues/134", + "https://github.com/HubDApp/Dongle-Smartcontract/issues/367", + "https://github.com/organvm/peer-audited--behavioral-blockchain/issues/81", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/586", + "https://github.com/mergeos-bounties/Loru/issues/248", + "https://github.com/MM0x02/RSS-Push/issues/576", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4204", + "https://github.com/Scottcjn/rustchain-bounties/issues/13664", + "https://github.com/johnchampaign/star-wars-rebellion/issues/389", + "https://github.com/xevrion-v2/agent-playground/issues/8073", + "https://github.com/123a-bcd/nailstorm-bounty-forge-358/issues/14", + "https://github.com/charles-openclaw/charles-microbounties/issues/1518", + "https://github.com/Scottcjn/rustchain-bounties/issues/13460", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3384", + "https://github.com/mergemint-mint/mergemint-contracts/issues/241", + "https://github.com/vansh-09/BountyScout/issues/311", + "https://github.com/xevrion-v2/agent-playground/issues/6970", + "https://github.com/greyw0rks/bountyscout/issues/69", + "https://github.com/Scottcjn/ram-coffers/issues/45", + "https://github.com/Ikalus1988/MisakaNet/issues/535", + "https://github.com/mergeos-bounties/PlantGuide/issues/176", + "https://github.com/charles-openclaw/charles-microbounties/issues/37", + "https://github.com/Jonnyton/Workflow/issues/1132", + "https://github.com/gitgig-io/bounties/issues/18", + "https://github.com/Replikanti/agentis-colonies/issues/1469", + "https://github.com/SoroLabs/SoroTask/issues/842", + "https://github.com/Scottcjn/rustchain-bounties/issues/14073", + "https://github.com/UnitOneAI/SecuritySkills/issues/2452", + "https://github.com/openmetaearth/me-hub/issues/907", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/292", + "https://github.com/xevrion-v2/agent-playground/issues/3698", + "https://github.com/Scottcjn/rustchain-bounties/issues/15789", "https://github.com/ritesh-1918/HELPDESK.AI/issues/2957", - "https://github.com/foxyManTou/kickama-foxy-trials/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/856", - "https://github.com/Scottcjn/rustchain-bounties/issues/429", - "https://github.com/charles-openclaw/charles-microbounties/issues/1896", - "https://github.com/Jagadeeshftw/grainlify/issues/1288", - "https://github.com/charles-openclaw/charles-microbounties/issues/815", - "https://github.com/Scottcjn/rustchain-bounties/issues/14097", - "https://github.com/Scottcjn/rustchain-bounties/issues/2798", - "https://github.com/charles-openclaw/charles-microbounties/issues/1448", - "https://github.com/CTristan/lobotomy-corporation-mods/issues/165", - "https://github.com/charles-openclaw/charles-microbounties/issues/2015", - "https://github.com/GOF2BountyBot/BountyBot-Reborn-SamX/issues/20", - "https://github.com/vansh-09/BountyScout/issues/106", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2853", - "https://github.com/Imaginary-Horizons-Productions/BountyBot/issues/280", - "https://github.com/unjs/defu/issues/175", - "https://github.com/Scottcjn/rustchain-bounties/issues/303", - "https://github.com/charles-openclaw/charles-microbounties/issues/2199", - "https://github.com/charles-openclaw/charles-microbounties/issues/1557", - "https://github.com/COMMENCINGTHESCOURGE/erdos-straus-solver/issues/3", - "https://github.com/auscaster/frantic-board/issues/174", - "https://github.com/charles-openclaw/charles-microbounties/issues/355", - "https://github.com/charles-openclaw/charles-microbounties/issues/666", - "https://github.com/Scottcjn/Rustchain/issues/6899", - "https://github.com/charles-openclaw/charles-microbounties/issues/2839", - "https://github.com/Scottcjn/Rustchain/issues/6793", - "https://github.com/UnitOneAI/SecuritySkills/issues/1056", - "https://github.com/tari-project/universe/issues/3299", - "https://github.com/xevrion-v2/agent-playground/issues/5075", - "https://github.com/auscaster/frantic-board/issues/202", - "https://github.com/Scottcjn/rustchain-bounties/issues/13382", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4142", - "https://github.com/charles-openclaw/charles-microbounties/issues/883", - "https://github.com/auscaster/frantic-board/issues/76", - "https://github.com/hugh-mend/npmtest/issues/9", - "https://github.com/charles-openclaw/charles-microbounties/issues/3098", - "https://github.com/toon-protocol/toon-meta/issues/122", - "https://github.com/UnitOneAI/SecuritySkills/issues/2105", - "https://github.com/charles-openclaw/charles-microbounties/issues/53", - "https://github.com/auscaster/frantic-board/issues/94", - "https://github.com/tscircuit/file-server/issues/5", - "https://github.com/Grainlify/Grainlify-Stellar-Contracts/issues/104", - "https://github.com/nicodevtools/kickama-foxy-trials/issues/6", - "https://github.com/Scottcjn/rustchain-bounties/issues/12354", - "https://github.com/cyrilawoyemi99-max/owockibot-bounty-sync-/issues/1", - "https://github.com/Scottcjn/rustchain-bounties/issues/13537", - "https://github.com/auscaster/frantic-board/issues/146", - "https://github.com/amnottdevv/AtDork/issues/7", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2959", - "https://github.com/Freeuni-OOP/final-project-gitbounty/issues/25", - "https://github.com/Scottcjn/rustchain-bounties/issues/14070", - "https://github.com/charles-openclaw/charles-microbounties/issues/1129", - "https://github.com/fluxerapp/fluxer-meta/issues/2", - "https://github.com/cyl19970726/Code3-Workspace/issues/32", - "https://github.com/yeheskieltame/claudelance/issues/546", - "https://github.com/xlabtg/wallet-contract/issues/1", - "https://github.com/ritik4ever/stellar-bounty-board/issues/211", - "https://github.com/charles-openclaw/charles-microbounties/issues/3424", - "https://github.com/shadow6427/AwesomeGesture/issues/1", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2963", - "https://github.com/connect-boiz/soroban-security-scanner/issues/334", - "https://github.com/Scottcjn/rustchain-bounties/issues/9768", - "https://github.com/charles-openclaw/charles-microbounties/issues/1193", - "https://github.com/lobster-trap/zeroeye/issues/89", - "https://github.com/BountyOnChain/StellarBounty/issues/161", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1369", - "https://github.com/Ap6pack/asm-cheatsheet/issues/5", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/910", - "https://github.com/auscaster/frantic-board/issues/65", - "https://github.com/UnitOneAI/SecuritySkills/issues/67", - "https://github.com/Jonnyton/Workflow/issues/1050", - "https://github.com/Scottcjn/rustchain-bounties/issues/12429", - "https://github.com/greyw0rks/bountyscout/issues/63", - "https://github.com/asaadnashed/bounty-autopilot/issues/16", - "https://github.com/UnitOneAI/SecuritySkills/issues/1910", - "https://github.com/Scottcjn/rustchain-bounties/issues/12232", - "https://github.com/Scottcjn/Rustchain/issues/7257", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2885", - "https://github.com/charles-openclaw/charles-microbounties/issues/1339", - "https://github.com/Scottcjn/Rustchain/issues/6750", + "https://github.com/vansh-09/BountyScout/issues/52", + "https://github.com/zhouyuhechuan/agents-radar/issues/249", + "https://github.com/vansh-09/BountyScout/issues/468", + "https://github.com/charles-openclaw/charles-microbounties/issues/934", + "https://github.com/dlbnco/issues.cash/issues/42", + "https://github.com/charles-openclaw/charles-microbounties/issues/1365", + "https://github.com/charles-openclaw/charles-microbounties/issues/3096", + "https://github.com/mergeos-bounties/Loru/issues/236", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/832", + "https://github.com/SecureBananaLabs/bug-bounty/issues/8078", + "https://github.com/charles-openclaw/charles-microbounties/issues/448", + "https://github.com/charles-openclaw/charles-microbounties/issues/3093", + "https://github.com/relayhop/sn-monetization-runtime/issues/197", + "https://github.com/Scottcjn/rustchain-bounties/issues/13254", + "https://github.com/mswell/bountybrain/issues/1", + "https://github.com/jimmieklein2013/NATS-Server/issues/1", + "https://github.com/avinashkamat48/avinashkamat48/issues/2", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/207", + "https://github.com/greyw0rks/bountyscout/issues/25", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/361", + "https://github.com/xevrion-v2/agent-playground/issues/5065", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/818", + "https://github.com/Scottcjn/rustchain-bounties/issues/15075", + "https://github.com/3ni8ma/aarushkarak-website/issues/115", + "https://github.com/vansh-09/BountyScout/issues/299", + "https://github.com/Scottcjn/rustchain-bounties/issues/16255", + "https://github.com/jaisong123/eleuther-digest/issues/422", + "https://github.com/picsoritdidnthappen/poidh-app/issues/1216", + "https://github.com/mergeos-bounties/gazebo-mcp/issues/24", + "https://github.com/Scottcjn/rustchain-bounties/issues/12472", + "https://github.com/Scottcjn/rustchain-bounties/issues/14015", + "https://github.com/JSONbored/gittensory/issues/159", + "https://github.com/GHCbflam1/RailsGoat/issues/10", + "https://github.com/mergeos-bounties/HIRI/issues/80", + "https://github.com/xoufygqamm4/gocron/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/20", + "https://github.com/RatLoopz/sahidawa-india/issues/2660", + "https://github.com/relayhop/sn-monetization-runtime/issues/192", + "https://github.com/sponsorkit/sponsorkit.io/issues/70", + "https://github.com/Scottcjn/rustchain-bounties/issues/14174", + "https://github.com/Scottcjn/rustchain-bounties/issues/15025", + "https://github.com/xevrion-v2/agent-playground/issues/5722", + "https://github.com/GabrielGLevine/wandering-inn-rpg/issues/219", + "https://github.com/Iamgoofball/-tg-station/issues/110", + "https://github.com/NSPG13/agent-bounties/issues/527", + "https://github.com/mergeos-bounties/PlantGuide/issues/46", + "https://github.com/johnchampaign/star-wars-rebellion/issues/582", + "https://github.com/moorcheh-ai/memanto/issues/1609", + "https://github.com/charles-openclaw/charles-microbounties/issues/2170", + "https://github.com/Scottcjn/rustchain-bounties/issues/13226", + "https://github.com/soroban-tooling/soroban-keeper-network/issues/24", + "https://github.com/charles-openclaw/charles-microbounties/issues/3095", + "https://github.com/NSPG13/agent-bounties/issues/276", + "https://github.com/mergeos-bounties/NokaMan/issues/58", + "https://github.com/relayhop/sn-monetization-runtime/issues/202", + "https://github.com/auscaster/frantic-board/issues/192", + "https://github.com/yarsa/nepal-compliance/issues/265", + "https://github.com/ZcashCommunityGrants/zcashcommunitygrants/issues/349", + "https://github.com/vansh-09/BountyScout/issues/235", + "https://github.com/mergeos-bounties/Loru/issues/235", + "https://github.com/charles-openclaw/charles-microbounties/issues/2171", + "https://github.com/vansh-09/BountyScout/issues/26", "https://github.com/xevrion-v2/agent-playground/issues/4864", "https://github.com/ClankerNation/OpenAgents/issues/176", - "https://github.com/thaohuynh14zc/GORM/issues/1", - "https://github.com/Plasius-LTD/player-system/issues/6", - "https://github.com/ramimbo/mergework/issues/570", - "https://github.com/JohnGao818/agents-radar/issues/130", - "https://github.com/gibwork/gibwork-website/issues/130", - "https://github.com/Scottcjn/rustchain-bounties/issues/12865", - "https://github.com/Mahopanda/NanoSwarm/issues/1", - "https://github.com/UnitOneAI/SecuritySkills/issues/441", - "https://github.com/Scottcjn/bottube/issues/1383", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/764", - "https://github.com/moorcheh-ai/memanto/issues/540", - "https://github.com/vansh-09/BountyScout/issues/107", - "https://github.com/xevrion-v2/agent-playground/issues/2831", - "https://github.com/awinogradov/code-assistants/issues/318", - "https://github.com/charles-openclaw/charles-microbounties/issues/393", - "https://github.com/charles-openclaw/charles-microbounties/issues/1198", - "https://github.com/Trustless-Work/trustlesswork-viewer/issues/65", - "https://github.com/jclee941/bug/issues/310", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3384", - "https://github.com/pollar-xyz/pollar-crowdfunding-template/issues/1", - "https://github.com/openmetaearth/me-hub/issues/84", - "https://github.com/lablab-ai/community-content/issues/462", - "https://github.com/openmetaearth/me-hub/issues/398", - "https://github.com/openmetaearth/me-hub/issues/1067", - "https://github.com/ramimbo/mergework/issues/647", - "https://github.com/xevrion-v2/agent-playground/issues/805", - "https://github.com/vansh-09/BountyScout/issues/148", - "https://github.com/xevrion-v2/agent-playground/issues/3711", - "https://github.com/charles-openclaw/charles-microbounties/issues/3076", - "https://github.com/ritik4ever/stellar-bounty-board/issues/372", - "https://github.com/aibtcdev/landing-page/issues/896", - "https://github.com/charles-openclaw/charles-microbounties/issues/1081", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/130", - "https://github.com/123a-bcd/zeroeye/issues/1", - "https://github.com/HutchyBen/maifetch/issues/1", - "https://github.com/Scottcjn/rustchain-bounties/issues/12579", - "https://github.com/SecureBananaLabs/bug-bounty/issues/6882", - "https://github.com/furiaz/MMOPartySimulator/issues/493", - "https://github.com/rodrickparker11/TiKV/issues/1", - "https://github.com/greyw0rks/bountyscout/issues/126", - "https://github.com/ritik4ever/stellar-bounty-board/issues/244", - "https://github.com/charles-openclaw/charles-microbounties/issues/1005", - "https://github.com/Scottcjn/rustchain-bounties/issues/38", - "https://github.com/charles-openclaw/charles-microbounties/issues/3121", - "https://github.com/ClankerNation/OpenAgents/issues/11", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1146", - "https://github.com/openmetaearth/me-hub/issues/94", - "https://github.com/charles-openclaw/charles-microbounties/issues/388", - "https://github.com/vansh-09/BountyScout/issues/78", - "https://github.com/greyw0rks/bountyscout/issues/16", - "https://github.com/charles-openclaw/charles-microbounties/issues/1595", - "https://github.com/xevrion-v2/agent-playground/issues/4782", - "https://github.com/charles-openclaw/charles-microbounties/issues/3406", - "https://github.com/Scottcjn/rustchain-bounties/issues/13628", - "https://github.com/charles-openclaw/charles-microbounties/issues/2049", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/761", - "https://github.com/Blue-Kollar/Blue-Collar/issues/593", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/822", - "https://github.com/charles-openclaw/charles-microbounties/issues/1377", - "https://github.com/vansh-09/BountyScout/issues/159", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4523", - "https://github.com/charles-openclaw/charles-microbounties/issues/1348", - "https://github.com/Scottcjn/bottube/issues/1378", - "https://github.com/Scottcjn/rustchain-bounties/issues/12890", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/756", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3929", - "https://github.com/AlienScroll78/vesting-cliff-drip-stream/issues/81", - "https://github.com/xevrion-v2/agent-playground/issues/5077", - "https://github.com/charles-openclaw/charles-microbounties/issues/1485", - "https://github.com/djjrip/kickama-cash-grab-hacks/issues/4", - "https://github.com/Ikalus1988/MisakaNet/issues/257", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5671", - "https://github.com/charles-openclaw/charles-microbounties/issues/417", - "https://github.com/fluxerapp/fluxer-meta/issues/9", - "https://github.com/Daisuke134/anicca/issues/745", - "https://github.com/capofficial/client/issues/29", - "https://github.com/charles-openclaw/charles-microbounties/issues/3133", - "https://github.com/Scottcjn/rustchain-bounties/issues/14189", - "https://github.com/hoodie/notify-rust/issues/186", - "https://github.com/charles-openclaw/charles-microbounties/issues/2229", - "https://github.com/Scottcjn/rustchain-bounties/issues/13200", - "https://github.com/charles-openclaw/charles-microbounties/issues/1148", - "https://github.com/dadadave80/lattice/issues/8", - "https://github.com/lissy93/bug-bounties/issues/135", - "https://github.com/Scottcjn/rustchain-bounties/issues/292", - "https://github.com/motioneye-project/motioneye/issues/3299", - "https://github.com/charles-openclaw/charles-microbounties/issues/1937", - "https://github.com/tinyhumansai/openhuman/issues/3853", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1157", - "https://github.com/DimaMend/ChuanhuChatGPT/issues/7", - "https://github.com/Scottcjn/rustchain-bounties/issues/12866", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2949", + "https://github.com/johnchampaign/star-wars-rebellion/issues/202", + "https://github.com/nicodevtools/kickama-foxy-trials/issues/9", + "https://github.com/IndiaCodex/IndiaCodex-2026/issues/43", + "https://github.com/vansh-09/BountyScout/issues/446", + "https://github.com/ramimbo/mergework/issues/785", + "https://github.com/heathivorjocelyn6/resty/issues/1", + "https://github.com/xevrion-v2/agent-playground/issues/5795", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1164", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/649", + "https://github.com/ramimbo/mergework/issues/163", + "https://github.com/auscaster/frantic-board/issues/161", + "https://github.com/RatLoopz/sahidawa-india/issues/501", + "https://github.com/ruohong2018/ruohong2018.github.io/issues/1261", + "https://github.com/AgesEmpire/StellarSwipe-FrontEnd/issues/442", + "https://github.com/charles-openclaw/charles-microbounties/issues/1417", + "https://github.com/mergeos-bounties/HIRI/issues/36", + "https://github.com/vansh-09/BountyScout/issues/191", + "https://github.com/kernel-panic96/test-repo-local/issues/2", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2526", + "https://github.com/ramimbo/mergework/issues/800", + "https://github.com/UnitOneAI/SecuritySkills/issues/1112", + "https://github.com/mautic/mautic/issues/16036", + "https://github.com/Xoulomon/Stellar-Save/issues/1175", + "https://github.com/charles-openclaw/charles-microbounties/issues/1213", + "https://github.com/charles-openclaw/charles-microbounties/issues/1687", + "https://github.com/auscaster/frantic-board/issues/106", + "https://github.com/Scottcjn/Rustchain/issues/1438", "https://github.com/ValveSoftware/Dota2-Gameplay/issues/31008", - "https://github.com/charles-openclaw/charles-microbounties/issues/1670", - "https://github.com/openmetaearth/me-hub/issues/246", - "https://github.com/xevrion-v2/agent-playground/issues/3861", - "https://github.com/1Hive/gardens-v2/issues/928", - "https://github.com/bazelbuild/bazel-central-registry/issues/1278", - "https://github.com/kcolbchain/erc721-ai/issues/31", - "https://github.com/Scottcjn/rustchain-bounties/issues/14277", - "https://github.com/xevrion-v2/agent-playground/issues/4186", - "https://github.com/charles-openclaw/charles-microbounties/issues/3097", - "https://github.com/ichabodcole/spellbook/issues/29", - "https://github.com/Scottcjn/rustchain-bounties/issues/14069", - "https://github.com/vllm-project/vllm-omni/issues/4442", - "https://github.com/emdash-cms/emdash/issues/993", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2960", - "https://github.com/Elyonar/einvoice-go/issues/1", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3378", - "https://github.com/xevrion-v2/agent-playground/issues/2394", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/755", - "https://github.com/Scottcjn/rustchain-bounties/issues/13737", - "https://github.com/charles-openclaw/charles-microbounties/issues/3351", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/840", - "https://github.com/charles-openclaw/charles-microbounties/issues/958", - "https://github.com/charles-openclaw/charles-microbounties/issues/370", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2527", - "https://github.com/Scottcjn/rustchain-bounties/issues/378", - "https://github.com/TauCetiStation/TauCetiClassic/issues/14916", - "https://github.com/wintermeyer/vutuv/issues/657", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/70", - "https://github.com/commaai/opendbc/issues/3426", - "https://github.com/mpfaffenberger/space_sim/issues/112", - "https://github.com/devs-immortal/Paradise-Lost/issues/885", - "https://github.com/a-organvm/peer-audited--behavioral-blockchain/issues/151", - "https://github.com/UnitOneAI/SecuritySkills/issues/2099", - "https://github.com/Scottcjn/rustchain-bounties/issues/13480", - "https://github.com/Monkestation/Vanderlin/issues/6626", - "https://github.com/charles-openclaw/charles-microbounties/issues/1405", - "https://github.com/sneakers-the-rat/ImportantCode/issues/8", - "https://github.com/charles-openclaw/charles-microbounties/issues/2177", - "https://github.com/Scottcjn/Rustchain/issues/7513", - "https://github.com/quachminh11/VictoriaMetrics/issues/1", - "https://github.com/3ni8ma/aarushkarak-website/issues/36", - "https://github.com/charles-openclaw/charles-microbounties/issues/115", - "https://github.com/openmetaearth/me-hub/issues/301", - "https://github.com/a-organvm/peer-audited--behavioral-blockchain/issues/149", - "https://github.com/charles-openclaw/charles-microbounties/issues/576", - "https://github.com/Creditra/Creditra-Contracts/issues/636", - "https://github.com/UnitOneAI/SecuritySkills/issues/2492", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/45", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2850", + "https://github.com/openmetaearth/me-hub/issues/1009", + "https://github.com/codegraphtheory/hermes-profile-template/issues/91", + "https://github.com/charles-openclaw/charles-microbounties/issues/3123", + "https://github.com/Scottcjn/rustchain-bounties/issues/13285", + "https://github.com/charles-openclaw/charles-microbounties/issues/1943", + "https://github.com/Scottcjn/rustchain-bounties/issues/15381", + "https://github.com/shaneclarke-whitesource/storybook/issues/22", + "https://github.com/CodeBountyOrg/taskforge-demo/issues/6", + "https://github.com/greyw0rks/bountyscout/issues/202", + "https://github.com/Monkestation/Monkestation2.0/issues/12096", + "https://github.com/ClankerNation/OpenAgents/issues/171", + "https://github.com/ramimbo/mergework/issues/569", + "https://github.com/charles-openclaw/charles-microbounties/issues/1423", + "https://github.com/mergeos-bounties/NeraJob/issues/12", + "https://github.com/greyw0rks/bountyscout/issues/111", + "https://github.com/mjoibh/Qw/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/2228", + "https://github.com/charles-openclaw/charles-microbounties/issues/1379", + "https://github.com/GautamKumarOffical/zeroeye/issues/2", + "https://github.com/NSPG13/agent-bounties/issues/1", + "https://github.com/bazelbuild/bazel-central-registry/issues/5722", + "https://github.com/cuentaprueba244w-dotcom/zeroeye/issues/5", + "https://github.com/johnchampaign/star-wars-rebellion/issues/140", + "https://github.com/charles-openclaw/charles-microbounties/issues/1427", + "https://github.com/xevrion-v2/agent-playground/issues/11", + "https://github.com/vansh-09/BountyScout/issues/419", + "https://github.com/charles-openclaw/charles-microbounties/issues/1468", + "https://github.com/usetrmnl/trmnl-firmware/issues/285", + "https://github.com/ClankerNation/OpenAgents/issues/128", + "https://github.com/Scottcjn/rustchain-bounties/issues/15320", + "https://github.com/effekseer/EffekseerForWebGL/issues/113", + "https://github.com/UnitOneAI/SecuritySkills/issues/2254", + "https://github.com/UnitOneAI/SecuritySkills/issues/1812", + "https://github.com/linguaFoundation/lingualayer/issues/150", + "https://github.com/cozfuttu/ritual-chain-workshop/issues/3", + "https://github.com/pyrimid-ai/pyrimid/issues/77", + "https://github.com/mergeos-bounties/mergeos/issues/240", + "https://github.com/rsoreq-mend/AutoGPT/issues/18", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/799", + "https://github.com/UnitOneAI/SecuritySkills/issues/2438", + "https://github.com/Baledin/FlyCasual/issues/39", + "https://github.com/CorpusIQ/corpusiq-docs/issues/7", "https://github.com/Scottcjn/Rustchain/issues/7063", - "https://github.com/ahrussell/costanza/issues/6", - "https://github.com/anthropics/claude-plugins-official/issues/2044", + "https://github.com/clowlove/Hermes-House/issues/627", + "https://github.com/storm-software/cyclone-ui/issues/117", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/497", + "https://github.com/SecureBananaLabs/bug-bounty/issues/3229", + "https://github.com/xevrion-v2/agent-playground/issues/3582", + "https://github.com/ramimbo/mergework/issues/576", + "https://github.com/Lafiya-xyz/Lafiya-docs/issues/127", + "https://github.com/UnitOneAI/SecuritySkills/issues/197", + "https://github.com/charles-openclaw/charles-microbounties/issues/1146", + "https://github.com/xevrion-v2/agent-playground/issues/3833", + "https://github.com/charles-openclaw/charles-microbounties/issues/1279", + "https://github.com/lk251/agent-bounty-market/issues/5", + "https://github.com/charles-openclaw/charles-microbounties/issues/856", + "https://github.com/SecureBananaLabs/bug-bounty/issues/4740", + "https://github.com/auscaster/frantic-board/issues/43", + "https://github.com/lobster-trap/Kickama/issues/172", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/95", + "https://github.com/Ikalus1988/MisakaNet/issues/143", + "https://github.com/charles-openclaw/charles-microbounties/issues/2179", + "https://github.com/UnitOneAI/SecuritySkills/issues/543", + "https://github.com/verdikta/verdikta-applications/issues/23", + "https://github.com/charles-openclaw/charles-microbounties/issues/826", + "https://github.com/Iamgoofball/-tg-station/issues/65", + "https://github.com/freedom-winds/BountyScout/issues/185", + "https://github.com/Scottcjn/rustchain-bounties/issues/15376", + "https://github.com/3ni8ma/aarushkarak-website/issues/23", + "https://github.com/Ikalus1988/MisakaNet/issues/401", + "https://github.com/greyw0rks/bountyscout/issues/82", + "https://github.com/unjs/defu/issues/175", + "https://github.com/SecureBananaLabs/bug-bounty/issues/8679", + "https://github.com/johnchampaign/star-wars-rebellion/issues/131", + "https://github.com/Scottcjn/rustchain-bounties/issues/13207", + "https://github.com/okalldal/lark/issues/270", + "https://github.com/Scottcjn/rustchain-bounties/issues/12855", + "https://github.com/charles-openclaw/charles-microbounties/issues/2076", + "https://github.com/charles-openclaw/charles-microbounties/issues/578", + "https://github.com/nirium-protocol/nirium-sdk/issues/15", + "https://github.com/BlackJack-Cao/agents-radar/issues/2", + "https://github.com/adrimg3196/lucidfence/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/1276", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2954", + "https://github.com/nazumods/wow/issues/425", + "https://github.com/UnitOneAI/SecuritySkills/issues/176", + "https://github.com/Iamgoofball/-tg-station/issues/162", + "https://github.com/vansh-09/BountyScout/issues/176", + "https://github.com/vansh-09/BountyScout/issues/225", + "https://github.com/Scottcjn/rustchain-bounties/issues/14382", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3821", + "https://github.com/ClankerNation/OpenAgents/issues/137", + "https://github.com/qdrant/qdrant/issues/9241", + "https://github.com/SecureBananaLabs/bug-bounty/issues/9698", + "https://github.com/Scottcjn/bottube/issues/1299", + "https://github.com/charles-openclaw/charles-microbounties/issues/2009", + "https://github.com/vansh-09/BountyScout/issues/315", + "https://github.com/mergeos-bounties/Gomi/issues/46", + "https://github.com/Scottcjn/rustchain-bounties/issues/14277", + "https://github.com/ramimbo/mergework/issues/456", + "https://github.com/charles-openclaw/charles-microbounties/issues/3355", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2534", + "https://github.com/auscaster/frantic-board/issues/136", + "https://github.com/Carbon-Ledger-stellar/carbonledger-bounty/issues/16", + "https://github.com/Scottcjn/rustchain-bounties/issues/13954", + "https://github.com/charles-openclaw/charles-microbounties/issues/261", + "https://github.com/dotnet/announcements/issues/414", + "https://github.com/freedom-winds/BountyScout/issues/145", + "https://github.com/anthropics/claude-code/issues/67577", + "https://github.com/charles-openclaw/charles-microbounties/issues/1537", + "https://github.com/mergeos-bounties/mergeos/issues/17", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/639", + "https://github.com/openmetaearth/me-hub/issues/1066", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/273", + "https://github.com/johnchampaign/star-wars-rebellion/issues/455", + "https://github.com/vansh-09/BountyScout/issues/116", + "https://github.com/xevrion-v2/agent-playground/issues/694", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/3210", + "https://github.com/adrimg3196/lucidfence/issues/2", + "https://github.com/nostr-protocol/nips/issues/2414", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2950", + "https://github.com/jcub1011/KnockBox/issues/181", + "https://github.com/johnchampaign/star-wars-rebellion/issues/585", + "https://github.com/xevrion-v2/agent-playground/issues/5", + "https://github.com/hashgraph/hedera-agent-kit-js/issues/1007", + "https://github.com/greyw0rks/bountyscout/issues/161", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/207", + "https://github.com/charles-openclaw/charles-microbounties/issues/2238", + "https://github.com/Eaprime1/custos/issues/35", + "https://github.com/Markp1598M/cobra/issues/1", + "https://github.com/ynput/ayon-photoshop/issues/91", + "https://github.com/onflow/flow-credit-markets/issues/26", + "https://github.com/NSPG13/agent-bounties/issues/381", + "https://github.com/xevrion-v2/agent-playground/issues/5981", + "https://github.com/ZWISERFIT/zwiserfit-ai-store-manager/issues/11", + "https://github.com/mergeos-bounties/Loru/issues/249", + "https://github.com/mergeos-bounties/BeeAR/issues/47", + "https://github.com/johnchampaign/star-wars-rebellion/issues/260", "https://github.com/charles-openclaw/charles-microbounties/issues/1543", - "https://github.com/Scottcjn/rustchain-bounties/issues/14078", - "https://github.com/near/nearcore/issues/15863", - "https://github.com/dwebagents/AgentPipe/issues/134", - "https://github.com/charles-openclaw/charles-microbounties/issues/874", - "https://github.com/azerothcore/azerothcore-wotlk/issues/3655", - "https://github.com/codeboost-tr/zeroeye/issues/19", - "https://github.com/charles-openclaw/charles-microbounties/issues/1453", - "https://github.com/charles-openclaw/charles-microbounties/issues/3", - "https://github.com/openmetaearth/me-hub/issues/247", - "https://github.com/Jonnyton/Workflow/issues/1038", - "https://github.com/lk251/agent-bounty-market/issues/11", - "https://github.com/chainreactors/picker/issues/1262", - "https://github.com/Spectral-Finance/lux/issues/95", - "https://github.com/charles-openclaw/charles-microbounties/issues/1943", - "https://github.com/charles-openclaw/charles-microbounties/issues/1327", - "https://github.com/daydreamsai/lucid-agents/issues/179", - "https://github.com/APN-Network/bugs/issues/22", - "https://github.com/johnchampaign/star-wars-rebellion/issues/205", - "https://github.com/charles-openclaw/charles-microbounties/issues/2055", - "https://github.com/lb1192176991-lab/zeroeye/issues/1", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2951", - "https://github.com/getdozer/dozer/issues/1690", - "https://github.com/OpenAgentsInc/openagents/issues/4784", - "https://github.com/Scottcjn/Rustchain/issues/7311", - "https://github.com/amithmandassociates-oss/hash-report-tool/issues/2", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2883", - "https://github.com/tang-vu/ContribAI/issues/37", - "https://github.com/charles-openclaw/charles-microbounties/issues/849", - "https://github.com/gibwork/gibwork-website/issues/64", - "https://github.com/UnitOneAI/SecuritySkills/issues/1916", - "https://github.com/johnchampaign/star-wars-rebellion/issues/12", - "https://github.com/charles-openclaw/charles-microbounties/issues/814", - "https://github.com/charles-openclaw/charles-microbounties/issues/1083", - "https://github.com/charles-openclaw/charles-microbounties/issues/658", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4375", - "https://github.com/charles-openclaw/charles-microbounties/issues/1889", - "https://github.com/Scottcjn/rustchain-bounties/issues/13789", - "https://github.com/charles-openclaw/charles-microbounties/issues/1023", - "https://github.com/xevrion-v2/agent-playground/issues/4684", - "https://github.com/OpenAgentsInc/openagents/issues/5335", - "https://github.com/charles-openclaw/charles-microbounties/issues/240", + "https://github.com/thevibeworks/claude-reads-hn/issues/1245", + "https://github.com/glunk-works/bounty-infra/issues/16", + "https://github.com/explorerscat/cautious-octo-fishstick/issues/7", + "https://github.com/charles-openclaw/charles-microbounties/issues/1879", + "https://github.com/tigerbeetle/viewstamped-replication-made-famous/issues/16", + "https://github.com/verdikta/verdikta-dispatcher/issues/4", + "https://github.com/beertierchen/warera-prost/issues/11", + "https://github.com/TerraTectra/autotools-hub/issues/68", + "https://github.com/Iamgoofball/-tg-station/issues/224", + "https://github.com/ClankerNation/OpenAgents/issues/105", + "https://github.com/charles-openclaw/charles-microbounties/issues/3400", + "https://github.com/charles-openclaw/charles-microbounties/issues/89", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/3232", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/378", + "https://github.com/lhermoso/plated/issues/16", + "https://github.com/labmain/ai-agent-pay-demo/issues/21", + "https://github.com/jhosepm352-design/oabp-langchain-tool/issues/1", + "https://github.com/Iamgoofball/-tg-station/issues/235", "https://github.com/Scottcjn/rustchain-bounties/issues/8933", - "https://github.com/ramimbo/mergework/issues/405", - "https://github.com/fluxerapp/fluxer-meta/issues/20", - "https://github.com/Spectral-Finance/lux/issues/72", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3413", - "https://github.com/charles-openclaw/charles-microbounties/issues/477", - "https://github.com/Kings9595/WaveMilestone/issues/17", - "https://github.com/SecureBananaLabs/bug-bounty/issues/8337", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/563", - "https://github.com/openmetaearth/me-hub/issues/1179", - "https://github.com/Scottcjn/rustchain-bounties/issues/13071", - "https://github.com/xevrion-v2/agent-playground/issues/2437", - "https://github.com/charles-openclaw/charles-microbounties/issues/428", - "https://github.com/UnitOneAI/SecuritySkills/issues/2594", - "https://github.com/space-wizards/space-station-14/issues/44487", - "https://github.com/profullstack/sh1pt/issues/752", - "https://github.com/SecureBananaLabs/bug-bounty/issues/1025", - "https://github.com/charles-openclaw/charles-microbounties/issues/1421", - "https://github.com/charles-openclaw/charles-microbounties/issues/1161", - "https://github.com/Scottcjn/Rustchain/issues/179", - "https://github.com/charles-openclaw/charles-microbounties/issues/1551", - "https://github.com/charles-openclaw/charles-microbounties/issues/1224", - "https://github.com/openmetaearth/me-hub/issues/192", - "https://github.com/charles-openclaw/charles-microbounties/issues/850", - "https://github.com/ClankerNation/OpenAgents/issues/66", - "https://github.com/SecureBananaLabs/bug-bounty/issues/6858", - "https://github.com/Scottcjn/bottube/issues/1340", - "https://github.com/lobster-trap/Kickama/issues/363", - "https://github.com/openmetaearth/me-hub/issues/95", - "https://github.com/charles-openclaw/charles-microbounties/issues/1134", - "https://github.com/Scottcjn/rustchain-bounties/issues/39", - "https://github.com/SecureBananaLabs/bug-bounty/issues/9290", - "https://github.com/charles-openclaw/charles-microbounties/issues/3136", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/3218", - "https://github.com/xevrion-v2/agent-playground/issues/3136", - "https://github.com/Scottcjn/rustchain-bounties/issues/13851", - "https://github.com/xevrion-v2/agent-playground/issues/1", - "https://github.com/kcolbchain/escrow-oracles/issues/21", - "https://github.com/charles-openclaw/charles-microbounties/issues/1880", - "https://github.com/mpfaffenberger/space_sim/issues/18", - "https://github.com/Scottcjn/rustchain-bounties/issues/14075", - "https://github.com/UnitOneAI/SecuritySkills/issues/1525", - "https://github.com/charles-openclaw/charles-microbounties/issues/1245", - "https://github.com/FreeCAD/FPA/issues/477", - "https://github.com/xevrion-v2/agent-playground/issues/33", - "https://github.com/kcolbchain/arka/issues/22", "https://github.com/charles-openclaw/charles-microbounties/issues/1465", - "https://github.com/xevrion-v2/agent-playground/issues/15", - "https://github.com/vitorpamplona/amethyst/issues/3293", - "https://github.com/charles-openclaw/charles-microbounties/issues/1398", - "https://github.com/Scottcjn/rustchain-bounties/issues/12789", - "https://github.com/SecureBananaLabs/bug-bounty/issues/7581", - "https://github.com/lobster-trap/Kickama/issues/350", - "https://github.com/openmetaearth/me-hub/issues/18", - "https://github.com/koromerzhin/repocheck/issues/140", - "https://github.com/UnitOneAI/SecuritySkills/issues/685", - "https://github.com/Scottcjn/rustchain-bounties/issues/12494", - "https://github.com/claude-builders-bounty/claude-builders-bounty/issues/2929", - "https://github.com/warpspeedopen-source/warpspeed-bounties/issues/2", - "https://github.com/limetext/backend/issues/114", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/562", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4319", - "https://github.com/capofficial/client/issues/13", - "https://github.com/Scottcjn/bottube/issues/1399", - "https://github.com/Ledger-Lenz/Ledgerlens-core/issues/133", - "https://github.com/ramimbo/mergework/issues/162", - "https://github.com/Suncrest-Labs/nester/issues/633", - "https://github.com/intuition-box/Liquid-Democracy/issues/2", - "https://github.com/sandblizzard/rewards-v1/issues/55", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/42", - "https://github.com/xevrion-v2/agent-playground/issues/4550", - "https://github.com/j-dabrowski/GitBounty_25/issues/17", - "https://github.com/ashishkhar/reasoning-agents-framework/issues/1", - "https://github.com/tommycet/proofworks-genlayer/issues/26", - "https://github.com/UnitOneAI/SecuritySkills/issues/2518", - "https://github.com/charles-openclaw/charles-microbounties/issues/165", - "https://github.com/vansh-09/BountyScout/issues/153", - "https://github.com/victorjones6awpg/gocraft-work/issues/1", - "https://github.com/xevrion-v2/agent-playground/issues/11", - "https://github.com/Yuliya65/AIGoat/issues/6", - "https://github.com/Ikalus1988/MisakaNet/issues/218", - "https://github.com/Scottcjn/rustchain-bounties/issues/13514", - "https://github.com/UnitOneAI/SecuritySkills/issues/2438", - "https://github.com/charles-openclaw/charles-microbounties/issues/1188", - "https://github.com/atvirokodosprendimai/ai-pipeline-template/issues/1599", - "https://github.com/charles-openclaw/charles-microbounties/issues/1780", - "https://github.com/BountyOnChain/StellarBounty/issues/58", - "https://github.com/openmetaearth/me-hub/issues/384", - "https://github.com/xevrion-v2/agent-playground/issues/2435", - "https://github.com/Feel-ix-343/markdown-oxide/issues/269", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/635", - "https://github.com/charles-openclaw/charles-microbounties/issues/1284", - "https://github.com/charles-openclaw/charles-microbounties/issues/88", - "https://github.com/SecureBananaLabs/bug-bounty/issues/6084", - "https://github.com/gibwork/gibwork-website/issues/118", - "https://github.com/Scottcjn/rustchain-bounties/issues/13684", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/834", - "https://github.com/organvm/peer-audited--behavioral-blockchain/issues/34", - "https://github.com/egoist/vue-content-loader/issues/18", - "https://github.com/vansh-09/BountyScout/issues/88", - "https://github.com/pyrimid-ai/pyrimid/issues/34", - "https://github.com/jimmieklein2013/NATS-Server/issues/1", - "https://github.com/labmain/ai-agent-pay-demo/issues/35", - "https://github.com/auscaster/frantic-board/issues/161", - "https://github.com/Ikalus1988/MisakaNet/issues/144", - "https://github.com/openmetaearth/me-hub/issues/241", - "https://github.com/SecureBananaLabs/bug-bounty/issues/8677", - "https://github.com/Scottcjn/bottube/issues/1379", - "https://github.com/StellarAgent-AI-Agent-Payment-Rails/Stellar-agentic/issues/145", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4013", - "https://github.com/auscaster/frantic-board/issues/163", - "https://github.com/charles-openclaw/charles-microbounties/issues/2089", - "https://github.com/SecureBananaLabs/bug-bounty/issues/9549", - "https://github.com/UnitOneAI/SecuritySkills/issues/843", - "https://github.com/coreintentdev/ZYNTHIO_MASTER_DOCS/issues/252", - "https://github.com/charles-openclaw/charles-microbounties/issues/1393", - "https://github.com/fallenswordhelper/fallenswordhelper/issues/864", - "https://github.com/saddamzzz/2fa-bypasss/issues/2", - "https://github.com/UnitOneAI/SecuritySkills/issues/2496", - "https://github.com/3ni8ma/aarushkarak-website/issues/56", + "https://github.com/Scottcjn/rustchain-bounties/issues/13835", + "https://github.com/libretro/snes9x2010/issues/81", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/519", + "https://github.com/johnchampaign/star-wars-rebellion/issues/602", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/154", + "https://github.com/SnowfallHD/zeroeye/issues/1", + "https://github.com/demetriodiazdeleon-pixel/morriganprueba/issues/1", + "https://github.com/greyw0rks/bountyscout/issues/103", + "https://github.com/xevrion-v2/agent-playground/issues/2207", + "https://github.com/charles-openclaw/charles-microbounties/issues/411", + "https://github.com/paritytech/polkadot-sdk/issues/11100", + "https://github.com/charles-openclaw/charles-microbounties/issues/1996", + "https://github.com/UnitOneAI/SecuritySkills/issues/2809", + "https://github.com/Redskull-127/Redskull-127.github.io/issues/10", + "https://github.com/greyw0rks/bountyscout/issues/345", + "https://github.com/UnitOneAI/SecuritySkills/issues/1108", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/137", + "https://github.com/charles-openclaw/charles-microbounties/issues/1222", + "https://github.com/xevrion-v2/agent-playground/issues/4544", + "https://github.com/esi/esi-issues/issues/323", + "https://github.com/ussyalfaks/ahjoorxmr-contract/issues/419", + "https://github.com/Iamgoofball/-tg-station/issues/177", + "https://github.com/UnitOneAI/SecuritySkills/issues/2745", + "https://github.com/charles-openclaw/charles-microbounties/issues/3347", + "https://github.com/UnitOneAI/SecuritySkills/issues/1006", + "https://github.com/devasignhq/website/issues/41", "https://github.com/xevrion-v2/agent-playground/issues/4849", - "https://github.com/3ni8ma/aarushkarak-website/issues/25", - "https://github.com/ClankerNation/OpenAgents/issues/164", - "https://github.com/bitaps-com/jsbtc/issues/64", - "https://github.com/lobster-trap/Kickama/issues/185", - "https://github.com/charles-openclaw/charles-microbounties/issues/3423", - "https://github.com/charles-openclaw/charles-microbounties/issues/1219", - "https://github.com/Scottcjn/rustchain-bounties/issues/13650", - "https://github.com/d-hinders/Haven-AI/issues/575", - "https://github.com/Scottcjn/rustchain-bounties/issues/13206", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2953", - "https://github.com/Scottcjn/rustchain-bounties/issues/12829", - "https://github.com/BAWES-Universe/workadventure-universe/issues/1", - "https://github.com/earnestmant2/mysql/issues/1", - "https://github.com/Creators-of-Aeronautics/Simulated-Project/issues/1163", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2773", - "https://github.com/joserivasgt/panama-me/issues/133", - "https://github.com/Scottcjn/rustchain-bounties/issues/14304", - "https://github.com/Scottcjn/rustchain-bounties/issues/13829", - "https://github.com/Scottcjn/Rustchain/issues/6779", - "https://github.com/charles-openclaw/charles-microbounties/issues/1450", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/41", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2757", - "https://github.com/ZecHub/zechub/issues/1732", - "https://github.com/esi/esi-issues/issues/1252", - "https://github.com/charles-openclaw/charles-microbounties/issues/1877", - "https://github.com/UnsafeLabs/Coolify-Rust-v4/issues/3", - "https://github.com/GhostieMostie/open-source-maintainer-ci-qa-kit-preview/issues/1", - "https://github.com/ZSBRybnik/backend/issues/1250", - "https://github.com/charles-openclaw/charles-microbounties/issues/1592", - "https://github.com/SecureBananaLabs/bug-bounty/issues/6856", - "https://github.com/charles-openclaw/charles-microbounties/issues/490", - "https://github.com/dev-kp-eloper/BountyScout/issues/147", - "https://github.com/lobster-trap/TentOfTrials/issues/211", - "https://github.com/charles-openclaw/charles-microbounties/issues/3348", - "https://github.com/charles-openclaw/charles-microbounties/issues/1824", - "https://github.com/charles-openclaw/charles-microbounties/issues/2225", - "https://github.com/charles-openclaw/charles-microbounties/issues/1412", - "https://github.com/vansh-09/BountyScout/issues/86", - "https://github.com/lobster-trap/zeroeye/issues/58", - "https://github.com/Opire/web/issues/6", - "https://github.com/Ikalus1988/MisakaNet/issues/143", - "https://github.com/charles-openclaw/charles-microbounties/issues/22", - "https://github.com/orca-so/whirlpools/issues/1313", - "https://github.com/devpool-directory/devpool-directory/issues/5924", - "https://github.com/SoroLabs/SoroTask/issues/695", - "https://github.com/charles-openclaw/charles-microbounties/issues/684", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3249", - "https://github.com/charles-openclaw/charles-microbounties/issues/1384", - "https://github.com/vansh-09/BountyScout/issues/50", - "https://github.com/charles-openclaw/charles-microbounties/issues/1559", - "https://github.com/ramimbo/mergework/issues/1083", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2787", - "https://github.com/kiku-jw/kikuai-github-scanner/issues/2", - "https://github.com/charles-openclaw/charles-microbounties/issues/1611", - "https://github.com/xevrion-v2/agent-playground/issues/4866", - "https://github.com/xevrion-v2/agent-playground/issues/5134", - "https://github.com/moonwell-fi/moonwell-contracts-v2/issues/660", - "https://github.com/UnitOneAI/SecuritySkills/issues/1058", - "https://github.com/lobster-trap/SmartGesture/issues/476", - "https://github.com/UnitOneAI/SecuritySkills/issues/2096", - "https://github.com/Replikanti/agentis-core/issues/816", - "https://github.com/antfu/raycast-multi-translate/issues/7", - "https://github.com/Scottcjn/rustchain-bounties/issues/12392", - "https://github.com/guil-lambert/defipunkd/issues/288", - "https://github.com/charles-openclaw/charles-microbounties/issues/2829", - "https://github.com/ramimbo/mergework/issues/936", - "https://github.com/openhab/openhab-addons/issues/10428", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/637", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1410", - "https://github.com/qdrant/qdrant/issues/4108", - "https://github.com/charles-openclaw/charles-microbounties/issues/1283", - "https://github.com/UnitOneAI/SecuritySkills/issues/1361", - "https://github.com/textileio/community/issues/216", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/3214", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1388", - "https://github.com/dcccrypto/percolator-stake/issues/196", - "https://github.com/UnitOneAI/SecuritySkills/issues/2218", - "https://github.com/charles-openclaw/charles-microbounties/issues/1064", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5151", - "https://github.com/johnchampaign/star-wars-rebellion/issues/189", - "https://github.com/Scottcjn/rustchain-bounties/issues/13975", - "https://github.com/greyw0rks/bountyscout/issues/71", - "https://github.com/qxrtjdggj653/echo/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/1856", - "https://github.com/cyrilawoyemi99-max/owockibot-bounty-sync-/issues/3", - "https://github.com/BitflowFinance/bitflow/issues/12", - "https://github.com/charles-openclaw/charles-microbounties/issues/578", - "https://github.com/Scottcjn/legend-of-elya-n64/issues/10", - "https://github.com/charles-openclaw/charles-microbounties/issues/831", - "https://github.com/Scottcjn/rustchain-bounties/issues/14381", - "https://github.com/charles-openclaw/charles-microbounties/issues/1459", - "https://github.com/UnitOneAI/SecuritySkills/issues/1812", - "https://github.com/SecureBananaLabs/bug-bounty/issues/4125", - "https://github.com/Scottcjn/rustchain-bounties/issues/13052", - "https://github.com/Scottcjn/rustchain-bounties/issues/14601", - "https://github.com/djjrip/kickama-cash-grab-hacks/issues/3", - "https://github.com/UnitOneAI/SecuritySkills/issues/1278", - "https://github.com/qdrant/qdrant/issues/4297", - "https://github.com/UnitOneAI/SecuritySkills/issues/117", - "https://github.com/UnitOneAI/SecuritySkills/issues/409", - "https://github.com/Scottcjn/rustchain-bounties/issues/12336", - "https://github.com/charles-openclaw/charles-microbounties/issues/1505", - "https://github.com/openmetaearth/me-hub/issues/1206", - "https://github.com/Saiaaax/CyberNinja-Dojo/issues/2", - "https://github.com/Scottcjn/Rustchain/issues/7181", - "https://github.com/charles-openclaw/charles-microbounties/issues/274", - "https://github.com/charles-openclaw/charles-microbounties/issues/1227", - "https://github.com/Monkestation/Vanderlin/issues/6718", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5939", - "https://github.com/stxtxm/bitbrawler/issues/303", - "https://github.com/xevrion-v2/agent-playground/issues/3816", - "https://github.com/victorjones6awpg/Casbin/issues/1", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3142", - "https://github.com/Monkestation/Vanderlin/issues/6719", - "https://github.com/jorger-democorp-mend-ghc/JR_WebGoat/issues/94", - "https://github.com/Scottcjn/trashclaw/issues/65", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1172", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/132", - "https://github.com/Scottcjn/rustchain-bounties/issues/12979", - "https://github.com/charles-openclaw/charles-microbounties/issues/1531", - "https://github.com/allenai/reward-bench/issues/265", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/829", - "https://github.com/xevrion-v2/agent-playground/issues/3707", - "https://github.com/charles-openclaw/charles-microbounties/issues/1183", - "https://github.com/lissy93/bug-bounties/issues/126", - "https://github.com/charles-openclaw/charles-microbounties/issues/1419", - "https://github.com/UnitOneAI/SecuritySkills/issues/1115", - "https://github.com/lobster-trap/Kickama/issues/53", - "https://github.com/vansh-09/BountyScout/issues/22", - "https://github.com/gitcoinco/gitcoin_co_30/issues/395", - "https://github.com/Scottcjn/rustchain-bounties/issues/13791", - "https://github.com/charles-openclaw/charles-microbounties/issues/3360", - "https://github.com/Jonnyton/Workflow/issues/1169", - "https://github.com/ritik4ever/stellar-bounty-board/issues/383", - "https://github.com/charles-openclaw/charles-microbounties/issues/665", - "https://github.com/charles-openclaw/charles-microbounties/issues/1353", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5009", - "https://github.com/ramimbo/mergework/issues/107", - "https://github.com/xevrion-v2/agent-playground/issues/937", - "https://github.com/johnchampaign/star-wars-rebellion/issues/234", - "https://github.com/furiaz/MMOPartySimulator/issues/494", - "https://github.com/cmss13-devs/cmss13/issues/12507", - "https://github.com/flyteorg/flyte/issues/7518", - "https://github.com/mpfaffenberger/space_sim/issues/10", - "https://github.com/3ni8ma/aarushkarak-website/issues/22", - "https://github.com/vitorpamplona/amethyst/issues/1487", - "https://github.com/Jonnyton/Workflow/issues/961", - "https://github.com/greyw0rks/bountyscout/issues/30", - "https://github.com/bitaps-com/pybtc/issues/84", - "https://github.com/greyw0rks/bountyscout/issues/38", - "https://github.com/Scottcjn/Rustchain/issues/7794", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/797", - "https://github.com/bolivian-peru/marketplace-service-template/issues/461", - "https://github.com/vansh-09/BountyScout/issues/210", + "https://github.com/Jagadeeshftw/grainlify/issues/1284", + "https://github.com/charles-openclaw/charles-microbounties/issues/2191", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/630", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/3", + "https://github.com/Yuliya65/AutoAgents/issues/13", + "https://github.com/charles-openclaw/charles-microbounties/issues/2165", + "https://github.com/charles-openclaw/charles-microbounties/issues/1168", + "https://github.com/openmetaearth/me-hub/issues/49", + "https://github.com/paraloom-labs/paraloom-core/issues/383", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/57", "https://github.com/ramimbo/mergework/issues/581", - "https://github.com/charles-openclaw/charles-microbounties/issues/408", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3254", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/751", - "https://github.com/boundlessfi/boundless/issues/597", - "https://github.com/asaadnashed/bounty-autopilot/issues/6", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/27", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/65", - "https://github.com/charles-openclaw/charles-microbounties/issues/1452", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3709", - "https://github.com/ritik4ever/stellar-bounty-board/issues/284", - "https://github.com/renaudgenard/TentOfTrials/issues/1", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/3237", - "https://github.com/lobster-trap/TentOfTrials/issues/67", - "https://github.com/Digital-Nomad-Home/LinJuLi-MiniApp/issues/3", - "https://github.com/greyw0rks/bountyscout/issues/3", - "https://github.com/UnitOneAI/SecuritySkills/issues/168", - "https://github.com/djjrip/kickama-cash-grab-hacks/issues/5", - "https://github.com/ClankerNation/OpenAgents/issues/172", - "https://github.com/archestra-ai/archestra/issues/3787", - "https://github.com/UnitOneAI/SecuritySkills/issues/633", - "https://github.com/ritik4ever/stellar-bounty-board/issues/262", - "https://github.com/charles-openclaw/charles-microbounties/issues/930", - "https://github.com/openmetaearth/me-hub/issues/92", - "https://github.com/Scottcjn/rustchain-bounties/issues/13042", - "https://github.com/ramimbo/mergework/issues/50", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/803", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/3212", - "https://github.com/xevrion-v2/agent-playground/issues/4", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2963", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4908", - "https://github.com/UnitOneAI/SecuritySkills/issues/2431", - "https://github.com/charles-openclaw/charles-microbounties/issues/3078", - "https://github.com/SecureBananaLabs/bug-bounty/issues/4953", - "https://github.com/RatLoopz/sahidawa-india/issues/637", - "https://github.com/charles-openclaw/charles-microbounties/issues/159", - "https://github.com/charles-openclaw/charles-microbounties/issues/1612", - "https://github.com/jgeraigery/CodeGen/issues/8", - "https://github.com/esi/esi-issues/issues/154", - "https://github.com/honua-io/honua-sdk-python/issues/107", - "https://github.com/asaadnashed/bounty-autopilot/issues/7", - "https://github.com/charles-openclaw/charles-microbounties/issues/3394", - "https://github.com/Scottcjn/rustchain-bounties/issues/14657", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5357", - "https://github.com/johnchampaign/star-wars-rebellion/issues/154", - "https://github.com/UnitOneAI/SecuritySkills/issues/2254", - "https://github.com/ApexOpsStudio/ai-gitops-test-target/issues/1", - "https://github.com/jsrothwell/jobflo-support/issues/6", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5405", - "https://github.com/UnitOneAI/SecuritySkills/issues/2465", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/48", - "https://github.com/xevrion-v2/agent-playground/issues/2352", - "https://github.com/charles-openclaw/charles-microbounties/issues/817", - "https://github.com/charles-openclaw/charles-microbounties/issues/3180", - "https://github.com/UnitOneAI/SecuritySkills/issues/2807", - "https://github.com/pvium/frontend/issues/43", - "https://github.com/auscaster/frantic-board/issues/97", - "https://github.com/charles-openclaw/charles-microbounties/issues/785", - "https://github.com/SecureBananaLabs/bug-bounty/issues/4739", - "https://github.com/dev-kp-eloper/BountyScout/issues/350", - "https://github.com/lobster-trap/hammer-and-nail/issues/157", - "https://github.com/CoralSwap-Finance/coralswap-sdk/issues/317", - "https://github.com/theasshats/project-commonwealth/issues/329", - "https://github.com/Scottcjn/contributors/issues/127", - "https://github.com/swstegall/Garlemald-Server/issues/107", - "https://github.com/charles-openclaw/charles-microbounties/issues/135", - "https://github.com/tari-project/universe/issues/3028", - "https://github.com/xevrion-v2/agent-playground/issues/12", - "https://github.com/jhosepm352-design/oabp-langchain-tool/issues/1", - "https://github.com/hspahic-cs/cobblemon-server/issues/154", - "https://github.com/Scottcjn/rustchain-bounties/issues/14029", - "https://github.com/xevrion-v2/agent-playground/issues/6", - "https://github.com/UnitOneAI/SecuritySkills/issues/1629", - "https://github.com/cmss13-devs/cmss13/issues/12509", - "https://github.com/aaronlab/browsertrace/issues/12", - "https://github.com/charles-openclaw/charles-microbounties/issues/3123", - "https://github.com/xevrion-v2/agent-playground/issues/2418", - "https://github.com/renaudgenard/zeroeye/issues/1", - "https://github.com/greyw0rks/bountyscout/issues/22", - "https://github.com/MM0x02/RSS-Push/issues/553", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/131", - "https://github.com/tttrisagion/3T/issues/41", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/746", - "https://github.com/charles-openclaw/charles-microbounties/issues/636", - "https://github.com/RatLoopz/sahidawa-india/issues/626", - "https://github.com/thevibeworks/claude-reads-hn/issues/1245", - "https://github.com/mautic/mautic/issues/12110", - "https://github.com/derpack-org/Derpack-X/issues/260", - "https://github.com/Scottcjn/rustchain-bounties/issues/12667", - "https://github.com/charles-openclaw/charles-microbounties/issues/124", - "https://github.com/RatLoopz/sahidawa-india/issues/709", - "https://github.com/ClankerNation/OpenAgents/issues/202", - "https://github.com/Soengkit/frailbox-checkpoint/issues/2", - "https://github.com/charles-openclaw/charles-microbounties/issues/879", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/17", - "https://github.com/mannowell/zeroeye/issues/1", - "https://github.com/ramimbo/mergework/issues/319", - "https://github.com/protoLabsAI/protoAgent/issues/924", - "https://github.com/charles-openclaw/charles-microbounties/issues/1890", - "https://github.com/xevrion-v2/agent-playground/issues/930", - "https://github.com/charles-openclaw/charles-microbounties/issues/605", - "https://github.com/charles-openclaw/charles-microbounties/issues/266", - "https://github.com/charles-openclaw/charles-microbounties/issues/3135", - "https://github.com/mergemint-mint/mergemint-contracts/issues/313", - "https://github.com/runxhq/runx/issues/76", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4877", - "https://github.com/ramimbo/mergework/issues/103", - "https://github.com/warpspeedopen-source/warpspeed-bounties/issues/6", - "https://github.com/Scottcjn/rustchain-bounties/issues/13261", - "https://github.com/dev-kp-eloper/BountyScout/issues/8", - "https://github.com/Scottcjn/rustchain-bounties/issues/12428", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1174", - "https://github.com/charles-openclaw/charles-microbounties/issues/873", - "https://github.com/ritik4ever/stellar-bounty-board/issues/379", - "https://github.com/muhammadkhawar400-alt/cyber-security-registration/issues/1", - "https://github.com/SecureBananaLabs/bug-bounty/issues/4875", - "https://github.com/Scottcjn/rustchain-bounties/issues/13413", - "https://github.com/vansh-09/BountyScout/issues/149", - "https://github.com/charles-openclaw/charles-microbounties/issues/985", - "https://github.com/INDIGOAZUL/la-tanda-web/issues/373", - "https://github.com/UnsafeLabs/Coolify-Rust-v4/issues/2", - "https://github.com/AuthorPrime/ds-defi-core/issues/8", - "https://github.com/daydreamsai/lucid-agents/issues/178", - "https://github.com/charles-openclaw/charles-microbounties/issues/1572", - "https://github.com/charles-openclaw/charles-microbounties/issues/978", - "https://github.com/Emmanuel-Evenzur/damn-vulnerable-llm-agent/issues/29", - "https://github.com/toon-protocol/toon-client/issues/158", - "https://github.com/SecureBananaLabs/bug-bounty/issues/3854", - "https://github.com/niumeta/niumeta/issues/33", - "https://github.com/stashapp/stash/issues/1259", - "https://github.com/vansh-09/BountyScout/issues/157", - "https://github.com/sindresorhus/caprine/issues/713", - "https://github.com/charles-openclaw/charles-microbounties/issues/1455", - "https://github.com/charles-openclaw/charles-microbounties/issues/1768", - "https://github.com/Scottcjn/rustchain-bounties/issues/12346", - "https://github.com/charles-openclaw/charles-microbounties/issues/659", - "https://github.com/toon-protocol/toon-client/issues/157", - "https://github.com/Kings9595/WaveMilestone/issues/23", - "https://github.com/charles-openclaw/charles-microbounties/issues/1516", - "https://github.com/charles-openclaw/charles-microbounties/issues/1376", - "https://github.com/JSONbored/gittensory/issues/159", - "https://github.com/vansh-09/BountyScout/issues/141", - "https://github.com/charles-openclaw/charles-microbounties/issues/584", - "https://github.com/avinashkamat48/avinashkamat48/issues/2", - "https://github.com/UnitOneAI/SecuritySkills/issues/2810", - "https://github.com/Gitlawb/node/issues/32", - "https://github.com/Scottcjn/rustchain-bounties/issues/14733", - "https://github.com/coollabsio/coolify/issues/3436", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/49", + "https://github.com/Syncleus/aparapi/issues/97", + "https://github.com/DomTheDeveloper/crl/issues/101", + "https://github.com/vansh-09/BountyScout/issues/466", + "https://github.com/monk-io/monk-plugin/issues/102", + "https://github.com/charles-openclaw/charles-microbounties/issues/269", + "https://github.com/SecureBananaLabs/bug-bounty/issues/6759", + "https://github.com/Soroban-Cookbook/Soroban-Cookbook-/issues/639", + "https://github.com/SecureBananaLabs/bug-bounty/issues/6177", + "https://github.com/xevrion-v2/agent-playground/issues/6478", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/43", + "https://github.com/openmetaearth/me-hub/issues/296", + "https://github.com/DimaMend/V-Achilles/issues/1", + "https://github.com/mergeos-bounties/HIRI/issues/9", + "https://github.com/collinsadi/opauque-stellar/issues/447", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5388", + "https://github.com/qtop/qtop/issues/356", + "https://github.com/Scottcjn/Rustchain/issues/7513", + "https://github.com/johnchampaign/star-wars-rebellion/issues/439", + "https://github.com/gwdevhub/GWToolboxpp/issues/2341", + "https://github.com/auscaster/frantic-board/issues/176", + "https://github.com/mergeos-bounties/Loru/issues/19", + "https://github.com/NSPG13/agent-bounties/issues/157", + "https://github.com/charles-openclaw/charles-microbounties/issues/1191", + "https://github.com/thodel/agentic_historian/issues/71", + "https://github.com/charles-openclaw/charles-microbounties/issues/1399", + "https://github.com/Gryd-lock/grydlock-oracle-adapter/issues/2", + "https://github.com/Monkestation/Vanderlin/issues/6639", + "https://github.com/lb1192176991-lab/zeroeye/issues/5", + "https://github.com/nexmo-community/phone-number-pool-manager-node/issues/12", + "https://github.com/mpfaffenberger/space_sim/issues/12", "https://github.com/openmetaearth/me-hub/issues/1169", - "https://github.com/anthropics/claude-code/issues/66806", - "https://github.com/charles-openclaw/charles-microbounties/issues/1492", - "https://github.com/Scottcjn/rustchain-bounties/issues/13647", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/3", - "https://github.com/Scottcjn/rustchain-bounties/issues/12653", - "https://github.com/charles-openclaw/charles-microbounties/issues/828", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2833", - "https://github.com/vansh-09/BountyScout/issues/228", - "https://github.com/C-Address-Onboarding-Bridge/C-Address-Onboarding-Bridge--Contract/issues/82", + "https://github.com/Scottcjn/Rustchain/issues/6791", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/52", + "https://github.com/uthw/Mincemeat-2/issues/346", + "https://github.com/Dragoon4002/artic-trader/issues/2", + "https://github.com/charles-openclaw/charles-microbounties/issues/3323", + "https://github.com/ChainGPT-org/AgenticOS/issues/15", + "https://github.com/crytic/slither/issues/3054", + "https://github.com/charles-openclaw/charles-microbounties/issues/1539", + "https://github.com/lb1192176991-lab/zeroeye/issues/4", + "https://github.com/Ikalus1988/MisakaNet/issues/417", + "https://github.com/RatLoopz/sahidawa-india/issues/626", + "https://github.com/charles-openclaw/charles-microbounties/issues/1759", + "https://github.com/conduit-protocol/streamFi-sdk/issues/57", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1154", + "https://github.com/charles-openclaw/charles-microbounties/issues/1070", + "https://github.com/Scottcjn/rustchain-bounties/issues/12856", + "https://github.com/mergeos-bounties/HIRI/issues/33", + "https://github.com/oblien/openship/issues/14", + "https://github.com/akashrtd/neunode/issues/18", + "https://github.com/charles-openclaw/charles-microbounties/issues/582", + "https://github.com/bettercallzaal/zpoidh/issues/5", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/764", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/289", + "https://github.com/Ikalus1988/MisakaNet/issues/305", + "https://github.com/Jonnyton/Workflow/issues/1032", + "https://github.com/natefinch/council4/issues/893", + "https://github.com/modelcontextprotocol/servers/issues/4102", + "https://github.com/charles-openclaw/charles-microbounties/issues/1453", + "https://github.com/mergeos-bounties/BloggerEasy/issues/37", + "https://github.com/Scottcjn/ardy-director/issues/2", + "https://github.com/DiamondDagger590/McRPG/issues/301", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3464", + "https://github.com/gitcoinco/gitcoin_co_30/issues/395", + "https://github.com/charles-openclaw/charles-microbounties/issues/2127", + "https://github.com/okalldal/lark/issues/485", + "https://github.com/NSPG13/agent-bounties/issues/166", + "https://github.com/charles-openclaw/charles-microbounties/issues/1590", + "https://github.com/conduit-protocol/streamFi-app/issues/67", + "https://github.com/tari-project/wxtm-bridge-frontend/issues/137", + "https://github.com/UnitOneAI/SecuritySkills/issues/1629", + "https://github.com/auscaster/frantic-board/issues/60", + "https://github.com/aporthq/aport-integrations/issues/19", "https://github.com/auscaster/frantic-board/issues/133", - "https://github.com/tronprotocol/tips/issues/899", - "https://github.com/harrickheng02/jIssWeb/issues/34", - "https://github.com/vansh-09/BountyScout/issues/195", - "https://github.com/charles-openclaw/charles-microbounties/issues/1637", - "https://github.com/charles-openclaw/charles-microbounties/issues/118", - "https://github.com/greyw0rks/bountyscout/issues/85", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/14", - "https://github.com/charles-openclaw/charles-microbounties/issues/1170", - "https://github.com/Scottcjn/rustchain-bounties/issues/13993", - "https://github.com/charles-openclaw/charles-microbounties/issues/1953", - "https://github.com/fluxerapp/fluxer-meta/issues/3", - "https://github.com/clowlove/Hermes-House/issues/607", - "https://github.com/ghc-cloneRepoStaging-scaAndRenovate/14459_Courtney-Moreno_0702_134635_ghc_gw0_failed/issues/9", - "https://github.com/Plasius-LTD/ai-governance/issues/9", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/823", - "https://github.com/nirholas/agenti/issues/112", - "https://github.com/charles-openclaw/charles-microbounties/issues/1375", - "https://github.com/openmetaearth/me-hub/issues/244", - "https://github.com/charles-openclaw/charles-microbounties/issues/821", - "https://github.com/ErgoDevs/Ergo-Bounties/issues/40", - "https://github.com/SecureBananaLabs/bug-bounty/issues/4605", - "https://github.com/greyw0rks/bountyscout/issues/87", - "https://github.com/greyw0rks/bountyscout/issues/111", - "https://github.com/Scottcjn/rustchain-bounties/issues/14523", - "https://github.com/canfieldjuan/atlas-portfolio/issues/313", - "https://github.com/itzroberl/mi-pagina-web/issues/1", - "https://github.com/vansh-09/BountyScout/issues/225", - "https://github.com/cenetex/signal/issues/587", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/18", - "https://github.com/charles-openclaw/charles-microbounties/issues/3100", - "https://github.com/kings0x/brimble_task/issues/3", - "https://github.com/UnitOneAI/SecuritySkills/issues/1145", - "https://github.com/Kings9595/WaveMilestone/issues/45", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/274", - "https://github.com/Grainlify/Grainlify-Stellar-Contracts/issues/99", - "https://github.com/Scottcjn/vintage-voice/issues/178", - "https://github.com/David-patrick-chuks/Riona-AI-Agent/issues/155", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/193", - "https://github.com/fuseio/bounties/issues/1", - "https://github.com/ritik4ever/stellar-bounty-board/issues/249", - "https://github.com/9904099/zeroeye/issues/3", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1145", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3370", + "https://github.com/charles-openclaw/charles-microbounties/issues/141", + "https://github.com/SecureBananaLabs/bug-bounty/issues/10919", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1399", + "https://github.com/mergeos-bounties/NeraJob/issues/10", + "https://github.com/Iamgoofball/-tg-station/issues/272", + "https://github.com/mergeos-bounties/PlantGuide/issues/3", + "https://github.com/NSPG13/agent-bounties/issues/260", + "https://github.com/charles-openclaw/charles-microbounties/issues/352", + "https://github.com/charles-openclaw/charles-microbounties/issues/1449", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4356", + "https://github.com/Scottcjn/rustchain-bounties/issues/14081", + "https://github.com/Gryd-lock/grydlock-oracle-adapter/issues/9", + "https://github.com/jeromyritchie52/Apache-ZooKeeper/issues/1", + "https://github.com/Scottcjn/rustchain-bounties/issues/13363", + "https://github.com/3ni8ma/aarushkarak-website/issues/35", + "https://github.com/Scottcjn/rustchain-bounties/issues/15142", + "https://github.com/Jonnyton/Workflow/issues/1050", + "https://github.com/marqov-dev/marqov-sdk/issues/1", + "https://github.com/UnitOneAI/SecuritySkills/issues/830", + "https://github.com/charles-openclaw/charles-microbounties/issues/1278", + "https://github.com/SecureBananaLabs/bug-bounty/issues/6658", + "https://github.com/charles-openclaw/charles-microbounties/issues/1385", + "https://github.com/Soroban-Smart-Block-Explorer/Soroban-Smart-Block-Backend-/issues/555", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/45", + "https://github.com/monk-io/monk-plugin/issues/52", + "https://github.com/Kristywvs22/gin/issues/1", + "https://github.com/UnitOneAI/SecuritySkills/issues/2218", + "https://github.com/Scottcjn/rustchain-bounties/issues/13191", + "https://github.com/himmelblau-idm/himmelblau/issues/981", + "https://github.com/vansh-09/BountyScout/issues/295", + "https://github.com/Scottcjn/Rustchain/issues/2369", + "https://github.com/charles-openclaw/charles-microbounties/issues/346", + "https://github.com/clowlove/Hermes-House/issues/481", + "https://github.com/CTristan/lobotomy-corporation-mods/issues/166", + "https://github.com/magpiecapital/magpie-x402/issues/4", + "https://github.com/BountyOnChain/StellarBounty/issues/337", + "https://github.com/xevrion-v2/agent-playground/issues/3693", + "https://github.com/dot-Justin/BonziAssist/issues/7", + "https://github.com/vansh-09/BountyScout/issues/184", + "https://github.com/Scottcjn/rustchain-bounties/issues/13625", + "https://github.com/ERA-Projects/era-project-rus/issues/296", + "https://github.com/charles-openclaw/charles-microbounties/issues/1903", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5015", + "https://github.com/okalldal/lark/issues/269", + "https://github.com/tinyhumansai/openhuman/issues/4190", + "https://github.com/UnitOneAI/SecuritySkills/issues/1005", + "https://github.com/ValveSoftware/Dota2-Gameplay/issues/30679", + "https://github.com/charles-openclaw/charles-microbounties/issues/1418", + "https://github.com/monk-io/monk-plugin/issues/36", + "https://github.com/vansh-09/BountyScout/issues/65", + "https://github.com/Peter7896/zeroeye/issues/1", + "https://github.com/CabinetOnFire/BehaviorTreeG/issues/1", + "https://github.com/SecureBananaLabs/bug-bounty/issues/9144", + "https://github.com/mergeos-bounties/Gomi/issues/22", + "https://github.com/David1984TK/Bimex/issues/248", + "https://github.com/ramimbo/mergework/issues/709", + "https://github.com/matchls/drglytics-web/issues/122", + "https://github.com/greyw0rks/bountyscout/issues/68", + "https://github.com/charles-openclaw/charles-microbounties/issues/3405", + "https://github.com/patchrail/patchrail/issues/122", + "https://github.com/ValveSoftware/Dota2-Gameplay/issues/428", + "https://github.com/auscaster/frantic-board/issues/174", + "https://github.com/gibwork/gibwork-website/issues/45", + "https://github.com/asaadnashed/bounty-autopilot/issues/16", + "https://github.com/Scottcjn/rustchain-bounties/issues/458", + "https://github.com/xevrion-v2/agent-playground/issues/6318", + "https://github.com/mergeos-bounties/PoseGuide/issues/52", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2952", + "https://github.com/ramimbo/mergework/issues/641", + "https://github.com/auscaster/frantic-board/issues/314", + "https://github.com/mergeos-bounties/NeraJob/issues/9", + "https://github.com/3ni8ma/aarushkarak-website/issues/57", + "https://github.com/mergeos-bounties/PlantGuide/issues/22", + "https://github.com/Andyyook/zeroeye/issues/1", + "https://github.com/xevrion-v2/agent-playground/issues/6095", + "https://github.com/charles-openclaw/charles-microbounties/issues/92", + "https://github.com/UnitOneAI/SecuritySkills/issues/39", + "https://github.com/ThanhTrucSolutions/OriLang/issues/11", + "https://github.com/Scottcjn/rustchain-bounties/issues/13853", + "https://github.com/ThanhTrucSolutions/OriLang/issues/17", + "https://github.com/mergeos-bounties/Loru/issues/200", + "https://github.com/Scottcjn/Rustchain/issues/5697", + "https://github.com/Scottcjn/bottube/issues/1447", + "https://github.com/charles-openclaw/charles-microbounties/issues/1270", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/620", + "https://github.com/Scottcjn/rustchain-bounties/issues/15183", + "https://github.com/mergeos-bounties/PoseGuide/issues/18", + "https://github.com/Scottcjn/rustchain-bounties/issues/13051", + "https://github.com/APN-Network/bugs/issues/39", + "https://github.com/charles-openclaw/charles-microbounties/issues/159", + "https://github.com/SecureBananaLabs/bug-bounty/issues/10913", + "https://github.com/sergo565456/action402/issues/2", + "https://github.com/labmain/ai-agent-pay-demo/issues/11", + "https://github.com/BitflowFinance/bff-skills/issues/581", + "https://github.com/xevrion-v2/agent-playground/issues/5077", + "https://github.com/DimaMend/AutoPrompt/issues/16", "https://github.com/Kozea/pygal/issues/426", - "https://github.com/Scottcjn/bottube/issues/1369", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5380", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/851", - "https://github.com/Scottcjn/rustchain-bounties/issues/13226", - "https://github.com/SecureBananaLabs/bug-bounty/issues/9696", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1166", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2958", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/519", - "https://github.com/charles-openclaw/charles-microbounties/issues/3122", - "https://github.com/Scottcjn/rustchain-bounties/issues/14176", - "https://github.com/charles-openclaw/charles-microbounties/issues/423", - "https://github.com/charles-openclaw/charles-microbounties/issues/3356", - "https://github.com/tari-project/wallet-benchmarks/issues/1", - "https://github.com/Scottcjn/rustchain-bounties/issues/14300", - "https://github.com/dev-kp-eloper/BountyScout/issues/351", - "https://github.com/Scottcjn/Rustchain/issues/7125", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3320", - "https://github.com/BountyOnChain/StellarBounty/issues/169", - "https://github.com/sunnah-com/api/issues/3274", - "https://github.com/Scottcjn/Rustchain/issues/7302", - "https://github.com/Scottcjn/rustchain-bounties/issues/14186", - "https://github.com/srikanthgumma/tabulator-table/issues/1", - "https://github.com/Scottcjn/rustchain-bounties/issues/14444", - "https://github.com/SecureBananaLabs/bug-bounty/issues/9170", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/852", - "https://github.com/Scottcjn/rustchain-bounties/issues/13702", - "https://github.com/daydreamsai/agent-bounties/issues/6", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3560", - "https://github.com/asaadnashed/bounty-autopilot/issues/15", - "https://github.com/lily-protocol/lily-backend/issues/38", - "https://github.com/charles-openclaw/charles-microbounties/issues/1533", - "https://github.com/UnitOneAI/SecuritySkills/issues/188", - "https://github.com/opentok/opentok-rtc/issues/787", - "https://github.com/charles-openclaw/charles-microbounties/issues/1981", - "https://github.com/umrr5/bug-bounty/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/282", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/914", - "https://github.com/lobster-trap/zeroeye/issues/23", - "https://github.com/Scottcjn/rustchain-bounties/issues/12393", - "https://github.com/GruftNet/BOXMEOUT-STELLA/issues/21", - "https://github.com/charles-openclaw/charles-microbounties/issues/942", - "https://github.com/CodeBountyOrg/taskforge-demo/issues/1", - "https://github.com/Ikalus1988/MisakaNet/issues/219", - "https://github.com/charles-openclaw/charles-microbounties/issues/392", - "https://github.com/Flatts3000/productive-frogs/issues/243", - "https://github.com/UnitOneAI/SecuritySkills/issues/1028", - "https://github.com/lobster-trap/hammer-and-nail/issues/438", - "https://github.com/esi/esi-issues/issues/1024", - "https://github.com/Markp1598M/cobra/issues/1", - "https://github.com/mcdope/pam_usb/issues/413", - "https://github.com/openmetaearth/me-hub/issues/195", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/266", + "https://github.com/PolicyEngine/policyengine-taxsim/issues/1098", + "https://github.com/charles-openclaw/charles-microbounties/issues/2198", + "https://github.com/auscaster/frantic-board/issues/287", + "https://github.com/xevrion-v2/agent-playground/issues/4548", + "https://github.com/3ni8ma/aarushkarak-website/issues/64", + "https://github.com/Flix100000/History-Stages/issues/103", + "https://github.com/charles-openclaw/charles-microbounties/issues/1422", + "https://github.com/nirium-protocol/nirium-sdk/issues/12", + "https://github.com/SecureBananaLabs/bug-bounty/issues/4400", + "https://github.com/Scottcjn/bottube/issues/1367", + "https://github.com/iterativv/NostalgiaForInfinity/issues/901", + "https://github.com/greyw0rks/bountyscout/issues/61", + "https://github.com/charles-openclaw/charles-microbounties/issues/1531", + "https://github.com/claude-builders-bounty/claude-builders-bounty/issues/2853", + "https://github.com/SecureBananaLabs/bug-bounty/issues/6858", + "https://github.com/mergeos-bounties/Gomi/issues/36", + "https://github.com/Iamgoofball/-tg-station/issues/232", + "https://github.com/Iamgoofball/-tg-station/issues/45", + "https://github.com/auscaster/frantic-board/issues/76", + "https://github.com/charles-openclaw/charles-microbounties/issues/1350", + "https://github.com/mergeos-bounties/PoseGuide/issues/34", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1146", + "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/342", + "https://github.com/charles-openclaw/charles-microbounties/issues/55", + "https://github.com/charles-openclaw/charles-microbounties/issues/3098", + "https://github.com/Scottcjn/rustchain-bounties/issues/12028", + "https://github.com/NovaSector/NovaSector/issues/7538", + "https://github.com/mergeos-bounties/NeraJob/issues/16", + "https://github.com/Scottcjn/Rustchain/issues/6891", + "https://github.com/charles-openclaw/charles-microbounties/issues/144", + "https://github.com/ritik4ever/stellar-bounty-board/issues/284", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/46", + "https://github.com/greyw0rks/bountyscout/issues/131", + "https://github.com/mergeos-bounties/NokaMan/issues/67", + "https://github.com/charles-openclaw/charles-microbounties/issues/2067", + "https://github.com/RoseMark45/echo/issues/1", + "https://github.com/ThanhTrucSolutions/OriLang/issues/6", + "https://github.com/carbon-design-system/carbon-for-ibm-dotcom/issues/12322", + "https://github.com/Proxyfan/Proxyfan/issues/927", + "https://github.com/UnitOneAI/SecuritySkills/issues/545", + "https://github.com/SAST-UP-STG/SAST-Test-Repo-7622e218-3f5f-404a-a65f-e1f8ac3a2f0b/issues/56", + "https://github.com/charles-openclaw/charles-microbounties/issues/982", + "https://github.com/textileio/community/issues/211", + "https://github.com/Iamgoofball/-tg-station/issues/113", + "https://github.com/Ensrick/vermintide-2-tweaker/issues/352", + "https://github.com/charles-openclaw/charles-microbounties/issues/825", + "https://github.com/charles-openclaw/charles-microbounties/issues/1129", + "https://github.com/a-organvm/peer-audited--behavioral-blockchain/issues/63", + "https://github.com/conduit-protocol/streamFi-contracts/issues/55", + "https://github.com/reallyunintented/yPot/issues/1", + "https://github.com/Scottcjn/bottube/issues/1309", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/293", + "https://github.com/xevrion-v2/agent-playground/issues/8167", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5035", + "https://github.com/qxrtjdggj653/grpc-go/issues/1", + "https://github.com/cyrilawoyemi99-max/owockibot-bounty-sync-/issues/1", + "https://github.com/xevrion-v2/agent-playground/issues/4746", + "https://github.com/DomTheDeveloper/crl/issues/103", + "https://github.com/lobster-trap/Kickama/issues/23", + "https://github.com/ramimbo/mergework/issues/708", + "https://github.com/Scottcjn/rustchain-bounties/issues/15249", + "https://github.com/xevrion-v2/agent-playground/issues/1255", + "https://github.com/xevrion-v2/agent-playground/issues/6589", + "https://github.com/JSONbored/gittensory/issues/40", + "https://github.com/Scottcjn/rustchain-bounties/issues/12652", "https://github.com/mautic/mautic/issues/16201", - "https://github.com/Scottcjn/bottube/issues/1403", - "https://github.com/Jonnyton/Workflow/issues/1034", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2971", - "https://github.com/asaadnashed/bounty-autopilot/issues/5", - "https://github.com/securitytxt/security-txt/issues/229", - "https://github.com/johnchampaign/star-wars-rebellion/issues/452", - "https://github.com/auscaster/frantic-board/issues/67", - "https://github.com/learnault/learnault-contracts/issues/62", - "https://github.com/charles-openclaw/charles-microbounties/issues/1113", - "https://github.com/greyw0rks/bountyscout/issues/128", - "https://github.com/Scottcjn/rustchain-bounties/issues/14718", - "https://github.com/charles-openclaw/charles-microbounties/issues/589", - "https://github.com/anirudhchaturvedi124-ai/decodelabs_tasks/issues/3", - "https://github.com/Disneyland55555/Git-Action/issues/22", - "https://github.com/UnitOneAI/SecuritySkills/issues/515", - "https://github.com/warpspeedopen-source/warpspeed-bounties/issues/5", - "https://github.com/charles-openclaw/charles-microbounties/issues/339", - "https://github.com/UnitOneAI/SecuritySkills/issues/1810", - "https://github.com/greyw0rks/bountyscout/issues/50", - "https://github.com/GitSafeBot/playground/issues/1", - "https://github.com/ACertainArchangel/pinenote-on-q64a/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/1374", - "https://github.com/Ikalus1988/MisakaNet/issues/154", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4915", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/564", - "https://github.com/ramimbo/mergework/issues/681", - "https://github.com/CredenceOrg/Credence-Frontend/issues/327", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2847", - "https://github.com/Scottcjn/rustchain-bounties/issues/14023", - "https://github.com/Emmanuel-Evenzur/syetem_prompt/issues/29", - "https://github.com/connect-boiz/soroban-security-scanner/issues/360", - "https://github.com/charles-openclaw/charles-microbounties/issues/1285", - "https://github.com/9904099/hammer-and-nail-bounty/issues/1", - "https://github.com/Scottcjn/Rustchain/issues/6373", - "https://github.com/Scottcjn/rustchain-bounties/issues/12347", - "https://github.com/UnitOneAI/SecuritySkills/issues/2745", - "https://github.com/Scottcjn/rustchain-bounties/issues/14004", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1390", - "https://github.com/Scottcjn/rustchain-bounties/issues/13663", - "https://github.com/xevrion-v2/agent-playground/issues/3721", - "https://github.com/joserivasgt/panama-me/issues/131", - "https://github.com/patchrail/patchrail/issues/122", - "https://github.com/charles-openclaw/charles-microbounties/issues/279", - "https://github.com/MatteoGabriele/agentscan/issues/198", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/22", - "https://github.com/qxrtjdggj653/grpc-go/issues/1", - "https://github.com/Errordog2/TentOfTrials/issues/5", - "https://github.com/NicoviGH/manchego-stars/issues/23", - "https://github.com/charles-openclaw/charles-microbounties/issues/2192", - "https://github.com/ramimbo/mergework/issues/383", - "https://github.com/ClankerNation/OpenAgents/issues/194", - "https://github.com/bolivian-peru/marketplace-service-template/issues/485", - "https://github.com/Scottcjn/rustchain-bounties/issues/14346", - "https://github.com/huggingface/blog/issues/3446", - "https://github.com/UnitOneAI/SecuritySkills/issues/1113", - "https://github.com/Scottcjn/rustchain-bounties/issues/14178", - "https://github.com/charles-openclaw/charles-microbounties/issues/1473", - "https://github.com/Jonnyton/Workflow/issues/1131", - "https://github.com/SPLURT-Station/S.P.L.U.R.T-tg/issues/918", - "https://github.com/UnitOneAI/SecuritySkills/issues/2419", - "https://github.com/tscircuit/pver/issues/1", + "https://github.com/freedom-winds/BountyScout/issues/1", + "https://github.com/Hexa-Hexagon/test/issues/43", + "https://github.com/NSPG13/agent-bounties/issues/35", + "https://github.com/Eaprime1/custos/issues/187", + "https://github.com/ramimbo/mergework/issues/377", + "https://github.com/openmetaearth/me-hub/issues/194", + "https://github.com/charles-openclaw/charles-microbounties/issues/1698", + "https://github.com/BrianV1981/arma3mercenaries_2026/issues/18", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1173", + "https://github.com/Iamgoofball/-tg-station/issues/77", + "https://github.com/tommycet/proofworks-genlayer/issues/45", + "https://github.com/Scottcjn/rustchain-bounties/issues/13193", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/605", + "https://github.com/UnsafeLabs/Coolify-Rust-v4/issues/3", + "https://github.com/johnchampaign/star-wars-rebellion/issues/600", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1128", + "https://github.com/RealDiligent/gittensory/issues/6", + "https://github.com/Jonnyton/Workflow/issues/1109", + "https://github.com/xevrion-v2/agent-playground/issues/1812", + "https://github.com/Scottcjn/rustchain-bounties/issues/13370", + "https://github.com/Dipraise1/Engram/issues/22", + "https://github.com/Scottcjn/contributors/issues/163", + "https://github.com/SecureBananaLabs/bug-bounty/issues/7872", + "https://github.com/charles-openclaw/charles-microbounties/issues/1462", + "https://github.com/lobster-trap/hammer-and-nail/issues/399", + "https://github.com/ZWISERFIT/zwiserfit-ai-store-manager/issues/9", + "https://github.com/algora-io/algora/issues/303", + "https://github.com/OpenAPITools/openapi-generator/issues/24229", + "https://github.com/vansh-09/BountyScout/issues/14", + "https://github.com/getdozer/dozer/issues/1690", + "https://github.com/mergeos-bounties/PlantGuide/issues/40", + "https://github.com/Scottcjn/rustchain-bounties/issues/14029", + "https://github.com/ramimbo/mergework/issues/932", + "https://github.com/ErgoDevs/Ergo-Bounties/issues/40", + "https://github.com/sneakers-the-rat/ImportantCode/issues/86", + "https://github.com/Jonnyton/Workflow/issues/1168", + "https://github.com/openmetaearth/me-hub/issues/18", + "https://github.com/UnitOneAI/SecuritySkills/issues/2491", + "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/348", + "https://github.com/mergeos-bounties/Gomi/issues/42", + "https://github.com/3ni8ma/aarushkarak-website/issues/36", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2540", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/267", + "https://github.com/lobster-trap/Kickama/issues/52", + "https://github.com/charles-openclaw/charles-microbounties/issues/1163", + "https://github.com/Kings9595/WaveMilestone/issues/35", + "https://github.com/xevrion-v2/agent-playground/issues/8304", + "https://github.com/charles-openclaw/charles-microbounties/issues/822", + "https://github.com/charles-openclaw/charles-microbounties/issues/1798", + "https://github.com/charles-openclaw/charles-microbounties/issues/252", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/639", + "https://github.com/charles-openclaw/charles-microbounties/issues/1625", + "https://github.com/xevrion-v2/agent-playground/issues/6983", + "https://github.com/charles-openclaw/charles-microbounties/issues/1288", + "https://github.com/stxtxm/bitbrawler/issues/315", + "https://github.com/refringe/SPT-Check-Mods/issues/95", + "https://github.com/vansh-09/BountyScout/issues/195", + "https://github.com/monk-io/monk-plugin/issues/120", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/410", + "https://github.com/thaohuynh14zc/spf13-cobra/issues/5", + "https://github.com/Predictify-org/predictify-frontend/issues/339", + "https://github.com/greyw0rks/bountyscout/issues/88", + "https://github.com/UnitOneAI/SecuritySkills/issues/107", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/134", + "https://github.com/devpool-directory/devpool-directory/issues/5887", + "https://github.com/UnsafeLabs/Coolify-Rust-v4/issues/2", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/610", + "https://github.com/relayhop/sn-monetization-runtime/issues/79", + "https://github.com/charles-openclaw/charles-microbounties/issues/3122", + "https://github.com/vansh-09/BountyScout/issues/114", + "https://github.com/capofficial/client/issues/32", + "https://github.com/gitcoinco/gitcoin_co_30/issues/456", + "https://github.com/xevrion-v2/agent-playground/issues/3243", + "https://github.com/dwebagents/AgentPipe/issues/1580", + "https://github.com/greyw0rks/bountyscout/issues/119", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/323", + "https://github.com/charles-openclaw/charles-microbounties/issues/868", + "https://github.com/charles-openclaw/charles-microbounties/issues/1351", + "https://github.com/mergeos-bounties/HIRI/issues/79", + "https://github.com/vansh-09/BountyScout/issues/298", + "https://github.com/charles-openclaw/charles-microbounties/issues/1582", + "https://github.com/maitebloger111/Apache-Arrow/issues/1", + "https://github.com/monk-io/monk-plugin/issues/35", + "https://github.com/charles-openclaw/charles-microbounties/issues/661", + "https://github.com/kakapez/agents-radar/issues/703", + "https://github.com/PG-AGI/toingg-jarvis/issues/9", + "https://github.com/xevrion-v2/agent-playground/issues/8243", + "https://github.com/Scottcjn/bottube/issues/1403", + "https://github.com/charles-openclaw/charles-microbounties/issues/1475", + "https://github.com/auscaster/frantic-board/issues/197", + "https://github.com/lambdasistemi/cardano-keri/issues/44", + "https://github.com/NSPG13/agent-bounties/issues/72", + "https://github.com/Ikalus1988/MisakaNet/issues/416", + "https://github.com/greyw0rks/bountyscout/issues/60", + "https://github.com/jfrog/xray-aws-security-hub/issues/63", + "https://github.com/NSPG13/agent-bounties/issues/154", + "https://github.com/canfieldjuan/ATLAS/issues/1656", + "https://github.com/Scottcjn/rustchain-bounties/issues/13685", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/643", + "https://github.com/charles-openclaw/charles-microbounties/issues/1430", + "https://github.com/xevrion-v2/agent-playground/issues/863", + "https://github.com/xevrion-v2/agent-playground/issues/4720", + "https://github.com/djjrip/kickama-cash-grab-hacks/issues/5", + "https://github.com/charles-openclaw/charles-microbounties/issues/3078", + "https://github.com/dev-kp-eloper/BountyScout/issues/351", + "https://github.com/anatolykoptev/go-job/issues/213", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/685", + "https://github.com/vansh-09/BountyScout/issues/267", + "https://github.com/rsoreq/AutoGPT/issues/214", + "https://github.com/Scottcjn/rustchain-bounties/issues/438", + "https://github.com/GautamKumarOffical/TentOfTrials/issues/20", + "https://github.com/Karanjot786/agent-skills-cli/issues/23", + "https://github.com/Scottcjn/rustchain-bounties/issues/13242", + "https://github.com/xevrion-v2/agent-playground/issues/5148", + "https://github.com/charles-openclaw/charles-microbounties/issues/1198", + "https://github.com/Scottcjn/rustchain-bounties/issues/13111", + "https://github.com/auscaster/frantic-board/issues/207", + "https://github.com/charles-openclaw/charles-microbounties/issues/835", + "https://github.com/relayhop/sn-monetization-runtime/issues/94", + "https://github.com/BountyOnChain/StellarBounty/issues/370", + "https://github.com/greyw0rks/bountyscout/issues/113", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/3216", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5403", + "https://github.com/avinashkamat48-design/avinashkamat48-design/issues/2", + "https://github.com/owenshuo/open-bounty-radar/issues/3", + "https://github.com/charles-openclaw/charles-microbounties/issues/1845", + "https://github.com/greyw0rks/bountyscout/issues/123", + "https://github.com/Scottcjn/Rustchain/issues/7923", "https://github.com/charles-openclaw/charles-microbounties/issues/660", - "https://github.com/Scottcjn/rustchain-bounties/issues/14025", - "https://github.com/SecureBananaLabs/bug-bounty/issues/1674", - "https://github.com/storm-software/cyclone-ui/issues/117", - "https://github.com/Scottcjn/rustchain-bounties/issues/14269", - "https://github.com/charles-openclaw/charles-microbounties/issues/117", - "https://github.com/Scottcjn/rustchain-bounties/issues/12643", - "https://github.com/xevrion-v2/agent-playground/issues/2825", - "https://github.com/yeheskieltame/claudelance/issues/545", - "https://github.com/greyw0rks/bountyscout/issues/33", + "https://github.com/crytic/slither/issues/3055", + "https://github.com/xevrion-v2/agent-playground/issues/14", + "https://github.com/coollabsio/coolify/issues/2390", + "https://github.com/akoita/proof-of-audit/issues/297", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/3215", + "https://github.com/xevrion-v2/agent-playground/issues/6092", + "https://github.com/TensorBlock/awesome-mcp-servers/issues/1311", + "https://github.com/kcolbchain/erc721-ai/issues/31", + "https://github.com/aozorayama45/Traefik/issues/3", + "https://github.com/Gitlawb/node/issues/203", + "https://github.com/Scottcjn/rustchain-bounties/issues/14175", + "https://github.com/vansh-09/BountyScout/issues/172", + "https://github.com/huggingface/blog/issues/3446", + "https://github.com/openmetaearth/me-hub/issues/358", + "https://github.com/UnitOneAI/SecuritySkills/issues/2536", + "https://github.com/NSPG13/agent-bounties/issues/250", + "https://github.com/fluffels/kubernia/issues/897", + "https://github.com/kiku-jw/kikuai-github-scanner/issues/2", + "https://github.com/ussyalfaks/ahjoorxmr-contract/issues/425", + "https://github.com/charles-openclaw/charles-microbounties/issues/1128", + "https://github.com/charles-openclaw/charles-microbounties/issues/1209", + "https://github.com/xevrion-v2/agent-playground/issues/3145", + "https://github.com/charles-openclaw/charles-microbounties/issues/2136", + "https://github.com/archestra-ai/archestra/issues/3855", + "https://github.com/greyw0rks/bountyscout/issues/71", + "https://github.com/mergeos-bounties/Loru/issues/223", + "https://github.com/archestra-ai/archestra/issues/3837", + "https://github.com/UnitOneAI/SecuritySkills/issues/2808", + "https://github.com/charles-openclaw/charles-microbounties/issues/1384", + "https://github.com/yosemite01/stellar-creator-portfolio/issues/743", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/264", + "https://github.com/charles-openclaw/charles-microbounties/issues/1", + "https://github.com/johnchampaign/star-wars-rebellion/issues/235", + "https://github.com/charles-openclaw/charles-microbounties/issues/1368", + "https://github.com/charles-openclaw/charles-microbounties/issues/1742", + "https://github.com/cuentaprueba244w-dotcom/TentOfTrials/issues/11", + "https://github.com/boundlessfi/bounties/issues/206", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/208", + "https://github.com/johnchampaign/star-wars-rebellion/issues/556", + "https://github.com/charles-openclaw/charles-microbounties/issues/1535", + "https://github.com/wintermeyer/vutuv/issues/657", + "https://github.com/Scottcjn/beacon-skill/issues/140", + "https://github.com/NSPG13/agent-bounties/issues/321", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5169", + "https://github.com/Disciplr-Org/Disciplr-Frontend/issues/312", + "https://github.com/charles-openclaw/charles-microbounties/issues/522", + "https://github.com/xevrion-v2/agent-playground/issues/3857", + "https://github.com/xevrion-v2/agent-playground/issues/4122", + "https://github.com/Scottcjn/rustchain-bounties/issues/15323", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/242", + "https://github.com/charles-openclaw/charles-microbounties/issues/3085", + "https://github.com/charles-openclaw/charles-microbounties/issues/1281", + "https://github.com/djjrip/kickama-cash-grab-hacks/issues/3", + "https://github.com/charles-openclaw/charles-microbounties/issues/1443", + "https://github.com/xevrion-v2/agent-playground/issues/6979", + "https://github.com/Scottcjn/rustchain-bounties/issues/751", + "https://github.com/aashu91/robinhood-evm-mcp/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/1266", + "https://github.com/xevrion-v2/agent-playground/issues/15", + "https://github.com/charles-openclaw/charles-microbounties/issues/855", + "https://github.com/clowlove/Hermes-House/issues/767", + "https://github.com/jgeraigery/spot-sdk/issues/101", + "https://github.com/Project-Dumont/Dumont-Station/issues/837", + "https://github.com/Scottcjn/rustchain-bounties/issues/13040", + "https://github.com/AllianceAuth-Apps/aa-killtracker/issues/26", + "https://github.com/monk-io/monk-plugin/issues/105", + "https://github.com/NSPG13/agent-bounties/issues/268", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3788", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/72", + "https://github.com/Leantime/leantime/issues/2936", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/17", + "https://github.com/vansh-09/BountyScout/issues/417", + "https://github.com/Scottcjn/rustchain-bounties/issues/14199", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/362", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2757", + "https://github.com/Scottcjn/Rustchain/issues/6288", + "https://github.com/openai/codex/issues/24192", + "https://github.com/vansh-09/BountyScout/issues/473", + "https://github.com/Spectral-Finance/lux/issues/58", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4915", + "https://github.com/SecureBananaLabs/bug-bounty/issues/11278", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/756", + "https://github.com/runxhq/runx/issues/207", + "https://github.com/nicodevtools/kickama-foxy-trials/issues/8", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/322", + "https://github.com/paraloom-labs/paraloom-core/issues/477", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5380", + "https://github.com/johnchampaign/star-wars-rebellion/issues/519", + "https://github.com/openmetaearth/me-hub/issues/1012", + "https://github.com/Scottcjn/rustchain-bounties/issues/15791", + "https://github.com/xevrion-v2/agent-playground/issues/5720", + "https://github.com/xevrion-v2/agent-playground/issues/6458", + "https://github.com/ClankerNation/OpenAgents/issues/155", + "https://github.com/lobster-trap/Kickama/issues/378", + "https://github.com/nextcloud/passman/issues/258", + "https://github.com/SPLURT-Station/S.P.L.U.R.T-tg/issues/1066", + "https://github.com/greyw0rks/bountyscout/issues/26", + "https://github.com/vhspace/goldenmcp/issues/32", + "https://github.com/Scottcjn/rustchain-bounties/issues/15377", + "https://github.com/xevrion-v2/agent-playground/issues/3816", + "https://github.com/paraloom-labs/paraloom-core/issues/422", + "https://github.com/charles-openclaw/charles-microbounties/issues/874", + "https://github.com/UnitOneAI/SecuritySkills/issues/34", + "https://github.com/dev-kp-eloper/BountyScout/issues/573", + "https://github.com/soroban-tooling/soroban-keeper-network/issues/28", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/599", + "https://github.com/bitaps-com/jsbtc/issues/64", + "https://github.com/lobster-trap/Kickama/issues/397", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/247", + "https://github.com/Scottcjn/Rustchain/issues/179", + "https://github.com/openmetaearth/me-hub/issues/195", + "https://github.com/paraloom-labs/paraloom-core/issues/469", "https://github.com/SecureBananaLabs/bug-bounty/issues/7066", - "https://github.com/charles-openclaw/charles-microbounties/issues/265", - "https://github.com/Scottcjn/rustchain-bounties/issues/14079", - "https://github.com/xevrion-v2/agent-playground/issues/4722", - "https://github.com/Scottcjn/rustchain-bounties/issues/3074", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3884", - "https://github.com/tinyhumansai/openhuman/issues/4190", - "https://github.com/Replikanti/agentis-colonies/issues/1037", - "https://github.com/charles-openclaw/charles-microbounties/issues/3397", - "https://github.com/h3js/h3/issues/1410", - "https://github.com/charles-openclaw/charles-microbounties/issues/3329", - "https://github.com/Scottcjn/rustchain-bounties/issues/13169", - "https://github.com/Scottcjn/rustchain-bounties/issues/13828", - "https://github.com/charles-openclaw/charles-microbounties/issues/3404", - "https://github.com/SharedStake/Contracts/issues/15", - "https://github.com/agoraproto/agora/issues/1", - "https://github.com/renaudgenard/TentOfTrials/issues/2", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2975", - "https://github.com/Replikanti/agentis-core/issues/810", - "https://github.com/charles-openclaw/charles-microbounties/issues/1627", - "https://github.com/UnitOneAI/SecuritySkills/issues/2434", - "https://github.com/charles-openclaw/charles-microbounties/issues/1876", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2956", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/209", - "https://github.com/UnitOneAI/SecuritySkills/issues/436", - "https://github.com/RatLoopz/sahidawa-india/issues/1312", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/265", - "https://github.com/SecureBananaLabs/bug-bounty/issues/6949", - "https://github.com/xgcing/TentOfTrials/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/2045", - "https://github.com/midnightntwrk/contributor-hub/issues/463", - "https://github.com/xevrion-v2/agent-playground/issues/4495", - "https://github.com/sindresorhus/caprine/issues/103", - "https://github.com/charles-openclaw/charles-microbounties/issues/426", - "https://github.com/xevrion-v2/agent-playground/issues/2436", - "https://github.com/Scottcjn/rustchain-bounties/issues/14525", - "https://github.com/charles-openclaw/charles-microbounties/issues/1818", - "https://github.com/mergeos-bounties/mergeos/issues/8", - "https://github.com/charles-openclaw/charles-microbounties/issues/1622", - "https://github.com/ruohong2018/ruohong2018.github.io/issues/1227", - "https://github.com/codegraphtheory/hermes-profile-template/issues/18", - "https://github.com/APN-Network/bugs/issues/39", - "https://github.com/SecureBananaLabs/bug-bounty/issues/4120", - "https://github.com/javelin-anticheat/py-workedtask/issues/4", - "https://github.com/xevrion-v2/agent-playground/issues/7", - "https://github.com/vansh-09/BountyScout/issues/213", - "https://github.com/SecureBananaLabs/bug-bounty/issues/9121", - "https://github.com/vansh-09/BountyScout/issues/27", - "https://github.com/xevrion-v2/agent-playground/issues/3141", - "https://github.com/RatLoopz/sahidawa-india/issues/1882", - "https://github.com/charles-openclaw/charles-microbounties/issues/1696", - "https://github.com/charles-openclaw/charles-microbounties/issues/657", - "https://github.com/shadow6427/FunPrizeLab/issues/1", - "https://github.com/okalldal/lark/issues/279", - "https://github.com/Jonnyton/Workflow/issues/1194", - "https://github.com/SecureBananaLabs/bug-bounty/issues/8333", - "https://github.com/PhasoraLabs/StellarGrantProtocol/issues/547", - "https://github.com/greyw0rks/bountyscout/issues/103", - "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/183", - "https://github.com/charles-openclaw/charles-microbounties/issues/880", - "https://github.com/xevrion-v2/agent-playground/issues/2966", - "https://github.com/charles-openclaw/charles-microbounties/issues/1484", - "https://github.com/Peter7896/zeroeye/issues/4", - "https://github.com/vansh-09/BountyScout/issues/89", - "https://github.com/Scottcjn/rustchain-bounties/issues/12304", - "https://github.com/ClankerNation/OpenAgents/issues/124", - "https://github.com/Drakkar-Software/OctoBot/issues/3479", - "https://github.com/Scottcjn/rustchain-bounties/issues/13902", - "https://github.com/Scottcjn/rustchain-bounties/issues/13287", - "https://github.com/charles-openclaw/charles-microbounties/issues/1847", - "https://github.com/Scottcjn/rustchain-bounties/issues/14197", - "https://github.com/OriginProtocol/arm-oeth/issues/240", - "https://github.com/josephgodwinkimani/refine-starter/issues/12", - "https://github.com/CounterpartyXCP/counterparty-core/issues/958", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/759", - "https://github.com/Scottcjn/rustchain-bounties/issues/14755", - "https://github.com/David-patrick-chuks/Riona-AI-Agent/issues/120", - "https://github.com/sorosave-protocol/frontend/issues/16", - "https://github.com/Scottcjn/Rustchain/issues/6830", - "https://github.com/mpfaffenberger/space_sim/issues/162", - "https://github.com/johnchampaign/star-wars-rebellion/issues/95", - "https://github.com/yosemite01/stellar-creator-portfolio/issues/738", - "https://github.com/Jonnyton/Workflow/issues/1061", - "https://github.com/greyw0rks/bountyscout/issues/82", - "https://github.com/greyw0rks/bountyscout/issues/68", - "https://github.com/openmetaearth/me-hub/issues/399", - "https://github.com/charles-openclaw/charles-microbounties/issues/204", - "https://github.com/mpfaffenberger/space_sim/issues/9", - "https://github.com/SecureBananaLabs/bug-bounty/issues/6759", - "https://github.com/tari-project/universe/issues/3111", - "https://github.com/Scottcjn/rustchain-bounties/issues/13363", - "https://github.com/Informant254/Nova-arsenal/issues/5", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/211", - "https://github.com/thanhle74/TentOfTrials/issues/2", - "https://github.com/gitcoinco/gitcoin_co_30/issues/406", - "https://github.com/FlossWare/VirtOS/issues/90", - "https://github.com/charles-openclaw/charles-microbounties/issues/431", - "https://github.com/UnitOneAI/SecuritySkills/issues/2062", - "https://github.com/vansh-09/BountyScout/issues/261", - "https://github.com/charles-openclaw/charles-microbounties/issues/1797", - "https://github.com/charles-openclaw/charles-microbounties/issues/2105", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/848", - "https://github.com/3ni8ma/aarushkarak-website/issues/78", - "https://github.com/ramimbo/mergework/issues/800", - "https://github.com/dheeai/dhee-desktop/issues/186", - "https://github.com/xevrion-v2/agent-playground/issues/2434", - "https://github.com/DimaMend/V-Achilles/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/1206", - "https://github.com/3ni8ma/aarushkarak-website/issues/64", - "https://github.com/flowopslab/flowopslab/issues/1", - "https://github.com/relayhop/sn-monetization-runtime/issues/90", - "https://github.com/charles-openclaw/charles-microbounties/issues/772", - "https://github.com/charles-openclaw/charles-microbounties/issues/264", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3792", - "https://github.com/jMonkeyEngine/jmonkeyengine/issues/2222", - "https://github.com/Feel-ix-343/markdown-oxide/issues/274", - "https://github.com/libretro/snes9x2010/issues/81", - "https://github.com/Scottcjn/rustchain-bounties/issues/14130", - "https://github.com/Scottcjn/rustchain-bounties/issues/14195", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1165", - "https://github.com/openmetaearth/me-hub/issues/904", - "https://github.com/charles-openclaw/charles-microbounties/issues/2053", - "https://github.com/charles-openclaw/charles-microbounties/issues/1225", - "https://github.com/pschanely/CrossHair/issues/115", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/320", - "https://github.com/xevrion-v2/agent-playground/issues/687", - "https://github.com/KOSASIH/geraipi/issues/23", - "https://github.com/UnitOneAI/SecuritySkills/issues/1528", - "https://github.com/ritik4ever/stellar-bounty-board/issues/374", - "https://github.com/charles-openclaw/charles-microbounties/issues/3087", - "https://github.com/greyw0rks/bountyscout/issues/81", - "https://github.com/greyw0rks/bountyscout/issues/79", - "https://github.com/vansh-09/BountyScout/issues/26", - "https://github.com/mtclab/deep-world-tui/issues/637", - "https://github.com/ramimbo/mergework/issues/646", - "https://github.com/Scottcjn/rustchain-bounties/issues/14220", - "https://github.com/wearshoes/AnthropicNotification/issues/45", - "https://github.com/ritik4ever/stellar-bounty-board/issues/376", - "https://github.com/Scottcjn/rustchain-bounties/issues/13254", - "https://github.com/thanhtantran/agents-radar/issues/150", - "https://github.com/vansh-09/BountyScout/issues/201", - "https://github.com/jarlbrak/ftk-mod-framework/issues/61", - "https://github.com/openmetaearth/me-hub/issues/93", - "https://github.com/lk251/agent-bounty-market/issues/6", - "https://github.com/stkr89/trading-agents/issues/125", - "https://github.com/charles-openclaw/charles-microbounties/issues/1325", - "https://github.com/BruceFeIix/picker/issues/2454", - "https://github.com/Scottcjn/rustchain-bounties/issues/14199", - "https://github.com/explorerscat/cautious-octo-fishstick/issues/13", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/520", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5020", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/28", - "https://github.com/Scottcjn/rustchain-bounties/issues/14142", - "https://github.com/Scottcjn/rustchain-bounties/issues/177", - "https://github.com/UnitOneAI/SecuritySkills/issues/2452", - "https://github.com/charles-openclaw/charles-microbounties/issues/2062", - "https://github.com/chainreactors/picker/issues/1264", - "https://github.com/johnchampaign/star-wars-rebellion/issues/202", - "https://github.com/ramimbo/mergework/issues/404", - "https://github.com/charles-openclaw/charles-microbounties/issues/180", - "https://github.com/magpiecapital/magpie-x402/issues/4", - "https://github.com/CryptoJym/plimsoll/issues/68", - "https://github.com/mpfaffenberger/space_sim/issues/11", - "https://github.com/ramimbo/mergework/issues/459", - "https://github.com/lobster-trap/TentOfTrials/issues/61", - "https://github.com/charles-openclaw/charles-microbounties/issues/2135", - "https://github.com/CounterpartyXCP/counterparty-core/issues/2965", - "https://github.com/boundlessfi/bounties/issues/274", - "https://github.com/charles-openclaw/charles-microbounties/issues/1457", - "https://github.com/charles-openclaw/charles-microbounties/issues/2215", - "https://github.com/xevrion-v2/agent-playground/issues/2207", - "https://github.com/xevrion-v2/agent-playground/issues/3132", - "https://github.com/UnitOneAI/SecuritySkills/issues/2746", - "https://github.com/auscaster/frantic-board/issues/136", - "https://github.com/ramimbo/mergework/issues/512", - "https://github.com/UnitOneAI/SecuritySkills/issues/1595", - "https://github.com/UnitOneAI/SecuritySkills/issues/1325", - "https://github.com/UnitOneAI/SecuritySkills/issues/39", - "https://github.com/jbilcke-hf/clapper/issues/10", - "https://github.com/xevrion-v2/agent-playground/issues/4746", - "https://github.com/cuentaprueba244w-dotcom/TentOfTrials/issues/1", - "https://github.com/Scottcjn/rustchain-bounties/issues/14530", - "https://github.com/9904099/zeroeye/issues/2", - "https://github.com/UnitOneAI/SecuritySkills/issues/183", - "https://github.com/openmetaearth/me-hub/issues/88", - "https://github.com/Scottcjn/rustchain-bounties/issues/13432", - "https://github.com/iberi22/xavier/issues/115", - "https://github.com/CellularPrivacy/Android-IMSI-Catcher-Detector/issues/489", - "https://github.com/openmetaearth/me-hub/issues/654", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/201", - "https://github.com/charles-openclaw/charles-microbounties/issues/866", - "https://github.com/Scottcjn/rustchain-bounties/issues/14014", - "https://github.com/greyw0rks/bountyscout/issues/83", - "https://github.com/mergemint-mint/mergemint-contracts/issues/250", - "https://github.com/ZWISERFIT/zwiserfit-ai-store-manager/issues/11", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4471", - "https://github.com/cenetex/signal/issues/337", - "https://github.com/AAStarCommunity/airaccount-contract/issues/29", - "https://github.com/Vonage/vonage-media-transformers-samples/issues/39", - "https://github.com/cuentaprueba244w-dotcom/zeroeye/issues/2", - "https://github.com/Scottcjn/rustchain-bounties/issues/13728", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1154", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/267", - "https://github.com/ClankerNation/OpenAgents/issues/137", - "https://github.com/Yuliya65/Langroid/issues/35", - "https://github.com/ghc-cloneRepoStaging-scaAndRenovate2/14459_Randy-Snyder_0630_221254_ghc_gw1_failed/issues/7", - "https://github.com/ClankerNation/OpenAgents/issues/33", - "https://github.com/ubiquity/business-development/issues/89", - "https://github.com/ZecHub/zechub/issues/1692", - "https://github.com/Informant254/Nova-arsenal/issues/20", - "https://github.com/amaybaum-prod/stable-diffusion-webui/issues/1", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/21", - "https://github.com/ramimbo/mergework/issues/282", - "https://github.com/charles-openclaw/charles-microbounties/issues/1426", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/844", - "https://github.com/SecureBananaLabs/bug-bounty/issues/4482", - "https://github.com/orchestration-agent/AgentOrchestration/issues/1421", - "https://github.com/Scottcjn/Rustchain/issues/6157", - "https://github.com/Dragoon4002/artic-trader/issues/2", - "https://github.com/dwebagents/AgentPipe/issues/1910", - "https://github.com/capofficial/client/issues/16", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/763", - "https://github.com/Scottcjn/rustchain-bounties/issues/13524", - "https://github.com/charles-openclaw/charles-microbounties/issues/1536", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1399", - "https://github.com/nextcloud/passman/issues/511", - "https://github.com/mergemint-mint/mergemint-contracts/issues/316", - "https://github.com/SirPepperPot/EnhancedOverhaulRemixVersion/issues/12", - "https://github.com/DimaMend/NodeGoat/issues/4", - "https://github.com/fluxerapp/fluxer-meta/issues/5", - "https://github.com/charles-openclaw/charles-microbounties/issues/1150", - "https://github.com/Scottcjn/rustchain-bounties/issues/13111", - "https://github.com/hyperlane-xyz/hyperlane-monorepo/issues/4585", - "https://github.com/charles-openclaw/charles-microbounties/issues/1518", - "https://github.com/charles-openclaw/charles-microbounties/issues/1196", - "https://github.com/Scottcjn/rustchain-bounties/issues/13037", - "https://github.com/Spectral-Finance/lux/issues/79", - "https://github.com/joserivasgt/panama-me/issues/280", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/3215", - "https://github.com/luanti-org/luanti/issues/8586", - "https://github.com/mergemint-mint/mergemint-contracts/issues/310", - "https://github.com/LarytheLord/Adventurers-Guild/issues/219", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/856", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/217", - "https://github.com/vansh-09/BountyScout/issues/235", - "https://github.com/JiusiServe/vllm-omni/issues/274", - "https://github.com/Scottcjn/rustchain-bounties/issues/14032", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/4", - "https://github.com/lobster-trap/Kickama/issues/394", - "https://github.com/UnitOneAI/SecuritySkills/issues/2064", - "https://github.com/Scottcjn/rustchain-bounties/issues/13852", - "https://github.com/xevrion-v2/agent-playground/issues/3123", - "https://github.com/cockroachdb/cockroach/issues/171598", - "https://github.com/charles-openclaw/charles-microbounties/issues/820", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2952", + "https://github.com/mergeos-bounties/HIRI/issues/21", + "https://github.com/charles-openclaw/charles-microbounties/issues/1081", + "https://github.com/Blue-Kollar/Blue-Collar/issues/593", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4384", + "https://github.com/mergeos-bounties/mergeos/issues/232", + "https://github.com/Emmanuel-Evenzur/damn-vulnerable-llm-agent/issues/29", + "https://github.com/mergeos-bounties/PlantGuide/issues/55", "https://github.com/UnitOneAI/SecuritySkills/issues/1380", - "https://github.com/SecureBananaLabs/bug-bounty/issues/979", - "https://github.com/textileio/community/issues/214", - "https://github.com/charles-openclaw/charles-microbounties/issues/3092", - "https://github.com/charles-openclaw/charles-microbounties/issues/1169", - "https://github.com/UnitOneAI/SecuritySkills/issues/1913", - "https://github.com/NovaSector/NovaSector/issues/7538", - "https://github.com/xevrion-v2/agent-playground/issues/8", - "https://github.com/charles-openclaw/charles-microbounties/issues/1461", - "https://github.com/xevrion-v2/agent-playground/issues/3145", - "https://github.com/synfig/synfig/issues/450", - "https://github.com/Scottcjn/rustchain-bounties/issues/12768", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/908", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/269", + "https://github.com/Eaprime1/custos/issues/235", + "https://github.com/charles-openclaw/charles-microbounties/issues/109", + "https://github.com/Scottcjn/rustchain-bounties/issues/121", + "https://github.com/dwebagents/AgentPipe/issues/1663", + "https://github.com/openmetaearth/me-hub/issues/1206", + "https://github.com/charles-openclaw/charles-microbounties/issues/2229", + "https://github.com/Scottcjn/beacon-skill/issues/869", + "https://github.com/BountyOnChain/StellarBounty/issues/185", + "https://github.com/charles-openclaw/charles-microbounties/issues/1826", + "https://github.com/SecureBananaLabs/bug-bounty/issues/11362", "https://github.com/charles-openclaw/charles-microbounties/issues/1431", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2181", - "https://github.com/auscaster/frantic-board/issues/192", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2849", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4381", - "https://github.com/charles-openclaw/charles-microbounties/issues/1770", - "https://github.com/charles-openclaw/charles-microbounties/issues/1986", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3912", - "https://github.com/vansh-09/BountyScout/issues/7", - "https://github.com/mergemint-mint/mergemint-contracts/issues/304", - "https://github.com/SecureBananaLabs/bug-bounty/issues/3152", - "https://github.com/greyw0rks/bountyscout/issues/29", - "https://github.com/QYQAQ/agents-radar/issues/412", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/824", - "https://github.com/Yuliya65/AutoAgents/issues/12", - "https://github.com/cakuki/tidewake/issues/222", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/641", - "https://github.com/charles-openclaw/charles-microbounties/issues/672", - "https://github.com/charles-openclaw/charles-microbounties/issues/1999", - "https://github.com/SharedStake/Contracts/issues/7", - "https://github.com/ClankerNation/OpenAgents/issues/170", - "https://github.com/openmetaearth/me-hub/issues/1078", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/754", - "https://github.com/jaxassistant55/jax-micro-offer-studio/issues/25", - "https://github.com/xevrion-v2/agent-playground/issues/1812", - "https://github.com/charles-openclaw/charles-microbounties/issues/3401", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/109", - "https://github.com/charles-openclaw/charles-microbounties/issues/926", - "https://github.com/xevrion-v2/agent-playground/issues/3693", - "https://github.com/vansh-09/BountyScout/issues/9", - "https://github.com/jaisong123/eleuther-digest/issues/396", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/49", - "https://github.com/Scottcjn/rustchain-bounties/issues/13949", - "https://github.com/Scottcjn/rustchain-bounties/issues/293", - "https://github.com/charles-openclaw/charles-microbounties/issues/787", - "https://github.com/Scottcjn/rustchain-bounties/issues/13968", - "https://github.com/openmetaearth/me-hub/issues/82", - "https://github.com/OWASP-BLT/BLT/issues/6437", - "https://github.com/relayhop/sn-monetization-runtime/issues/107", - "https://github.com/ovh/public-cloud-roadmap/issues/1177", - "https://github.com/charles-openclaw/charles-microbounties/issues/109", - "https://github.com/charles-openclaw/charles-microbounties/issues/206", - "https://github.com/charles-openclaw/charles-microbounties/issues/91", - "https://github.com/ramimbo/mergework/issues/785", - "https://github.com/Scottcjn/rustchain-bounties/issues/12889", - "https://github.com/ChasarooniZ/pf2e-trigger-animations-collection/issues/18", - "https://github.com/charles-openclaw/charles-microbounties/issues/2101", - "https://github.com/pyrimid-ai/pyrimid/issues/55", - "https://github.com/tinyhumansai/tiny.place/issues/180", - "https://github.com/johnchampaign/star-wars-rebellion/issues/203", - "https://github.com/charles-openclaw/charles-microbounties/issues/2198", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/799", - "https://github.com/Scottcjn/rustchain-bounties/issues/12540", - "https://github.com/Scottcjn/grazer-skill-rs/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/1759", - "https://github.com/greyw0rks/bountyscout/issues/62", - "https://github.com/greyw0rks/bountyscout/issues/120", - "https://github.com/SolFoundry/solfoundry/issues/849", - "https://github.com/Azure/sap-edge-integration-cell-on-azure-accelerator/issues/45", - "https://github.com/greyw0rks/bountyscout/issues/139", - "https://github.com/openmetaearth/me-hub/issues/184", - "https://github.com/xevrion-v2/agent-playground/issues/4788", - "https://github.com/charles-openclaw/charles-microbounties/issues/1826", - "https://github.com/charles-openclaw/charles-microbounties/issues/3134", - "https://github.com/johnchampaign/star-wars-rebellion/issues/131", - "https://github.com/charles-openclaw/charles-microbounties/issues/1378", - "https://github.com/Scottcjn/langchain-rustchain/issues/1", - "https://github.com/tari-project/tari/issues/7830", - "https://github.com/David-patrick-chuks/Riona-AI-Agent/issues/118", - "https://github.com/iflytek/astronclaw-tutorial/issues/17", - "https://github.com/ramimbo/mergework/issues/315", - "https://github.com/charles-openclaw/charles-microbounties/issues/634", - "https://github.com/charles-openclaw/charles-microbounties/issues/1199", - "https://github.com/BountyOnChain/StellarBounty/issues/64", - "https://github.com/QuantumSavory/QuantumSavory.jl/issues/131", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4384", - "https://github.com/vansh-09/BountyScout/issues/152", - "https://github.com/charles-openclaw/charles-microbounties/issues/959", - "https://github.com/dannywillems/dannywillems.github.io/issues/436", - "https://github.com/charles-openclaw/charles-microbounties/issues/2107", - "https://github.com/cyrilawoyemi99-max/owockibot-bounty-sync-/issues/5", - "https://github.com/xevrion-v2/agent-playground/issues/4847", - "https://github.com/charles-openclaw/charles-microbounties/issues/1454", - "https://github.com/charles-openclaw/charles-microbounties/issues/1413", - "https://github.com/ChainGPT-org/AgenticOS/issues/15", - "https://github.com/charles-openclaw/charles-microbounties/issues/984", - "https://github.com/boundlessfi/bounties/issues/281", - "https://github.com/explorerscat/cautious-octo-fishstick/issues/2", - "https://github.com/greyw0rks/bountyscout/issues/61", - "https://github.com/charles-openclaw/charles-microbounties/issues/1365", - "https://github.com/charles-openclaw/charles-microbounties/issues/1514", - "https://github.com/xevrion-v2/agent-playground/issues/2968", - "https://github.com/charles-openclaw/charles-microbounties/issues/2228", - "https://github.com/charles-openclaw/charles-microbounties/issues/1433", - "https://github.com/xevrion-v2/agent-playground/issues/692", - "https://github.com/Spectral-Finance/lux/issues/99", - "https://github.com/Scottcjn/rustchain-bounties/issues/14527", - "https://github.com/SecureBananaLabs/bug-bounty/issues/6860", - "https://github.com/charles-openclaw/charles-microbounties/issues/1296", - "https://github.com/qingfeng312/middleware-nail-forge/issues/4", - "https://github.com/0106hyh/kickama-manifest-wizard/issues/1", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/747", - "https://github.com/Promptlab37/PEPAGI/issues/3", - "https://github.com/foremetric/foremetric/issues/4", - "https://github.com/explorerscat/cautious-octo-fishstick/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/3124", - "https://github.com/xevrion-v2/agent-playground/issues/1126", - "https://github.com/ramimbo/mergework/issues/411", - "https://github.com/xevrion-v2/agent-playground/issues/5113", - "https://github.com/Scottcjn/rustchain-bounties/issues/12368", - "https://github.com/charles-openclaw/charles-microbounties/issues/982", - "https://github.com/eserlan/Codex-Cryptica/issues/1438", - "https://github.com/xevrion-v2/agent-playground/issues/4122", - "https://github.com/Emmanuel-Evenzur/syetem_prompt/issues/19", - "https://github.com/xevrion-v2/agent-playground/issues/5112", - "https://github.com/orchestration-agent/AgentOrchestration/issues/2564", - "https://github.com/greyw0rks/bountyscout/issues/64", - "https://github.com/Scottcjn/rustchain-bounties/issues/12542", - "https://github.com/owocki-bot/ai-bounty-board/issues/26", - "https://github.com/Scottcjn/rustchain-bounties/issues/11196", - "https://github.com/DimaMend/V-Achilles/issues/44", - "https://github.com/charles-openclaw/charles-microbounties/issues/37", - "https://github.com/charles-openclaw/charles-microbounties/issues/14", - "https://github.com/Ikalus1988/MisakaNet/issues/135", - "https://github.com/Scottcjn/rustchain-bounties/issues/13588", - "https://github.com/charles-openclaw/charles-microbounties/issues/1579", - "https://github.com/Markp1598M/Helm/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/1356", - "https://github.com/bitcoin-dot-org/Bitcoin.org/issues/4805", - "https://github.com/cakuki/tidewake/issues/167", - "https://github.com/Scottcjn/rustchain-bounties/issues/14196", - "https://github.com/vansh-09/BountyScout/issues/166", - "https://github.com/3ni8ma/aarushkarak-website/issues/103", - "https://github.com/hashgraph/hedera-agent-kit-js/issues/867", - "https://github.com/lobster-trap/zeroeye/issues/172", - "https://github.com/a-organvm/peer-audited--behavioral-blockchain/issues/34", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/258", - "https://github.com/Scottcjn/rustchain-bounties/issues/14096", - "https://github.com/UnitOneAI/SecuritySkills/issues/197", - "https://github.com/INDIGOAZUL/la-tanda-web/issues/269", - "https://github.com/greyw0rks/bountyscout/issues/73", - "https://github.com/blemaire-wavetel/AutoPrompt/issues/9", - "https://github.com/maitebloger111/Apache-Arrow/issues/1", - "https://github.com/ramimbo/mergework/issues/708", - "https://github.com/charles-openclaw/charles-microbounties/issues/1906", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4924", - "https://github.com/laudantstolam/stargazer_newsletter/issues/24", - "https://github.com/Nexussyn/ai-growth-platform/issues/4", - "https://github.com/charles-openclaw/charles-microbounties/issues/1211", - "https://github.com/xevrion-v2/agent-playground/issues/2", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1155", - "https://github.com/Feel-ix-343/markdown-oxide/issues/263", - "https://github.com/SecureBananaLabs/bug-bounty/issues/6233", - "https://github.com/BountyOnChain/StellarBounty/issues/166", - "https://github.com/charles-openclaw/charles-microbounties/issues/924", - "https://github.com/Deiontre10/forevercraft/issues/5", - "https://github.com/charles-openclaw/charles-microbounties/issues/1941", - "https://github.com/Jonnyton/Workflow/issues/1032", - "https://github.com/Informant254/Nova-arsenal/issues/6", - "https://github.com/auscaster/frantic-board/issues/176", - "https://github.com/nicodevtools/kickama-foxy-trials/issues/11", - "https://github.com/fluxerapp/fluxer-meta/issues/22", - "https://github.com/vansh-09/BountyScout/issues/193", - "https://github.com/charles-openclaw/charles-microbounties/issues/2172", - "https://github.com/charles-openclaw/charles-microbounties/issues/2179", - "https://github.com/UnitOneAI/SecuritySkills/issues/136", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/3233", - "https://github.com/xevrion-v2/agent-playground/issues/4686", - "https://github.com/charles-openclaw/charles-microbounties/issues/139", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4210", - "https://github.com/lobster-trap/SmartGesture/issues/463", - "https://github.com/ClankerNation/OpenAgents/issues/200", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2954", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5403", - "https://github.com/blemaire-wavetel/AutoPrompt/issues/19", - "https://github.com/ritik4ever/stellar-bounty-board/issues/246", - "https://github.com/xevrion-v2/agent-playground/issues/3857", - "https://github.com/Spectral-Finance/lux/issues/80", - "https://github.com/UnitOneAI/SecuritySkills/issues/2102", - "https://github.com/jessedaustin93/Open-Aeon/issues/1", - "https://github.com/Scottcjn/rustchain-bounties/issues/14551", - "https://github.com/UnitOneAI/SecuritySkills/issues/634", - "https://github.com/SecureBananaLabs/bug-bounty/issues/7069", - "https://github.com/charles-openclaw/charles-microbounties/issues/1491", - "https://github.com/melvio/hopla/issues/226", - "https://github.com/ramimbo/mergework/issues/601", - "https://github.com/Proxyfan/Proxyfan/issues/928", - "https://github.com/Scottcjn/rustchain-bounties/issues/12899", - "https://github.com/UnitOneAI/SecuritySkills/issues/1112", - "https://github.com/UnitOneAI/SecuritySkills/issues/855", - "https://github.com/mergeos-bounties/mergeos/issues/19", - "https://github.com/charles-openclaw/charles-microbounties/issues/2005", - "https://github.com/charles-openclaw/charles-microbounties/issues/2012", - "https://github.com/openai/codex/issues/24192", - "https://github.com/Scottcjn/rustchain-bounties/issues/13191", - "https://github.com/vansh-09/BountyScout/issues/79", - "https://github.com/tinyhumansai/tiny.place/issues/134", - "https://github.com/UnitOneAI/SecuritySkills/issues/1806", - "https://github.com/charles-openclaw/charles-microbounties/issues/1423", - "https://github.com/storm-software/cyclone-ui/issues/114", - "https://github.com/johnchampaign/star-wars-rebellion/issues/428", - "https://github.com/vansh-09/BountyScout/issues/236", - "https://github.com/gibwork/gibwork-website/issues/45", - "https://github.com/boundlessfi/bounties/issues/282", - "https://github.com/charles-openclaw/charles-microbounties/issues/3119", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/864", - "https://github.com/magpiecapital/magpie-x402/issues/5", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/793", - "https://github.com/charles-openclaw/charles-microbounties/issues/1558", - "https://github.com/vansh-09/BountyScout/issues/180", - "https://github.com/charles-openclaw/charles-microbounties/issues/1480", - "https://github.com/UnitOneAI/SecuritySkills/issues/176", - "https://github.com/openmetaearth/me-hub/issues/86", - "https://github.com/charles-openclaw/charles-microbounties/issues/4", - "https://github.com/charles-openclaw/charles-microbounties/issues/18", - "https://github.com/Scottcjn/rustchain-bounties/issues/13475", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2768", - "https://github.com/JSONbored/gittensory/issues/2308", - "https://github.com/charles-openclaw/charles-microbounties/issues/35", - "https://github.com/nicodevtools/kickama-foxy-trials/issues/5", - "https://github.com/xevrion-v2/agent-playground/issues/235", - "https://github.com/johnchampaign/star-wars-rebellion/issues/236", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/306", - "https://github.com/daydreamsai/agent-bounties/issues/5", - "https://github.com/Ikalus1988/MisakaNet/issues/138", - "https://github.com/Scottcjn/rustchain-bounties/issues/13015", - "https://github.com/charles-openclaw/charles-microbounties/issues/1472", - "https://github.com/ramimbo/mergework/issues/384", - "https://github.com/charles-openclaw/charles-microbounties/issues/2059", - "https://github.com/openmetaearth/me-hub/issues/1355", - "https://github.com/charles-openclaw/charles-microbounties/issues/141", - "https://github.com/charles-openclaw/charles-microbounties/issues/1657", - "https://github.com/Scottcjn/Rustchain/issues/2146", - "https://github.com/greyw0rks/bountyscout/issues/39", - "https://github.com/onlyjco/daily-ai-digest/issues/4", - "https://github.com/a-organvm/peer-audited--behavioral-blockchain/issues/153", - "https://github.com/lobster-trap/Kickama/issues/178", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/38", - "https://github.com/SecureBananaLabs/bug-bounty/issues/7322", - "https://github.com/SecureBananaLabs/bug-bounty/issues/7070", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1384", - "https://github.com/Scottcjn/rustchain-bounties/issues/13101", - "https://github.com/charles-openclaw/charles-microbounties/issues/3120", - "https://github.com/charles-openclaw/charles-microbounties/issues/1946", - "https://github.com/ramimbo/mergework/issues/164", - "https://github.com/charles-openclaw/charles-microbounties/issues/522", - "https://github.com/openmetaearth/me-hub/issues/1200", - "https://github.com/yosemite01/stellar-creator-portfolio/issues/742", - "https://github.com/Scottcjn/rustchain-bounties/issues/14170", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1168", - "https://github.com/ClankerNation/OpenAgents/issues/14", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/752", - "https://github.com/ramimbo/mergework/issues/1011", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1820", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/206", - "https://github.com/Scottcjn/legend-of-elya-n64/issues/11", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2531", - "https://github.com/bitcoin-apps-suite/bitcoin-writer/issues/28", - "https://github.com/Jonnyton/Workflow/issues/1052", - "https://github.com/xevrion-v2/agent-playground/issues/3338", - "https://github.com/charles-openclaw/charles-microbounties/issues/1182", - "https://github.com/Jagadeeshftw/grainlify/issues/1405", - "https://github.com/reallyunintented/yPot/issues/1", - "https://github.com/openmetaearth/me-hub/issues/1229", - "https://github.com/UnitOneAI/SecuritySkills/issues/686", - "https://github.com/RatLoopz/sahidawa-india/issues/1311", - "https://github.com/openmetaearth/me-hub/issues/365", - "https://github.com/charles-openclaw/charles-microbounties/issues/205", - "https://github.com/Scottcjn/vintage-voice/issues/181", - "https://github.com/nicodevtools/kickama-foxy-trials/issues/8", - "https://github.com/devpool-directory/devpool-directory/issues/5887", - "https://github.com/SnowfallHD/zeroeye/issues/2", - "https://github.com/codeboost-tr/zeroeye/issues/4", - "https://github.com/codeboost-tr/zeroeye/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/734", - "https://github.com/shadow6427/AwesomeGesture/issues/4", - "https://github.com/SecureBananaLabs/bug-bounty/issues/3229", - "https://github.com/relayhop/sn-monetization-runtime/issues/106", - "https://github.com/SRM-Test-DEV/test-56/issues/3785", - "https://github.com/Scottcjn/rustchain-bounties/issues/12238", - "https://github.com/appmeee/ClawFreelance/issues/85", - "https://github.com/Scottcjn/rustchain-bounties/issues/449", - "https://github.com/PhasoraLabs/StellarGrantProtocol/issues/594", - "https://github.com/duanyytop/agents-radar/issues/1712", - "https://github.com/UnitOneAI/SecuritySkills/issues/2490", - "https://github.com/GruftNet/BOXMEOUT-STELLA/issues/23", - "https://github.com/Scottcjn/rustchain-bounties/issues/13966", - "https://github.com/Scottcjn/rustchain-bounties/issues/12978", - "https://github.com/ClankerNation/OpenAgents/issues/128", - "https://github.com/vansh-09/BountyScout/issues/190", - "https://github.com/charles-openclaw/charles-microbounties/issues/3093", - "https://github.com/openmetaearth/me-hub/issues/212", - "https://github.com/himmelblau-idm/himmelblau/issues/1318", - "https://github.com/Scottcjn/rustchain-bounties/issues/12351", - "https://github.com/joserivasgt/panama-me/issues/216", - "https://github.com/charles-openclaw/charles-microbounties/issues/987", - "https://github.com/UnitOneAI/SecuritySkills/issues/2245", - "https://github.com/Jonnyton/Workflow/issues/1130", - "https://github.com/capofficial/client/issues/32", - "https://github.com/fluxerapp/fluxer-meta/issues/21", - "https://github.com/ThaumicTheory/BOTB-Resourcepack/issues/12", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4086", - "https://github.com/ramimbo/mergework/issues/643", - "https://github.com/UnitOneAI/SecuritySkills/issues/2043", - "https://github.com/SecureBananaLabs/bug-bounty/issues/3850", - "https://github.com/WUAIBING/MEP/issues/224", - "https://github.com/boundlessfi/bounties/issues/206", - "https://github.com/Scottcjn/rustchain-bounties/issues/1098", - "https://github.com/ramimbo/mergework/issues/799", - "https://github.com/swbooksmugglers/swbs-issue-tracker/issues/116", - "https://github.com/tari-project/minotari-cli/issues/125", - "https://github.com/charles-openclaw/charles-microbounties/issues/1935", - "https://github.com/johnchampaign/star-wars-rebellion/issues/416", - "https://github.com/MM0x02/RSS-Push/issues/528", - "https://github.com/charles-openclaw/charles-microbounties/issues/1482", - "https://github.com/UnitOneAI/SecuritySkills/issues/2558", - "https://github.com/RyderFreeman4Logos/cli-sub-agent/issues/1638", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/269", - "https://github.com/Scottcjn/rustchain-bounties/issues/1151", - "https://github.com/charles-openclaw/charles-microbounties/issues/1260", - "https://github.com/jfrog/xray-aws-security-hub/issues/63", - "https://github.com/charles-openclaw/charles-microbounties/issues/1486", - "https://github.com/HubDApp/Dongle-Smartcontract/issues/256", - "https://github.com/compusophy/localharness/issues/50", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/343", - "https://github.com/lobster-trap/Kickama/issues/172", - "https://github.com/Scottcjn/rustchain-bounties/issues/12608", - "https://github.com/himmelblau-idm/himmelblau/issues/981", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2762", - "https://github.com/charles-openclaw/charles-microbounties/issues/1479", - "https://github.com/SecureBananaLabs/bug-bounty/issues/8679", - "https://github.com/charles-openclaw/charles-microbounties/issues/1205", - "https://github.com/Scottcjn/ram-coffers/issues/45", - "https://github.com/runxhq/runx/issues/77", - "https://github.com/tailcallhq/forgecode/issues/8", - "https://github.com/charles-openclaw/charles-microbounties/issues/823", - "https://github.com/Scottcjn/rustchain-bounties/issues/12982", - "https://github.com/bountydotnew/tripwire/issues/42", - "https://github.com/UnitOneAI/SecuritySkills/issues/134", - "https://github.com/DimaMend/V-Achilles/issues/45", - "https://github.com/dungkimtran3d/Traefik/issues/1", - "https://github.com/ramimbo/mergework/issues/813", - "https://github.com/vansh-09/BountyScout/issues/219", - "https://github.com/Scottcjn/rustchain-bounties/issues/14081", - "https://github.com/Scottcjn/rustchain-bounties/issues/12652", - "https://github.com/charles-openclaw/charles-microbounties/issues/829", - "https://github.com/xevrion-v2/agent-playground/issues/5072", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/828", - "https://github.com/Scottcjn/rustchain-bounties/issues/12025", - "https://github.com/dwebagents/AgentPipe/issues/1580", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3464", - "https://github.com/nicodevtools/kickama-foxy-trials/issues/9", - "https://github.com/ory/hydra/issues/4112", - "https://github.com/greyw0rks/bountyscout/issues/131", - "https://github.com/johnchampaign/star-wars-rebellion/issues/439", - "https://github.com/Scottcjn/rustchain-bounties/issues/13381", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3295", - "https://github.com/auscaster/frantic-board/issues/64", - "https://github.com/charles-openclaw/charles-microbounties/issues/1469", - "https://github.com/charles-openclaw/charles-microbounties/issues/1476", - "https://github.com/UnitOneAI/SecuritySkills/issues/1057", - "https://github.com/qtop/qtop/issues/433", - "https://github.com/calcom/cal.diy/issues/29469", - "https://github.com/tommycet/proofworks-genlayer/issues/45", - "https://github.com/Scottcjn/rustchain-bounties/issues/12942", - "https://github.com/Scottcjn/grazer-skill/issues/68", - "https://github.com/charles-openclaw/charles-microbounties/issues/1275", - "https://github.com/Scottcjn/rustchain-bounties/issues/307", - "https://github.com/lk251/agent-bounty-market/issues/4", - "https://github.com/charles-openclaw/charles-microbounties/issues/1490", - "https://github.com/charles-openclaw/charles-microbounties/issues/114", - "https://github.com/charles-openclaw/charles-microbounties/issues/3400", - "https://github.com/charles-openclaw/charles-microbounties/issues/767", - "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/202", - "https://github.com/charles-openclaw/charles-microbounties/issues/1415", - "https://github.com/rsoreq/AutoGPT/issues/215", - "https://github.com/Scottcjn/rustchain-bounties/issues/13683", - "https://github.com/greyw0rks/bountyscout/issues/86", - "https://github.com/openmetaearth/me-hub/issues/50", - "https://github.com/vansh-09/BountyScout/issues/144", - "https://github.com/charles-openclaw/charles-microbounties/issues/1629", - "https://github.com/valvepsro466/Support/issues/120", - "https://github.com/charles-openclaw/charles-microbounties/issues/1690", - "https://github.com/charles-openclaw/charles-microbounties/issues/1812", - "https://github.com/vansh-09/BountyScout/issues/118", - "https://github.com/Jagadeeshftw/grainlify/issues/1371", - "https://github.com/okalldal/lark/issues/485", - "https://github.com/ClankerNation/OpenAgents/issues/16", - "https://github.com/SecureBananaLabs/bug-bounty/issues/8069", - "https://github.com/avinashkamat48-design/avinashkamat48-design/issues/2", - "https://github.com/Scottcjn/rustchain-bounties/issues/14090", - "https://github.com/SecureBananaLabs/bug-bounty/issues/9127", - "https://github.com/vansh-09/BountyScout/issues/174", - "https://github.com/xevrion-v2/agent-playground/issues/4552", - "https://github.com/Charushi06/StudyPlan/issues/735", - "https://github.com/ritik4ever/stellar-bounty-board/issues/301", - "https://github.com/charles-openclaw/charles-microbounties/issues/1351", - "https://github.com/charles-openclaw/charles-microbounties/issues/1996", - "https://github.com/SecureBananaLabs/bug-bounty/issues/4604", - "https://github.com/vansh-09/BountyScout/issues/21", - "https://github.com/nltk/nltk/issues/3603", - "https://github.com/weilixiong/TentOfTrials/issues/5", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/3216", - "https://github.com/Scottcjn/contributors/issues/163", - "https://github.com/openmetaearth/me-hub/issues/296", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2947", - "https://github.com/Scottcjn/bottube/issues/1471", - "https://github.com/vansh-09/BountyScout/issues/97", - "https://github.com/ERA-Projects/era-project-eng/issues/752", - "https://github.com/thaohuynh14zc/spf13-cobra/issues/5", - "https://github.com/n-rook/thscoreboard/issues/567", - "https://github.com/charles-openclaw/charles-microbounties/issues/132", - "https://github.com/SecureBananaLabs/bug-bounty/issues/6323", - "https://github.com/openmetaearth/me-hub/issues/940", - "https://github.com/charles-openclaw/charles-microbounties/issues/1840", - "https://github.com/SecureBananaLabs/bug-bounty/issues/8265", - "https://github.com/xevrion-v2/agent-playground/issues/3725", - "https://github.com/Scottcjn/rustchain-bounties/issues/13051", - "https://github.com/amaybaum-prod/label-studio/issues/15", - "https://github.com/charles-openclaw/charles-microbounties/issues/1385", - "https://github.com/greyw0rks/bountyscout/issues/99", - "https://github.com/charles-openclaw/charles-microbounties/issues/1861", - "https://github.com/ritik4ever/stellar-bounty-board/issues/259", - "https://github.com/charles-openclaw/charles-microbounties/issues/36", - "https://github.com/johnchampaign/star-wars-rebellion/issues/385", - "https://github.com/matty33/eps-dapp/issues/158", - "https://github.com/charles-openclaw/charles-microbounties/issues/934", - "https://github.com/nicodevtools/kickama-foxy-trials/issues/17", + "https://github.com/Henry00IS/ShapeEditor/issues/17", + "https://github.com/quachminh11/VictoriaMetrics/issues/1", + "https://github.com/Yuliya65/AutoPrompt/issues/9", + "https://github.com/3ni8ma/aarushkarak-website/issues/25", + "https://github.com/vansh-09/BountyScout/issues/153", + "https://github.com/organvm/peer-audited--behavioral-blockchain/issues/76", + "https://github.com/monero-integrations/moneromagento/issues/14", + "https://github.com/SecureBananaLabs/bug-bounty/issues/1141", + "https://github.com/Kristywvs22/zap/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/59", + "https://github.com/lobster-trap/TentOfTrials/issues/49", + "https://github.com/charles-openclaw/charles-microbounties/issues/1819", + "https://github.com/charles-openclaw/charles-microbounties/issues/933", + "https://github.com/xevrion-v2/agent-playground/issues/3123", + "https://github.com/Scottcjn/Rustchain/issues/214", "https://github.com/msageha/maestro_v2/issues/30", - "https://github.com/greyw0rks/bountyscout/issues/89", - "https://github.com/WattCoin-Org/wattcoin/issues/17", - "https://github.com/thanhle74/kickama/issues/15", - "https://github.com/boundlessfi/bounties/issues/213", - "https://github.com/cognilabz/cognibrain/issues/103", - "https://github.com/blemaire-wavetel/AutoPrompt/issues/8", - "https://github.com/lobster-trap/zeroeye/issues/12", - "https://github.com/charles-openclaw/charles-microbounties/issues/92", - "https://github.com/colinhacks/zod/issues/2654", - "https://github.com/PhasoraLabs/StellarGrantProtocol/issues/541", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/5", - "https://github.com/charles-openclaw/charles-microbounties/issues/1276", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/325", - "https://github.com/UnitOneAI/SecuritySkills/issues/1332", - "https://github.com/charles-openclaw/charles-microbounties/issues/1477", - "https://github.com/vansh-09/BountyScout/issues/220", - "https://github.com/aozorayama45/Traefik/issues/3", - "https://github.com/bitcoin-dot-org/Bitcoin.org/issues/1583", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/156", - "https://github.com/charles-openclaw/charles-microbounties/issues/1350", - "https://github.com/Octo-Studios/reliquified-artifacts/issues/70", - "https://github.com/Fund-My-Cause/Fund-My-Cause/issues/605", - "https://github.com/souleater06/mineagent/issues/4", - "https://github.com/EvoMap/evolver/issues/588", - "https://github.com/Scottcjn/rustchain-bounties/issues/2293", - "https://github.com/jainhitesh9998/esignet/issues/18", - "https://github.com/dwebagents/AgentPipe/issues/125", - "https://github.com/Scottcjn/rustchain-bounties/issues/13383", - "https://github.com/charles-openclaw/charles-microbounties/issues/1416", - "https://github.com/SecureBananaLabs/bug-bounty/issues/7321", - "https://github.com/Scottcjn/rustchain-bounties/issues/14144", - "https://github.com/charles-openclaw/charles-microbounties/issues/1933", - "https://github.com/charles-openclaw/charles-microbounties/issues/188", - "https://github.com/kcolbchain/erc721-ai/issues/32", - "https://github.com/xevrion-v2/agent-playground/issues/5111", - "https://github.com/okalldal/lark/issues/469", - "https://github.com/ussyalfaks/ahjoorxmr-contract/issues/425", - "https://github.com/openmetaearth/me-hub/issues/87", - "https://github.com/charles-openclaw/charles-microbounties/issues/337", - "https://github.com/rsoreq/AutoGPT/issues/97", - "https://github.com/charles-openclaw/charles-microbounties/issues/922", - "https://github.com/johnchampaign/star-wars-rebellion/issues/39", - "https://github.com/Scottcjn/rustchain-bounties/issues/12973", - "https://github.com/amaybaum-prod/eui/issues/154", - "https://github.com/vansh-09/BountyScout/issues/173", - "https://github.com/SecureBananaLabs/bug-bounty/issues/743", - "https://github.com/charles-openclaw/charles-microbounties/issues/851", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/266", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/652", - "https://github.com/charles-openclaw/charles-microbounties/issues/354", - "https://github.com/vansh-09/BountyScout/issues/187", - "https://github.com/ritik4ever/stellar-bounty-board/issues/267", - "https://github.com/Scottcjn/bottube/issues/1359", - "https://github.com/ruohong2018/ruohong2018.github.io/issues/857", - "https://github.com/cmss13-devs/cmss13/issues/12547", - "https://github.com/mergemint-mint/mergemint-contracts/issues/311", - "https://github.com/profullstack/ugig.net/issues/401", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3213", - "https://github.com/yosemite01/stellar-creator-portfolio/issues/724", - "https://github.com/loldi/cartright/issues/3", - "https://github.com/ghc-cloneRepoStaging-scaAndRenovate2/14459_Randy-Snyder_0630_221254_ghc_gw1_failed/issues/9", - "https://github.com/Scottcjn/rustchain-bounties/issues/14015", - "https://github.com/Scottcjn/rustchain-bounties/issues/14077", - "https://github.com/auscaster/frantic-board/issues/137", - "https://github.com/openmetaearth/me-hub/issues/933", - "https://github.com/Scottcjn/rustchain-bounties/issues/13825", - "https://github.com/charles-openclaw/charles-microbounties/issues/1137", - "https://github.com/UnitOneAI/SecuritySkills/issues/2412", - "https://github.com/charles-openclaw/charles-microbounties/issues/1189", - "https://github.com/CodeBountyOrg/taskforge-demo/issues/6", - "https://github.com/Nobayprotocol/Nobay-Protocol/issues/3", + "https://github.com/Scottcjn/rustchain-bounties/issues/15037", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/272", + "https://github.com/openmetaearth/me-hub/issues/192", + "https://github.com/Grainlify/Grainlify-Stellar-Contracts/issues/176", + "https://github.com/charles-openclaw/charles-microbounties/issues/1283", + "https://github.com/charles-openclaw/charles-microbounties/issues/1541", + "https://github.com/charles-openclaw/charles-microbounties/issues/2848", + "https://github.com/netzpirat/openclaw-trading-agent/issues/127", + "https://github.com/vansh-09/BountyScout/issues/146", + "https://github.com/UnitOneAI/SecuritySkills/issues/2433", + "https://github.com/verdikta/verdikta-applications/issues/20", + "https://github.com/xevrion-v2/agent-playground/issues/6577", + "https://github.com/hugh-mend/npmtest/issues/9", + "https://github.com/charles-openclaw/charles-microbounties/issues/924", + "https://github.com/dev-kp-eloper/BountyScout/issues/417", + "https://github.com/mergeos-bounties/Loru/issues/197", + "https://github.com/NirShaharabani/python-mini-projects/issues/36", + "https://github.com/lk251/agent-bounty-market/issues/25", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/633", + "https://github.com/pollar-xyz/pollar-crowdfunding-template/issues/1", + "https://github.com/xevrion-v2/agent-playground/issues/6732", + "https://github.com/auscaster/frantic-board/issues/191", + "https://github.com/xevrion-v2/agent-playground/issues/5699", + "https://github.com/bettercallzaal/zpoidh/issues/13", + "https://github.com/SecureBananaLabs/bug-bounty/issues/1288", + "https://github.com/Paritok-official/paritok-4b-v1/issues/1", + "https://github.com/mautic/mautic/issues/16242", + "https://github.com/NSPG13/agent-bounties/issues/116", + "https://github.com/daydreamsai/agent-bounties/issues/6", + "https://github.com/508-dev/bounties/issues/1", + "https://github.com/Scottcjn/rustchain-bounties/issues/12286", + "https://github.com/mitch-burcham/gitpaid/issues/5", + "https://github.com/SecureBananaLabs/bug-bounty/issues/7319", + "https://github.com/joserivasgt/panama-me/issues/133", + "https://github.com/ramimbo/mergework/issues/1083", + "https://github.com/greyw0rks/bountyscout/issues/89", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/291", + "https://github.com/Scottcjn/rustchain-bounties/issues/13984", + "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/219", + "https://github.com/paraloom-labs/paraloom-core/issues/532", + "https://github.com/charles-openclaw/charles-microbounties/issues/126", + "https://github.com/Scottcjn/rustchain-bounties/issues/13657", + "https://github.com/mergeos-bounties/ros2-mcp/issues/45", "https://github.com/BilgeGates/chess-vision/issues/82", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/794", - "https://github.com/ClankerNation/OpenAgents/issues/100", - "https://github.com/IntersectMBO/drep-campaign-platform/issues/14", - "https://github.com/charles-openclaw/charles-microbounties/issues/1279", - "https://github.com/joserivasgt/panama-me/issues/229", - "https://github.com/Disneyland55555/Git-Action/issues/13", - "https://github.com/drizzle-team/drizzle-orm/issues/1188", - "https://github.com/charles-openclaw/charles-microbounties/issues/1814", - "https://github.com/Jonnyton/Workflow/issues/1053", - "https://github.com/charles-openclaw/charles-microbounties/issues/3411", - "https://github.com/lobster-trap/Kickama/issues/23", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5667", - "https://github.com/Scottcjn/Rustchain/issues/7392", - "https://github.com/vansh-09/BountyScout/issues/165", - "https://github.com/vansh-09/BountyScout/issues/267", - "https://github.com/warpspeedopen-source/warpspeed-bounties/issues/1", - "https://github.com/okalldal/lark/issues/348", - "https://github.com/claude-builders-bounty/claude-builders-bounty/issues/2855", - "https://github.com/SirPepperPot/EnhancedOverhaulRemixVersion/issues/10", - "https://github.com/Scottcjn/bottube/issues/1371", - "https://github.com/SecureBananaLabs/bug-bounty/issues/3852", + "https://github.com/ramimbo/mergework/issues/282", + "https://github.com/textileio/community/issues/213", + "https://github.com/xevrion-v2/agent-playground/issues/4552", + "https://github.com/Yuliya65/AutoAgents/issues/12", + "https://github.com/mergeos-bounties/PlantGuide/issues/45", + "https://github.com/Scottcjn/rustchain-bounties/issues/13595", + "https://github.com/moorcheh-ai/memanto/issues/770", + "https://github.com/stkr89/trading-agents/issues/125", + "https://github.com/Iamgoofball/-tg-station/issues/138", + "https://github.com/lissy93/bug-bounties/issues/126", + "https://github.com/johnchampaign/star-wars-rebellion/issues/530", + "https://github.com/asaadnashed/bounty-autopilot/issues/11", + "https://github.com/charles-openclaw/charles-microbounties/issues/1320", + "https://github.com/ramimbo/mergework/issues/649", + "https://github.com/mergeos-bounties/PlantGuide/issues/175", + "https://github.com/appmeee/ClawFreelance/issues/85", + "https://github.com/Scottcjn/grazer-skill/issues/68", + "https://github.com/mtclab/deep-world-tui/issues/637", + "https://github.com/vansh-09/BountyScout/issues/161", + "https://github.com/dev-kp-eloper/BountyScout/issues/527", + "https://github.com/xevrion-v2/agent-playground/issues/6980", + "https://github.com/Scottcjn/Rustchain/issues/7418", + "https://github.com/orchestration-agent/AgentOrchestration/issues/1421", + "https://github.com/TGRTON/.github/issues/2", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2853", + "https://github.com/mergemint-mint/mergemint-contracts/issues/329", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/421", + "https://github.com/charles-openclaw/charles-microbounties/issues/1450", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/803", + "https://github.com/greyw0rks/bountyscout/issues/48", + "https://github.com/Scottcjn/rustchain-bounties/issues/15306", + "https://github.com/Scottcjn/rustchain-bounties/issues/15310", + "https://github.com/UnitOneAI/SecuritySkills/issues/324", + "https://github.com/jgeraigery/gatsby-starter-netlify-cms/issues/64", + "https://github.com/codehead-01/AutoPrompt/issues/9", + "https://github.com/xevrion-v2/agent-playground/issues/2437", + "https://github.com/framerslab/wunderland-sol/issues/6", + "https://github.com/organvm/peer-audited--behavioral-blockchain/issues/153", + "https://github.com/ClankerNation/OpenAgents/issues/170", + "https://github.com/Scottcjn/rustchain-bounties/issues/15018", + "https://github.com/Scottcjn/rustchain-bounties/issues/13903", + "https://github.com/relayhop/sn-monetization-runtime/issues/217", + "https://github.com/RoseMark45/chi/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/904", + "https://github.com/vansh-09/BountyScout/issues/140", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1157", + "https://github.com/davontepowlowsk1i/gofiber-fiber/issues/1", + "https://github.com/Ikalus1988/MisakaNet/issues/179", + "https://github.com/ElleraData/learn-cybersecurity/issues/1", + "https://github.com/ClankerNation/OpenAgents/issues/196", + "https://github.com/Scottcjn/bottube/issues/1399", + "https://github.com/ramimbo/mergework/issues/645", + "https://github.com/PhilipB06/EconomyCraft/issues/76", + "https://github.com/lobster-trap/SmartGesture/issues/476", + "https://github.com/charles-openclaw/charles-microbounties/issues/831", + "https://github.com/Scottcjn/Rustchain/issues/6899", + "https://github.com/charles-openclaw/charles-microbounties/issues/576", + "https://github.com/Soengkit/frailbox-checkpoint/issues/5", + "https://github.com/Scottcjn/rustchain-bounties/issues/14527", + "https://github.com/joaovictor91123/gittensory/issues/2", + "https://github.com/vansh-09/BountyScout/issues/422", + "https://github.com/Scottcjn/rustchain-bounties/issues/15039", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/802", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2822", + "https://github.com/charles-openclaw/charles-microbounties/issues/981", + "https://github.com/space-wizards/space-station-14/issues/44876", + "https://github.com/Scottcjn/rustchain-bounties/issues/14595", + "https://github.com/SecureBananaLabs/bug-bounty/issues/7320", + "https://github.com/Ikalus1988/MisakaNet/issues/307", + "https://github.com/David-patrick-chuks/Riona-AI-Agent/issues/118", + "https://github.com/honua-io/honua-sdk-python/issues/107", + "https://github.com/charles-openclaw/charles-microbounties/issues/56", + "https://github.com/Scottcjn/rustchain-bounties/issues/15619", + "https://github.com/dev-kp-eloper/BountyScout/issues/524", + "https://github.com/Scottcjn/rustchain-bounties/issues/13082", + "https://github.com/samugit83/redamon/issues/138", + "https://github.com/fastify/fastify/issues/6756", + "https://github.com/Scottcjn/rustchain-bounties/issues/15618", + "https://github.com/NSPG13/agent-bounties/issues/244", + "https://github.com/charles-openclaw/charles-microbounties/issues/1937", + "https://github.com/charles-openclaw/charles-microbounties/issues/587", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3840", + "https://github.com/dev-kp-eloper/BountyScout/issues/418", + "https://github.com/Scottcjn/rustchain-bounties/issues/14098", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/660", + "https://github.com/mergeos-bounties/gimp-mcp/issues/9", + "https://github.com/JaredYe04/news-bot/issues/203", + "https://github.com/niumeta/niumeta/issues/5", + "https://github.com/UnitOneAI/SecuritySkills/issues/1814", + "https://github.com/lobster-trap/TentOfTrials/issues/40", + "https://github.com/jMonkeyEngine/jmonkeyengine/issues/1995", + "https://github.com/charles-openclaw/charles-microbounties/issues/605", + "https://github.com/Scottcjn/rustchain-bounties/issues/14530", + "https://github.com/ghc-cloneRepoStaging-scaAndRenovate/14459_Kristin-Simmons_0629_220907_ghc_gw0_failed/issues/11", + "https://github.com/hashgraph/hedera-agent-kit-js/issues/967", + "https://github.com/LVTD-LLC/builtwithdjango/issues/114", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/365", + "https://github.com/UnitOneAI/SecuritySkills/issues/1659", + "https://github.com/SecureBananaLabs/bug-bounty/issues/10962", + "https://github.com/ACertainArchangel/pinenote-on-q64a/issues/1", + "https://github.com/larryherzogjr/sermon-broadcaster/issues/5", + "https://github.com/CodeForGoodTech/C4GT/issues/796", + "https://github.com/toon-protocol/toon-meta/issues/120", + "https://github.com/nirium-protocol/nirium-sdk/issues/9", + "https://github.com/cuentaprueba244w-dotcom/TentOfTrials/issues/14", + "https://github.com/3ni8ma/aarushkarak-website/issues/21", + "https://github.com/Scottcjn/rustchain-bounties/issues/13147", + "https://github.com/connect-boiz/soroban-security-scanner/issues/360", + "https://github.com/xevrion-v2/agent-playground/issues/6148", + "https://github.com/supervaize/supervaizer/issues/59", + "https://github.com/Jagadeeshftw/grainlify/issues/1371", + "https://github.com/Iamgoofball/-tg-station/issues/170", + "https://github.com/xevrion-v2/agent-playground/issues/5151", + "https://github.com/charles-openclaw/charles-microbounties/issues/417", + "https://github.com/UnitOneAI/SecuritySkills/issues/785", + "https://github.com/Ikalus1988/MisakaNet/issues/280", + "https://github.com/TauCetiStation/TauCetiClassic/issues/14974", + "https://github.com/charles-openclaw/charles-microbounties/issues/3356", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/257", + "https://github.com/charles-openclaw/charles-microbounties/issues/1325", + "https://github.com/vansh-09/BountyScout/issues/213", + "https://github.com/Saiaaax/CyberNinja-Dojo/issues/10", + "https://github.com/Scottcjn/rustchain-bounties/issues/12984", + "https://github.com/Scottcjn/rustchain-bounties/issues/14288", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/406", + "https://github.com/mergeos-bounties/MRGWallet/issues/7", + "https://github.com/Emmanuel-Evenzur/syetem_prompt/issues/29", + "https://github.com/vansh-09/BountyScout/issues/328", + "https://github.com/mpfaffenberger/space_sim/issues/18", + "https://github.com/charles-openclaw/charles-microbounties/issues/1767", + "https://github.com/charles-openclaw/charles-microbounties/issues/1913", + "https://github.com/vansh-09/BountyScout/issues/9", + "https://github.com/thanhtantran/agents-radar/issues/150", + "https://github.com/xevrion-v2/agent-playground/issues/8188", + "https://github.com/SecureBananaLabs/bug-bounty/issues/1810", + "https://github.com/Core-Foundry/Task-Bounty/issues/4", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/27", + "https://github.com/szmidtpiotr/ai-gm/issues/1189", + "https://github.com/relayhop/sn-monetization-runtime/issues/203", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/590", + "https://github.com/souleater06/mineagent/issues/4", + "https://github.com/BountyOnChain/StellarBounty/issues/174", + "https://github.com/xevrion-v2/agent-playground/issues/8130", + "https://github.com/NSPG13/agent-bounties/issues/132", + "https://github.com/auscaster/frantic-board/issues/290", + "https://github.com/Scottcjn/rustchain-bounties/issues/12232", + "https://github.com/Scottcjn/Rustchain/issues/6624", + "https://github.com/SecureBananaLabs/bug-bounty/issues/4739", + "https://github.com/charles-openclaw/charles-microbounties/issues/1821", + "https://github.com/asaadnashed/bounty-autopilot/issues/5", + "https://github.com/weilixiong/TentOfTrials/issues/5", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2850", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/851", + "https://github.com/charles-openclaw/charles-microbounties/issues/1657", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1170", + "https://github.com/charles-openclaw/charles-microbounties/issues/47", + "https://github.com/ValveSoftware/Dota2-Gameplay/issues/30987", + "https://github.com/charles-openclaw/charles-microbounties/issues/978", + "https://github.com/Scottcjn/Rustchain/issues/2000", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/209", + "https://github.com/Scottcjn/rustchain-bounties/issues/64", + "https://github.com/Scottcjn/rustchain-bounties/issues/13951", + "https://github.com/ramimbo/mergework/issues/597", + "https://github.com/MariaThomasxt0/gocron/issues/1", + "https://github.com/codeboost-tr/zeroeye/issues/21", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/823", + "https://github.com/tari-project/universe/issues/3028", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/293", + "https://github.com/yosemite01/stellar-creator-portfolio/issues/732", + "https://github.com/YahiaRagae/mushaf-imad-android/issues/25", + "https://github.com/NSPG13/agent-bounties/issues/106", + "https://github.com/johnchampaign/star-wars-rebellion/issues/562", + "https://github.com/openmetaearth/me-hub/issues/89", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/758", + "https://github.com/Scottcjn/rustchain-bounties/issues/15043", + "https://github.com/mergeos-bounties/mergeos/issues/254", + "https://github.com/Dipraise1/Engram/issues/23", + "https://github.com/learnault/learnault-contracts/issues/62", + "https://github.com/monk-io/monk-plugin/issues/156", + "https://github.com/Tarsnap/tarsnap/issues/701", + "https://github.com/Scottcjn/rustchain-bounties/issues/14526", + "https://github.com/ValveSoftware/Dota2-Gameplay/issues/475", + "https://github.com/greyw0rks/bountyscout/issues/339", + "https://github.com/Scottcjn/vintage-voice/issues/179", "https://github.com/ritik4ever/stellar-bounty-board/issues/356", - "https://github.com/charles-openclaw/charles-microbounties/issues/360", - "https://github.com/xevrion-v2/agent-playground/issues/4512", - "https://github.com/charles-openclaw/charles-microbounties/issues/261", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5019", - "https://github.com/vansh-09/BountyScout/issues/95", - "https://github.com/a-organvm/peer-audited--behavioral-blockchain/issues/63", - "https://github.com/boundlessfi/bounties/issues/205", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/846", - "https://github.com/capofficial/client/issues/11", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3913", - "https://github.com/UnitOneAI/SecuritySkills/issues/107", - "https://github.com/webpro255/awesome-ai-agent-attacks/issues/6", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2845", - "https://github.com/DimaMend/AutoPrompt/issues/7", - "https://github.com/Jonnyton/Workflow/issues/1110", - "https://github.com/CodeBountyOrg/taskforge-demo/issues/3", - "https://github.com/samvallad33/vestige/issues/91", - "https://github.com/Scottcjn/Rustchain/issues/6147", - "https://github.com/xevrion-v2/agent-playground/issues/3829", - "https://github.com/charles-openclaw/charles-microbounties/issues/1070", - "https://github.com/shipshitgames/deadrot.com/issues/300", - "https://github.com/textileio/community/issues/211", - "https://github.com/ritik4ever/stellar-bounty-board/issues/263", - "https://github.com/xevrion-v2/agent-playground/issues/4843", - "https://github.com/ramimbo/mergework/issues/95", - "https://github.com/Jonnyton/Workflow/issues/1033", - "https://github.com/Scottcjn/rustchain-bounties/issues/13594", - "https://github.com/charles-openclaw/charles-microbounties/issues/1128", - "https://github.com/charles-openclaw/charles-microbounties/issues/1297", - "https://github.com/charles-openclaw/charles-microbounties/issues/1844", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5674", - "https://github.com/UnitOneAI/SecuritySkills/issues/1621", - "https://github.com/Replikanti/agentis-colonies/issues/1041", - "https://github.com/ynput/ayon-photoshop/issues/91", - "https://github.com/Ikalus1988/MisakaNet/issues/254", - "https://github.com/snowdensb/AutoPrompt_demo/issues/25", - "https://github.com/amaybaum-prod/shopware/issues/23", - "https://github.com/charles-openclaw/charles-microbounties/issues/618", - "https://github.com/charles-openclaw/charles-microbounties/issues/1539", + "https://github.com/ramimbo/mergework/issues/1027", + "https://github.com/Ikalus1988/MisakaNet/issues/285", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1172", + "https://github.com/tine1117/oss-hunter-livefire/issues/1", + "https://github.com/sindresorhus/caprine/issues/713", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/671", + "https://github.com/charles-openclaw/charles-microbounties/issues/3352", + "https://github.com/jmanico/parkzen/issues/80", + "https://github.com/HubDApp/Dongle-Smartcontract/issues/256", + "https://github.com/NSPG13/agent-bounties/issues/571", + "https://github.com/Scottcjn/rustchain-bounties/issues/307", + "https://github.com/UnitOneAI/SecuritySkills/issues/187", + "https://github.com/conduit-protocol/streamFi-sdk/issues/77", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/222", + "https://github.com/nicolasmelo1/logion/issues/163", "https://github.com/auscaster/frantic-board/issues/98", - "https://github.com/3ni8ma/aarushkarak-website/issues/35", - "https://github.com/GoodDollar/GoodWeb3-Mono/issues/270", - "https://github.com/dev-kp-eloper/BountyScout/issues/267", - "https://github.com/Scottcjn/bottube/issues/1364", - "https://github.com/charles-openclaw/charles-microbounties/issues/773", - "https://github.com/gwdevhub/GWToolboxpp/issues/2341", - "https://github.com/johnchampaign/star-wars-rebellion/issues/388", - "https://github.com/fuel-champions/technical-writing-bounty/issues/14", - "https://github.com/greyw0rks/bountyscout/issues/26", - "https://github.com/1btc-news/news-client/issues/29", - "https://github.com/PlakarKorp/hub/issues/4", - "https://github.com/Imaginary-Horizons-Productions/BountyBot/issues/312", - "https://github.com/charles-openclaw/charles-microbounties/issues/144", - "https://github.com/Scottcjn/rustchain-bounties/issues/13147", - "https://github.com/boundlessfi/bounties/issues/280", + "https://github.com/snowdensb/super-linter/issues/51", + "https://github.com/auscaster/frantic-board/issues/53", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2951", + "https://github.com/charles-openclaw/charles-microbounties/issues/3411", + "https://github.com/MoonFuji/BountyScout/issues/5", + "https://github.com/AdamOswald/Huggingface-Space/issues/132", + "https://github.com/charles-openclaw/charles-microbounties/issues/139", + "https://github.com/peterxing/farmbot-platform/issues/11", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/600", + "https://github.com/Scottcjn/rustchain-bounties/issues/13075", + "https://github.com/Scottcjn/rustchain-bounties/issues/14014", + "https://github.com/johnchampaign/star-wars-rebellion/issues/385", + "https://github.com/CryptoSI-DAO/diamond-hands-protocol/issues/8", + "https://github.com/sebrandon1/go-skylight/issues/257", + "https://github.com/xevrion-v2/agent-playground/issues/6692", + "https://github.com/boundlessfi/bounties/issues/214", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/217", + "https://github.com/aashu91/robinhood-evm-mcp/issues/3", + "https://github.com/SecureBananaLabs/bug-bounty/issues/4604", + "https://github.com/xevrion-v2/agent-playground/issues/447", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/65", + "https://github.com/UnitOneAI/SecuritySkills/issues/1914", + "https://github.com/AAStarCommunity/airaccount-contract/issues/29", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/526", + "https://github.com/kings0x/brimble_task/issues/3", + "https://github.com/auscaster/frantic-board/issues/165", + "https://github.com/charles-openclaw/charles-microbounties/issues/1847", + "https://github.com/matty33/eps-dapp/issues/158", + "https://github.com/claude-builders-bounty/claude-builders-bounty/issues/2929", + "https://github.com/SecureBananaLabs/bug-bounty/issues/6970", + "https://github.com/Iamgoofball/-tg-station/issues/215", + "https://github.com/daydreamsai/lucid-agents/issues/178", + "https://github.com/dev-kp-eloper/BountyScout/issues/576", + "https://github.com/paraloom-labs/paraloom-core/issues/416", + "https://github.com/kellymusk/Aframp-backend/issues/799", + "https://github.com/Freeuni-OOP/final-project-gitbounty/issues/47", + "https://github.com/greyw0rks/bountyscout/issues/94", + "https://github.com/ramimbo/mergework/issues/570", + "https://github.com/xevrion-v2/agent-playground/issues/3704", + "https://github.com/mergeos-bounties/PlantGuide/issues/20", + "https://github.com/BountyOnChain/StellarBounty/issues/338", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/299", + "https://github.com/vansh-09/BountyScout/issues/97", + "https://github.com/charles-openclaw/charles-microbounties/issues/1348", + "https://github.com/Replikanti/agentis-colonies/issues/1455", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3787", + "https://github.com/yeheskieltame/claudelance/issues/546", + "https://github.com/Scottcjn/rustchain-bounties/issues/13588", + "https://github.com/mergeos-bounties/NokaMan/issues/9", + "https://github.com/mergemint-mint/mergemint-contracts/issues/327", + "https://github.com/xevrion-v2/agent-playground/issues/6536", + "https://github.com/coaidev/coai/issues/410", + "https://github.com/xevrion-v2/agent-playground/issues/3136", + "https://github.com/tscircuit/docs/issues/603", + "https://github.com/kriskowal/garden/issues/26", + "https://github.com/Scottcjn/rustchain-bounties/issues/15055", + "https://github.com/LucasSantana-Dev/Lucky/issues/1784", + "https://github.com/Scottcjn/rustchain-bounties/issues/14269", + "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/352", + "https://github.com/lobster-trap/SmartGesture/issues/452", + "https://github.com/Scottcjn/rustchain-bounties/issues/13014", + "https://github.com/GautamKumarOffical/TentOfTrials/issues/5", + "https://github.com/xevrion-v2/agent-playground/issues/4686", + "https://github.com/Scottcjn/rustchain-bounties/issues/15079", + "https://github.com/charles-openclaw/charles-microbounties/issues/1552", + "https://github.com/j-dabrowski/GitBounty_25/issues/17", + "https://github.com/ClankerNation/OpenAgents/issues/166", + "https://github.com/SecureBananaLabs/bug-bounty/issues/11191", + "https://github.com/lobster-trap/zeroeye/issues/1", + "https://github.com/ritik4ever/stellar-bounty-board/issues/211", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2944", + "https://github.com/warpspeedopen-source/warpspeed-bounties/issues/7", + "https://github.com/yeheskieltame/claudelance/issues/533", + "https://github.com/openmetaearth/me-hub/issues/298", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/304", + "https://github.com/Scottcjn/Rustchain/issues/8031", + "https://github.com/Scottcjn/rustchain-bounties/issues/13972", "https://github.com/3ni8ma/aarushkarak-website/issues/52", - "https://github.com/johnchampaign/star-wars-rebellion/issues/403", - "https://github.com/shadow6427/fun-benchmark-forge/issues/4", - "https://github.com/vansh-09/BountyScout/issues/8", - "https://github.com/openmetaearth/me-hub/issues/1199", - "https://github.com/austintgriffith/burner-wallet/issues/216", - "https://github.com/UnitOneAI/SecuritySkills/issues/2430", + "https://github.com/Scottcjn/rustchain-bounties/issues/13597", + "https://github.com/devs-immortal/Paradise-Lost/issues/894", + "https://github.com/vansh-09/BountyScout/issues/313", + "https://github.com/johnchampaign/star-wars-rebellion/issues/574", + "https://github.com/charles-openclaw/charles-microbounties/issues/1196", + "https://github.com/ApexOpsStudio/ai-gitops-test-target/issues/2", + "https://github.com/SecureBananaLabs/bug-bounty/issues/7067", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2202", + "https://github.com/Scottcjn/Rustchain/issues/6758", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/50", + "https://github.com/charles-openclaw/charles-microbounties/issues/499", + "https://github.com/charles-openclaw/charles-microbounties/issues/990", + "https://github.com/britak420/Mininet/issues/92", + "https://github.com/Scottcjn/rustchain-bounties/issues/13413", + "https://github.com/SecureBananaLabs/bug-bounty/issues/9170", + "https://github.com/xevrion-v2/agent-playground/issues/2420", + "https://github.com/charles-openclaw/charles-microbounties/issues/1691", + "https://github.com/Scottcjn/rustchain-bounties/issues/13876", + "https://github.com/openmetaearth/me-hub/issues/654", + "https://github.com/vansh-09/BountyScout/issues/427", + "https://github.com/rsoreq/zenbot/issues/930", + "https://github.com/SRM-Test-DEV/test-56/issues/3785", + "https://github.com/Scottcjn/rustchain-bounties/issues/15242", + "https://github.com/Scottcjn/rustchain-bounties/issues/16250", + "https://github.com/mergemint-mint/mergemint-contracts/issues/310", + "https://github.com/cuentaprueba244w-dotcom/zeroeye/issues/7", + "https://github.com/openmetaearth/me-hub/issues/247", + "https://github.com/mergemint-mint/mergemint-contracts/issues/307", + "https://github.com/vansh-09/BountyScout/issues/21", + "https://github.com/charles-openclaw/charles-microbounties/issues/879", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4445", + "https://github.com/xevrion-v2/agent-playground/issues/5794", + "https://github.com/charles-openclaw/charles-microbounties/issues/407", + "https://github.com/mergeos-bounties/Loru/issues/234", + "https://github.com/Scottcjn/rustchain-bounties/issues/13477", + "https://github.com/KOSASIH/pi-nexus-autonomous-banking-network/issues/1348", + "https://github.com/Scottcjn/rustchain-bounties/issues/12866", + "https://github.com/xevrion-v2/agent-playground/issues/7261", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/607", + "https://github.com/UnitOneAI/SecuritySkills/issues/1916", + "https://github.com/mergeos-bounties/NokaMan/issues/57", + "https://github.com/Scottcjn/rustchain-bounties/issues/13509", + "https://github.com/relayhop/sn-monetization-runtime/issues/106", + "https://github.com/Scottcjn/Rustchain/issues/6398", + "https://github.com/charles-openclaw/charles-microbounties/issues/1896", + "https://github.com/charles-openclaw/charles-microbounties/issues/3360", + "https://github.com/NSPG13/agent-bounties/issues/279", + "https://github.com/JSONbored/metagraphed/issues/7077", + "https://github.com/xxnjms1-code/kickama-prize-lab/issues/1", + "https://github.com/pollar-xyz/pollar-backoffice/issues/27", + "https://github.com/Scottcjn/Rustchain/issues/7975", + "https://github.com/Scottcjn/rustchain-bounties/issues/13393", + "https://github.com/Scottcjn/rustchain-bounties/issues/13101", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2958", + "https://github.com/Plasius-LTD/player-system/issues/6", + "https://github.com/BruceFeIix/picker/issues/2454", + "https://github.com/tari-project/tari/issues/7830", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/136", + "https://github.com/mergeos-bounties/mergeos/issues/8", + "https://github.com/jgeraigery/spot-sdk/issues/161", + "https://github.com/Scottcjn/rustchain-bounties/issues/14346", + "https://github.com/kcolbchain/switchboard/issues/96", + "https://github.com/orca-so/whirlpools/issues/1313", + "https://github.com/qingfeng312/middleware-nail-forge/issues/4", + "https://github.com/vansh-09/BountyScout/issues/457", + "https://github.com/ramimbo/mergework/issues/109", + "https://github.com/Iamgoofball/-tg-station/issues/266", + "https://github.com/vansh-09/BountyScout/issues/28", + "https://github.com/greyw0rks/bountyscout/issues/3", + "https://github.com/SecureBananaLabs/bug-bounty/issues/1025", + "https://github.com/demoniclords/ciscos-packs/issues/9", + "https://github.com/Hazyshades/Sendly-Test-Repo/issues/61", + "https://github.com/charles-openclaw/charles-microbounties/issues/147", + "https://github.com/charles-openclaw/charles-microbounties/issues/3358", + "https://github.com/Scottcjn/rustchain-bounties/issues/12978", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/621", + "https://github.com/Scottcjn/rustchain-bounties/issues/12608", + "https://github.com/xevrion-v2/agent-playground/issues/8241", + "https://github.com/johnchampaign/star-wars-rebellion/issues/452", + "https://github.com/stellar-creator-portfolio/stellar-creator-portfolio-/issues/12", + "https://github.com/charles-openclaw/charles-microbounties/issues/3379", + "https://github.com/mautic/mautic/issues/16185", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/109", + "https://github.com/kcolbchain/arka/issues/22", + "https://github.com/johnchampaign/star-wars-rebellion/issues/259", + "https://github.com/charles-openclaw/charles-microbounties/issues/1145", + "https://github.com/kcolbchain/quoter/issues/30", + "https://github.com/mergeos-bounties/HIRI/issues/6", + "https://github.com/mpfaffenberger/space_sim/issues/9", + "https://github.com/dheeai/dhee-desktop/issues/186", "https://github.com/xevrion-v2/agent-playground/issues/3709", - "https://github.com/charles-openclaw/charles-microbounties/issues/1373", - "https://github.com/3ni8ma/aarushkarak-website/issues/32", - "https://github.com/Scottcjn/Rustchain/issues/7492", - "https://github.com/clowlove/Harmes-House/issues/421", - "https://github.com/Scottcjn/bottube/issues/1425", - "https://github.com/Scottcjn/rustchain-bounties/issues/13285", - "https://github.com/Scottcjn/Rustchain/issues/2000", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/257", - "https://github.com/Scottcjn/rustchain-bounties/issues/12369", - "https://github.com/UnitOneAI/SecuritySkills/issues/2448", - "https://github.com/lobster-trap/zeroeye/issues/34", - "https://github.com/charles-openclaw/charles-microbounties/issues/1483", - "https://github.com/Jonnyton/Workflow/issues/1054", - "https://github.com/charles-openclaw/charles-microbounties/issues/1816", - "https://github.com/BountyOnChain/StellarBounty/issues/203", - "https://github.com/charles-openclaw/charles-microbounties/issues/34", - "https://github.com/UnitOneAI/SecuritySkills/issues/1831", - "https://github.com/souleater06/mineagent/issues/21", - "https://github.com/SPLURT-Station/S.P.L.U.R.T-tg/issues/1046", - "https://github.com/charles-openclaw/charles-microbounties/issues/1830", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/195", - "https://github.com/openmetaearth/me-hub/issues/194", - "https://github.com/BountyOnChain/StellarBounty/issues/196", - "https://github.com/Scottcjn/bottube/issues/1382", - "https://github.com/Scottcjn/rustchain-bounties/issues/13760", - "https://github.com/rsoreq-mend/AutoGPT/issues/61", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/863", - "https://github.com/Scottcjn/grazer-skill/issues/15", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/786", - "https://github.com/snowdensb/remote-actions/issues/10", - "https://github.com/Kings9595/WaveMilestone/issues/21", - "https://github.com/charles-openclaw/charles-microbounties/issues/1414", - "https://github.com/Scottcjn/rustchain-bounties/issues/13732", - "https://github.com/UnitOneAI/SecuritySkills/issues/1159", - "https://github.com/claude-builders-bounty/claude-builders-bounty/issues/2746", - "https://github.com/j-dabrowski/GitBounty_25/issues/4", - "https://github.com/charles-openclaw/charles-microbounties/issues/3096", - "https://github.com/charles-openclaw/charles-microbounties/issues/1192", - "https://github.com/charles-openclaw/charles-microbounties/issues/201", - "https://github.com/Scottcjn/rustchain-bounties/issues/13665", - "https://github.com/charles-openclaw/charles-microbounties/issues/881", - "https://github.com/dev-kp-eloper/BountyScout/issues/110", - "https://github.com/UnitOneAI/SecuritySkills/issues/811", - "https://github.com/charles-openclaw/charles-microbounties/issues/3375", - "https://github.com/greyw0rks/bountyscout/issues/74", - "https://github.com/ramimbo/mergework/issues/933", - "https://github.com/johnchampaign/star-wars-rebellion/issues/434", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/52", - "https://github.com/xevrion-v2/agent-playground/issues/3578", - "https://github.com/esi/esi-issues/issues/323", - "https://github.com/mergeos-bounties/mergeos/issues/1", - "https://github.com/coolhandle01/cybersquad/issues/179", - "https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/issues/444", - "https://github.com/Scottcjn/rustchain-bounties/issues/14095", - "https://github.com/IN3PIRE/discord-js-handler/issues/40", - "https://github.com/SecureBananaLabs/bug-bounty/issues/9715", - "https://github.com/charles-openclaw/charles-microbounties/issues/1845", - "https://github.com/charles-openclaw/charles-microbounties/issues/1458", - "https://github.com/charles-openclaw/charles-microbounties/issues/651", - "https://github.com/charles-openclaw/charles-microbounties/issues/877", - "https://github.com/SecureBananaLabs/bug-bounty/issues/4397", - "https://github.com/charles-openclaw/charles-microbounties/issues/1815", - "https://github.com/charles-openclaw/charles-microbounties/issues/1762", - "https://github.com/mergemint-mint/mergemint-contracts/issues/308", - "https://github.com/Scottcjn/rustchain-bounties/issues/13198", - "https://github.com/auscaster/frantic-board/issues/144", - "https://github.com/ghc-cloneRepoStaging-scaAndRenovate/14459_Kristin-Simmons_0629_220907_ghc_gw0_failed/issues/11", - "https://github.com/Scottcjn/rustchain-bounties/issues/13685", - "https://github.com/vansh-09/BountyScout/issues/198", - "https://github.com/xevrion-v2/agent-playground/issues/14", - "https://github.com/openmetaearth/me-hub/issues/1140", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/845", - "https://github.com/UnitOneAI/SecuritySkills/issues/1820", - "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/219", - "https://github.com/3ni8ma/aarushkarak-website/issues/19", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2961", - "https://github.com/TGRTON/.github/issues/2", - "https://github.com/greyw0rks/bountyscout/issues/67", - "https://github.com/charles-openclaw/charles-microbounties/issues/669", - "https://github.com/SecureBananaLabs/bug-bounty/issues/4119", - "https://github.com/ramimbo/mergework/issues/772", - "https://github.com/ys578/agents-radar/issues/16", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2945", - "https://github.com/Scottcjn/rustchain-bounties/issues/753", - "https://github.com/greyw0rks/bountyscout/issues/44", - "https://github.com/anthropics/claude-code/issues/66595", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/795", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/270", - "https://github.com/UnitOneAI/SecuritySkills/issues/1004", - "https://github.com/Nexussyn/ai-growth-engine/issues/3", - "https://github.com/SgtPooki/ai-tools/issues/15", - "https://github.com/UnitOneAI/SecuritySkills/issues/1536", - "https://github.com/Scottcjn/rustchain-bounties/issues/12027", - "https://github.com/vansh-09/BountyScout/issues/184", - "https://github.com/charles-openclaw/charles-microbounties/issues/3399", - "https://github.com/charles-openclaw/charles-microbounties/issues/1207", - "https://github.com/charles-openclaw/charles-microbounties/issues/1742", - "https://github.com/Ikalus1988/MisakaNet/issues/258", - "https://github.com/mautic/mautic/issues/16262", - "https://github.com/Andyyook/zeroeye/issues/1", - "https://github.com/BETAIL-BOYS/TradeFlow-Core/issues/174", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3787", - "https://github.com/microsoft/autogen/issues/7724", - "https://github.com/RatLoopz/sahidawa-india/issues/797", - "https://github.com/blka/daily-hackernews/issues/466", - "https://github.com/charles-openclaw/charles-microbounties/issues/3077", - "https://github.com/Xoulomon/Stellar-Save/issues/1175", - "https://github.com/SecureBananaLabs/bug-bounty/issues/4400", - "https://github.com/vansh-09/BountyScout/issues/200", - "https://github.com/Scottcjn/Rustchain/issues/6913", - "https://github.com/okalldal/lark/issues/272", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2776", - "https://github.com/xevrion-v2/agent-playground/issues/3143", - "https://github.com/mautic/mautic/issues/16235", - "https://github.com/Scottcjn/rustchain-bounties/issues/14057", - "https://github.com/Scottcjn/Rustchain/issues/7755", - "https://github.com/ramimbo/mergework/issues/1009", - "https://github.com/codeboost-tr/zeroeye/issues/20", - "https://github.com/UnitOneAI/SecuritySkills/issues/2748", - "https://github.com/ramimbo/mergework/issues/114", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1403", - "https://github.com/cyrilawoyemi99-max/owockibot-bounty-sync-/issues/6", - "https://github.com/theasshats/project-commonwealth/issues/240", - "https://github.com/mautic/mautic/issues/15733", + "https://github.com/UnitOneAI/SecuritySkills/issues/1800", + "https://github.com/charles-openclaw/charles-microbounties/issues/57", + "https://github.com/NSPG13/agent-bounties/issues/274", + "https://github.com/UID9622/lh-standard-adapter/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/1523", + "https://github.com/charles-openclaw/charles-microbounties/issues/1352", + "https://github.com/kakapez/agents-radar/issues/702", + "https://github.com/microg/GmsCore/issues/3650", + "https://github.com/freedom-winds/BountyScout/issues/193", + "https://github.com/charles-openclaw/charles-microbounties/issues/1514", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/593", + "https://github.com/charles-openclaw/charles-microbounties/issues/953", + "https://github.com/relayhop/sn-monetization-runtime/issues/90", + "https://github.com/labmain/ai-agent-pay-demo/issues/30", + "https://github.com/charles-openclaw/charles-microbounties/issues/1478", + "https://github.com/xevrion-v2/agent-playground/issues/6982", + "https://github.com/ramimbo/mergework/issues/778", + "https://github.com/CryptoJym/plimsoll/issues/68", + "https://github.com/Iamgoofball/-tg-station/issues/234", + "https://github.com/tylercamp/palcalc/issues/194", + "https://github.com/w5ohr/Dereth/issues/516", + "https://github.com/Scottcjn/contributors/issues/141", + "https://github.com/NSPG13/agent-bounties/issues/219", + "https://github.com/charles-openclaw/charles-microbounties/issues/2135", + "https://github.com/dev-kp-eloper/BountyScout/issues/33", + "https://github.com/vansh-09/BountyScout/issues/463", + "https://github.com/dev-kp-eloper/BountyScout/issues/508", + "https://github.com/charles-openclaw/charles-microbounties/issues/1223", + "https://github.com/marqov-dev/marqov-sdk/issues/6", + "https://github.com/charles-openclaw/charles-microbounties/issues/2745", + "https://github.com/Scottcjn/rustchain-bounties/issues/12285", + "https://github.com/freedom-winds/BountyScout/issues/175", + "https://github.com/David-patrick-chuks/Riona-AI-Agent/issues/120", + "https://github.com/shadow6427/FunPrizeLab/issues/1", + "https://github.com/Scottcjn/bottube/issues/1480", + "https://github.com/openmetaearth/me-hub/issues/56", + "https://github.com/PG-AGI/toingg-jarvis/issues/11", + "https://github.com/mergeos-bounties/rviz-mcp/issues/22", + "https://github.com/koromerzhin/repocheck/issues/140", + "https://github.com/IT-Academy-BCN/ita-wiki-monorepo/issues/842", + "https://github.com/vishalsingh2972/100xDevs_2.0/issues/6", + "https://github.com/CVEProject/Ideas/issues/53", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/226", + "https://github.com/tinyhumansai/openhuman/issues/4931", + "https://github.com/Spectral-Finance/lux/issues/57", + "https://github.com/johnchampaign/star-wars-rebellion/issues/236", + "https://github.com/charles-openclaw/charles-microbounties/issues/1187", + "https://github.com/Informant254/Nova-arsenal/issues/6", + "https://github.com/ValveSoftware/Dota2-Gameplay/issues/2363", + "https://github.com/0xbeckett/beckett/issues/137", + "https://github.com/monk-io/monk-plugin/issues/107", + "https://github.com/mergeos-bounties/TrucVPN/issues/13", + "https://github.com/Iris-IV/ProofOfHeart-stellar/issues/496", + "https://github.com/chainreactors/picker/issues/1311", + "https://github.com/Scottcjn/rustchain-bounties/issues/13382", + "https://github.com/charles-openclaw/charles-microbounties/issues/1476", + "https://github.com/Arrow-air/website/issues/167", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/768", + "https://github.com/dev-kp-eloper/BountyScout/issues/8", + "https://github.com/Iamgoofball/-tg-station/issues/57", + "https://github.com/Iamgoofball/-tg-station/issues/241", + "https://github.com/watney-ai/open-source-bounties/issues/1", + "https://github.com/vansh-09/BountyScout/issues/100", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/337", + "https://github.com/UnitOneAI/SecuritySkills/issues/2558", + "https://github.com/vansh-09/BountyScout/issues/415", + "https://github.com/auscaster/frantic-board/issues/64", + "https://github.com/ClankerNation/OpenAgents/issues/193", + "https://github.com/Scottcjn/rustchain-bounties/issues/15072", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/273", + "https://github.com/jnoecker/AmbonMUD/issues/1396", + "https://github.com/MergeFi/backend/issues/3", + "https://github.com/Cloudz-319/zeroeye/issues/11", + "https://github.com/warpspeedopen-source/warpspeed-bounties/issues/6", + "https://github.com/David-patrick-chuks/Riona-AI-Agent/issues/155", + "https://github.com/Emmanuel-Evenzur/AutoPromptAI/issues/15", + "https://github.com/charles-openclaw/charles-microbounties/issues/580", + "https://github.com/opentok/opentok-rtc/issues/787", + "https://github.com/UnitOneAI/SecuritySkills/issues/2439", + "https://github.com/Ikalus1988/MisakaNet/issues/256", + "https://github.com/auscaster/frantic-board/issues/58", + "https://github.com/Scottcjn/rustchain-bounties/issues/15248", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1384", + "https://github.com/larryherzogjr/sermon-broadcaster/issues/4", + "https://github.com/NSPG13/agent-bounties/issues/217", + "https://github.com/xevrion-v2/agent-playground/issues/2829", + "https://github.com/LmeSzinc/AzurLaneAutoScript/issues/5720", + "https://github.com/WillisWilliam8/client_golang/issues/1", + "https://github.com/CERTCC/Vultron/issues/1238", + "https://github.com/tscircuit/file-server/issues/5", + "https://github.com/blka/daily-hackernews/issues/466", + "https://github.com/NSPG13/agent-bounties/issues/130", + "https://github.com/charles-openclaw/charles-microbounties/issues/189", + "https://github.com/UnitOneAI/SecuritySkills/issues/1529", + "https://github.com/xevrion-v2/agent-playground/issues/3711", + "https://github.com/johnchampaign/star-wars-rebellion/issues/489", + "https://github.com/vansh-09/BountyScout/issues/455", + "https://github.com/openmetaearth/me-hub/issues/1084", + "https://github.com/AReid987/aigency-v1.0.0/issues/223", + "https://github.com/charles-openclaw/charles-microbounties/issues/1338", + "https://github.com/renaudgenard/TentOfTrials/issues/2", + "https://github.com/mergeos-bounties/BloggerEasy/issues/39", + "https://github.com/charles-openclaw/charles-microbounties/issues/1530", + "https://github.com/Scottcjn/rustchain-bounties/issues/14749", + "https://github.com/NSPG13/agent-bounties/issues/281", + "https://github.com/charles-openclaw/charles-microbounties/issues/889", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/360", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/612", + "https://github.com/gibwork/gibwork-website/issues/64", + "https://github.com/mergeos-bounties/NokaMan/issues/32", + "https://github.com/nirium-protocol/nirium-sdk/issues/14", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/206", + "https://github.com/RatLoopz/sahidawa-india/issues/2260", + "https://github.com/johnchampaign/star-wars-rebellion/issues/414", + "https://github.com/charles-openclaw/charles-microbounties/issues/1003", + "https://github.com/boundlessfi/bounties/issues/275", + "https://github.com/tscircuit/pver/issues/1", + "https://github.com/ghc-cloneRepoStaging-scaAndRenovate2/14459_Michael-Castillo_0630_221043_ghc_gw1_failed/issues/7", + "https://github.com/entrius/gittensor/issues/1473", + "https://github.com/charles-openclaw/charles-microbounties/issues/1204", + "https://github.com/timeless-hayoka/ANCHOR/issues/5", + "https://github.com/mergeos-bounties/ros2-mcp/issues/60", + "https://github.com/charles-openclaw/charles-microbounties/issues/1147", + "https://github.com/Scottcjn/rustchain-bounties/issues/15073", + "https://github.com/charles-openclaw/charles-microbounties/issues/3326", + "https://github.com/xevrion-v2/agent-playground/issues/6798", + "https://github.com/boundlessfi/bounties/issues/211", + "https://github.com/SecureBananaLabs/bug-bounty/issues/4953", + "https://github.com/xevrion-v2/agent-playground/issues/2968", + "https://github.com/Tarsnap/tarsnap/issues/703", + "https://github.com/charles-openclaw/charles-microbounties/issues/3354", + "https://github.com/charles-openclaw/charles-microbounties/issues/30", + "https://github.com/openmetaearth/me-hub/issues/301", + "https://github.com/ClankerNation/OpenAgents/issues/157", + "https://github.com/Scottcjn/rustchain-bounties/issues/13683", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2107", + "https://github.com/honua-io/honua-helm/issues/25", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3784", + "https://github.com/cakuki/tidewake/issues/181", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1155", + "https://github.com/NSPG13/agent-bounties/issues/576", + "https://github.com/ritik4ever/stellar-bounty-board/issues/230", + "https://github.com/xevrion-v2/agent-playground/issues/5705", + "https://github.com/dwebagents/AgentPipe/issues/114", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/960", + "https://github.com/Scottcjn/rustchain-bounties/issues/13632", + "https://github.com/ramimbo/mergework/issues/447", + "https://github.com/Gryd-lock/grydlock-oracle-adapter/issues/15", + "https://github.com/Scottcjn/rustchain-bounties/issues/14037", + "https://github.com/Scottcjn/rustchain-bounties/issues/14079", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/219", + "https://github.com/ritik4ever/stellar-bounty-board/issues/231", + "https://github.com/onlyjco/daily-ai-digest/issues/4", + "https://github.com/auscaster/frantic-board/issues/277", + "https://github.com/Scottcjn/rustchain-bounties/issues/14075", + "https://github.com/auscaster/frantic-board/issues/288", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/520", + "https://github.com/vansh-09/BountyScout/issues/101", + "https://github.com/charles-openclaw/charles-microbounties/issues/1635", + "https://github.com/xevrion-v2/agent-playground/issues/3141", + "https://github.com/Scottcjn/Rustchain/issues/166", + "https://github.com/Solar-Helix-Independent-Transport/allianceauth-corp-tools/issues/292", + "https://github.com/joserivasgt/panama-me/issues/246", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/309", + "https://github.com/Grainlify/Grainlify-Stellar-Contracts/issues/187", + "https://github.com/shadow6427/AwesomeGesture/issues/2", + "https://github.com/iberi22/xavier/issues/115", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/793", + "https://github.com/charles-openclaw/charles-microbounties/issues/1356", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1820", + "https://github.com/Scottcjn/rustchain-bounties/issues/15089", + "https://github.com/xevrion-v2/agent-playground/issues/5452", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5405", + "https://github.com/NSPG13/agent-bounties/issues/499", + "https://github.com/tinygrad/tinygrad/issues/3039", + "https://github.com/anthropics/claude-code/issues/58739", + "https://github.com/NSPG13/agent-bounties/issues/115", + "https://github.com/Kings9595/WaveMilestone/issues/18", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/824", + "https://github.com/charles-openclaw/charles-microbounties/issues/834", + "https://github.com/bigearth/bitblog/issues/2", + "https://github.com/greyw0rks/bountyscout/issues/117", + "https://github.com/charles-openclaw/charles-microbounties/issues/1814", + "https://github.com/Scottcjn/rustchain-bounties/issues/8934", + "https://github.com/Scottcjn/rustchain-bounties/issues/14104", + "https://github.com/MariauqmpsA333/go-redis/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/734", + "https://github.com/Scottcjn/rustchain-bounties/issues/14170", + "https://github.com/cognilabz/cognibrain/issues/103", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/861", + "https://github.com/tinyhumansai/tiny.place/issues/180", + "https://github.com/charles-openclaw/charles-microbounties/issues/1766", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3434", + "https://github.com/UnitOneAI/SecuritySkills/issues/855", + "https://github.com/UnitOneAI/SecuritySkills/issues/1056", + "https://github.com/Uncleken13/NodeGoat/issues/11", + "https://github.com/greyw0rks/bountyscout/issues/36", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/102", + "https://github.com/openmetaearth/me-hub/issues/11", + "https://github.com/boundlessfi/bounties/issues/205", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/246", + "https://github.com/Scottcjn/Rustchain/issues/6227", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3786", + "https://github.com/1Hive/gardens-v2/issues/928", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/409", + "https://github.com/Ap6pack/asm-cheatsheet/issues/5", + "https://github.com/Scottcjn/Rustchain/issues/7525", "https://github.com/3ni8ma/aarushkarak-website/issues/34", - "https://github.com/DimaMend/AutoPrompt/issues/16", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/40", - "https://github.com/Scottcjn/rustchain-bounties/issues/13972", - "https://github.com/charles-openclaw/charles-microbounties/issues/1143", - "https://github.com/UnitOneAI/SecuritySkills/issues/785", - "https://github.com/Yuliya65/AutoAgents/issues/13", - "https://github.com/xevrion-v2/agent-playground/issues/4969", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/207", - "https://github.com/temporalio/temporal/issues/10699", - "https://github.com/dot-Justin/BonziAssist/issues/7", - "https://github.com/vansh-09/BountyScout/issues/75", - "https://github.com/nexmo-community/phone-number-pool-manager-node/issues/4", - "https://github.com/Jagadeeshftw/grainlify/issues/1398", - "https://github.com/Jonnyton/Workflow/issues/1051", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3091", - "https://github.com/Scottcjn/rustchain-bounties/issues/13544", - "https://github.com/xevrion-v2/agent-playground/issues/4784", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3346", - "https://github.com/jeromyritchie52/Apache-ZooKeeper/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/1360", - "https://github.com/charles-openclaw/charles-microbounties/issues/2220", - "https://github.com/charles-openclaw/charles-microbounties/issues/931", - "https://github.com/asaadnashed/bounty-autopilot/issues/12", - "https://github.com/UnitOneAI/SecuritySkills/issues/1804", - "https://github.com/Scottcjn/rustchain-bounties/issues/14177", - "https://github.com/Moeabdelaziz007/AxiomID/issues/135", - "https://github.com/lobster-trap/Kickama/issues/378", - "https://github.com/charles-openclaw/charles-microbounties/issues/1020", - "https://github.com/charles-openclaw/charles-microbounties/issues/2213", - "https://github.com/charles-openclaw/charles-microbounties/issues/3422", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/20", - "https://github.com/Liquifact/Liquifact-frontend/issues/106", - "https://github.com/Scottcjn/rustchain-bounties/issues/14760", - "https://github.com/ramimbo/mergework/issues/655", - "https://github.com/RatLoopz/sahidawa-india/issues/501", - "https://github.com/charles-openclaw/charles-microbounties/issues/3254", - "https://github.com/vansh-09/BountyScout/issues/104", + "https://github.com/yeheskieltame/claudelance/issues/547", + "https://github.com/alulaalmi/Apache-APISIX/issues/1", + "https://github.com/SPLURT-Station/S.P.L.U.R.T-tg/issues/1046", + "https://github.com/nextcloud/passman-webextension/issues/294", + "https://github.com/openmetaearth/me-hub/issues/16", + "https://github.com/Kings9595/WaveMilestone/issues/19", + "https://github.com/mergeos-bounties/Gomi/issues/10", + "https://github.com/charles-openclaw/charles-microbounties/issues/1190", + "https://github.com/greyw0rks/bountyscout/issues/159", + "https://github.com/lobster-trap/Kickama/issues/68", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/133", + "https://github.com/charles-openclaw/charles-microbounties/issues/36", + "https://github.com/midnightntwrk/contributor-hub/issues/280", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/916", + "https://github.com/DomTheDeveloper/crl/issues/99", + "https://github.com/auscaster/frantic-board/issues/177", + "https://github.com/charles-openclaw/charles-microbounties/issues/3121", + "https://github.com/charles-openclaw/charles-microbounties/issues/1432", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/843", + "https://github.com/organvm/peer-audited--behavioral-blockchain/issues/91", + "https://github.com/charles-openclaw/charles-microbounties/issues/581", + "https://github.com/iamHarshops/cybersecurity-roadmap/issues/1", + "https://github.com/netresearch/claude-code-marketplace/issues/69", + "https://github.com/ramimbo/mergework/issues/978", + "https://github.com/charles-openclaw/charles-microbounties/issues/1297", + "https://github.com/UnitOneAI/SecuritySkills/issues/2748", + "https://github.com/Scottcjn/rustchain-bounties/issues/13537", + "https://github.com/conduit-protocol/streamFi-app/issues/69", + "https://github.com/mergeos-bounties/rviz-mcp/issues/18", + "https://github.com/MystenLabs/sui/issues/26769", + "https://github.com/ReinUrmet/ReconToolkit/issues/8", + "https://github.com/Ikalus1988/MisakaNet/issues/145", + "https://github.com/Scottcjn/rustchain-bounties/issues/14718", + "https://github.com/Scottcjn/rustchain-bounties/issues/12973", + "https://github.com/ritik4ever/stellar-bounty-board/issues/379", + "https://github.com/ValveSoftware/Dota2-Gameplay/issues/485", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/236", + "https://github.com/rh-ai-quickstart/CAIsat/issues/18", + "https://github.com/ClankerNation/OpenAgents/issues/119", + "https://github.com/Scottcjn/grazer-skill/issues/84", + "https://github.com/venkatpavan8806/siege-app/issues/2", + "https://github.com/vitorpamplona/amethyst/issues/1487", + "https://github.com/boundlessfi/bounties/issues/280", + "https://github.com/greyw0rks/bountyscout/issues/49", + "https://github.com/charles-openclaw/charles-microbounties/issues/1477", + "https://github.com/Grainlify/Grainlify-Stellar-Contracts/issues/182", + "https://github.com/charles-openclaw/charles-microbounties/issues/1578", + "https://github.com/pancakeswap/pancake-v3-contracts/issues/32", + "https://github.com/charles-openclaw/charles-microbounties/issues/1620", + "https://github.com/xevrion-v2/agent-playground/issues/5115", + "https://github.com/GoodDollar/GoodWallet/issues/40", + "https://github.com/GOF2BountyBot/BountyBot-Reborn-SamX/issues/47", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/245", + "https://github.com/charles-openclaw/charles-microbounties/issues/636", + "https://github.com/mergeos-bounties/PoseGuide/issues/50", + "https://github.com/Scottcjn/rustchain-bounties/issues/13628", + "https://github.com/greyw0rks/bountyscout/issues/319", + "https://github.com/ablac/Arena/issues/208", + "https://github.com/harrickheng02/jIssWeb/issues/34", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/156", + "https://github.com/charles-openclaw/charles-microbounties/issues/3120", + "https://github.com/Scottcjn/rustchain-bounties/issues/13107", + "https://github.com/HubDApp/Dongle-Smartcontract/issues/339", + "https://github.com/warpspeedopen-source/warpspeed-bounties/issues/1", + "https://github.com/Scottcjn/rustchain-bounties/issues/12667", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/790", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/211", + "https://github.com/shanzson/Smart-Contract-Auditor-Tools-and-Techniques/issues/12", + "https://github.com/mergeos-bounties/NeraJob/issues/23", + "https://github.com/Merit-Systems/x402scan/issues/1036", + "https://github.com/amaybaum-prod/multi-language/issues/9", + "https://github.com/charles-openclaw/charles-microbounties/issues/1339", + "https://github.com/Hazyshades/Sendly-Test-Repo/issues/41", + "https://github.com/Yuliya65/Langroid/issues/35", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/241", + "https://github.com/charles-openclaw/charles-microbounties/issues/2075", + "https://github.com/Jonnyton/Workflow/issues/1029", "https://github.com/charles-openclaw/charles-microbounties/issues/1833", - "https://github.com/Elyonar/einvoice-go/issues/3", - "https://github.com/charles-openclaw/charles-microbounties/issues/1144", - "https://github.com/charles-openclaw/charles-microbounties/issues/1159", - "https://github.com/lukataylo/Golden-Coffee/issues/2", - "https://github.com/Cloudz-319/zeroeye/issues/7", - "https://github.com/greyw0rks/bountyscout/issues/92", - "https://github.com/charles-openclaw/charles-microbounties/issues/1352", - "https://github.com/charles-openclaw/charles-microbounties/issues/646", - "https://github.com/dev-kp-eloper/BountyScout/issues/115", - "https://github.com/charles-openclaw/charles-microbounties/issues/138", - "https://github.com/UnitOneAI/SecuritySkills/issues/1659", - "https://github.com/Scottcjn/rustchain-bounties/issues/12828", - "https://github.com/charles-openclaw/charles-microbounties/issues/989", - "https://github.com/SecureBananaLabs/bug-bounty/issues/9759", - "https://github.com/xevrion-v2/agent-playground/issues/3243", - "https://github.com/Scottcjn/rustchain-bounties/issues/14729", - "https://github.com/Ikalus1988/MisakaNet/issues/256", - "https://github.com/Scottcjn/bottube/issues/647", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/225", + "https://github.com/akashrtd/neunode/issues/25", + "https://github.com/charles-openclaw/charles-microbounties/issues/3344", + "https://github.com/Scottcjn/bottube/issues/1482", + "https://github.com/Knitweb/molgang/issues/51", + "https://github.com/gibwork/gibwork-website/issues/92", + "https://github.com/vansh-09/BountyScout/issues/470", + "https://github.com/SPLURT-Station/S.P.L.U.R.T-tg/issues/1032", + "https://github.com/charles-openclaw/charles-microbounties/issues/2172", + "https://github.com/cyrilawoyemi99-max/owockibot-bounty-sync-/issues/3", + "https://github.com/ruohong2018/ruohong2018.github.io/issues/857", + "https://github.com/charles-openclaw/charles-microbounties/issues/240", + "https://github.com/asaadnashed/bounty-autopilot/issues/2", + "https://github.com/ramimbo/mergework/issues/291", + "https://github.com/MergeFi/frontend/issues/49", + "https://github.com/Scottcjn/contributors/issues/127", + "https://github.com/tinyhumansai/tiny.place/issues/134", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/31", + "https://github.com/stoatchat/for-android/issues/12", + "https://github.com/boundlessfi/boundless-contract/issues/66", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/914", + "https://github.com/charles-openclaw/charles-microbounties/issues/1277", + "https://github.com/Scottcjn/rustchain-bounties/issues/12443", + "https://github.com/PunkFinance/punk.protocol/issues/5", + "https://github.com/WUAIBING/MEP/issues/224", + "https://github.com/openhab/openhab-addons/issues/7649", + "https://github.com/3ni8ma/aarushkarak-website/issues/74", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5939", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/270", + "https://github.com/Scottcjn/rustchain-bounties/issues/15379", + "https://github.com/charles-openclaw/charles-microbounties/issues/3132", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4523", + "https://github.com/charles-openclaw/charles-microbounties/issues/1830", + "https://github.com/devs-immortal/Paradise-Lost/issues/896", + "https://github.com/hyperlane-xyz/hyperlane-monorepo/issues/4585", + "https://github.com/vansh-09/BountyScout/issues/205", + "https://github.com/Emmanuel-Evenzur/AutoPromptAI/issues/21", + "https://github.com/daydreamsai/agent-bounties/issues/314", + "https://github.com/greyw0rks/bountyscout/issues/120", + "https://github.com/Scottcjn/rustchain-bounties/issues/13224", + "https://github.com/Scottcjn/trashclaw/issues/65", + "https://github.com/Vonage/vonage-media-transformers-samples/issues/85", + "https://github.com/UnitOneAI/SecuritySkills/issues/45", + "https://github.com/UnitOneAI/SecuritySkills/issues/2464", + "https://github.com/xevrion-v2/agent-playground/issues/5967", + "https://github.com/charles-openclaw/charles-microbounties/issues/1154", + "https://github.com/Nexussyn/ai-growth-platform/issues/4", + "https://github.com/charles-openclaw/charles-microbounties/issues/1169", + "https://github.com/auscaster/frantic-board/issues/137", + "https://github.com/charles-openclaw/charles-microbounties/issues/2215", + "https://github.com/paraloom-labs/paraloom-core/issues/505", + "https://github.com/mergeos-bounties/Loru/issues/202", + "https://github.com/amaybaum-prod/shopware/issues/23", + "https://github.com/Scottcjn/rustchain-bounties/issues/13618", + "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/183", + "https://github.com/Jagadeeshftw/grainlify/issues/1405", + "https://github.com/dev-kp-eloper/BountyScout/issues/536", + "https://github.com/relayhop/sn-monetization-runtime/issues/185", + "https://github.com/DimaMend/AutoPrompt/issues/4", + "https://github.com/qxrtjdggj653/echo/issues/1", + "https://github.com/koromerzhin/streamchat/issues/57", + "https://github.com/valvepsro466/Support/issues/120", + "https://github.com/Scottcjn/contributors/issues/159", + "https://github.com/lobster-trap/zeroeye/issues/264", + "https://github.com/Liquifact/Liquifact-backend/issues/506", + "https://github.com/vansh-09/BountyScout/issues/74", + "https://github.com/xevrion-v2/agent-playground/issues/7835", + "https://github.com/ramimbo/mergework/issues/122", + "https://github.com/synfig/synfig/issues/450", + "https://github.com/greyw0rks/bountyscout/issues/90", + "https://github.com/cporter202/awesome-ai-tools/issues/35", + "https://github.com/Monkestation/Vanderlin/issues/6636", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/120", + "https://github.com/charles-openclaw/charles-microbounties/issues/3348", + "https://github.com/UnitOneAI/SecuritySkills/issues/1093", + "https://github.com/davontepowlowsk1i/Apache-Pulsar/issues/1", + "https://github.com/paparazzi/paparazzi/issues/719", + "https://github.com/Scottcjn/rustchain-bounties/issues/12985", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/271", + "https://github.com/mergeos-bounties/HIRI/issues/38", + "https://github.com/charles-openclaw/charles-microbounties/issues/1816", + "https://github.com/NSPG13/agent-bounties/issues/124", + "https://github.com/Replikanti/agentis-colonies/issues/1459", + "https://github.com/MastaTrill/Aetheron-Sentinel-L3/issues/155", + "https://github.com/Emmanuel-Evenzur/syetem_prompt/issues/19", + "https://github.com/Scottcjn/rustchain-bounties/issues/15309", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/759", + "https://github.com/mergeos-bounties/ros2-mcp/issues/10", + "https://github.com/gibwork/gibwork-website/issues/124", + "https://github.com/Scottcjn/rustchain-bounties/issues/15144", + "https://github.com/charles-openclaw/charles-microbounties/issues/3402", + "https://github.com/auscaster/frantic-board/issues/166", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/565", + "https://github.com/souleater06/mineagent/issues/9", + "https://github.com/ramimbo/mergework/issues/38", + "https://github.com/mpfaffenberger/space_sim/issues/17", + "https://github.com/clowlove/Hermes-House/issues/730", + "https://github.com/capofficial/client/issues/4", + "https://github.com/relayhop/sn-monetization-runtime/issues/137", + "https://github.com/SecureBananaLabs/bug-bounty/issues/3928", + "https://github.com/xevrion-v2/agent-playground/issues/769", + "https://github.com/wjy9902/ai-daily/issues/124", + "https://github.com/SecureBananaLabs/bug-bounty/issues/6323", + "https://github.com/SecureBananaLabs/bug-bounty/issues/6949", + "https://github.com/UnitOneAI/SecuritySkills/issues/36", + "https://github.com/lobster-trap/zeroeye/issues/5", + "https://github.com/mergeos-bounties/NeraJob/issues/15", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/71", + "https://github.com/NSPG13/agent-bounties/issues/255", + "https://github.com/xevrion-v2/agent-playground/issues/6477", + "https://github.com/charles-openclaw/charles-microbounties/issues/1272", + "https://github.com/Scottcjn/rustchain-bounties/issues/14057", + "https://github.com/AgesEmpire/StellarSwipe-FrontEnd/issues/348", + "https://github.com/NSPG13/agent-bounties/issues/2", + "https://github.com/xevrion-v2/agent-playground/issues/5639", + "https://github.com/charles-openclaw/charles-microbounties/issues/1419", + "https://github.com/xevrion-v2/agent-playground/issues/5114", + "https://github.com/ramimbo/mergework/issues/655", + "https://github.com/Scottcjn/Rustchain/issues/6121", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/636", + "https://github.com/relayhop/sn-monetization-runtime/issues/194", + "https://github.com/ClankerNation/OpenAgents/issues/164", + "https://github.com/mergemint-mint/mergemint-contracts/issues/288", + "https://github.com/qdrant/qdrant/issues/4297", + "https://github.com/SecureBananaLabs/bug-bounty/issues/10905", + "https://github.com/charles-openclaw/charles-microbounties/issues/2173", + "https://github.com/UnitOneAI/SecuritySkills/issues/2616", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/755", + "https://github.com/charles-openclaw/charles-microbounties/issues/1064", + "https://github.com/UnitOneAI/SecuritySkills/issues/1026", + "https://github.com/charles-openclaw/charles-microbounties/issues/1323", + "https://github.com/Scottcjn/rustchain-bounties/issues/15017", + "https://github.com/Opty-Fi/defi-adapters/issues/7", + "https://github.com/charles-openclaw/charles-microbounties/issues/871", + "https://github.com/Iamgoofball/-tg-station/issues/147", + "https://github.com/Proxyfan/Proxyfan/issues/928", + "https://github.com/pollar-xyz/pollar-backoffice/issues/12", + "https://github.com/dev-kp-eloper/BountyScout/issues/570", + "https://github.com/johnchampaign/star-wars-rebellion/issues/629", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/3237", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1822", + "https://github.com/Scottcjn/rustchain-bounties/issues/15311", + "https://github.com/devs-immortal/Paradise-Lost/issues/895", + "https://github.com/ramimbo/mergework/issues/1210", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3846", + "https://github.com/openmetaearth/me-hub/issues/365", + "https://github.com/xevrion-v2/agent-playground/issues/4702", + "https://github.com/airdropia-collection/bounty-hunter/issues/5", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/87", + "https://github.com/xevrion-v2/agent-playground/issues/6035", + "https://github.com/SecureBananaLabs/bug-bounty/issues/4120", + "https://github.com/xevrion-v2/agent-playground/issues/6585", + "https://github.com/SPLURT-Station/S.P.L.U.R.T-tg/issues/109", + "https://github.com/Scottcjn/rustchain-bounties/issues/449", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/303", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/202", + "https://github.com/dwebagents/AgentPipe/issues/107", + "https://github.com/charles-openclaw/charles-microbounties/issues/388", + "https://github.com/vitorpamplona/amethyst/issues/3293", + "https://github.com/Gryd-lock/grydlock-oracle-adapter/issues/8", + "https://github.com/NSPG13/agent-bounties/issues/55", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/296", + "https://github.com/Scottcjn/rustchain-bounties/issues/509", + "https://github.com/Ad-alwer/cheGi/issues/22", + "https://github.com/UnitOneAI/SecuritySkills/issues/2223", + "https://github.com/Scottcjn/bottube/issues/644", + "https://github.com/Scottcjn/Rustchain/issues/7125", + "https://github.com/Scottcjn/rustchain-bounties/issues/247", + "https://github.com/UnitOneAI/SecuritySkills/issues/1594", + "https://github.com/charles-openclaw/charles-microbounties/issues/115", + "https://github.com/NyxFoundation/speca/issues/2", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/484", + "https://github.com/xevrion-v2/agent-playground/issues/5428", + "https://github.com/Scottcjn/rustchain-bounties/issues/13692", + "https://github.com/QubesOS/qubes-issues/issues/7231", + "https://github.com/davontepowlowsk1i/CockroachDB/issues/1", + "https://github.com/AReid987/aigency-v1.0.0/issues/319", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4908", + "https://github.com/charles-openclaw/charles-microbounties/issues/1485", + "https://github.com/xevrion-v2/agent-playground/issues/5469", + "https://github.com/mininet-labs/Mininet/issues/207", + "https://github.com/charles-openclaw/charles-microbounties/issues/1846", + "https://github.com/dannywillems/dannywillems.github.io/issues/436", + "https://github.com/vansh-09/BountyScout/issues/227", + "https://github.com/mautic/mautic/issues/16419", + "https://github.com/ramimbo/mergework/issues/229", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5822", + "https://github.com/charles-openclaw/charles-microbounties/issues/1023", + "https://github.com/UnitOneAI/SecuritySkills/issues/441", + "https://github.com/xevrion-v2/agent-playground/issues/4815", + "https://github.com/charles-openclaw/charles-microbounties/issues/1981", + "https://github.com/ClankerNation/OpenAgents/issues/139", + "https://github.com/charles-openclaw/charles-microbounties/issues/1935", + "https://github.com/ValveSoftware/Dota2-Gameplay/issues/1608", + "https://github.com/auscaster/frantic-board/issues/313", + "https://github.com/auscaster/frantic-board/issues/92", + "https://github.com/Scottcjn/bounty-concierge/issues/44", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3411", + "https://github.com/charles-openclaw/charles-microbounties/issues/684", + "https://github.com/lobster-trap/TentOfTrials/issues/61", + "https://github.com/mergeos-bounties/HIRI/issues/7", + "https://github.com/vansh-09/BountyScout/issues/206", + "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/368", + "https://github.com/charles-openclaw/charles-microbounties/issues/140", + "https://github.com/victorjones6awpg/gocraft-work/issues/1", + "https://github.com/Scottcjn/rustchain-bounties/issues/12026", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/73", + "https://github.com/Scottcjn/rustchain-bounties/issues/15042", + "https://github.com/charles-openclaw/charles-microbounties/issues/2053", + "https://github.com/charles-openclaw/charles-microbounties/issues/1907", + "https://github.com/Fouriercore/fourier-contracts/issues/87", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/648", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5009", + "https://github.com/clowlove/Hermes-House/issues/607", + "https://github.com/NSPG13/agent-bounties/issues/334", + "https://github.com/Scottcjn/rustchain-bounties/issues/13480", + "https://github.com/charles-openclaw/charles-microbounties/issues/1831", + "https://github.com/a-organvm/peer-audited--behavioral-blockchain/issues/34", + "https://github.com/devpool-directory/devpool-directory/issues/5000", + "https://github.com/Scottcjn/rustchain-bounties/issues/13596", + "https://github.com/gibwork/gibwork-website/issues/12", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/304", + "https://github.com/NSPG13/agent-bounties/issues/275", + "https://github.com/open-mercato/open-mercato/issues/699", + "https://github.com/charles-openclaw/charles-microbounties/issues/1626", + "https://github.com/Ikalus1988/MisakaNet/issues/302", + "https://github.com/souleater06/mineagent/issues/3", + "https://github.com/Scottcjn/bottube/issues/1425", + "https://github.com/Monkestation/Monkestation2.0/issues/12083", + "https://github.com/UnitOneAI/SecuritySkills/issues/1325", + "https://github.com/charles-openclaw/charles-microbounties/issues/1512", + "https://github.com/ramimbo/mergework/issues/107", + "https://github.com/vansh-09/BountyScout/issues/51", + "https://github.com/patchid/docs/issues/6", + "https://github.com/tari-project/minotari-cli/issues/125", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/566", + "https://github.com/boundlessfi/bounties/issues/273", + "https://github.com/auscaster/frantic-board/issues/94", + "https://github.com/boundlessfi/bounties/issues/274", + "https://github.com/3ni8ma/aarushkarak-website/issues/22", "https://github.com/fluxerapp/fluxer-meta/issues/19", - "https://github.com/mautic/mautic/issues/16087", - "https://github.com/ramimbo/mergework/issues/427", - "https://github.com/charles-openclaw/charles-microbounties/issues/2821", - "https://github.com/BountyOnChain/StellarBounty/issues/180", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/208", - "https://github.com/ramimbo/mergework/issues/935", + "https://github.com/Scottcjn/rustchain-bounties/issues/16169", + "https://github.com/nextcloud/server/issues/8459", + "https://github.com/johnchampaign/star-wars-rebellion/issues/581", + "https://github.com/xevrion-v2/agent-playground/issues/6578", + "https://github.com/UnitOneAI/SecuritySkills/issues/2465", + "https://github.com/charles-openclaw/charles-microbounties/issues/1182", + "https://github.com/guil-lambert/defipunkd/issues/227", + "https://github.com/ghc-cloneRepoStaging-scaAndRenovate2/14459_Michael-Castillo_0630_221043_ghc_gw1_failed/issues/9", + "https://github.com/Ikalus1988/MisakaNet/issues/268", + "https://github.com/Henry00IS/ShapeEditor/issues/3", + "https://github.com/boundlessfi/bounties/issues/279", + "https://github.com/SecureBananaLabs/bug-bounty/issues/4482", + "https://github.com/clowlove/Hermes-House/issues/530", + "https://github.com/yosemite01/stellar-creator-portfolio/issues/740", + "https://github.com/charles-openclaw/charles-microbounties/issues/1519", + "https://github.com/Carbon-Ledger-stellar/carbonledger-bounty/issues/3", + "https://github.com/charles-openclaw/charles-microbounties/issues/1574", + "https://github.com/vansh-09/BountyScout/issues/200", + "https://github.com/Scottcjn/rustchain-bounties/issues/15261", + "https://github.com/Scottcjn/rustchain-bounties/issues/12579", "https://github.com/charles-openclaw/charles-microbounties/issues/1268", - "https://github.com/Scottcjn/rustchain-bounties/issues/14169", - "https://github.com/jaxassistant55/TentOfTrials/issues/12", - "https://github.com/auscaster/frantic-board/issues/139", - "https://github.com/Scottcjn/Rustchain/issues/166", - "https://github.com/Scottcjn/grazer-skill/issues/84", - "https://github.com/ramimbo/mergework/issues/814", - "https://github.com/Scottcjn/rustchain-bounties/issues/13401", - "https://github.com/charles-openclaw/charles-microbounties/issues/169", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3055", - "https://github.com/charles-openclaw/charles-microbounties/issues/277", - "https://github.com/mautic/mautic/issues/16185", - "https://github.com/charles-openclaw/charles-microbounties/issues/1222", - "https://github.com/ClankerNation/OpenAgents/issues/132", - "https://github.com/Ikalus1988/MisakaNet/issues/255", - "https://github.com/charles-openclaw/charles-microbounties/issues/1823", - "https://github.com/charles-openclaw/charles-microbounties/issues/1368", - "https://github.com/Scottcjn/rustchain-bounties/issues/13476", - "https://github.com/charles-openclaw/charles-microbounties/issues/68", - "https://github.com/Scottcjn/rustchain-bounties/issues/13597", - "https://github.com/auscaster/frantic-board/issues/162", - "https://github.com/Scottcjn/grazer-skill/issues/72", - "https://github.com/bolivian-peru/baozi-openclaw/issues/40", - "https://github.com/sneakers-the-rat/ImportantCode/issues/86", + "https://github.com/Plasius-LTD/ai-game/issues/18", + "https://github.com/okalldal/lark/issues/271", + "https://github.com/xevrion-v2/agent-playground/issues/4684", + "https://github.com/mergeos-bounties/TrucVPN/issues/1", + "https://github.com/ichabodcole/spellbook/issues/73", + "https://github.com/Aigen-Protocol/aigen-protocol/issues/103", + "https://github.com/verl-project/verl/issues/3149", + "https://github.com/nicodevtools/kickama-foxy-trials/issues/15", + "https://github.com/intuition-box/Liquid-Democracy/issues/2", + "https://github.com/charles-openclaw/charles-microbounties/issues/850", + "https://github.com/Soengkit/frailbox-checkpoint/issues/2", + "https://github.com/lobster-trap/zeroeye/issues/52", + "https://github.com/junlinzhao327-oss/big_model_radar/issues/89", + "https://github.com/Scottcjn/rustchain-bounties/issues/14096", + "https://github.com/UnitOneAI/SecuritySkills/issues/1810", "https://github.com/jMonkeyEngine/jmonkeyengine/issues/2354", - "https://github.com/dev-kp-eloper/BountyScout/issues/155", - "https://github.com/thaohuynh14zc/urfave-cli/issues/1", - "https://github.com/ramimbo/mergework/issues/229", - "https://github.com/vansh-09/BountyScout/issues/105", - "https://github.com/charles-openclaw/charles-microbounties/issues/1420", - "https://github.com/Scottcjn/rustchain-bounties/issues/13624", - "https://github.com/charles-openclaw/charles-microbounties/issues/1698", - "https://github.com/ZSBRybnik/frontend/issues/362", - "https://github.com/greyw0rks/bountyscout/issues/76", - "https://github.com/mautic/mautic/issues/16197", - "https://github.com/Scottcjn/rustchain-bounties/issues/504", - "https://github.com/APN-Network/bugs/issues/11", - "https://github.com/charles-openclaw/charles-microbounties/issues/1478", - "https://github.com/xevrion-v2/agent-playground/issues/3833", - "https://github.com/ritik4ever/stellar-bounty-board/issues/242", - "https://github.com/ZSBRybnik/backend/issues/1274", - "https://github.com/Scottcjn/rustchain-bounties/issues/11262", - "https://github.com/openmetaearth/me-hub/issues/298", - "https://github.com/charles-openclaw/charles-microbounties/issues/925", - "https://github.com/UnitOneAI/SecuritySkills/issues/1526", - "https://github.com/UnitOneAI/SecuritySkills/issues/1643", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1144", - "https://github.com/charles-openclaw/charles-microbounties/issues/932", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/768", - "https://github.com/charles-openclaw/charles-microbounties/issues/1820", - "https://github.com/yeheskieltame/claudelance/issues/533", - "https://github.com/johnchampaign/star-wars-rebellion/issues/489", - "https://github.com/cuentaprueba244w-dotcom/TentOfTrials/issues/12", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/837", - "https://github.com/mpfaffenberger/space_sim/issues/7", - "https://github.com/SecureBananaLabs/bug-bounty/issues/8863", - "https://github.com/UnitOneAI/SecuritySkills/issues/2417", - "https://github.com/charles-openclaw/charles-microbounties/issues/1934", - "https://github.com/codegraphtheory/hermes-profile-template/issues/14", - "https://github.com/charles-openclaw/charles-microbounties/issues/824", - "https://github.com/explorerscat/cautious-octo-fishstick/issues/7", - "https://github.com/Scottcjn/rustchain-bounties/issues/13225", - "https://github.com/xevrion-v2/agent-playground/issues/5133", - "https://github.com/charles-openclaw/charles-microbounties/issues/928", - "https://github.com/CapSoftware/Cap/issues/73", - "https://github.com/xevrion-v2/agent-playground/issues/5131", - "https://github.com/Scottcjn/rustchain-bounties/issues/13561", - "https://github.com/ClankerNation/OpenAgents/issues/179", - "https://github.com/SecureBananaLabs/bug-bounty/issues/4117", - "https://github.com/blemaire-wavetel/AutoPrompt/issues/1", - "https://github.com/Reqrefusion/FreeCAD-Documentation-Project/issues/329", - "https://github.com/ClankerNation/OpenAgents/issues/105", - "https://github.com/esi/esi-issues/issues/1216", - "https://github.com/Scottcjn/rustchain-bounties/issues/13177", - "https://github.com/vansh-09/BountyScout/issues/226", - "https://github.com/Scottcjn/rustchain-bounties/issues/12239", - "https://github.com/charles-openclaw/charles-microbounties/issues/1163", - "https://github.com/lobster-trap/hammer-and-nail/issues/399", - "https://github.com/charles-openclaw/charles-microbounties/issues/835", - "https://github.com/charles-openclaw/charles-microbounties/issues/654", - "https://github.com/auscaster/frantic-board/issues/92", - "https://github.com/vansh-09/BountyScout/issues/54", - "https://github.com/charles-openclaw/charles-microbounties/issues/1028", - "https://github.com/destaben/homeassistant/issues/36", - "https://github.com/charles-openclaw/charles-microbounties/issues/1266", - "https://github.com/charles-openclaw/charles-microbounties/issues/819", - "https://github.com/vansh-09/BountyScout/issues/114", - "https://github.com/Scottcjn/Rustchain/issues/6121", - "https://github.com/Scottcjn/rustchain-bounties/issues/14380", - "https://github.com/archestra-ai/archestra/issues/3837", - "https://github.com/lobster-trap/Kickama/issues/68", - "https://github.com/greyw0rks/bountyscout/issues/129", - "https://github.com/DimaMend/AutoPrompt/issues/4", - "https://github.com/ClankerNation/OpenAgents/issues/195", - "https://github.com/Scottcjn/rustchain-bounties/issues/14047", - "https://github.com/ramimbo/mergework/issues/447", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/137", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/3239", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5429", - "https://github.com/greyw0rks/bountyscout/issues/94", - "https://github.com/xevrion-v2/agent-playground/issues/5150", - "https://github.com/permission-protocol/deploy-gate/issues/65", - "https://github.com/Jagadeeshftw/grainlify/issues/1402", - "https://github.com/charles-openclaw/charles-microbounties/issues/1026", - "https://github.com/manav8498/TentOfTrials/issues/2", - "https://github.com/charles-openclaw/charles-microbounties/issues/1903", - "https://github.com/javelin-anticheat/py-workedtask/issues/2", - "https://github.com/Scottcjn/rustchain-bounties/issues/12535", - "https://github.com/HHS/simpler-grants-gov/issues/10634", - "https://github.com/yosemite01/stellar-creator-portfolio/issues/748", - "https://github.com/charles-openclaw/charles-microbounties/issues/875", - "https://github.com/ClankerNation/OpenAgents/issues/65", - "https://github.com/ClankerNation/OpenAgents/issues/152", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/58", - "https://github.com/johnchampaign/star-wars-rebellion/issues/440", - "https://github.com/yosemite01/stellar-creator-portfolio/issues/735", - "https://github.com/Scottcjn/rustchain-bounties/issues/13130", - "https://github.com/greyw0rks/bountyscout/issues/46", - "https://github.com/Scottcjn/rustchain-bounties/issues/13835", + "https://github.com/SecureBananaLabs/bug-bounty/issues/6233", + "https://github.com/PunkFinance/punk.protocol/issues/4", + "https://github.com/charles-openclaw/charles-microbounties/issues/671", + "https://github.com/Scottcjn/clawrtc-rs/issues/1", + "https://github.com/lobster-trap/zeroeye/issues/178", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/328", + "https://github.com/vansh-09/BountyScout/issues/155", + "https://github.com/Scottcjn/rustchain-bounties/issues/13665", + "https://github.com/manelsen/agents-radar/issues/1220", + "https://github.com/charles-openclaw/charles-microbounties/issues/1611", + "https://github.com/tachyon-zcash/ragu/issues/784", + "https://github.com/vansh-09/BountyScout/issues/148", + "https://github.com/Scottcjn/rustchain-bounties/issues/12942", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/12", + "https://github.com/CTristan/lobotomy-corporation-mods/issues/155", + "https://github.com/Charlie-Toolchain/sample-javascript-cfd/issues/3", + "https://github.com/OrcaSlicer/OrcaSlicer/issues/14503", + "https://github.com/mergeos-bounties/PoseGuide/issues/43", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/223", + "https://github.com/openmetaearth/me-hub/issues/904", + "https://github.com/TaySchub/blueplate/issues/98", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3567", "https://github.com/aeyakovenko/percolator-prog/issues/110", - "https://github.com/charles-openclaw/charles-microbounties/issues/1947", - "https://github.com/ProKelly/mychart/issues/1", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3623", - "https://github.com/Scottcjn/rustchain-bounties/issues/13630", - "https://github.com/asaadnashed/bounty-autopilot/issues/13", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/87", - "https://github.com/charles-openclaw/charles-microbounties/issues/3409", - "https://github.com/sneakers-the-rat/ImportantCode/issues/97", - "https://github.com/UnitOneAI/SecuritySkills/issues/1623", - "https://github.com/nicodevtools/kickama-foxy-trials/issues/13", - "https://github.com/greyw0rks/bountyscout/issues/108", - "https://github.com/okalldal/lark/issues/274", - "https://github.com/RatLoopz/sahidawa-india/issues/2260", - "https://github.com/UnitOneAI/SecuritySkills/issues/2439", - "https://github.com/SlimReaperDevs/alfred-os/issues/8", + "https://github.com/greyw0rks/bountyscout/issues/114", + "https://github.com/Scottcjn/rustchain-bounties/issues/13829", + "https://github.com/code-charity/youtube/issues/4128", + "https://github.com/xevrion-v2/agent-playground/issues/637", + "https://github.com/3ni8ma/aarushkarak-website/issues/24", + "https://github.com/caley-io/marketing/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/370", + "https://github.com/charles-openclaw/charles-microbounties/issues/112", + "https://github.com/joserivasgt/panama-me/issues/280", + "https://github.com/xevrion-v2/agent-playground/issues/4704", + "https://github.com/Jonnyton/Workflow/issues/1052", + "https://github.com/xevrion-v2/agent-playground/issues/3861", + "https://github.com/Scottcjn/rustchain-bounties/issues/13761", + "https://github.com/3ni8ma/aarushkarak-website/issues/41", + "https://github.com/azerothcore/azerothcore-wotlk/issues/3655", + "https://github.com/dictation-toolbox/Caster/issues/814", + "https://github.com/UnitOneAI/SecuritySkills/issues/1816", + "https://github.com/SharedStake/Contracts/issues/7", + "https://github.com/charles-openclaw/charles-microbounties/issues/393", + "https://github.com/Scottcjn/rustchain-bounties/issues/12643", + "https://github.com/mergemint-mint/mergemint-contracts/issues/311", + "https://github.com/tari-project/tari/issues/7795", + "https://github.com/laudantstolam/stargazer_newsletter/issues/24", + "https://github.com/profullstack/ugig.net/issues/401", + "https://github.com/mergeos-bounties/Loru/issues/1", + "https://github.com/auscaster/frantic-board/issues/320", + "https://github.com/warpspeedopen-source/warpspeed-bounties/issues/5", + "https://github.com/UID9622/lh-standard-adapter/issues/2", + "https://github.com/CredenceOrg/Credence-Frontend/issues/327", + "https://github.com/mergeos-bounties/PoseGuide/issues/42", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/295", + "https://github.com/charles-openclaw/charles-microbounties/issues/2062", + "https://github.com/taskmasterpeace/ShootEm/issues/124", + "https://github.com/charles-openclaw/charles-microbounties/issues/202", + "https://github.com/Spectral-Finance/lux/issues/80", + "https://github.com/boundlessfi/bounties/issues/181", + "https://github.com/Scottcjn/rustchain-bounties/issues/14522", + "https://github.com/charles-openclaw/charles-microbounties/issues/1660", + "https://github.com/livepeer/explorer/issues/711", + "https://github.com/Gryd-lock/grydlock-oracle-adapter/issues/4", + "https://github.com/Scottcjn/rustchain-bounties/issues/49", + "https://github.com/cyotee/defi-agent-skills/issues/1", + "https://github.com/Tylerx3udv/go-github/issues/1", + "https://github.com/fluxerapp/fluxer-meta/issues/21", + "https://github.com/Scottcjn/rustchain-rips/issues/11", + "https://github.com/ritik4ever/stellar-bounty-board/issues/377", + "https://github.com/lobster-trap/zeroeye/issues/58", + "https://github.com/xevrion-v2/agent-playground/issues/2825", + "https://github.com/Ad-alwer/cheGi/issues/23", + "https://github.com/Scottcjn/rustchain-bounties/issues/15617", + "https://github.com/xevrion-v2/agent-playground/issues/6972", + "https://github.com/SecureBananaLabs/bug-bounty/issues/3206", + "https://github.com/Scottcjn/rustchain-bounties/issues/12788", + "https://github.com/Feel-ix-343/markdown-oxide/issues/269", + "https://github.com/charles-openclaw/charles-microbounties/issues/1491", + "https://github.com/vansh-09/BountyScout/issues/171", + "https://github.com/charles-openclaw/charles-microbounties/issues/952", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5997", + "https://github.com/charles-openclaw/charles-microbounties/issues/506", + "https://github.com/Iamgoofball/-tg-station/issues/260", + "https://github.com/Scottcjn/rustchain-bounties/issues/12442", + "https://github.com/rsoreq/zenbot/issues/926", + "https://github.com/charles-openclaw/charles-microbounties/issues/668", + "https://github.com/charles-openclaw/charles-microbounties/issues/3406", + "https://github.com/NSPG13/agent-bounties/issues/110", + "https://github.com/charles-openclaw/charles-microbounties/issues/658", + "https://github.com/Liquifact/Liquifact-frontend/issues/106", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/202", + "https://github.com/Ikalus1988/MisakaNet/issues/459", + "https://github.com/johnchampaign/star-wars-rebellion/issues/203", + "https://github.com/boundlessfi/bounties/issues/209", + "https://github.com/Scottcjn/rustchain-bounties/issues/12983", + "https://github.com/harnessclaw/harnessclaw/issues/43", + "https://github.com/szl-holdings/.github/issues/158", + "https://github.com/stxtxm/bitbrawler/issues/536", + "https://github.com/vansh-09/BountyScout/issues/123", + "https://github.com/Scottcjn/rustchain-bounties/issues/14004", + "https://github.com/Ikalus1988/MisakaNet/issues/304", + "https://github.com/ZSBRybnik/backend/issues/1245", + "https://github.com/mergeos-bounties/PoseGuide/issues/33", + "https://github.com/conduit-protocol/streamFi-app/issues/66", + "https://github.com/himmelblau-idm/himmelblau/issues/1392", + "https://github.com/Scottcjn/rustchain-bounties/issues/12342", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/627", + "https://github.com/labmain/ai-agent-pay-demo/issues/19", + "https://github.com/Scottcjn/rustchain-bounties/issues/12979", + "https://github.com/BountyOnChain/StellarBounty/issues/161", + "https://github.com/eunseobchoi/NIPS26_A_CV2024/issues/10", + "https://github.com/Scottcjn/rustchain-bounties/issues/14130", + "https://github.com/Spectral-Finance/lux/issues/81", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1410", + "https://github.com/APN-Network/bugs/issues/22", + "https://github.com/charles-openclaw/charles-microbounties/issues/408", + "https://github.com/mergeos-bounties/Gomi/issues/44", + "https://github.com/mergeos-bounties/NeraJob/issues/5", + "https://github.com/vllm-project/vllm-omni/issues/4442", + "https://github.com/charles-openclaw/charles-microbounties/issues/2015", + "https://github.com/charles-openclaw/charles-microbounties/issues/1342", + "https://github.com/SirPepperPot/EnhancedOverhaulRemixVersion/issues/10", + "https://github.com/charles-openclaw/charles-microbounties/issues/1180", + "https://github.com/GearKite/MatrixZulipBridge/issues/23", + "https://github.com/lobster-trap/SmartGesture/issues/469", + "https://github.com/xevrion-v2/agent-playground/issues/5147", + "https://github.com/rsoreq-mend/tensorflow/issues/25", + "https://github.com/Jonnyton/Workflow/issues/1194", + "https://github.com/charles-openclaw/charles-microbounties/issues/1065", + "https://github.com/cakuki/tidewake/issues/173", + "https://github.com/xevrion-v2/agent-playground/issues/5468", + "https://github.com/openmetaearth/me-hub/issues/300", + "https://github.com/charles-openclaw/charles-microbounties/issues/1762", + "https://github.com/xgcing/TentOfTrials/issues/1", + "https://github.com/ClankerNation/OpenAgents/issues/194", + "https://github.com/freedom-winds/BountyScout/issues/180", + "https://github.com/Freeuni-OOP/final-project-gitbounty/issues/25", + "https://github.com/3ni8ma/aarushkarak-website/issues/156", + "https://github.com/charles-openclaw/charles-microbounties/issues/1381", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2755", + "https://github.com/Iamgoofball/-tg-station/issues/111", + "https://github.com/UnitOneAI/SecuritySkills/issues/1806", + "https://github.com/dev-kp-eloper/BountyScout/issues/498", + "https://github.com/monk-io/monk-plugin/issues/137", + "https://github.com/PrimalHQ/primal-web-app/issues/133", + "https://github.com/vansh-09/BountyScout/issues/102", + "https://github.com/AdamOswald/Huggingface-Space/issues/137", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/132", + "https://github.com/ramimbo/mergework/issues/319", + "https://github.com/cenetex/signal/issues/587", + "https://github.com/conduit-protocol/streamFi-app/issues/97", + "https://github.com/xevrion-v2/agent-playground/issues/1165", + "https://github.com/charles-openclaw/charles-microbounties/issues/283", + "https://github.com/yosemite01/stellar-creator-portfolio/issues/755", + "https://github.com/vansh-09/BountyScout/issues/459", + "https://github.com/Scottcjn/rustchain-bounties/issues/12982", + "https://github.com/Reqrefusion/FreeCAD-Documentation-Project/issues/26", + "https://github.com/openmetaearth/me-hub/issues/1230", + "https://github.com/boundlessfi/bounties/issues/277", + "https://github.com/mergeos-bounties/NeraJob/issues/19", + "https://github.com/devs-immortal/Paradise-Lost/issues/885", + "https://github.com/MergeFi/frontend/issues/28", + "https://github.com/charles-openclaw/charles-microbounties/issues/1337", + "https://github.com/auscaster/frantic-board/issues/285", + "https://github.com/awinogradov/code-assistants/issues/318", + "https://github.com/mautic/mautic/issues/16120", + "https://github.com/dev-kp-eloper/BountyScout/issues/110", + "https://github.com/dotnet/announcements/issues/419", + "https://github.com/lukataylo/Golden-Coffee/issues/4", + "https://github.com/mergeos-bounties/rviz-mcp/issues/24", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2955", + "https://github.com/charles-openclaw/charles-microbounties/issues/1226", + "https://github.com/vansh-09/BountyScout/issues/215", + "https://github.com/openmetaearth/me-hub/issues/399", + "https://github.com/yosemite01/stellar-creator-portfolio/issues/814", + "https://github.com/ethereum/ethereum-org-website/issues/18786", + "https://github.com/lk251/agent-bounty-market/issues/26", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/108", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/437", + "https://github.com/ramimbo/mergework/issues/45", + "https://github.com/Scottcjn/rustchain-bounties/issues/14078", + "https://github.com/cybersecify/OpenEASD/issues/75", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/3211", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2779", + "https://github.com/Scottcjn/rustchain-bounties/issues/15664", + "https://github.com/openmetaearth/me-hub/issues/245", + "https://github.com/mergeos-bounties/mergeos/issues/19", + "https://github.com/mergeos-bounties/PlantGuide/issues/21", + "https://github.com/mergeos-bounties/Gomi/issues/43", + "https://github.com/BruceFeIix/picker/issues/2578", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/264", + "https://github.com/UnitOneAI/SecuritySkills/issues/1595", + "https://github.com/charles-openclaw/charles-microbounties/issues/1461", + "https://github.com/GOF2BountyBot/BountyBot-Reborn-SamX/issues/54", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/856", + "https://github.com/Everdawn-Labs/usdt0-audit-reports/issues/4", + "https://github.com/Extra-Chill/data-machine-events/issues/511", + "https://github.com/toon-protocol/toon-client/issues/158", + "https://github.com/openmetaearth/me-hub/issues/94", + "https://github.com/charles-openclaw/charles-microbounties/issues/1768", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2971", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/651", + "https://github.com/xevrion-v2/agent-playground/issues/3", + "https://github.com/Carbon-Ledger-stellar/carbonledger-bounty/issues/1", + "https://github.com/PhasoraLabs/StellarGrantProtocol/issues/547", + "https://github.com/mergemint-mint/mergemint-contracts/issues/251", + "https://github.com/Imaginary-Horizons-Productions/BountyBot/issues/312", + "https://github.com/xevrion-v2/agent-playground/issues/8", + "https://github.com/charles-openclaw/charles-microbounties/issues/1999", + "https://github.com/kcolbchain/switchboard/issues/97", + "https://github.com/mergeos-bounties/BloggerEasy/issues/34", + "https://github.com/vansh-09/BountyScout/issues/189", + "https://github.com/mergeos-bounties/PlantGuide/issues/18", + "https://github.com/Iamgoofball/-tg-station/issues/109", + "https://github.com/ClankerNation/OpenAgents/issues/100", "https://github.com/brosennish/bookoftench/issues/458", - "https://github.com/gibwork/gibwork-website/issues/124", - "https://github.com/matty33/eps-dapp/issues/148", - "https://github.com/dev-kp-eloper/BountyScout/issues/255", - "https://github.com/charles-openclaw/charles-microbounties/issues/116", - "https://github.com/charles-openclaw/charles-microbounties/issues/2138", - "https://github.com/boundlessfi/bounties/issues/211", - "https://github.com/Scottcjn/rustchain-bounties/issues/195", - "https://github.com/docker-mailserver/docker-mailserver/issues/4705", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/766", - "https://github.com/nexmo-community/home-surveillance-with-node-and-raspberry-pi/issues/28", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/862", - "https://github.com/marqov-dev/marqov-sdk/issues/6", - "https://github.com/permission-protocol/deploy-gate/issues/50", - "https://github.com/vansh-09/BountyScout/issues/162", - "https://github.com/johnchampaign/star-wars-rebellion/issues/260", - "https://github.com/charles-openclaw/charles-microbounties/issues/792", - "https://github.com/charles-openclaw/charles-microbounties/issues/52", - "https://github.com/Scottcjn/rustchain-bounties/issues/13525", - "https://github.com/charles-openclaw/charles-microbounties/issues/656", - "https://github.com/lobster-trap/zeroeye/issues/264", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/322", - "https://github.com/ruohong2018/ruohong2018.github.io/issues/1213", - "https://github.com/Eaprime1/custos/issues/187", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/135", + "https://github.com/charles-openclaw/charles-microbounties/issues/490", + "https://github.com/toon-protocol/toon-meta/issues/84", + "https://github.com/vansh-09/BountyScout/issues/88", + "https://github.com/charles-openclaw/charles-microbounties/issues/1949", + "https://github.com/bitcoin-dot-org/Bitcoin.org/issues/1583", + "https://github.com/ThanhTrucSolutions/OriLang/issues/3", + "https://github.com/vansh-09/BountyScout/issues/95", + "https://github.com/MergeFi/frontend/issues/1", + "https://github.com/MystenLabs/MemWal/issues/464", + "https://github.com/Grainlify/Grainlify-Stellar-Contracts/issues/83", + "https://github.com/OpenAgentsInc/openagents/issues/4784", + "https://github.com/vitorpamplona/amethyst/issues/1617", + "https://github.com/mergeos-bounties/HIRI/issues/32", + "https://github.com/xevrion-v2/agent-playground/issues/5150", + "https://github.com/charles-openclaw/charles-microbounties/issues/774", + "https://github.com/mergeos-bounties/BeeAR/issues/3", + "https://github.com/Scottcjn/rustchain-bounties/issues/12334", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/760", + "https://github.com/vansh-09/BountyScout/issues/55", + "https://github.com/ensdomains/ens-app/issues/1656", + "https://github.com/Carbon-Ledger-stellar/carbonledger-bounty/issues/22", + "https://github.com/yesnet0/bug-bounty-platforms/issues/1", + "https://github.com/kcolbchain/audit-checklist/issues/36", + "https://github.com/majaogames/Deliverage/issues/178", + "https://github.com/charles-openclaw/charles-microbounties/issues/1284", + "https://github.com/OriginProtocol/arm-oeth/issues/240", + "https://github.com/vansh-09/BountyScout/issues/190", + "https://github.com/mergeos-bounties/BeeAR/issues/8", + "https://github.com/okalldal/lark/issues/278", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/512", + "https://github.com/NyxFoundation/speca/issues/86", + "https://github.com/JSONbored/gittensory/issues/2169", + "https://github.com/priyanshudumps/fuel-agent-kit/issues/3", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/322", + "https://github.com/vansh-09/BountyScout/issues/163", + "https://github.com/xevrion-v2/agent-playground/issues/5724", + "https://github.com/ritik4ever/stellar-bounty-board/issues/223", + "https://github.com/calcom/cal.diy/issues/19747", + "https://github.com/Scottcjn/rustchain-bounties/issues/13205", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2960", + "https://github.com/3ni8ma/aarushkarak-website/issues/77", + "https://github.com/verdikta/verdikta-docs/issues/3", + "https://github.com/Freeuni-OOP/final-project-gitbounty/issues/48", + "https://github.com/SecureBananaLabs/bug-bounty/issues/9549", + "https://github.com/xevrion-v2/agent-playground/issues/6801", + "https://github.com/johnchampaign/star-wars-rebellion/issues/580", + "https://github.com/Scottcjn/rustchain-bounties/issues/15184", + "https://github.com/Scottcjn/rustchain-bounties/issues/13786", + "https://github.com/Scottcjn/rustchain-bounties/issues/15322", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/752", + "https://github.com/BofAI/x402/issues/80", + "https://github.com/daydreamsai/lucid-agents/issues/185", + "https://github.com/honua-io/honua-helm/issues/23", + "https://github.com/charles-openclaw/charles-microbounties/issues/3329", + "https://github.com/permission-protocol/deploy-gate/issues/65", + "https://github.com/Scottcjn/rustchain-bounties/issues/15787", + "https://github.com/vansh-09/BountyScout/issues/203", + "https://github.com/cpyle0819/eq-spell-graph/issues/26", + "https://github.com/rsoreq-mend/tensorflow/issues/35", + "https://github.com/Scottcjn/rustchain-bounties/issues/14733", + "https://github.com/MergeFi/backend/issues/21", + "https://github.com/lily-protocol/lily-backend/issues/38", + "https://github.com/ramimbo/mergework/issues/580", + "https://github.com/xevrion-v2/agent-playground/issues/1253", + "https://github.com/charles-openclaw/charles-microbounties/issues/35", + "https://github.com/charles-openclaw/charles-microbounties/issues/2199", + "https://github.com/mergeos-bounties/Loru/issues/243", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/910", + "https://github.com/mautic/mautic/issues/16491", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3870", + "https://github.com/charles-openclaw/charles-microbounties/issues/1193", + "https://github.com/SecureBananaLabs/bug-bounty/issues/6661", + "https://github.com/Scottcjn/beacon-skill/issues/865", + "https://github.com/xevrion-v2/agent-playground/issues/8244", + "https://github.com/Scottcjn/rustchain-bounties/issues/13016", + "https://github.com/SmartDropLabs/smartdrop-frontend/issues/78", + "https://github.com/lobster-trap/zeroeye/issues/34", + "https://github.com/UnitOneAI/SecuritySkills/issues/1835", + "https://github.com/dwebagents/AgentPipe/issues/131", + "https://github.com/xevrion-v2/agent-playground/issues/8129", + "https://github.com/kcolbchain/stablecoin-toolkit/issues/63", + "https://github.com/xevrion-v2/agent-playground/issues/2352", + "https://github.com/SecureBananaLabs/bug-bounty/issues/9121", + "https://github.com/xevrion-v2/agent-playground/issues/8148", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4491", + "https://github.com/mergeos-bounties/Loru/issues/191", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/829", + "https://github.com/amaybaum-prod/shopware/issues/25", + "https://github.com/monk-io/monk-plugin/issues/117", + "https://github.com/vansh-09/BountyScout/issues/229", + "https://github.com/fluxerapp/fluxer-meta/issues/5", + "https://github.com/charles-openclaw/charles-microbounties/issues/1405", + "https://github.com/lk251/agent-bounty-market/issues/21", + "https://github.com/charles-openclaw/charles-microbounties/issues/883", + "https://github.com/vansh-09/BountyScout/issues/432", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/911", + "https://github.com/cenetex/signal/issues/568", + "https://github.com/dwebagents/AgentPipe/issues/125", + "https://github.com/rachelealicek/chi/issues/1", + "https://github.com/Scottcjn/rustchain-bounties/issues/13225", + "https://github.com/mergeos-bounties/mt5-mcp/issues/19", + "https://github.com/SecureBananaLabs/bug-bounty/issues/8792", + "https://github.com/charles-openclaw/charles-microbounties/issues/2074", + "https://github.com/UnitOneAI/SecuritySkills/issues/2099", + "https://github.com/anuchit1tube168-cmd/RTAFNC-/issues/5", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/646", + "https://github.com/charles-openclaw/charles-microbounties/issues/2088", + "https://github.com/vpinball/vpinball/issues/3669", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/117", + "https://github.com/bolivian-peru/os-moda/issues/3", + "https://github.com/greyw0rks/bountyscout/issues/39", + "https://github.com/Scottcjn/rustchain-bounties/issues/14176", + "https://github.com/charles-openclaw/charles-microbounties/issues/1271", + "https://github.com/charles-openclaw/charles-microbounties/issues/1822", + "https://github.com/Creditra/Creditra-Contracts/issues/636", + "https://github.com/NSPG13/agent-bounties/issues/32", + "https://github.com/Scottcjn/Rustchain/issues/7792", + "https://github.com/SecureBananaLabs/bug-bounty/issues/4605", + "https://github.com/charles-openclaw/charles-microbounties/issues/1225", + "https://github.com/Farama-Foundation/PettingZoo/issues/1385", + "https://github.com/Scottcjn/Rustchain/issues/7126", + "https://github.com/charles-openclaw/charles-microbounties/issues/355", + "https://github.com/Iamgoofball/-tg-station/issues/216", + "https://github.com/vansh-09/BountyScout/issues/354", + "https://github.com/Scottcjn/vintage-voice/issues/178", + "https://github.com/MergeFi/backend/issues/10", + "https://github.com/openmetaearth/me-hub/issues/914", + "https://github.com/xevrion-v2/agent-playground/issues/805", + "https://github.com/openmetaearth/me-hub/issues/50", + "https://github.com/xevrion-v2/agent-playground/issues/4512", + "https://github.com/mergeos-bounties/BeeAR/issues/23", + "https://github.com/xevrion-v2/agent-playground/issues/6588", + "https://github.com/Scottcjn/rustchain-bounties/issues/13647", + "https://github.com/vansh-09/BountyScout/issues/162", + "https://github.com/charles-openclaw/charles-microbounties/issues/873", + "https://github.com/charles-openclaw/charles-microbounties/issues/83", + "https://github.com/nirium-protocol/nirium-sdk/issues/13", + "https://github.com/novaai0401-ui/quantum-vault/issues/27", + "https://github.com/ApexOpsStudio/ai-gitops-test-target/issues/1", + "https://github.com/xevrion-v2/agent-playground/issues/6586", + "https://github.com/Hazyshades/Sendly-Test-Repo/issues/36", + "https://github.com/Hazyshades/Sendly-Test-Repo/issues/49", + "https://github.com/Iamgoofball/-tg-station/issues/168", + "https://github.com/xevrion-v2/agent-playground/issues/5075", + "https://github.com/Scottcjn/rustchain-bounties/issues/177", + "https://github.com/charles-openclaw/charles-microbounties/issues/3321", + "https://github.com/Scottcjn/rustchain-bounties/issues/13519", + "https://github.com/vansh-09/BountyScout/issues/333", + "https://github.com/heathivorjocelyn6/go-redis/issues/1", + "https://github.com/mergeos-bounties/BeeAR/issues/19", + "https://github.com/Iamgoofball/-tg-station/issues/227", + "https://github.com/Deiontre10/forevercraft/issues/5", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2945", + "https://github.com/openmetaearth/me-hub/issues/1170", + "https://github.com/ritik4ever/stellar-bounty-board/issues/383", + "https://github.com/johnchampaign/star-wars-rebellion/issues/434", + "https://github.com/SmartDropLabs/smartdrop-frontend/issues/83", + "https://github.com/Scottcjn/rustchain-bounties/issues/14047", + "https://github.com/Scottcjn/rustchain-bounties/issues/12535", + "https://github.com/xevrion-v2/agent-playground/issues/8302", + "https://github.com/ClankerNation/OpenAgents/issues/124", + "https://github.com/Scottcjn/bottube/issues/1471", + "https://github.com/vansh-09/BountyScout/issues/107", + "https://github.com/cyrilawoyemi99-max/owockibot-bounty-sync-/issues/5", + "https://github.com/johnchampaign/star-wars-rebellion/issues/399", + "https://github.com/explorerscat/cautious-octo-fishstick/issues/2", + "https://github.com/charles-openclaw/charles-microbounties/issues/793", + "https://github.com/lobster-trap/Kickama/issues/407", + "https://github.com/vitelabs/bounties/issues/33", + "https://github.com/reallyunintented/molttrade-stack/issues/1", + "https://github.com/vansh-09/BountyScout/issues/198", + "https://github.com/anthropics/claude-code/issues/66595", + "https://github.com/mergeos-bounties/BeeAR/issues/50", + "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/373", + "https://github.com/Scottcjn/rustchain-bounties/issues/13475", + "https://github.com/charles-openclaw/charles-microbounties/issues/349", + "https://github.com/charles-openclaw/charles-microbounties/issues/1463", + "https://github.com/mergeos-bounties/BeeAR/issues/49", + "https://github.com/ZSBRybnik/backend/issues/1274", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5429", + "https://github.com/xevrion-v2/agent-playground/issues/5135", + "https://github.com/lk251/agent-bounty-market/issues/4", + "https://github.com/clowlove/Harmes-House/issues/381", + "https://github.com/UnitOneAI/SecuritySkills/issues/168", + "https://github.com/Scottcjn/rustchain-bounties/issues/2274", + "https://github.com/charles-openclaw/charles-microbounties/issues/959", + "https://github.com/Scottcjn/Rustchain/issues/6779", + "https://github.com/mergeos-bounties/BloggerEasy/issues/42", + "https://github.com/hashgraph/hedera-agent-kit-py/issues/339", + "https://github.com/BountyOnChain/StellarBounty/issues/432", + "https://github.com/Ad-alwer/cheGi/issues/21", + "https://github.com/Iamgoofball/-tg-station/issues/184", + "https://github.com/Ikalus1988/MisakaNet/issues/309", + "https://github.com/chainreactors/picker/issues/1262", + "https://github.com/Scottcjn/rustchain-bounties/issues/14097", + "https://github.com/aeyakovenko/percolator-prog/issues/104", + "https://github.com/NirShaharabani/verdaccio/issues/372", + "https://github.com/Monkestation/Vanderlin/issues/5812", + "https://github.com/tinyhumansai/openhuman/issues/3853", + "https://github.com/Emmanuel-Evenzur/syetem_prompt/issues/27", + "https://github.com/dev-kp-eloper/BountyScout/issues/115", + "https://github.com/kubiyabot/sdk-py/issues/48", + "https://github.com/Iamgoofball/-tg-station/issues/49", + "https://github.com/sunnah-com/api/issues/3274", + "https://github.com/sindresorhus/caprine/issues/103", + "https://github.com/nicodevtools/kickama-foxy-trials/issues/16", + "https://github.com/kimeisele/agent-village/issues/128", + "https://github.com/capofficial/client/issues/13", + "https://github.com/NSPG13/agent-bounties/issues/122", + "https://github.com/ClankerNation/OpenAgents/issues/181", + "https://github.com/ValveSoftware/Dota2-Gameplay/issues/1686", + "https://github.com/UnitOneAI/SecuritySkills/issues/685", + "https://github.com/Reqrefusion/FreeCAD-Documentation-Project/issues/329", + "https://github.com/UnitOneAI/SecuritySkills/issues/1611", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/345", + "https://github.com/NSPG13/agent-bounties/issues/108", + "https://github.com/Monkestation/Vanderlin/issues/6719", + "https://github.com/ClankerNation/OpenAgents/issues/9", + "https://github.com/SoroLabs/SoroTask/issues/695", + "https://github.com/Jonnyton/Workflow/issues/1033", + "https://github.com/NSPG13/agent-bounties/issues/379", + "https://github.com/NSPG13/agent-bounties/issues/215", + "https://github.com/mergeos-bounties/Lappa/issues/28", + "https://github.com/UnitOneAI/SecuritySkills/issues/383", + "https://github.com/stakwork/sphinx-nav-fiber/issues/2315", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/563", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/562", + "https://github.com/Grainlify/Grainlify-Stellar-Contracts/issues/217", + "https://github.com/charles-openclaw/charles-microbounties/issues/930", + "https://github.com/mergeos-bounties/PoseGuide/issues/44", + "https://github.com/xevrion-v2/agent-playground/issues/5425", + "https://github.com/charles-openclaw/charles-microbounties/issues/1211", + "https://github.com/charles-openclaw/charles-microbounties/issues/664", + "https://github.com/charles-openclaw/charles-microbounties/issues/1559", + "https://github.com/charles-openclaw/charles-microbounties/issues/1275", + "https://github.com/Iamgoofball/-tg-station/issues/167", + "https://github.com/Scottcjn/rustchain-bounties/issues/14018", + "https://github.com/jalbonetti/tabulator-basketball-data/issues/1", + "https://github.com/aergoio/aergo/issues/439", + "https://github.com/NSPG13/agent-bounties/issues/286", + "https://github.com/Scottcjn/rustchain-bounties/issues/15786", + "https://github.com/charles-openclaw/charles-microbounties/issues/1934", + "https://github.com/charles-openclaw/charles-microbounties/issues/818", + "https://github.com/Yuliya65/AIGoat/issues/6", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1152", + "https://github.com/ovh/public-cloud-roadmap/issues/1177", + "https://github.com/conduit-protocol/streamFi-app/issues/100", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5674", + "https://github.com/hermetica-fi/hermetica-contracts/issues/193", + "https://github.com/UnitOneAI/SecuritySkills/issues/1525", + "https://github.com/mergeos-bounties/Gomi/issues/33", + "https://github.com/NSPG13/agent-bounties/issues/449", + "https://github.com/Scottcjn/rustchain-bounties/issues/12494", + "https://github.com/Scottcjn/rustchain-bounties/issues/15014", + "https://github.com/xevrion-v2/agent-playground/issues/3143", + "https://github.com/devpool-directory/devpool-directory/issues/5924", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/684", + "https://github.com/AscEmu/AscEmu/issues/1324", + "https://github.com/greyw0rks/bountyscout/issues/37", + "https://github.com/SecureBananaLabs/bug-bounty/issues/7069", + "https://github.com/BountyOnChain/StellarBounty/issues/364", + "https://github.com/runxhq/runx/issues/76", + "https://github.com/SecureBananaLabs/bug-bounty/issues/1984", + "https://github.com/orchestration-agent/AgentOrchestration/issues/2564", + "https://github.com/beertierchen/warera-prost/issues/60", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/292", + "https://github.com/BountyOnChain/StellarBounty/issues/426", + "https://github.com/Scottcjn/rustchain-bounties/issues/378", + "https://github.com/xevrion-v2/agent-playground/issues/5460", + "https://github.com/paraloom-labs/paraloom-core/issues/506", + "https://github.com/charles-openclaw/charles-microbounties/issues/812", + "https://github.com/SRM-Test-DEV/test-56/issues/4125", + "https://github.com/mautic/mautic/issues/16590", + "https://github.com/xevrion-v2/agent-playground/issues/6693", + "https://github.com/Scottcjn/rustchain-bounties/issues/15620", + "https://github.com/xevrion-v2/agent-playground/issues/7", + "https://github.com/cuentaprueba244w-dotcom/TentOfTrials/issues/2", + "https://github.com/ClankerNation/OpenAgents/issues/173", + "https://github.com/xevrion-v2/agent-playground/issues/6539", + "https://github.com/mergeos-bounties/PlantGuide/issues/51", + "https://github.com/johnchampaign/star-wars-rebellion/issues/423", + "https://github.com/honua-io/honua-helm/issues/24", + "https://github.com/mergeos-bounties/Gomi/issues/39", + "https://github.com/Scottcjn/rustchain-bounties/issues/13702", + "https://github.com/signalwire/freeswitch/issues/3024", "https://github.com/Scottcjn/rustchain-bounties/issues/165", - "https://github.com/UnitOneAI/SecuritySkills/issues/2464", - "https://github.com/charles-openclaw/charles-microbounties/issues/2731", - "https://github.com/charles-openclaw/charles-microbounties/issues/668", + "https://github.com/shaneclarke-whitesource/storybook/issues/28", + "https://github.com/xevrion-v2/agent-playground/issues/6683", + "https://github.com/xevrion-v2/agent-playground/issues/5721", + "https://github.com/charles-openclaw/charles-microbounties/issues/642", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/751", + "https://github.com/mergeos-bounties/NokaMan/issues/14", + "https://github.com/charles-openclaw/charles-microbounties/issues/584", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/789", + "https://github.com/Scottcjn/rustchain-bounties/issues/15622", + "https://github.com/RatLoopz/sahidawa-india/issues/1311", + "https://github.com/NSPG13/agent-bounties/issues/168", + "https://github.com/mergeos-bounties/PoseGuide/issues/27", + "https://github.com/claude-builders-bounty/claude-builders-bounty/issues/2746", + "https://github.com/Ikalus1988/MisakaNet/issues/429", + "https://github.com/charles-openclaw/charles-microbounties/issues/820", + "https://github.com/honua-io/honua-server/issues/1989", + "https://github.com/Sahara-Pay/Very-Prince/issues/382", + "https://github.com/mergeos-bounties/PlantGuide/issues/4", + "https://github.com/Chain-Love/chain-love/issues/2022", + "https://github.com/CoralSwap-Finance/coralswap-sdk/issues/193", + "https://github.com/SecureBananaLabs/bug-bounty/issues/8333", + "https://github.com/Scottcjn/rustchain-bounties/issues/12027", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/21", + "https://github.com/kleros/scout-snap/issues/100", + "https://github.com/openmetaearth/me-hub/issues/12", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/66", + "https://github.com/snowdensb/microsoft-teams-apps-company-communicator/issues/101", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/195", + "https://github.com/Clawland-AI/picclaw/issues/24", + "https://github.com/Scottcjn/rustchain-bounties/issues/13195", + "https://github.com/Informant254/Nova-arsenal/issues/9", + "https://github.com/auscaster/frantic-board/issues/146", + "https://github.com/ClankerNation/OpenAgents/issues/169", + "https://github.com/vansh-09/BountyScout/issues/81", + "https://github.com/ichabodcole/spellbook/issues/29", + "https://github.com/vansh-09/BountyScout/issues/175", + "https://github.com/Eduvault-stellar/eduvault/issues/105", + "https://github.com/OpenScanAI/XDCDocs/issues/4", + "https://github.com/sneakers-the-rat/ImportantCode/issues/8", + "https://github.com/charles-openclaw/charles-microbounties/issues/137", + "https://github.com/ramimbo/mergework/issues/427", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/919", + "https://github.com/charles-openclaw/charles-microbounties/issues/2105", + "https://github.com/UnitOneAI/SecuritySkills/issues/409", + "https://github.com/mergeos-bounties/PlantGuide/issues/28", + "https://github.com/Monkestation/Vanderlin/issues/6626", + "https://github.com/auscaster/frantic-board/issues/301", + "https://github.com/iflytek/astronclaw-tutorial/issues/17", + "https://github.com/charles-openclaw/charles-microbounties/issues/1361", + "https://github.com/Scottcjn/rustchain-bounties/issues/13364", + "https://github.com/UnitOneAI/SecuritySkills/issues/2045", + "https://github.com/charles-openclaw/charles-microbounties/issues/504", + "https://github.com/Scottcjn/rustchain-bounties/issues/12339", + "https://github.com/Scottcjn/Rustchain/issues/6750", + "https://github.com/Ansh-699/zeroclaw-plugins/issues/1", "https://github.com/charles-openclaw/charles-microbounties/issues/1520", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5979", - "https://github.com/xevrion-v2/agent-playground/issues/1248", - "https://github.com/ramimbo/mergework/issues/109", - "https://github.com/ramimbo/mergework/issues/55", - "https://github.com/kleros/scout-snap/issues/89", - "https://github.com/tari-project/tari-ootle/issues/2308", - "https://github.com/ClankerNation/OpenAgents/issues/56", - "https://github.com/ClankerNation/OpenAgents/issues/13", - "https://github.com/Scottcjn/vintage-voice/issues/179", + "https://github.com/xevrion-v2/agent-playground/issues/6468", + "https://github.com/TauCetiStation/TauCetiClassic/issues/14916", + "https://github.com/Stellar-Light/stellar-scout/issues/10", + "https://github.com/hyperlane-xyz/hyperlane-monorepo/issues/9068", + "https://github.com/ruohong2018/ruohong2018.github.io/issues/1213", + "https://github.com/greyw0rks/bountyscout/issues/84", + "https://github.com/w5ohr/Dereth/issues/324", + "https://github.com/charles-openclaw/charles-microbounties/issues/3168", + "https://github.com/profullstack/c0upons/issues/37", + "https://github.com/UnitOneAI/SecuritySkills/issues/2504", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/198", + "https://github.com/Axionvera/axionvera-network/issues/183", "https://github.com/orchestration-agent/AgentOrchestration/issues/3355", - "https://github.com/boundlessfi/bounties/issues/204", - "https://github.com/Scottcjn/rustchain-bounties/issues/14222", - "https://github.com/Peter7896/zeroeye/issues/1", - "https://github.com/Monkestation/Vanderlin/issues/6721", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/835", - "https://github.com/forke-org/forke-project/issues/26", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2950", - "https://github.com/UnitOneAI/SecuritySkills/issues/1808", - "https://github.com/tscircuit/docs/issues/603", - "https://github.com/anthropics/claude-code/issues/66592", - "https://github.com/Scottcjn/rustchain-bounties/issues/12584", - "https://github.com/charles-openclaw/charles-microbounties/issues/1829", - "https://github.com/charles-openclaw/charles-microbounties/issues/983", - "https://github.com/boundlessfi/bounties/issues/216", - "https://github.com/ramimbo/mergework/issues/692", - "https://github.com/supervaize/supervaizer/issues/59", - "https://github.com/UnitOneAI/SecuritySkills/issues/1527", - "https://github.com/Baledin/FlyCasual/issues/39", - "https://github.com/charles-openclaw/charles-microbounties/issues/1323", - "https://github.com/charles-openclaw/charles-microbounties/issues/1494", - "https://github.com/BountyOnChain/StellarBounty/issues/62", - "https://github.com/UnitOneAI/SecuritySkills/issues/2749", - "https://github.com/Scottcjn/rustchain-bounties/issues/14068", - "https://github.com/UnitOneAI/SecuritySkills/issues/635", + "https://github.com/Scottcjn/rustchain-bounties/issues/13634", + "https://github.com/SRM-Test-DEV/test-56/issues/4170", + "https://github.com/BountyOnChain/StellarBounty/issues/203", + "https://github.com/charles-openclaw/charles-microbounties/issues/105", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/3233", + "https://github.com/xevrion-v2/agent-playground/issues/6690", + "https://github.com/openmetaearth/me-hub/issues/84", + "https://github.com/amnottdevv/AtDork/issues/7", + "https://github.com/SecureBananaLabs/bug-bounty/issues/6882", + "https://github.com/javelin-anticheat/py-workedtask/issues/4", + "https://github.com/waigore/colonizethisv3/issues/4095", + "https://github.com/ValveSoftware/Dota2-Gameplay/issues/1726", + "https://github.com/FreeCAD/FPA/issues/470", + "https://github.com/charles-openclaw/charles-microbounties/issues/984", + "https://github.com/Scottcjn/rustchain-bounties/issues/16252", + "https://github.com/Scottcjn/rustchain-bounties/issues/13256", + "https://github.com/johnchampaign/star-wars-rebellion/issues/606", + "https://github.com/mautic/mautic/issues/16262", + "https://github.com/joserivasgt/panama-me/issues/216", + "https://github.com/charles-openclaw/charles-microbounties/issues/2214", + "https://github.com/Scottcjn/beacon-skill-rs/issues/1", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4694", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4930", + "https://github.com/Scottcjn/rustchain-bounties/issues/14077", + "https://github.com/UnitOneAI/SecuritySkills/issues/2430", + "https://github.com/Scottcjn/ram-coffers/issues/662", + "https://github.com/charles-openclaw/charles-microbounties/issues/508", + "https://github.com/ThanhTrucSolutions/OriLang/issues/1", + "https://github.com/SecureBananaLabs/bug-bounty/issues/3854", + "https://github.com/wearshoes/AnthropicNotification/issues/45", + "https://github.com/xevrion-v2/agent-playground/issues/4495", + "https://github.com/SecureBananaLabs/bug-bounty/issues/9632", + "https://github.com/charles-openclaw/charles-microbounties/issues/1890", + "https://github.com/charles-openclaw/charles-microbounties/issues/659", + "https://github.com/bitcoin-dot-org/Bitcoin.org/issues/2524", + "https://github.com/charles-openclaw/charles-microbounties/issues/94", + "https://github.com/Scottcjn/rustchain-bounties/issues/13287", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/206", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/309", + "https://github.com/xevrion-v2/agent-playground/issues/8132", + "https://github.com/Scottcjn/rustchain-bounties/issues/15312", + "https://github.com/ramimbo/mergework/issues/426", + "https://github.com/Scottcjn/rustchain-bounties/issues/15308", + "https://github.com/xevrion-v2/agent-playground/issues/3134", + "https://github.com/Scottcjn/rustchain-bounties/issues/14729", + "https://github.com/OpenAgentsInc/openagents/issues/5335", + "https://github.com/ory/hydra/issues/4112", + "https://github.com/sharkdp/hyperfine/issues/813", + "https://github.com/SecureBananaLabs/bug-bounty/issues/8069", + "https://github.com/lukataylo/Golden-Coffee/issues/2", + "https://github.com/docker-mailserver/docker-mailserver/issues/4705", + "https://github.com/xevrion-v2/agent-playground/issues/6455", + "https://github.com/Scottcjn/rustchain-bounties/issues/14307", + "https://github.com/Scottcjn/rustchain-bounties/issues/15378", + "https://github.com/Scottcjn/rustchain-bounties/issues/14305", + "https://github.com/onlybugs05/angular/issues/1", + "https://github.com/Scottcjn/rustchain-bounties/issues/15232", + "https://github.com/charles-openclaw/charles-microbounties/issues/643", + "https://github.com/tinyhumansai/openhuman/issues/4201", + "https://github.com/a-organvm/peer-audited--behavioral-blockchain/issues/153", + "https://github.com/vansh-09/BountyScout/issues/177", + "https://github.com/Scottcjn/rustchain-bounties/issues/13525", + "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/356", + "https://github.com/vansh-09/BountyScout/issues/178", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/197", + "https://github.com/charles-openclaw/charles-microbounties/issues/1823", + "https://github.com/SecureBananaLabs/bug-bounty/issues/3347", + "https://github.com/Ikalus1988/MisakaNet/issues/434", + "https://github.com/xevrion-v2/agent-playground/issues/3578", + "https://github.com/coopfinance/coopfin-frontend/issues/2", + "https://github.com/charles-openclaw/charles-microbounties/issues/2005", + "https://github.com/charles-openclaw/charles-microbounties/issues/165", + "https://github.com/conduit-protocol/streamFi-app/issues/99", + "https://github.com/openmetaearth/me-hub/issues/1179", + "https://github.com/joserivasgt/panama-me/issues/229", + "https://github.com/cenetex/signal/issues/337", + "https://github.com/airdropia-collection/bounty-hunter/issues/6", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/915", + "https://github.com/0xdevcollins/useroutr/issues/142", + "https://github.com/Jagadeeshftw/grainlify/issues/1398", + "https://github.com/xevrion-v2/agent-playground/issues/6469", + "https://github.com/Remitwise-Org/Remitwise-Frontend/issues/482", + "https://github.com/charles-openclaw/charles-microbounties/issues/821", + "https://github.com/Scottcjn/Rustchain/issues/7257", + "https://github.com/swbooksmugglers/swbs-issue-tracker/issues/116", + "https://github.com/huggingface/transformers/issues/47177", + "https://github.com/xevrion-v2/agent-playground/issues/6034", + "https://github.com/charles-openclaw/charles-microbounties/issues/1067", + "https://github.com/freedom-winds/BountyScout/issues/192", + "https://github.com/Scottcjn/rustchain-bounties/issues/13246", + "https://github.com/NSPG13/agent-bounties/issues/359", + "https://github.com/xevrion-v2/agent-playground/issues/4938", + "https://github.com/monk-io/monk-plugin/issues/57", + "https://github.com/charles-openclaw/charles-microbounties/issues/53", + "https://github.com/vansh-09/BountyScout/issues/112", + "https://github.com/INDIGOAZUL/la-tanda-web/issues/88", + "https://github.com/lalli-oni/cards/issues/209", + "https://github.com/foremetric/foremetric/issues/2", + "https://github.com/auscaster/frantic-board/issues/286", + "https://github.com/Ikalus1988/MisakaNet/issues/257", + "https://github.com/credfeto/recommendations-defi-dashboard/issues/247", + "https://github.com/Scottcjn/rustchain-bounties/issues/12981", + "https://github.com/tristinbaker/IdleFantasy/issues/1051", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/220", + "https://github.com/charles-openclaw/charles-microbounties/issues/2070", + "https://github.com/charles-openclaw/charles-microbounties/issues/1507", + "https://github.com/Jonnyton/Workflow/issues/1110", + "https://github.com/charles-openclaw/charles-microbounties/issues/3351", + "https://github.com/honua-io/honua-server/issues/1982", + "https://github.com/joserivasgt/panama-me/issues/222", + "https://github.com/TauCetiStation/TauCetiClassic/issues/14976", + "https://github.com/xevrion-v2/agent-playground/issues/5133", + "https://github.com/Iamgoofball/-tg-station/issues/72", + "https://github.com/calcom/cal.diy/issues/29469", + "https://github.com/ritik4ever/stellar-bounty-board/issues/382", + "https://github.com/aashu91/robinhood-evm-mcp/issues/2", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/623", "https://github.com/Kai-dev7/QuantScope/issues/2", - "https://github.com/maplibre/maplibre-style-spec/issues/62", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5822", - "https://github.com/Scottcjn/rustchain-bounties/issues/13954", - "https://github.com/charles-openclaw/charles-microbounties/issues/664", - "https://github.com/OpenAgentsInc/openagents/issues/6760", - "https://github.com/atlaslattice/manus-artifacts/issues/189", - "https://github.com/charles-openclaw/charles-microbounties/issues/1379", - "https://github.com/UnitOneAI/SecuritySkills/issues/1594", - "https://github.com/boundlessfi/bounties/issues/279", - "https://github.com/charles-openclaw/charles-microbounties/issues/1998", - "https://github.com/dwebagents/AgentPipe/issues/8", + "https://github.com/Scottcjn/rustchain-bounties/issues/13655", + "https://github.com/auscaster/frantic-board/issues/190", + "https://github.com/Scottcjn/rustchain-bounties/issues/13015", + "https://github.com/JollyGrin/unbrewed-p2p/issues/252", + "https://github.com/Scottcjn/rustchain-bounties/issues/13717", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/905", + "https://github.com/Scottcjn/rustchain-bounties/issues/15372", + "https://github.com/anatolykoptev/go-job/issues/204", + "https://github.com/souleater06/mineagent/issues/5", + "https://github.com/Scottcjn/rustchain-bounties/issues/16271", + "https://github.com/mergeos-bounties/PlantGuide/issues/44", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/367", + "https://github.com/coollabsio/coolify/issues/3436", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5667", + "https://github.com/ashishkhar/reasoning-agents-framework/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/1825", + "https://github.com/Iamgoofball/-tg-station/issues/47", + "https://github.com/UnitOneAI/SecuritySkills/issues/1824", + "https://github.com/ZecHub/zechub/issues/1692", + "https://github.com/charles-openclaw/charles-microbounties/issues/1134", + "https://github.com/xevrion-v2/agent-playground/issues/6093", + "https://github.com/xevrion-v2/agent-playground/issues/6146", + "https://github.com/charles-openclaw/charles-microbounties/issues/1027", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/204", + "https://github.com/NSPG13/agent-bounties/issues/291", + "https://github.com/mergeos-bounties/MRGMinner/issues/26", + "https://github.com/bogeeee/pve-manager-electrified/issues/6", + "https://github.com/MentorsMind/MentorsMind-Contract/issues/663", + "https://github.com/vansh-09/BountyScout/issues/369", + "https://github.com/okalldal/lark/issues/277", + "https://github.com/charles-openclaw/charles-microbounties/issues/339", + "https://github.com/tari-project/tari-ootle/issues/2330", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2768", + "https://github.com/xevrion-v2/agent-playground/issues/5971", + "https://github.com/charles-openclaw/charles-microbounties/issues/3393", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/587", + "https://github.com/bitcoin/bitcoin/issues/24861", + "https://github.com/charles-openclaw/charles-microbounties/issues/2220", + "https://github.com/greyw0rks/bountyscout/issues/38", + "https://github.com/cakuki/tidewake/issues/222", + "https://github.com/charles-openclaw/charles-microbounties/issues/3180", + "https://github.com/johnchampaign/star-wars-rebellion/issues/478", + "https://github.com/charles-openclaw/charles-microbounties/issues/1483", + "https://github.com/charles-openclaw/charles-microbounties/issues/1874", + "https://github.com/charles-openclaw/charles-microbounties/issues/426", + "https://github.com/Scottcjn/Rustchain/issues/7719", + "https://github.com/charles-openclaw/charles-microbounties/issues/1495", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1148", + "https://github.com/Uncleken13/bullish-api/issues/10", + "https://github.com/mergeos-bounties/MRGWallet/issues/21", + "https://github.com/Scottcjn/rustchain-bounties/issues/14221", + "https://github.com/verdikta/verdikta-docs/issues/5", + "https://github.com/ubiquity/business-development/issues/174", + "https://github.com/charles-openclaw/charles-microbounties/issues/2013", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4210", + "https://github.com/Scottcjn/rustchain-bounties/issues/12792", + "https://github.com/boundlessfi/bounties/issues/207", + "https://github.com/charles-openclaw/charles-microbounties/issues/1199", + "https://github.com/djjrip/kickama-cash-grab-hacks/issues/2", + "https://github.com/NSPG13/agent-bounties/issues/385", + "https://github.com/SecureBananaLabs/bug-bounty/issues/1982", + "https://github.com/swbooksmugglers/swbs-issue-tracker/issues/72", + "https://github.com/Jonnyton/Workflow/issues/1051", + "https://github.com/mergeos-bounties/Gomi/issues/19", + "https://github.com/algora-io/algora/issues/329", + "https://github.com/0xHabitat/habitat-rollup/issues/69", + "https://github.com/Scottcjn/rustchain-bounties/issues/14198", + "https://github.com/xevrion-v2/agent-playground/issues/5723", + "https://github.com/UnitOneAI/SecuritySkills/issues/2043", + "https://github.com/Scottcjn/rustchain-bounties/issues/13150", + "https://github.com/charles-openclaw/charles-microbounties/issues/1610", + "https://github.com/conduit-protocol/streamFi-app/issues/101", + "https://github.com/gibwork/gibwork-website/issues/130", + "https://github.com/Scottcjn/rustchain-bounties/issues/13789", + "https://github.com/mergeos-bounties/TrucVPN/issues/9", + "https://github.com/mergeos-bounties/MRGMinner/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/1380", + "https://github.com/NSPG13/agent-bounties/issues/170", + "https://github.com/Scottcjn/rustchain-bounties/issues/13960", + "https://github.com/dev-kp-eloper/BountyScout/issues/143", + "https://github.com/ramimbo/mergework/issues/936", + "https://github.com/charles-openclaw/charles-microbounties/issues/651", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2963", + "https://github.com/rethavonRueden3/go-github/issues/1", + "https://github.com/GoodDollar/GoodWeb3-Mono/issues/270", + "https://github.com/charles-openclaw/charles-microbounties/issues/1536", + "https://github.com/jgeraigery/AutoPrompt-AI-TESt/issues/6", + "https://github.com/vansh-09/BountyScout/issues/204", + "https://github.com/xevrion-v2/agent-playground/issues/5471", + "https://github.com/Scottcjn/rustchain-bounties/issues/12170", + "https://github.com/Scottcjn/rustchain-bounties/issues/12899", + "https://github.com/auscaster/frantic-board/issues/202", + "https://github.com/fallenswordhelper/fallenswordhelper/issues/864", + "https://github.com/xevrion-v2/agent-playground/issues/8303", + "https://github.com/Jagadeeshftw/grainlify/issues/1288", + "https://github.com/charles-openclaw/charles-microbounties/issues/1007", + "https://github.com/DimaMend/V-Achilles/issues/44", + "https://github.com/openmetaearth/me-hub/issues/905", + "https://github.com/charles-openclaw/charles-microbounties/issues/1020", + "https://github.com/ghc-cloneRepoStaging-scaAndRenovate/14459_Courtney-Moreno_0702_134635_ghc_gw0_failed/issues/9", + "https://github.com/mend-detection-qa/yarn-redux-crud-example/issues/8", + "https://github.com/Iamgoofball/-tg-station/issues/231", + "https://github.com/emdash-cms/emdash/issues/993", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2883", + "https://github.com/APN-Network/bugs/issues/35", "https://github.com/zhangjiayang6835-cyber/ai-research/issues/59", - "https://github.com/charles-openclaw/charles-microbounties/issues/1913", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/90", - "https://github.com/vansh-09/BountyScout/issues/208", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3786", - "https://github.com/charles-openclaw/charles-microbounties/issues/1003", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/46", - "https://github.com/Scottcjn/rustchain-bounties/issues/13646", - "https://github.com/charles-openclaw/charles-microbounties/issues/951", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/640", - "https://github.com/UnitOneAI/SecuritySkills/issues/1187", - "https://github.com/lobster-trap/hammer-and-nail/issues/434", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/268", - "https://github.com/Scottcjn/rustchain-bounties/issues/13632", - "https://github.com/lissy93/bug-bounties/issues/124", - "https://github.com/charles-openclaw/charles-microbounties/issues/1210", - "https://github.com/Plasius-LTD/player-system/issues/4", - "https://github.com/greyw0rks/bountyscout/issues/90", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4389", - "https://github.com/labmain/ai-agent-pay-demo/issues/18", - "https://github.com/vansh-09/BountyScout/issues/51", - "https://github.com/lobster-trap/SmartGesture/issues/469", - "https://github.com/charles-openclaw/charles-microbounties/issues/448", - "https://github.com/Scottcjn/rustchain-bounties/issues/13701", + "https://github.com/charles-openclaw/charles-microbounties/issues/52", + "https://github.com/Ikalus1988/MisakaNet/issues/388", + "https://github.com/Iamgoofball/-tg-station/issues/223", + "https://github.com/HitEmPoka/StellPoker/issues/320", + "https://github.com/commaai/opendbc/issues/1175", + "https://github.com/xevrion-v2/agent-playground/issues/5132", + "https://github.com/charles-openclaw/charles-microbounties/issues/3389", + "https://github.com/IntersectMBO/drep-campaign-platform/issues/14", + "https://github.com/Ikalus1988/MisakaNet/issues/115", + "https://github.com/charles-openclaw/charles-microbounties/issues/3077", + "https://github.com/Scottcjn/rustchain-bounties/issues/15095", + "https://github.com/Scottcjn/rustchain-bounties/issues/13594", + "https://github.com/xevrion-v2/agent-playground/issues/4847", + "https://github.com/Scottcjn/rustchain-bounties/issues/14753", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3413", + "https://github.com/Scottcjn/rustchain-bounties/issues/13831", + "https://github.com/charles-openclaw/charles-microbounties/issues/989", + "https://github.com/mumble-voip/mumble/issues/3282", + "https://github.com/auscaster/frantic-board/issues/167", + "https://github.com/DimaMend/NodeGoat/issues/4", + "https://github.com/xevrion-v2/agent-playground/issues/4866", + "https://github.com/xevrion-v2/agent-playground/issues/6689", + "https://github.com/vansh-09/BountyScout/issues/220", + "https://github.com/Ikalus1988/MisakaNet/issues/394", + "https://github.com/mergeos-bounties/Loru/issues/196", + "https://github.com/monk-io/monk-plugin/issues/32", + "https://github.com/Scottcjn/rustchain-bounties/issues/13684", + "https://github.com/charles-openclaw/charles-microbounties/issues/1260", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/908", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/97", + "https://github.com/tailcallhq/forgecode/issues/8", + "https://github.com/SoroLabs/SoroTask/issues/836", + "https://github.com/Scottcjn/rustchain-bounties/issues/15265", + "https://github.com/GOF2BountyBot/BountyBot-Reborn-SamX/issues/20", + "https://github.com/UnitOneAI/SecuritySkills/issues/1527", + "https://github.com/KodeStar/audiosilo-meta/issues/101", + "https://github.com/Hopding/pdf-lib/issues/951", + "https://github.com/Scottcjn/Rustchain/issues/7676", + "https://github.com/ValveSoftware/Dota2-Gameplay/issues/33738", + "https://github.com/hoodie/notify-rust/issues/186", "https://github.com/charles-openclaw/charles-microbounties/issues/1641", - "https://github.com/effekseer/EffekseerForWebGL/issues/113", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/212", - "https://github.com/Sudeep72/doc-nm/issues/3", - "https://github.com/charles-openclaw/charles-microbounties/issues/407", - "https://github.com/greyw0rks/bountyscout/issues/93", - "https://github.com/Ikalus1988/MisakaNet/issues/146", - "https://github.com/greyw0rks/bountyscout/issues/36", - "https://github.com/xevrion-v2/agent-playground/issues/3698", - "https://github.com/Jonnyton/Workflow/issues/1062", - "https://github.com/openmetaearth/me-hub/issues/914", - "https://github.com/devpool-directory/devpool-directory/issues/5012", - "https://github.com/mergemint-mint/mergemint-contracts/issues/261", - "https://github.com/amaybaum-prod/eui/issues/74", - "https://github.com/ussyalfaks/ahjoorxmr-contract/issues/419", - "https://github.com/ritik4ever/stellar-bounty-board/issues/245", - "https://github.com/vansh-09/BountyScout/issues/102", - "https://github.com/charles-openclaw/charles-microbounties/issues/1226", + "https://github.com/charles-openclaw/charles-microbounties/issues/2169", + "https://github.com/jgeraigery/CodeGen/issues/8", + "https://github.com/Scottcjn/rustchain-bounties/issues/38", + "https://github.com/UnitOneAI/SecuritySkills/issues/2518", + "https://github.com/charles-openclaw/charles-microbounties/issues/1466", + "https://github.com/ritik4ever/stellar-bounty-board/issues/262", + "https://github.com/SoroLabs/SoroTask/issues/885", + "https://github.com/UnitOneAI/SecuritySkills/issues/813", + "https://github.com/3ni8ma/aarushkarak-website/issues/131", + "https://github.com/Scottcjn/rustchain-bounties/issues/16251", + "https://github.com/mergeos-bounties/NokaMan/issues/12", + "https://github.com/Scottcjn/rustchain-bounties/issues/15785", + "https://github.com/UnitOneAI/SecuritySkills/issues/1910", + "https://github.com/charles-openclaw/charles-microbounties/issues/824", + "https://github.com/vinit84/Monsoon-Market/issues/1", + "https://github.com/xevrion-v2/agent-playground/issues/3855", + "https://github.com/NousResearch/hermes-agent/issues/38280", + "https://github.com/vital-ws/monorepo-example/issues/54", + "https://github.com/SecureBananaLabs/bug-bounty/issues/3850", + "https://github.com/cuentaprueba244w-dotcom/TentOfTrials/issues/3", + "https://github.com/Alexays/Waybar/issues/3693", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/212", + "https://github.com/3ni8ma/aarushkarak-website/issues/79", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/29", + "https://github.com/ramimbo/mergework/issues/692", + "https://github.com/BountyOnChain/StellarBounty/issues/64", + "https://github.com/NSPG13/agent-bounties/issues/142", + "https://github.com/vansh-09/BountyScout/issues/75", + "https://github.com/charles-openclaw/charles-microbounties/issues/1313", + "https://github.com/charles-openclaw/charles-microbounties/issues/3087", + "https://github.com/mergemint-mint/mergemint-contracts/issues/328", + "https://github.com/cuentaprueba244w-dotcom/TentOfTrials/issues/9", + "https://github.com/ejektaflex/Bountiful/issues/335", + "https://github.com/SolFoundry/solfoundry/issues/828", + "https://github.com/charles-openclaw/charles-microbounties/issues/1824", + "https://github.com/Digital-Nomad-Home/LinJuLi-MiniApp/issues/1", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/834", + "https://github.com/lobster-trap/TentOfTrials/issues/157", + "https://github.com/lk251/agent-bounty-market/issues/3", + "https://github.com/greyw0rks/bountyscout/issues/324", + "https://github.com/Conxian/conxius-platform/issues/1168", + "https://github.com/LarytheLord/Adventurers-Guild/issues/219", + "https://github.com/ramimbo/mergework/issues/794", + "https://github.com/earnestmant2/mysql/issues/1", + "https://github.com/ramimbo/mergework/issues/644", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1168", + "https://github.com/ruohong2018/ruohong2018.github.io/issues/1121", + "https://github.com/ThanhTrucSolutions/OriLang/issues/2", + "https://github.com/xevrion-v2/agent-playground/issues/8191", + "https://github.com/mergemint-mint/mergemint-contracts/issues/304", + "https://github.com/mautic/mautic/issues/16235", + "https://github.com/xevrion-v2/agent-playground/issues/3580", + "https://github.com/charles-openclaw/charles-microbounties/issues/1426", + "https://github.com/greyw0rks/bountyscout/issues/346", + "https://github.com/charles-openclaw/charles-microbounties/issues/10", + "https://github.com/mergeos-bounties/BloggerEasy/issues/41", + "https://github.com/mergeos-bounties/PlantGuide/issues/53", + "https://github.com/charles-openclaw/charles-microbounties/issues/1336", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/261", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/638", + "https://github.com/UnitOneAI/SecuritySkills/issues/815", + "https://github.com/Scottcjn/Rustchain/issues/7117", + "https://github.com/Scottcjn/rustchain-bounties/issues/13975", + "https://github.com/ritik4ever/stellar-bounty-board/issues/237", + "https://github.com/mergeos-bounties/gimp-mcp/issues/10", + "https://github.com/xaya/taurion_gsp/issues/200", + "https://github.com/Scottcjn/rustchain-bounties/issues/14186", + "https://github.com/charles-openclaw/charles-microbounties/issues/1659", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4013", + "https://github.com/asaadnashed/bounty-autopilot/issues/7", + "https://github.com/ritik4ever/stellar-bounty-board/issues/261", + "https://github.com/charles-openclaw/charles-microbounties/issues/1818", + "https://github.com/vansh-09/BountyScout/issues/24", + "https://github.com/UnitOneAI/SecuritySkills/issues/67", + "https://github.com/techmuch/drone-simulator/issues/6", + "https://github.com/mergeos-bounties/Loru/issues/190", + "https://github.com/beertierchen/warera-prost/issues/45", + "https://github.com/SoroLabs/SoroTask/issues/834", + "https://github.com/openhab/openhab-addons/issues/10428", + "https://github.com/Jonnyton/Workflow/issues/1039", + "https://github.com/UnitOneAI/SecuritySkills/issues/1651", + "https://github.com/Scottcjn/rustchain-bounties/issues/13524", + "https://github.com/ramimbo/mergework/issues/411", + "https://github.com/mergeos-bounties/NeraJob/issues/7", + "https://github.com/yosemite01/stellar-creator-portfolio/issues/744", + "https://github.com/charles-openclaw/charles-microbounties/issues/5", + "https://github.com/xevrion-v2/agent-playground/issues/5472", + "https://github.com/xevrion-v2/agent-playground/issues/7260", + "https://github.com/charles-openclaw/charles-microbounties/issues/2821", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/317", + "https://github.com/greyw0rks/bountyscout/issues/77", + "https://github.com/Scottcjn/rustchain-bounties/issues/12789", + "https://github.com/charles-openclaw/charles-microbounties/issues/1627", + "https://github.com/Scottcjn/rustchain-bounties/issues/13544", + "https://github.com/vansh-09/BountyScout/issues/431", + "https://github.com/SecureBananaLabs/bug-bounty/issues/10958", + "https://github.com/Creditra/Creditra-Contracts/issues/747", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3709", + "https://github.com/SecureBananaLabs/bug-bounty/issues/9759", + "https://github.com/Arrow-air/project-quiver/issues/236", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/224", + "https://github.com/charles-openclaw/charles-microbounties/issues/1889", + "https://github.com/UnitOneAI/SecuritySkills/issues/2434", + "https://github.com/h3js/h3/issues/1410", + "https://github.com/Scottcjn/rustchain-bounties/issues/13259", + "https://github.com/SecureBananaLabs/bug-bounty/issues/3208", + "https://github.com/charles-openclaw/charles-microbounties/issues/1452", + "https://github.com/UnitOneAI/SecuritySkills/issues/1627", + "https://github.com/conduit-protocol/streamFi-contracts/issues/82", + "https://github.com/trustwallet/wallet-core/issues/4793", + "https://github.com/Scottcjn/rustchain-bounties/issues/11262", + "https://github.com/mergeos-bounties/PoseGuide/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/1579", + "https://github.com/daydreamsai/agent-bounties/issues/5", + "https://github.com/charles-openclaw/charles-microbounties/issues/645", + "https://github.com/Nexmo/enter-our-orbit/issues/3", + "https://github.com/Scottcjn/Rustchain/issues/6161", + "https://github.com/blemaire-wavetel/AutoPrompt/issues/21", + "https://github.com/De-ASI-INTERFACE/qti-emissions-controller/issues/4", + "https://github.com/Scottcjn/Rustchain/issues/6157", + "https://github.com/xevrion-v2/agent-playground/issues/4688", + "https://github.com/charles-openclaw/charles-microbounties/issues/1658", + "https://github.com/NSPG13/agent-bounties/issues/335", + "https://github.com/Conflux-Chain/gitcoin-bounties/issues/4", + "https://github.com/QYQAQ/agents-radar/issues/412", + "https://github.com/ritik4ever/stellar-bounty-board/issues/263", + "https://github.com/vansh-09/BountyScout/issues/360", + "https://github.com/mergeos-bounties/TrucVPN/issues/11", + "https://github.com/NamalD/warframe-todo-tracker/issues/68", + "https://github.com/jackjin1997/TentOfTrials/issues/3", + "https://github.com/arian-gogani/nobulex/issues/17", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/208", + "https://github.com/furiaz/MMOPartySimulator/issues/494", + "https://github.com/Scottcjn/rustchain-bounties/issues/12444", + "https://github.com/xevrion-v2/agent-playground/issues/6537", + "https://github.com/relayhop/sn-monetization-runtime/issues/107", + "https://github.com/Saiaaax/CyberNinja-Dojo/issues/2", + "https://github.com/charles-openclaw/charles-microbounties/issues/3135", + "https://github.com/nicodevtools/kickama-foxy-trials/issues/14", + "https://github.com/Scottcjn/rustchain-bounties/issues/15385", + "https://github.com/mergeos-bounties/mergeos/issues/13", + "https://github.com/loldi/cartright/issues/1", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/204", + "https://github.com/mautic/mautic/issues/16065", + "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/353", + "https://github.com/Ikalus1988/MisakaNet/issues/267", + "https://github.com/charles-openclaw/charles-microbounties/issues/1200", + "https://github.com/Scottcjn/rustchain-bounties/issues/13514", + "https://github.com/heathivorjocelyn6/gitea/issues/1", + "https://github.com/bitaps-com/jsbtc/issues/65", + "https://github.com/liketrek/TREK/issues/1546", + "https://github.com/Ikalus1988/MisakaNet/issues/148", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3254", + "https://github.com/xevrion-v2/agent-playground/issues/6145", + "https://github.com/commaai/opendbc/issues/3426", + "https://github.com/x402-foundation/x402/issues/2833", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4214", + "https://github.com/atvirokodosprendimai/ai-pipeline-template/issues/1599", + "https://github.com/anthropics/claude-code/issues/78540", + "https://github.com/Scottcjn/rustchain-bounties/issues/15071", + "https://github.com/charles-openclaw/charles-microbounties/issues/1068", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5357", + "https://github.com/anthropics/claude-plugins-official/issues/2044", + "https://github.com/SecureBananaLabs/bug-bounty/issues/6953", + "https://github.com/moonwell-fi/moonwell-contracts-v2/issues/660", + "https://github.com/Grainlify/Grainlify-Stellar-Contracts/issues/99", + "https://github.com/mergeos-bounties/mergeos/issues/241", + "https://github.com/lobster-trap/hammer-and-nail/issues/61", + "https://github.com/tenstorrent/tt-metal/issues/34451", + "https://github.com/jgeraigery/infinite-wish-board/issues/19", + "https://github.com/auscaster/frantic-board/issues/294", + "https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/issues/1156", + "https://github.com/charles-openclaw/charles-microbounties/issues/926", + "https://github.com/Spectral-Finance/lux/issues/72", + "https://github.com/Scottcjn/rustchain-bounties/issues/15616", + "https://github.com/Scottcjn/rustchain-bounties/issues/13272", + "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/166", + "https://github.com/HutchyBen/maifetch/issues/1", + "https://github.com/dev-kp-eloper/BountyScout/issues/147", + "https://github.com/Scottcjn/rustchain-bounties/issues/12542", + "https://github.com/openstreetmap-ng/openstreetmap-ng/issues/126", + "https://github.com/MikeyPetrillo/Agent402/issues/199", + "https://github.com/charles-openclaw/charles-microbounties/issues/3422", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1144", + "https://github.com/mergeos-bounties/BeeAR/issues/14", + "https://github.com/openmetaearth/me-hub/issues/184", + "https://github.com/Core-Foundry/Task-Bounty/issues/37", + "https://github.com/paraloom-labs/paraloom-core/issues/414", + "https://github.com/UnitOneAI/SecuritySkills/issues/2431", + "https://github.com/boundlessfi/bounties/issues/204", + "https://github.com/Emmanuel-Evenzur/syetem_prompt/issues/30", + "https://github.com/openmetaearth/me-hub/issues/78", + "https://github.com/Rooner-Plugins/bank-value-changes/issues/3", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/8", + "https://github.com/Ikalus1988/MisakaNet/issues/380", "https://github.com/Reqrefusion/FreeCAD-Documentation-Project/issues/28", - "https://github.com/Scottcjn/rustchain-bounties/issues/12285", - "https://github.com/3ni8ma/aarushkarak-website/issues/59", - "https://github.com/UnitOneAI/SecuritySkills/issues/1651", - "https://github.com/xevrion-v2/agent-playground/issues/5148", - "https://github.com/charles-openclaw/charles-microbounties/issues/1213", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1152", - "https://github.com/ramimbo/mergework/issues/597", - "https://github.com/charles-openclaw/charles-microbounties/issues/1614", - "https://github.com/UnitOneAI/SecuritySkills/issues/2045", - "https://github.com/toon-protocol/toon-meta/issues/121", - "https://github.com/charles-openclaw/charles-microbounties/issues/961", - "https://github.com/rsoreq-mend/AutoGPT/issues/18", - "https://github.com/boundlessfi/bounties/issues/275", - "https://github.com/Scottcjn/rustchain-bounties/issues/13770", - "https://github.com/Scottcjn/bottube/issues/1482", - "https://github.com/charles-openclaw/charles-microbounties/issues/1873", - "https://github.com/charles-openclaw/charles-microbounties/issues/1194", - "https://github.com/Scottcjn/rustchain-bounties/issues/13618", - "https://github.com/vansh-09/BountyScout/issues/158", - "https://github.com/vansh-09/BountyScout/issues/66", - "https://github.com/mpfaffenberger/space_sim/issues/17", - "https://github.com/ClankerNation/OpenAgents/issues/189", - "https://github.com/vansh-09/BountyScout/issues/122", - "https://github.com/warpspeedopen-source/warpspeed-bounties/issues/9", - "https://github.com/UnitOneAI/SecuritySkills/issues/2536", - "https://github.com/charles-openclaw/charles-microbounties/issues/2223", - "https://github.com/ramimbo/mergework/issues/709", - "https://github.com/Scottcjn/rustchain-bounties/issues/13269", - "https://github.com/aergoio/aergo/issues/439", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/832", - "https://github.com/charles-openclaw/charles-microbounties/issues/2006", - "https://github.com/charles-openclaw/charles-microbounties/issues/2", - "https://github.com/charles-openclaw/charles-microbounties/issues/581", - "https://github.com/hashgraph/hedera-agent-kit-js/issues/889", + "https://github.com/xevrion-v2/agent-playground/issues/4", + "https://github.com/Questie/Questie/issues/5923", + "https://github.com/stellar-creator-portfolio/stellar-creator-portfolio-/issues/44", "https://github.com/3ni8ma/aarushkarak-website/issues/39", - "https://github.com/honua-io/honua-helm/issues/23", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/41", - "https://github.com/xevrion-v2/agent-playground/issues/4815", - "https://github.com/johnchampaign/star-wars-rebellion/issues/389", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3438", - "https://github.com/UnitOneAI/SecuritySkills/issues/815", - "https://github.com/UnitOneAI/SecuritySkills/issues/37", - "https://github.com/Scottcjn/rustchain-bounties/issues/13625", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2755", - "https://github.com/charles-openclaw/charles-microbounties/issues/1187", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/836", - "https://github.com/CryptoGnome/Tradingview-Webhook-Bot/issues/9", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/19", - "https://github.com/lobster-trap/hammer-and-nail/issues/61", - "https://github.com/a-organvm/peer-audited--behavioral-blockchain/issues/152", - "https://github.com/charles-openclaw/charles-microbounties/issues/3080", - "https://github.com/Scottcjn/rustchain-bounties/issues/12724", - "https://github.com/Remitwise-Org/Remitwise-Frontend/issues/482", - "https://github.com/agustinkassis/gorilator-rpg/issues/96", - "https://github.com/tachyon-zcash/ragu/issues/784", - "https://github.com/UnitOneAI/SecuritySkills/issues/1915", - "https://github.com/joserivasgt/panama-me/issues/264", - "https://github.com/charles-openclaw/charles-microbounties/issues/991", - "https://github.com/weilixiong/TentOfTrials/issues/1", - "https://github.com/lobster-trap/Kickama/issues/52", - "https://github.com/Scottcjn/Rustchain/issues/7719", - "https://github.com/jhengy/content-aggregator/issues/516", - "https://github.com/foremetric/foremetric/issues/2", - "https://github.com/auscaster/frantic-board/issues/59", - "https://github.com/charles-openclaw/charles-microbounties/issues/876", - "https://github.com/mautic/mautic/issues/16212", - "https://github.com/charles-openclaw/charles-microbounties/issues/2067", - "https://github.com/IT-Academy-BCN/ita-wiki-monorepo/issues/842", - "https://github.com/bazelbuild/bazel-central-registry/issues/5722", - "https://github.com/charles-openclaw/charles-microbounties/issues/1272", - "https://github.com/greyw0rks/bountyscout/issues/110", - "https://github.com/clowlove/Hermes-House/issues/481", - "https://github.com/Soengkit/frailbox-checkpoint/issues/5", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/821", - "https://github.com/SecureBananaLabs/bug-bounty/issues/9144", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5035", - "https://github.com/kcolbchain/scout/issues/9", - "https://github.com/charles-openclaw/charles-microbounties/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/3094", - "https://github.com/ramimbo/mergework/issues/934", - "https://github.com/sindresorhus/eslint-plugin-unicorn/issues/295", - "https://github.com/xevrion-v2/agent-playground/issues/4704", - "https://github.com/boundlessfi/bounties/issues/273", - "https://github.com/charles-openclaw/charles-microbounties/issues/1985", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/256", - "https://github.com/ghc-cloneRepoStaging-scaAndRenovate2/14459_Michael-Castillo_0630_221043_ghc_gw1_failed/issues/7", - "https://github.com/charles-openclaw/charles-microbounties/issues/904", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3719", - "https://github.com/ritik4ever/stellar-bounty-board/issues/377", - "https://github.com/yeheskieltame/claudelance/issues/406", - "https://github.com/picsoritdidnthappen/poidh-app/issues/1216", - "https://github.com/KOSASIH/pi-supernode/issues/90", - "https://github.com/UnitOneAI/SecuritySkills/issues/817", - "https://github.com/ramimbo/mergework/issues/845", - "https://github.com/auscaster/frantic-board/issues/58", - "https://github.com/kcolbchain/quoter/issues/30", - "https://github.com/ClankerNation/OpenAgents/issues/9", - "https://github.com/JSONbored/gittensory/issues/40", - "https://github.com/Scottcjn/rustchain-bounties/issues/13830", - "https://github.com/charles-openclaw/charles-microbounties/issues/750", - "https://github.com/anthropics/claude-code/issues/67577", - "https://github.com/UnitOneAI/SecuritySkills/issues/2806", - "https://github.com/snowdensb/AutoPrompt_demo/issues/2", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/861", + "https://github.com/mautic/mautic/issues/16468", + "https://github.com/Scottcjn/rustchain-bounties/issues/15060", + "https://github.com/ritik4ever/stellar-bounty-board/issues/385", + "https://github.com/charles-openclaw/charles-microbounties/issues/1521", + "https://github.com/xevrion-v2/agent-playground/issues/738", + "https://github.com/RLHFlow/RLHF-Reward-Modeling/issues/62", + "https://github.com/esi/esi-issues/issues/1216", + "https://github.com/UnitOneAI/SecuritySkills/issues/1808", + "https://github.com/Scottcjn/rustchain-bounties/issues/15374", + "https://github.com/Scottcjn/bottube/issues/1378", + "https://github.com/johnchampaign/star-wars-rebellion/issues/95", + "https://github.com/johnchampaign/star-wars-rebellion/issues/573", + "https://github.com/xevrion-v2/agent-playground/issues/6734", + "https://github.com/SRM-Test-DEV/test-56/issues/3439", + "https://github.com/xevrion-v2/agent-playground/issues/4722", + "https://github.com/charles-openclaw/charles-microbounties/issues/618", "https://github.com/Informant254/Nova-arsenal/issues/10", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/818", - "https://github.com/YfengJ/hammer-and-nail/issues/5", - "https://github.com/SecureBananaLabs/bug-bounty/issues/6177", - "https://github.com/charles-openclaw/charles-microbounties/issues/1381", - "https://github.com/chrisagiddings/dungeon-town/issues/69", - "https://github.com/xevrion-v2/agent-playground/issues/769", - "https://github.com/charles-openclaw/charles-microbounties/issues/1326", - "https://github.com/Ikalus1988/MisakaNet/issues/115", - "https://github.com/Jonnyton/Workflow/issues/1040", - "https://github.com/Scottcjn/bottube/issues/1362", - "https://github.com/lb1192176991-lab/zeroeye/issues/2", - "https://github.com/openmetaearth/me-hub/issues/352", - "https://github.com/vansh-09/BountyScout/issues/140", - "https://github.com/Jonnyton/Workflow/issues/1039", - "https://github.com/charles-openclaw/charles-microbounties/issues/671", - "https://github.com/Jonnyton/Workflow/issues/1112", - "https://github.com/xevrion-v2/agent-playground/issues/9", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/819", - "https://github.com/johnchampaign/star-wars-rebellion/issues/47", - "https://github.com/Questie/Questie/issues/5923", - "https://github.com/lk251/agent-bounty-market/issues/26", - "https://github.com/charles-openclaw/charles-microbounties/issues/506", - "https://github.com/gibwork/gibwork-website/issues/54", - "https://github.com/UnitOneAI/SecuritySkills/issues/1005", - "https://github.com/amaybaum-prod/shopware/issues/11", - "https://github.com/charles-openclaw/charles-microbounties/issues/1355", - "https://github.com/paritytech/polkadot-sdk/issues/11100", - "https://github.com/cakuki/tidewake/issues/112", - "https://github.com/honua-io/honua-server/issues/1989", - "https://github.com/ZSBRybnik/backend/issues/1245", - "https://github.com/SecureBananaLabs/bug-bounty/issues/1677", - "https://github.com/charles-openclaw/charles-microbounties/issues/1311", - "https://github.com/UnitOneAI/SecuritySkills/issues/773", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/611", + "https://github.com/MM0x02/RSS-Push/issues/542", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/3217", + "https://github.com/boundlessfi/bounties/issues/213", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/211", + "https://github.com/Scottcjn/Rustchain/issues/7478", + "https://github.com/greyw0rks/bountyscout/issues/127", + "https://github.com/Federico2014/tips/issues/1", + "https://github.com/Scottcjn/rustchain-bounties/issues/15260", + "https://github.com/BountyOnChain/StellarBounty/issues/278", + "https://github.com/Quid-proquo/Quid/issues/234", + "https://github.com/tinyhumansai/tiny.place/issues/243", + "https://github.com/ClankerNation/OpenAgents/issues/107", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2953", + "https://github.com/UnitOneAI/SecuritySkills/issues/436", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/747", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/297", + "https://github.com/nicodevtools/kickama-foxy-trials/issues/18", + "https://github.com/NSPG13/agent-bounties/issues/136", + "https://github.com/charles-openclaw/charles-microbounties/issues/2089", + "https://github.com/mergeos-bounties/BloggerEasy/issues/36", + "https://github.com/labmain/ai-agent-pay-demo/issues/35", + "https://github.com/Scottcjn/rustchain-bounties/issues/14169", + "https://github.com/Scottcjn/rustchain-bounties/issues/15300", + "https://github.com/charles-openclaw/charles-microbounties/issues/1488", + "https://github.com/vansh-09/BountyScout/issues/294", + "https://github.com/cuentaprueba244w-dotcom/TentOfTrials/issues/1", + "https://github.com/dwebagents/AgentPipe/issues/113", + "https://github.com/anatolykoptev/go-job/issues/175", + "https://github.com/xevrion-v2/agent-playground/issues/6860", + "https://github.com/xevrion-v2/agent-playground/issues/6147", + "https://github.com/Scottcjn/bottube/issues/1382", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/312", + "https://github.com/iqm-finland/KQCircuits/issues/121", + "https://github.com/dev-kp-eloper/BountyScout/issues/563", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/194", + "https://github.com/stefanoviana/deepalpha/issues/21", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/216", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3378", + "https://github.com/Iamgoofball/-tg-station/issues/133", + "https://github.com/Jagadeeshftw/grainlify/issues/1402", + "https://github.com/charles-openclaw/charles-microbounties/issues/1532", + "https://github.com/jgeraigery/PromptMe/issues/8", + "https://github.com/charles-openclaw/charles-microbounties/issues/1219", + "https://github.com/3ni8ma/aarushkarak-website/issues/19", + "https://github.com/dephizee/photo_collection/issues/1", + "https://github.com/xevrion-v2/agent-playground/issues/3338", + "https://github.com/paraloom-labs/paraloom-core/issues/509", + "https://github.com/verdikta/verdikta-roadmap/issues/2", + "https://github.com/auscaster/frantic-board/issues/90", + "https://github.com/FlossWare/VirtOS/issues/90", + "https://github.com/vansh-09/BountyScout/issues/221", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/222", + "https://github.com/vansh-09/BountyScout/issues/179", + "https://github.com/theArkein/tangle/issues/32", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4319", + "https://github.com/UnitOneAI/SecuritySkills/issues/1057", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3712", + "https://github.com/openmetaearth/me-hub/issues/940", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4381", + "https://github.com/Conxian/conxius-platform/issues/1164", + "https://github.com/mergeos-bounties/PlantGuide/issues/177", + "https://github.com/SecureBananaLabs/bug-bounty/issues/8863", + "https://github.com/KOSASIH/geraipi/issues/23", + "https://github.com/xevrion-v2/agent-playground/issues/6223", + "https://github.com/Scottcjn/rustchain-bounties/issues/14308", + "https://github.com/adventure-simulator-group/adventure-simulator/issues/199", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/205", + "https://github.com/Scottcjn/legend-of-elya-n64/issues/11", + "https://github.com/charles-openclaw/charles-microbounties/issues/1280", + "https://github.com/charles-openclaw/charles-microbounties/issues/1986", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/49", + "https://github.com/tinyhumansai/tiny.place/issues/262", + "https://github.com/Opire/web/issues/6", + "https://github.com/UnitOneAI/SecuritySkills/issues/2435", + "https://github.com/mergeos-bounties/Gomi/issues/24", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/853", + "https://github.com/mergeos-bounties/NokaMan/issues/31", + "https://github.com/SgtPooki/ai-tools/issues/15", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2787", + "https://github.com/Eduvault-stellar/eduvault/issues/107", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5017", + "https://github.com/charles-openclaw/charles-microbounties/issues/1689", + "https://github.com/Scottcjn/rustchain-bounties/issues/13803", + "https://github.com/rsoreq-mend/AutoGPT/issues/61", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/857", + "https://github.com/greyw0rks/bountyscout/issues/64", + "https://github.com/prometheus-protocol/prometheus-protocol/issues/94", + "https://github.com/3ni8ma/aarushkarak-website/issues/59", + "https://github.com/ramimbo/mergework/issues/845", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1149", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/510", + "https://github.com/charles-openclaw/charles-microbounties/issues/1473", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/3914", + "https://github.com/conduit-protocol/streamFi-contracts/issues/56", + "https://github.com/nltk/nltk/issues/3624", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3719", + "https://github.com/moo-man/WFRP4e-FoundryVTT/issues/2818", + "https://github.com/charles-openclaw/charles-microbounties/issues/2055", + "https://github.com/Scottcjn/Rustchain/issues/6198", + "https://github.com/mergeos-bounties/NeraJob/issues/61", + "https://github.com/Gryd-lock/grydlock-oracle-adapter/issues/16", + "https://github.com/monk-io/monk-plugin/issues/134", + "https://github.com/paraloom-labs/paraloom-core/issues/530", + "https://github.com/ClankerNation/OpenAgents/issues/33", + "https://github.com/auscaster/frantic-board/issues/163", + "https://github.com/anirudhchaturvedi124-ai/decodelabs_tasks/issues/3", + "https://github.com/Gloriachinedu/lumenflow-contracts/issues/75", + "https://github.com/vansh-09/BountyScout/issues/173", + "https://github.com/UnitOneAI/SecuritySkills/issues/1576", + "https://github.com/Ledger-Lenz/Ledgerlens-data/issues/378", + "https://github.com/relayhop/sn-monetization-runtime/issues/213", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/370", + "https://github.com/TerraTectra/autotools-hub/issues/72", + "https://github.com/orchestration-agent/AgentOrchestration/issues/2685", + "https://github.com/ValveSoftware/Dota2-Gameplay/issues/612", + "https://github.com/kellymusk/Aframp-backend/issues/562", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/135", + "https://github.com/charles-openclaw/charles-microbounties/issues/1026", + "https://github.com/AuthorPrime/ds-defi-core/issues/8", + "https://github.com/charles-openclaw/charles-microbounties/issues/205", + "https://github.com/clowlove/Hermes-House/issues/218", + "https://github.com/ClankerNation/OpenAgents/issues/18", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/650", + "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/349", + "https://github.com/NSPG13/agent-bounties/issues/400", + "https://github.com/Scottcjn/rustchain-bounties/issues/14039", + "https://github.com/Nexmo/station/issues/1428", + "https://github.com/Ikalus1988/MisakaNet/issues/144", + "https://github.com/charles-openclaw/charles-microbounties/issues/3401", + "https://github.com/ssvlabs/ssv-network/issues/633", + "https://github.com/tari-project/universe/issues/3111", + "https://github.com/charles-openclaw/charles-microbounties/issues/641", + "https://github.com/greyw0rks/bountyscout/issues/47", + "https://github.com/mergeos-bounties/PlantGuide/issues/31", + "https://github.com/ramimbo/mergework/issues/647", + "https://github.com/UnitOneAI/SecuritySkills/issues/1058", + "https://github.com/dcccrypto/percolator-stake/issues/198", + "https://github.com/SecureBananaLabs/bug-bounty/issues/11020", + "https://github.com/ramimbo/mergework/issues/772", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/664", + "https://github.com/ramimbo/mergework/issues/316", + "https://github.com/Ikalus1988/MisakaNet/issues/146", + "https://github.com/pschanely/CrossHair/issues/115", + "https://github.com/charles-openclaw/charles-microbounties/issues/2213", + "https://github.com/charles-openclaw/charles-microbounties/issues/1936", + "https://github.com/mergeos-bounties/Gomi/issues/40", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/828", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/112", + "https://github.com/UnitOneAI/SecuritySkills/issues/2064", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/794", + "https://github.com/mergeos-bounties/NeraJob/issues/59", + "https://github.com/SecureBananaLabs/bug-bounty/issues/7068", + "https://github.com/tensorflow/serving/issues/2206", + "https://github.com/charles-openclaw/charles-microbounties/issues/358", + "https://github.com/Lafiya-xyz/Lafiya-docs/issues/130", + "https://github.com/amaybaum-prod/V-Achilles/issues/19", + "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/345", + "https://github.com/TrustHire/hiresettle-contract/issues/161", + "https://github.com/ERA-Projects/era-project-rus/issues/278", + "https://github.com/Scottcjn/rustchain-bounties/issues/13624", + "https://github.com/kakapez/agents-radar/issues/345", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/844", + "https://github.com/Scottcjn/bottube/issues/1364", + "https://github.com/mergeos-bounties/NokaMan/issues/26", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/746", + "https://github.com/ramimbo/mergework/issues/934", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/504", + "https://github.com/nandinigoyaldev/Open-Source-Contribution-Atelier/issues/1737", + "https://github.com/StellarCheckMate/Checkmate-Escrow/issues/1064", + "https://github.com/kcolbchain/research/issues/21", + "https://github.com/Scottcjn/rustchain-bounties/issues/13701", + "https://github.com/Scottcjn/rustchain-bounties/issues/12393", + "https://github.com/openmetaearth/me-hub/issues/458", + "https://github.com/SPLURT-Station/S.P.L.U.R.T-tg/issues/1040", + "https://github.com/boundlessfi/bounties/issues/215", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/564", + "https://github.com/tailcallhq/tailcall/issues/3551", + "https://github.com/Scottcjn/rustchain-bounties/issues/2797", + "https://github.com/bizzal70/Audit_User_Agent/issues/2", + "https://github.com/auscaster/frantic-board/issues/247", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/106", + "https://github.com/xevrion-v2/agent-playground/issues/2436", + "https://github.com/Iamgoofball/-tg-station/issues/201", + "https://github.com/Scottcjn/rustchain-bounties/issues/13169", + "https://github.com/amaybaum-prod/label-studio/issues/15", + "https://github.com/Scottcjn/rustchain-bounties/issues/15316", + "https://github.com/charles-openclaw/charles-microbounties/issues/1171", + "https://github.com/johnchampaign/star-wars-rebellion/issues/263", + "https://github.com/SecureBananaLabs/bug-bounty/issues/11155", + "https://github.com/auscaster/frantic-board/issues/135", + "https://github.com/Scottcjn/rustchain-bounties/issues/15023", + "https://github.com/xevrion-v2/agent-playground/issues/5633", + "https://github.com/Trustless-Work/trustlesswork-viewer/issues/65", + "https://github.com/greyw0rks/bountyscout/issues/53", + "https://github.com/MergeFi/backend/issues/29", + "https://github.com/ValveSoftware/Dota2-Gameplay/issues/25645", + "https://github.com/jaxassistant55/TentOfTrials/issues/12", + "https://github.com/Scottcjn/rustchain-bounties/issues/12623", + "https://github.com/owocki-bot/ai-bounty-board/issues/26", + "https://github.com/auscaster/frantic-board/issues/279", + "https://github.com/stackernews/stacker.news/issues/1832", + "https://github.com/ramimbo/mergework/issues/813", + "https://github.com/Scottcjn/grazer-skill/issues/72", + "https://github.com/mautic/mautic/issues/12110", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/621", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3295", + "https://github.com/kgnio/github-profile-stats-card/issues/2", + "https://github.com/KodeStar/audiosilo-meta/issues/74", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4924", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1165", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/297", + "https://github.com/amithmandassociates-oss/hash-report-tool/issues/2", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/515", + "https://github.com/lb1192176991-lab/zeroeye/issues/3", + "https://github.com/furiaz/MMOPartySimulator/issues/493", + "https://github.com/Reqrefusion/FreeCAD-Documentation-Project/issues/79", + "https://github.com/greyw0rks/bountyscout/issues/184", + "https://github.com/JSONbored/metagraphed/issues/7121", + "https://github.com/Daisuke134/anicca/issues/745", + "https://github.com/algora-io/algora/issues/308", + "https://github.com/charles-openclaw/charles-microbounties/issues/188", + "https://github.com/openmetaearth/me-hub/issues/1140", + "https://github.com/Elyonar/einvoice-go/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/866", + "https://github.com/vansh-09/BountyScout/issues/157", + "https://github.com/Scottcjn/Rustchain/issues/6401", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/3239", + "https://github.com/SecureBananaLabs/bug-bounty/issues/11361", + "https://github.com/monk-io/monk-plugin/issues/64", + "https://github.com/BlockRunAI/ClawRouter/issues/194", + "https://github.com/charles-openclaw/charles-microbounties/issues/3101", + "https://github.com/CounterpartyXCP/counterparty-core/issues/2965", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/440", + "https://github.com/gibwork/gibwork-website/issues/128", + "https://github.com/mergemint-mint/mergemint-contracts/issues/265", + "https://github.com/BountyOnChain/StellarBounty/issues/358", + "https://github.com/cmss13-devs/cmss13/issues/12509", + "https://github.com/shutter-network/encrypted-mempool-pm/issues/7", + "https://github.com/ramimbo/mergework/issues/1009", + "https://github.com/Ikalus1988/MisakaNet/issues/258", + "https://github.com/Ikalus1988/MisakaNet/issues/316", + "https://github.com/Iamgoofball/-tg-station/issues/119", + "https://github.com/Aigen-Protocol/aigen-workspace/issues/2", + "https://github.com/Gryd-lock/grydlock-oracle-adapter/issues/11", + "https://github.com/Talenttrust/Talenttrust-Contracts/issues/704", + "https://github.com/crewAIInc/crewAI/issues/6263", + "https://github.com/anthropics/claude-code/issues/78655", + "https://github.com/Scottcjn/rustchain-bounties/issues/15143", + "https://github.com/xevrion-v2/agent-playground/issues/6730", + "https://github.com/xevrion-v2/agent-playground/issues/13", + "https://github.com/charles-openclaw/charles-microbounties/issues/1347", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3560", + "https://github.com/UnitOneAI/SecuritySkills/issues/782", + "https://github.com/Noisemaker111/jgengine/issues/1004", + "https://github.com/UnitOneAI/SecuritySkills/issues/515", + "https://github.com/UnitOneAI/SecuritySkills/issues/1115", + "https://github.com/swstegall/Garlemald-Server/issues/107", + "https://github.com/charles-openclaw/charles-microbounties/issues/1595", + "https://github.com/Iamgoofball/-tg-station/issues/71", + "https://github.com/ethereum/ethereum-org-website/issues/18433", + "https://github.com/dev-kp-eloper/BountyScout/issues/350", + "https://github.com/dotnet/sdk/issues/34775", + "https://github.com/SoroLabs/SoroTask/issues/877", + "https://github.com/Scottcjn/rustchain-bounties/issues/14019", + "https://github.com/reymom/portfolio-site/issues/12", + "https://github.com/Scottcjn/rustchain-bounties/issues/12290", + "https://github.com/xevrion-v2/agent-playground/issues/6981", + "https://github.com/Space-station-14-UA/SS14_UA/issues/54", + "https://github.com/SecureBananaLabs/bug-bounty/issues/8072", + "https://github.com/Grainlify/Grainlify-Stellar-Contracts/issues/197", + "https://github.com/Scottcjn/rustchain-bounties/issues/14381", + "https://github.com/vansh-09/BountyScout/issues/96", + "https://github.com/algora-io/algora/issues/309", + "https://github.com/blemaire-wavetel/AutoPrompt/issues/37", "https://github.com/SecureBananaLabs/bug-bounty/issues/8831", - "https://github.com/UnitOneAI/SecuritySkills/issues/830", - "https://github.com/NousResearch/hermes-agent/issues/38280", - "https://github.com/charles-openclaw/charles-microbounties/issues/3321", - "https://github.com/Jonnyton/Workflow/issues/1029", - "https://github.com/Scottcjn/bottube/issues/1480", - "https://github.com/Emmanuel-Evenzur/syetem_prompt/issues/27", - "https://github.com/openmetaearth/me-hub/issues/11", - "https://github.com/UnitOneAI/SecuritySkills/issues/1358", - "https://github.com/greyw0rks/bountyscout/issues/65", - "https://github.com/xevrion-v2/agent-playground/issues/4682", - "https://github.com/Scottcjn/rustchain-bounties/issues/13853", - "https://github.com/cporter202/awesome-ai-tools/issues/35", - "https://github.com/charles-openclaw/charles-microbounties/issues/1065", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1394", - "https://github.com/Scottcjn/Rustchain/issues/6161", - "https://github.com/dxura/dxrp/issues/73", - "https://github.com/labmain/ai-agent-pay-demo/issues/19", - "https://github.com/ritik4ever/stellar-bounty-board/issues/261", - "https://github.com/vansh-09/BountyScout/issues/49", - "https://github.com/charles-openclaw/charles-microbounties/issues/1313", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/340", - "https://github.com/Federico2014/tips/issues/1", - "https://github.com/UnitOneAI/SecuritySkills/issues/440", - "https://github.com/Scottcjn/rustchain-bounties/issues/14249", - "https://github.com/Kings9595/WaveMilestone/issues/35", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/72", - "https://github.com/charles-openclaw/charles-microbounties/issues/489", - "https://github.com/Scottcjn/rustchain-bounties/issues/13545", - "https://github.com/charles-openclaw/charles-microbounties/issues/3343", - "https://github.com/Scottcjn/rustchain-bounties/issues/13960", - "https://github.com/MendPerformance/service-module-6542/issues/11", - "https://github.com/jaisong123/eleuther-digest/issues/422", - "https://github.com/owenshen0907/evomap-console/issues/1", - "https://github.com/xevrion-v2/agent-playground/issues/875", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5013", - "https://github.com/vishalsingh2972/100xDevs_2.0/issues/6", - "https://github.com/Scottcjn/bottube/issues/1375", - "https://github.com/woodpecker-ci/autoscaler/issues/102", - "https://github.com/ramimbo/mergework/issues/122", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4694", - "https://github.com/charles-openclaw/charles-microbounties/issues/1400", - "https://github.com/vansh-09/BountyScout/issues/45", - "https://github.com/greyw0rks/bountyscout/issues/54", - "https://github.com/Scottcjn/rustchain-bounties/issues/13788", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/843", - "https://github.com/Reqrefusion/FreeCAD-Documentation-Project/issues/94", - "https://github.com/xevrion-v2/agent-playground/issues/3831", - "https://github.com/xevrion-v2/agent-playground/issues/3859", - "https://github.com/boundlessfi/bounties/issues/208", - "https://github.com/Scottcjn/rustchain-bounties/issues/13444", - "https://github.com/Imaginary-Horizons-Productions/BountyBot/issues/522", - "https://github.com/charles-openclaw/charles-microbounties/issues/3413", - "https://github.com/ramimbo/mergework/issues/641", - "https://github.com/charles-openclaw/charles-microbounties/issues/285", - "https://github.com/charles-openclaw/charles-microbounties/issues/44", - "https://github.com/Scottcjn/rustchain-bounties/issues/8934", - "https://github.com/digitaldesignerjazz/atrium-forum/issues/4", - "https://github.com/charles-openclaw/charles-microbounties/issues/58", - "https://github.com/BountyOnChain/StellarBounty/issues/174", - "https://github.com/kcolbchain/audit-checklist/issues/35", - "https://github.com/ClankerNation/OpenAgents/issues/107", - "https://github.com/dictation-toolbox/Caster/issues/814", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/210", - "https://github.com/asaadnashed/bounty-autopilot/issues/2", - "https://github.com/SecureBananaLabs/bug-bounty/issues/8335", - "https://github.com/relayhop/sn-monetization-runtime/issues/94", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/825", - "https://github.com/davontepowlowsk1i/Apache-Pulsar/issues/1", - "https://github.com/cakuki/tidewake/issues/181", - "https://github.com/seetadev/pldg-dashboard/issues/68", - "https://github.com/charles-openclaw/charles-microbounties/issues/2848", - "https://github.com/charles-openclaw/charles-microbounties/issues/1613", - "https://github.com/SecureBananaLabs/bug-bounty/issues/4517", - "https://github.com/charles-openclaw/charles-microbounties/issues/1874", - "https://github.com/Scottcjn/rustchain-bounties/issues/13752", - "https://github.com/ramimbo/mergework/issues/129", - "https://github.com/daydreamsai/lucid-agents/issues/183", - "https://github.com/ProjectLiminality/InterBrain/issues/382", - "https://github.com/vansh-09/BountyScout/issues/20", - "https://github.com/livepeer/explorer/issues/711", - "https://github.com/Scottcjn/rustchain-bounties/issues/14198", - "https://github.com/mergemint-mint/mergemint-contracts/issues/251", - "https://github.com/vansh-09/BountyScout/issues/181", - "https://github.com/okalldal/lark/issues/568", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/790", - "https://github.com/charles-openclaw/charles-microbounties/issues/3398", - "https://github.com/charles-openclaw/charles-microbounties/issues/3405", - "https://github.com/charles-openclaw/charles-microbounties/issues/2170", - "https://github.com/Scottcjn/rustchain-bounties/issues/13016", - "https://github.com/UnitOneAI/SecuritySkills/issues/1912", - "https://github.com/capofficial/client/issues/4", - "https://github.com/netzpirat/openclaw-trading-agent/issues/127", - "https://github.com/UnitOneAI/SecuritySkills/issues/36", - "https://github.com/himmelblau-idm/himmelblau/issues/1419", - "https://github.com/Arrow-air/website/issues/167", - "https://github.com/relayhop/sn-monetization-runtime/issues/79", - "https://github.com/Scottcjn/Rustchain/issues/4820", - "https://github.com/johnchampaign/star-wars-rebellion/issues/140", - "https://github.com/charles-openclaw/charles-microbounties/issues/349", - "https://github.com/SecureBananaLabs/bug-bounty/issues/3700", - "https://github.com/Knitweb/molgang/issues/51", - "https://github.com/charles-openclaw/charles-microbounties/issues/1475", - "https://github.com/vansh-09/BountyScout/issues/154", - "https://github.com/charles-openclaw/charles-microbounties/issues/1141", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/636", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2779", - "https://github.com/mergemint-mint/mergemint-contracts/issues/328", - "https://github.com/xevrion-v2/agent-playground/issues/5151", "https://github.com/charles-openclaw/charles-microbounties/issues/988", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/628", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/625", + "https://github.com/mergeos-bounties/Gomi/issues/3", + "https://github.com/openscad/openscad/issues/3362", + "https://github.com/Peter7896/TentOfTrials/issues/2", + "https://github.com/NSPG13/agent-bounties/issues/416", + "https://github.com/Saber5656/worklog/issues/34", + "https://github.com/relayhop/sn-monetization-runtime/issues/187", + "https://github.com/austintgriffith/burner-wallet/issues/216", + "https://github.com/SecureBananaLabs/bug-bounty/issues/11024", + "https://github.com/Scottcjn/rustchain-bounties/issues/16253", + "https://github.com/Scottcjn/Rustchain/issues/7368", + "https://github.com/MM0x02/RSS-Push/issues/528", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/301", + "https://github.com/xevrion-v2/agent-playground/issues/690", + "https://github.com/greyw0rks/bountyscout/issues/43", + "https://github.com/Scottcjn/rustchain-bounties/issues/2293", + "https://github.com/vansh-09/BountyScout/issues/199", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/306", + "https://github.com/destaben/homeassistant/issues/36", + "https://github.com/charles-openclaw/charles-microbounties/issues/1844", + "https://github.com/devpool-directory/devpool-directory/issues/5066", + "https://github.com/MeaganReyesq8/memberlist/issues/1", + "https://github.com/mergeos-bounties/Lappa/issues/12", + "https://github.com/charles-openclaw/charles-microbounties/issues/1820", + "https://github.com/xevrion-v2/agent-playground/issues/6969", + "https://github.com/Scottcjn/Rustchain/issues/7433", + "https://github.com/charles-openclaw/charles-microbounties/issues/1212", + "https://github.com/lobster-trap/Kickama/issues/363", + "https://github.com/seetadev/pldg-dashboard/issues/68", + "https://github.com/jaxassistant55/jax-micro-offer-studio/issues/25", + "https://github.com/okalldal/lark/issues/469", + "https://github.com/Trustless-OSS/Trustless-OSS/issues/37", + "https://github.com/kcverde/geod/issues/10", + "https://github.com/mnemopay/mnemopay-sdk/issues/17", + "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/366", + "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/344", + "https://github.com/mergeos-bounties/mergeos/issues/256", + "https://github.com/Disneyland55555/Git-Action/issues/13", + "https://github.com/dev-kp-eloper/BountyScout/issues/354", + "https://github.com/dxura/dxrp/issues/73", + "https://github.com/vansh-09/BountyScout/issues/106", + "https://github.com/BountyOnChain/StellarBounty/issues/355", + "https://github.com/Scottcjn/rustchain-bounties/issues/15092", + "https://github.com/xevrion-v2/agent-playground/issues/5470", + "https://github.com/xevrion-v2/agent-playground/issues/7262", + "https://github.com/AlienScroll78/vesting-cliff-drip-stream/issues/81", + "https://github.com/tronprotocol/tips/issues/899", + "https://github.com/auscaster/frantic-board/issues/291", + "https://github.com/xevrion-v2/agent-playground/issues/6479", + "https://github.com/relayhop/sn-monetization-runtime/issues/115", + "https://github.com/Monkestation/Vanderlin/issues/6721", + "https://github.com/Scottcjn/rustchain-bounties/issues/15140", + "https://github.com/Scottcjn/Rustchain/issues/7991", + "https://github.com/xevrion-v2/agent-playground/issues/5695", + "https://github.com/UnitOneAI/SecuritySkills/issues/2807", + "https://github.com/kcolbchain/escrow-oracles/issues/21", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3771", + "https://github.com/mergeos-bounties/NokaMan/issues/19", + "https://github.com/Plasius-LTD/player-system/issues/4", + "https://github.com/mergeos-bounties/Gomi/issues/47", + "https://github.com/linguaFoundation/lingualayer/issues/142", + "https://github.com/conduit-protocol/streamFi-app/issues/102", + "https://github.com/Jonnyton/Workflow/issues/1061", + "https://github.com/Scottcjn/rustchain-bounties/issues/749", + "https://github.com/vansh-09/BountyScout/issues/87", + "https://github.com/charles-openclaw/charles-microbounties/issues/1696", + "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/202", + "https://github.com/vansh-09/BountyScout/issues/448", + "https://github.com/charles-openclaw/charles-microbounties/issues/1153", + "https://github.com/3ni8ma/aarushkarak-website/issues/113", + "https://github.com/paraloom-labs/paraloom-core/issues/429", + "https://github.com/Scottcjn/rustchain-bounties/issues/13682", + "https://github.com/charles-openclaw/charles-microbounties/issues/880", + "https://github.com/Transparency-X/AVHERI/issues/2", + "https://github.com/ritik4ever/stellar-bounty-board/issues/388", + "https://github.com/Aigen-Protocol/aigen-protocol/issues/38", + "https://github.com/gagan114662/agent-skills/issues/387", + "https://github.com/UnitOneAI/SecuritySkills/issues/2746", + "https://github.com/lobster-trap/TentOfTrials/issues/41", + "https://github.com/Nexussyn/ai-growth-engine/issues/4", + "https://github.com/tflower98/Parl-Map/issues/11", + "https://github.com/codeboost-tr/zeroeye/issues/4", + "https://github.com/boundlessfi/bounties/issues/276", + "https://github.com/NSPG13/agent-bounties/issues/271", + "https://github.com/c0r1/grok-secintel-daily/issues/6", + "https://github.com/tttrisagion/3T/issues/41", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/12", + "https://github.com/Scottcjn/rustchain-bounties/issues/15141", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/300", + "https://github.com/UnitOneAI/SecuritySkills/issues/811", + "https://github.com/charles-openclaw/charles-microbounties/issues/1897", + "https://github.com/GauravKarakoti/SecureFlow/issues/332", + "https://github.com/Kings9595/WaveMilestone/issues/42", + "https://github.com/UnitOneAI/SecuritySkills/issues/1110", + "https://github.com/MergeFi/frontend/issues/5", + "https://github.com/Scottcjn/rustchain-bounties/issues/292", + "https://github.com/ValveSoftware/Dota2-Gameplay/issues/33824", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/655", + "https://github.com/vansh-09/BountyScout/issues/228", + "https://github.com/ritik4ever/stellar-bounty-board/issues/258", + "https://github.com/space-wizards/space-station-14/issues/44550", + "https://github.com/Tarsnap/tarsnap/issues/712", + "https://github.com/vansh-09/BountyScout/issues/49", + "https://github.com/amos-labs/amos-platform-2.0/issues/56", + "https://github.com/NSPG13/agent-bounties/issues/171", + "https://github.com/cyrilawoyemi99-max/owockibot-bounty-sync-/issues/6", + "https://github.com/UnitOneAI/SecuritySkills/issues/1643", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/652", + "https://github.com/mergeos-bounties/mergeos/issues/64", + "https://github.com/vansh-09/BountyScout/issues/210", + "https://github.com/Iamgoofball/-tg-station/issues/108", + "https://github.com/Ikalus1988/MisakaNet/issues/378", + "https://github.com/UnitOneAI/SecuritySkills/issues/630", + "https://github.com/blemaire-wavetel/AutoPrompt/issues/19", + "https://github.com/asaadnashed/bounty-autopilot/issues/15", + "https://github.com/NirShaharabani/verdaccio/issues/432", + "https://github.com/cuentaprueba244w-dotcom/zeroeye/issues/2", + "https://github.com/Ikalus1988/MisakaNet/issues/470", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1145", + "https://github.com/monk-io/monk-plugin/issues/90", + "https://github.com/StellarCheckMate/Checkmate-Escrow/issues/1058", + "https://github.com/souleater06/mineagent/issues/2", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/22", + "https://github.com/Scottcjn/rustchain-bounties/issues/12584", + "https://github.com/eunseobchoi/NIPS26_A_CV2024/issues/9", + "https://github.com/ramimbo/mergework/issues/129", + "https://github.com/okalldal/lark/issues/268", + "https://github.com/mergeos-bounties/Gomi/issues/37", + "https://github.com/Scottcjn/rustchain-bounties/issues/13557", + "https://github.com/GabrielGLevine/wandering-inn-rpg/issues/275", + "https://github.com/3ni8ma/aarushkarak-website/issues/76", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/89", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/647", + "https://github.com/Scottcjn/rustchain-bounties/issues/13656", + "https://github.com/rsoreq/AutoGPT/issues/97", + "https://github.com/airdropia-collection/bounty-hunter/issues/7", + "https://github.com/paraloom-labs/paraloom-core/issues/548", + "https://github.com/mergeos-bounties/MRGMinner/issues/27", + "https://github.com/OrbitChainLabs/OrbitChain-Contracts/issues/132", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5671", + "https://github.com/xevrion-v2/agent-playground/issues/8145", + "https://github.com/UnitOneAI/SecuritySkills/issues/693", + "https://github.com/RatLoopz/sahidawa-india/issues/1312", + "https://github.com/allknowledge34/UpdateApp/issues/5", + "https://github.com/xevrion-v2/agent-playground/issues/4541", + "https://github.com/devs-immortal/Paradise-Lost/issues/903", + "https://github.com/Grainlify/Grainlify-Stellar-Contracts/issues/278", + "https://github.com/joserivasgt/panama-me/issues/276", + "https://github.com/ramimbo/mergework/issues/114", + "https://github.com/Ikalus1988/MisakaNet/issues/402", + "https://github.com/yosemite01/stellar-creator-portfolio/issues/742", + "https://github.com/openmetaearth/me-hub/issues/82", + "https://github.com/SecureBananaLabs/bug-bounty/issues/3152", + "https://github.com/chaotmusic/euearth/issues/1", + "https://github.com/mergeos-bounties/NokaMan/issues/16", + "https://github.com/mergeos-bounties/PlantGuide/issues/33", + "https://github.com/xevrion-v2/agent-playground/issues/8240", + "https://github.com/AReid987/stellarAgent/issues/150", + "https://github.com/clowlove/Hermes-House/issues/12", + "https://github.com/beihaili/Get-Started-with-Web3/issues/156", + "https://github.com/mergeos-bounties/PoseGuide/issues/15", + "https://github.com/Iamgoofball/-tg-station/issues/265", + "https://github.com/matty33/eps-dapp/issues/148", + "https://github.com/ritik4ever/stellar-bounty-board/issues/291", + "https://github.com/123a-bcd/nailstorm-bounty-forge-358/issues/3", "https://github.com/auscaster/frantic-board/issues/81", - "https://github.com/mergemint-mint/mergemint-contracts/issues/298", - "https://github.com/ramimbo/mergework/issues/649", - "https://github.com/vansh-09/BountyScout/issues/155", - "https://github.com/Kibet-JC/nexcare-api/issues/16", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/108", - "https://github.com/Monkestation/Vanderlin/issues/6636", - "https://github.com/aeyakovenko/percolator-prog/issues/104", - "https://github.com/charles-openclaw/charles-microbounties/issues/1619", - "https://github.com/Scottcjn/rustchain-bounties/issues/13150", - "https://github.com/charles-openclaw/charles-microbounties/issues/2169", - "https://github.com/Scottcjn/Rustchain/issues/6403", - "https://github.com/okalldal/lark/issues/276", - "https://github.com/SecureBananaLabs/bug-bounty/issues/3206", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/310", - "https://github.com/charles-openclaw/charles-microbounties/issues/1578", - "https://github.com/yosemite01/stellar-creator-portfolio/issues/755", - "https://github.com/auscaster/frantic-board/issues/165", - "https://github.com/ClankerNation/OpenAgents/issues/186", - "https://github.com/lobster-trap/zeroeye/issues/1", - "https://github.com/johnchampaign/star-wars-rebellion/issues/417", - "https://github.com/coopfinance/coopfin-api/issues/6", - "https://github.com/dotnet/sdk/issues/54420", - "https://github.com/Scottcjn/rustchain-bounties/issues/14072", - "https://github.com/Jonnyton/Workflow/issues/1049", - "https://github.com/charles-openclaw/charles-microbounties/issues/1658", - "https://github.com/charles-openclaw/charles-microbounties/issues/1656", - "https://github.com/matchls/drglytics-web/issues/122", - "https://github.com/xevrion-v2/agent-playground/issues/4786", - "https://github.com/charles-openclaw/charles-microbounties/issues/2075", - "https://github.com/koreader/koreader/issues/12145", - "https://github.com/UnitOneAI/SecuritySkills/issues/1093", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/831", - "https://github.com/MonoGame/MonoGame/issues/8120", - "https://github.com/openmetaearth/me-hub/issues/1250", - "https://github.com/Dasharo/dasharo-issues/issues/1273", - "https://github.com/nicodevtools/kickama-foxy-trials/issues/10", - "https://github.com/greyw0rks/bountyscout/issues/91", - "https://github.com/ssvlabs/ssv-network/issues/633", - "https://github.com/SecureBananaLabs/bug-bounty/issues/3208", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2955", - "https://github.com/toon-protocol/toon-meta/issues/84", - "https://github.com/HorizenOfficial/staketool/issues/15", - "https://github.com/xevrion-v2/agent-playground/issues/2438", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5017", - "https://github.com/charles-openclaw/charles-microbounties/issues/2137", - "https://github.com/cuentaprueba244w-dotcom/zeroeye/issues/4", - "https://github.com/SecureBananaLabs/bug-bounty/issues/1924", - "https://github.com/SecureBananaLabs/bug-bounty/issues/3042", - "https://github.com/charles-openclaw/charles-microbounties/issues/126", - "https://github.com/charles-openclaw/charles-microbounties/issues/9", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4214", - "https://github.com/Vonage/vonage-media-transformers-samples/issues/27", - "https://github.com/charles-openclaw/charles-microbounties/issues/1523", - "https://github.com/sonyschan/unipeg-lens/issues/130", - "https://github.com/charles-openclaw/charles-microbounties/issues/140", - "https://github.com/charles-openclaw/charles-microbounties/issues/3323", - "https://github.com/charles-openclaw/charles-microbounties/issues/1068", - "https://github.com/BountyOnChain/StellarBounty/issues/278", - "https://github.com/xevrion-v2/agent-playground/issues/445", - "https://github.com/charles-openclaw/charles-microbounties/issues/1532", - "https://github.com/Scottcjn/rustchain-bounties/issues/13242", - "https://github.com/charles-openclaw/charles-microbounties/issues/3389", - "https://github.com/vansh-09/BountyScout/issues/196", - "https://github.com/charles-openclaw/charles-microbounties/issues/2051", - "https://github.com/crewAIInc/crewAI/issues/5832", - "https://github.com/Scottcjn/rustchain-bounties/issues/14037", + "https://github.com/cyrilawoyemi99-max/owockibot-bounty-sync-/issues/2", + "https://github.com/honua-io/honua-server/issues/1981", + "https://github.com/boundlessfi/boundless/issues/603", + "https://github.com/charles-openclaw/charles-microbounties/issues/18", + "https://github.com/vansh-09/BountyScout/issues/105", + "https://github.com/ramimbo/mergework/issues/405", + "https://github.com/MystenLabs/sui/issues/26770", + "https://github.com/xevrion-v2/agent-playground/issues/6712", + "https://github.com/SecureBananaLabs/bug-bounty/issues/8516", + "https://github.com/ProKelly/mychart/issues/1", + "https://github.com/greyw0rks/bountyscout/issues/97", + "https://github.com/auscaster/frantic-board/issues/196", + "https://github.com/Scottcjn/rustchain-bounties/issues/15078", + "https://github.com/Scottcjn/rustchain-bounties/issues/15052", + "https://github.com/Scottcjn/rustchain-bounties/issues/14032", + "https://github.com/Scottcjn/rustchain-bounties/issues/13736", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/637", + "https://github.com/uditt490-pixel/YuvaHub/issues/229", + "https://github.com/charles-openclaw/charles-microbounties/issues/1480", + "https://github.com/auscaster/frantic-board/issues/67", + "https://github.com/mannowell/zeroeye/issues/1", + "https://github.com/Scottcjn/rustchain-bounties/issues/13523", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/800", + "https://github.com/charles-openclaw/charles-microbounties/issues/1420", + "https://github.com/tenstorrent/tt-metal/issues/49307", + "https://github.com/Scottcjn/rustchain-bounties/issues/15317", + "https://github.com/xlabtg/wallet-contract/issues/1", + "https://github.com/vansh-09/BountyScout/issues/86", + "https://github.com/esi/esi-issues/issues/1290", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/18", + "https://github.com/johnchampaign/star-wars-rebellion/issues/611", "https://github.com/charles-openclaw/charles-microbounties/issues/276", - "https://github.com/charles-openclaw/charles-microbounties/issues/1623", - "https://github.com/ritik4ever/stellar-bounty-board/issues/231", - "https://github.com/mautic/mautic/issues/16194", - "https://github.com/greyw0rks/bountyscout/issues/119", - "https://github.com/Scottcjn/rustchain-bounties/issues/13040", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/515", - "https://github.com/ritik4ever/stellar-bounty-board/issues/371", - "https://github.com/Scottcjn/rustchain-bounties/issues/12564", - "https://github.com/Scottcjn/Rustchain/issues/6398", - "https://github.com/vansh-09/BountyScout/issues/238", - "https://github.com/kcolbchain/switchboard/issues/97", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/273", - "https://github.com/auscaster/frantic-board/issues/50", - "https://github.com/lk251/agent-bounty-market/issues/28", - "https://github.com/vansh-09/BountyScout/issues/147", - "https://github.com/charles-openclaw/charles-microbounties/issues/2233", - "https://github.com/charles-openclaw/charles-microbounties/issues/1822", - "https://github.com/XortexAI/XMem/issues/166", - "https://github.com/RatLoopz/sahidawa-india/issues/2660", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/653", - "https://github.com/charles-openclaw/charles-microbounties/issues/252", - "https://github.com/charles-openclaw/charles-microbounties/issues/976", - "https://github.com/ramimbo/mergework/issues/978", + "https://github.com/BAWES-Universe/studenthub-staff/issues/33", + "https://github.com/vansh-09/BountyScout/issues/219", + "https://github.com/mergeos-bounties/Loru/issues/199", + "https://github.com/QingXuan2000/MyQxBlog/issues/5", + "https://github.com/source-cooperative/data.source.coop/issues/188", + "https://github.com/PX4/PX4-Autopilot/issues/19341", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/210", + "https://github.com/UnitOneAI/SecuritySkills/issues/1621", + "https://github.com/openmetaearth/me-hub/issues/352", + "https://github.com/Scottcjn/rustchain-bounties/issues/15624", + "https://github.com/caydyan/zeroeye/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/802", + "https://github.com/UnitOneAI/SecuritySkills/issues/2436", + "https://github.com/farrellh1/smart-contract-auditor-skill/issues/1", + "https://github.com/SecureBananaLabs/bug-bounty/issues/3981", "https://github.com/magpiecapital/magpie-x402/issues/32", - "https://github.com/lk251/agent-bounty-market/issues/22", - "https://github.com/UnitOneAI/SecuritySkills/issues/1006", - "https://github.com/Scottcjn/trashclaw/issues/195", - "https://github.com/Scottcjn/rustchain-bounties/issues/2797", - "https://github.com/Scottcjn/bottube/issues/1376", - "https://github.com/lobster-trap/SmartGesture/issues/452", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2948", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5388", - "https://github.com/blemaire-wavetel/AutoPrompt/issues/21", + "https://github.com/Scottcjn/bottube/issues/1371", + "https://github.com/charles-openclaw/charles-microbounties/issues/1797", + "https://github.com/ZSBRybnik/frontend/issues/2184", + "https://github.com/Scottcjn/rustchain-bounties/issues/1151", + "https://github.com/freedom-winds/BountyScout/issues/188", + "https://github.com/GruftNet/BOXMEOUT-STELLA/issues/18", + "https://github.com/snowdensb/remote-actions/issues/10", + "https://github.com/Scottcjn/rustchain-bounties/issues/14778", + "https://github.com/Scottcjn/rustchain-bounties/issues/14306", + "https://github.com/charles-openclaw/charles-microbounties/issues/2007", + "https://github.com/daydreamsai/lucid-agents/issues/774", + "https://github.com/mergeos-bounties/HIRI/issues/28", + "https://github.com/dev-kp-eloper/BountyScout/issues/571", + "https://github.com/WattCoin-Org/wattcoin/issues/19", + "https://github.com/SecureBananaLabs/bug-bounty/issues/6860", + "https://github.com/johnchampaign/star-wars-rebellion/issues/388", + "https://github.com/xevrion-v2/agent-playground/issues/7838", + "https://github.com/vansh-09/BountyScout/issues/159", + "https://github.com/charles-openclaw/charles-microbounties/issues/1024", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/622", + "https://github.com/ramimbo/mergework/issues/459", + "https://github.com/TerraTectra/autotools-hub/issues/70", + "https://github.com/Scottcjn/rustchain-bounties/issues/13970", + "https://github.com/flyteorg/flyte/issues/7518", + "https://github.com/charles-openclaw/charles-microbounties/issues/335", + "https://github.com/Saber5656/gitquest/issues/29", + "https://github.com/bettercallzaal/zpoidh/issues/4", + "https://github.com/ramimbo/mergework/issues/681", + "https://github.com/mergeos-bounties/NeraJob/issues/6", + "https://github.com/charles-openclaw/charles-microbounties/issues/1150", + "https://github.com/tenstorrent/tt-metal/issues/50522", + "https://github.com/nicodevtools/kickama-foxy-trials/issues/6", + "https://github.com/auscaster/frantic-board/issues/59", + "https://github.com/Scottcjn/Rustchain/issues/7392", + "https://github.com/xevrion-v2/agent-playground/issues/1248", + "https://github.com/johnchampaign/star-wars-rebellion/issues/555", + "https://github.com/HubDApp/Dongle-frontend/issues/244", + "https://github.com/mergeos-bounties/Loru/issues/192", + "https://github.com/Scottcjn/rustchain-bounties/issues/13790", + "https://github.com/1btc-news/news-client/issues/29", + "https://github.com/relayhop/sn-monetization-runtime/issues/138", + "https://github.com/sebrandon1/go-skylight/issues/188", + "https://github.com/mergeos-bounties/mergeos/issues/238", + "https://github.com/xevrion-v2/agent-playground/issues/7837", + "https://github.com/Scottcjn/rustchain-bounties/issues/15022", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/762", + "https://github.com/vansh-09/BountyScout/issues/104", + "https://github.com/UnitOneAI/SecuritySkills/issues/2245", + "https://github.com/bolivian-peru/marketplace-service-template/issues/483", + "https://github.com/charles-openclaw/charles-microbounties/issues/114", + "https://github.com/charles-openclaw/charles-microbounties/issues/1875", + "https://github.com/Scottcjn/rustchain-bounties/issues/14197", + "https://github.com/charles-openclaw/charles-microbounties/issues/277", + "https://github.com/SecureBananaLabs/bug-bounty/issues/8265", + "https://github.com/charles-openclaw/charles-microbounties/issues/1533", + "https://github.com/greyw0rks/bountyscout/issues/85", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/212", + "https://github.com/Iamgoofball/-tg-station/issues/150", + "https://github.com/charles-openclaw/charles-microbounties/issues/1561", + "https://github.com/mergeos-bounties/PoseGuide/issues/19", + "https://github.com/charles-openclaw/charles-microbounties/issues/275", + "https://github.com/daddygokings-art/Decentralized-Audit-Transparency-Ledger/issues/34", + "https://github.com/storm-software/cyclone-ui/issues/114", + "https://github.com/xevrion-v2/agent-playground/issues/1437", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2963", + "https://github.com/ramimbo/mergework/issues/47", + "https://github.com/Scottcjn/rustchain-bounties/issues/14524", + "https://github.com/NSPG13/agent-bounties/issues/273", + "https://github.com/Scottcjn/rustchain-bounties/issues/12787", + "https://github.com/Scottcjn/rustchain-bounties/issues/14657", + "https://github.com/jorger-democorp-mend-ghc/JR_WebGoat/issues/94", + "https://github.com/jeremysecondstate/portfolio-risk-cockpit/issues/77", + "https://github.com/OWASP-BLT/BLT/issues/6437", + "https://github.com/xevrion-v2/agent-playground/issues/4782", + "https://github.com/xevrion-v2/agent-playground/issues/4539", + "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/370", + "https://github.com/xevrion-v2/agent-playground/issues/5068", + "https://github.com/greyw0rks/bountyscout/issues/83", + "https://github.com/charles-openclaw/charles-microbounties/issues/1282", + "https://github.com/mergeos-bounties/MRGMinner/issues/6", + "https://github.com/charles-openclaw/charles-microbounties/issues/3342", + "https://github.com/nexmo-community/phone-number-pool-manager-node/issues/4", + "https://github.com/Grainlify/Grainlify-Stellar-Contracts/issues/177", + "https://github.com/stackernews/stacker.news/issues/1834", + "https://github.com/lb1192176991-lab/zeroeye/issues/1", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/511", + "https://github.com/xevrion-v2/agent-playground/issues/3700", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/858", + "https://github.com/mergeos-bounties/PoseGuide/issues/51", + "https://github.com/charles-openclaw/charles-microbounties/issues/830", + "https://github.com/devs-immortal/Paradise-Lost/issues/913", + "https://github.com/charles-openclaw/charles-microbounties/issues/583", + "https://github.com/Scottcjn/rustchain-bounties/issues/14131", + "https://github.com/vansh-09/BountyScout/issues/224", + "https://github.com/vansh-09/BountyScout/issues/7", + "https://github.com/Iamgoofball/-tg-station/issues/123", + "https://github.com/Scottcjn/rustchain-bounties/issues/13902", + "https://github.com/organvm/peer-audited--behavioral-blockchain/issues/75", + "https://github.com/charles-openclaw/charles-microbounties/issues/431", + "https://github.com/UnitOneAI/SecuritySkills/issues/1065", + "https://github.com/xevrion-v2/agent-playground/issues/6691", + "https://github.com/Dasharo/dasharo-issues/issues/1273", + "https://github.com/johnchampaign/star-wars-rebellion/issues/440", + "https://github.com/amaybaum-prod/eui/issues/154", + "https://github.com/vansh-09/BountyScout/issues/454", + "https://github.com/BLB3DPrinting/filaops/issues/894", + "https://github.com/freedom-winds/BountyScout/issues/195", + "https://github.com/ls1intum/Athena/issues/443", + "https://github.com/renaudgenard/zeroeye/issues/2", + "https://github.com/UnitOneAI/SecuritySkills/issues/1283", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1403", + "https://github.com/Ikalus1988/MisakaNet/issues/138", + "https://github.com/charles-openclaw/charles-microbounties/issues/1985", + "https://github.com/ramimbo/mergework/issues/292", + "https://github.com/Carbon-Ledger-stellar/carbonledger-bounty/issues/17", + "https://github.com/explorerscat/cautious-octo-fishstick/issues/1", + "https://github.com/mergeos-bounties/PlantGuide/issues/36", + "https://github.com/Scottcjn/rustchain-bounties/issues/692", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/24", + "https://github.com/greyw0rks/bountyscout/issues/110", + "https://github.com/ramimbo/mergework/issues/162", + "https://github.com/Scottcjn/rustchain-bounties/issues/1095", + "https://github.com/bolivian-peru/baozi-openclaw/issues/40", + "https://github.com/djjrip/kickama-cash-grab-hacks/issues/4", + "https://github.com/code-charity/youtube/issues/4129", + "https://github.com/charles-openclaw/charles-microbounties/issues/1795", + "https://github.com/SecureBananaLabs/bug-bounty/issues/9542", + "https://github.com/freedom-winds/BountyScout/issues/196", + "https://github.com/blemaire-wavetel/AutoPrompt/issues/17", + "https://github.com/greyw0rks/bountyscout/issues/229", + "https://github.com/xevrion-v2/agent-playground/issues/6459", + "https://github.com/gibwork/gibwork-website/issues/118", + "https://github.com/xevrion-v2/agent-playground/issues/4843", + "https://github.com/Scottcjn/rustchain-bounties/issues/2259", + "https://github.com/chainreactors/picker/issues/1276", + "https://github.com/Scottcjn/rustchain-bounties/issues/16256", + "https://github.com/jsrothwell/jobflo-support/issues/6", + "https://github.com/vcon-dev/vcon-mcp/issues/61", + "https://github.com/charles-openclaw/charles-microbounties/issues/1877", + "https://github.com/Scottcjn/rustchain-bounties/issues/13466", + "https://github.com/charles-openclaw/charles-microbounties/issues/1472", + "https://github.com/johnchampaign/star-wars-rebellion/issues/234", + "https://github.com/vansh-09/BountyScout/issues/145", + "https://github.com/SecureBananaLabs/bug-bounty/issues/6856", + "https://github.com/Scottcjn/rustchain-bounties/issues/12429", + "https://github.com/Scottcjn/Rustchain/issues/7311", + "https://github.com/auscaster/frantic-board/issues/178", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4438", + "https://github.com/mergemint-mint/mergemint-contracts/issues/308", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/642", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/441", + "https://github.com/xevrion-v2/agent-playground/issues/8133", + "https://github.com/DomTheDeveloper/crl/issues/100", + "https://github.com/SecureBananaLabs/bug-bounty/issues/7070", + "https://github.com/rsoreq/zenbot/issues/921", + "https://github.com/Scottcjn/rustchain-bounties/issues/15246", + "https://github.com/matty33/eps-dapp/issues/152", + "https://github.com/charles-openclaw/charles-microbounties/issues/169", + "https://github.com/Scottcjn/rustchain-bounties/issues/15077", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/842", + "https://github.com/charles-openclaw/charles-microbounties/issues/2836", + "https://github.com/thanhtantran/agents-radar/issues/262", + "https://github.com/yashiel/Sveltekit-Directus-Caprover/issues/43", + "https://github.com/auscaster/frantic-board/issues/57", + "https://github.com/charles-openclaw/charles-microbounties/issues/1557", + "https://github.com/coolhandle01/cybersquad/issues/179", + "https://github.com/ramimbo/mergework/issues/814", + "https://github.com/Scottcjn/rustchain-bounties/issues/12534", + "https://github.com/devs-immortal/Paradise-Lost/issues/905", + "https://github.com/openmetaearth/me-hub/issues/1355", + "https://github.com/greyw0rks/bountyscout/issues/129", + "https://github.com/DealVaultHQ/dealvault-platform-escrow/issues/41", + "https://github.com/ducminhgd/gossip-bot/issues/351", + "https://github.com/charles-openclaw/charles-microbounties/issues/786", + "https://github.com/impartshadow/echo-site/issues/1", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/622", + "https://github.com/UnitOneAI/SecuritySkills/issues/2490", + "https://github.com/near/nearcore/issues/15863", + "https://github.com/Scottcjn/rustchain-bounties/issues/15615", + "https://github.com/charles-openclaw/charles-microbounties/issues/634", + "https://github.com/dev-kp-eloper/BountyScout/issues/558", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5979", + "https://github.com/charles-openclaw/charles-microbounties/issues/88", + "https://github.com/Nobayprotocol/Nobay-Protocol/issues/2", + "https://github.com/documenso/documenso/issues/2190", + "https://github.com/colinhacks/zod/issues/2654", + "https://github.com/relayhop/sn-monetization-runtime/issues/215", + "https://github.com/nirholas/agenti/issues/112", + "https://github.com/charles-openclaw/charles-microbounties/issues/1697", + "https://github.com/vansh-09/BountyScout/issues/449", + "https://github.com/Flatts3000/productive-frogs/issues/243", + "https://github.com/UnitOneAI/SecuritySkills/issues/2390", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/45", + "https://github.com/charles-openclaw/charles-microbounties/issues/2049", + "https://github.com/Scottcjn/rustchain-bounties/issues/13731", + "https://github.com/vansh-09/BountyScout/issues/129", + "https://github.com/anatolykoptev/go-job/issues/176", + "https://github.com/mergeos-bounties/Loru/issues/244", + "https://github.com/charles-openclaw/charles-microbounties/issues/1940", + "https://github.com/sebrandon1/go-skylight/issues/256", + "https://github.com/ramimbo/mergework/issues/694", + "https://github.com/charles-openclaw/charles-microbounties/issues/1953", + "https://github.com/DimaMend/ChuanhuChatGPT/issues/7", + "https://github.com/Scottcjn/rustchain-bounties/issues/15371", + "https://github.com/jhengy/content-aggregator/issues/516", + "https://github.com/Scottcjn/rustchain-bounties/issues/12350", + "https://github.com/dev-kp-eloper/BountyScout/issues/255", + "https://github.com/dev-kp-eloper/BountyScout/issues/505", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/634", + "https://github.com/gitcoinco/gitcoin_co_30/issues/406", + "https://github.com/charles-openclaw/charles-microbounties/issues/1815", + "https://github.com/microsoft/autogen/issues/7724", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/655", + "https://github.com/codeboost-tr/zeroeye/issues/1", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/30", + "https://github.com/Scottcjn/rustchain-bounties/issues/14189", + "https://github.com/Mohan24th/Bounty_Hunt/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/1612", + "https://github.com/BountyOnChain/StellarBounty/issues/166", + "https://github.com/dwebagents/AgentPipe/issues/8", + "https://github.com/xevrion-v2/agent-playground/issues/2962", + "https://github.com/charles-openclaw/charles-microbounties/issues/2177", + "https://github.com/mergeos-bounties/NeraJob/issues/8", + "https://github.com/asaadnashed/bounty-autopilot/issues/13", + "https://github.com/vansh-09/BountyScout/issues/66", + "https://github.com/Scottcjn/rustchain-bounties/issues/14194", + "https://github.com/SmartDropLabs/smartdrop-frontend/issues/74", + "https://github.com/Scottcjn/rustchain-bounties/issues/13444", + "https://github.com/Scottcjn/rustchain-bounties/issues/14523", + "https://github.com/charles-openclaw/charles-microbounties/issues/1346", + "https://github.com/charles-openclaw/charles-microbounties/issues/1192", + "https://github.com/mergeos-bounties/PlantGuide/issues/39", + "https://github.com/Jonnyton/Workflow/issues/1040", + "https://github.com/soroban-tooling/soroban-keeper-network/issues/29", + "https://github.com/charles-openclaw/charles-microbounties/issues/3124", + "https://github.com/vansh-09/BountyScout/issues/85", "https://github.com/BountyOnChain/StellarBounty/issues/175", + "https://github.com/libretro/stella2014-libretro/issues/40", + "https://github.com/UnitOneAI/SecuritySkills/issues/1908", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/48", + "https://github.com/coreintentdev/ZYNTHIO_MASTER_DOCS/issues/252", + "https://github.com/Ikalus1988/MisakaNet/issues/269", + "https://github.com/Scottcjn/bottube/issues/1324", + "https://github.com/lobster-trap/Kickama/issues/350", + "https://github.com/BountyOnChain/StellarBounty/issues/181", + "https://github.com/relayhop/sn-monetization-runtime/issues/205", + "https://github.com/Nexussyn/ai-growth-engine/issues/3", + "https://github.com/charles-openclaw/charles-microbounties/issues/670", + "https://github.com/tari-project/universe/issues/3299", + "https://github.com/charles-openclaw/charles-microbounties/issues/1205", + "https://github.com/SecureBananaLabs/bug-bounty/issues/6727", + "https://github.com/dadadave80/lattice/issues/8", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5151", + "https://github.com/rplryan/x402-discovery-mcp/issues/13", + "https://github.com/Feel-ix-343/markdown-oxide/issues/274", + "https://github.com/charles-openclaw/charles-microbounties/issues/3423", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/368", + "https://github.com/mergeos-bounties/BloggerEasy/issues/15", + "https://github.com/UnitOneAI/SecuritySkills/issues/2376", + "https://github.com/Iamgoofball/-tg-station/issues/161", + "https://github.com/charles-openclaw/charles-microbounties/issues/1829", + "https://github.com/dcccrypto/percolator-stake/issues/196", + "https://github.com/0xddneto/AI-Proof-of-Us/issues/5", + "https://github.com/shipshitgames/deadrot.com/issues/300", + "https://github.com/xevrion-v2/agent-playground/issues/3863", + "https://github.com/organvm/peer-audited--behavioral-blockchain/issues/92", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3623", + "https://github.com/lobster-trap/TentOfTrials/issues/67", "https://github.com/openmetaearth/me-hub/issues/198", - "https://github.com/SecureBananaLabs/bug-bounty/issues/3149", - "https://github.com/xevrion-v2/agent-playground/issues/5147", - "https://github.com/QubesOS/qubes-issues/issues/7231", - "https://github.com/stakwork/sphinx-nav-fiber/issues/2402", - "https://github.com/Ikalus1988/MisakaNet/issues/95", - "https://github.com/claude-builders-bounty/claude-builders-bounty/issues/3128", - "https://github.com/lk251/agent-bounty-market/issues/21", - "https://github.com/Scottcjn/rustchain-bounties/issues/12985", - "https://github.com/charles-openclaw/charles-microbounties/issues/1639", + "https://github.com/relayhop/sn-monetization-runtime/issues/209", + "https://github.com/Scottcjn/Rustchain/issues/6881", + "https://github.com/UnitOneAI/SecuritySkills/issues/817", + "https://github.com/xevrion-v2/agent-playground/issues/5112", + "https://github.com/paraloom-labs/paraloom-core/issues/578", + "https://github.com/sindresorhus/eslint-plugin-unicorn/issues/295", + "https://github.com/clowlove/Harmes-House/issues/327", + "https://github.com/paidmcp/directory/issues/6", + "https://github.com/vansh-09/BountyScout/issues/130", + "https://github.com/rsoreq-mend/AutoGPT/issues/264", + "https://github.com/xevrion-v2/agent-playground/issues/937", + "https://github.com/CaptainFact/captain-fact/issues/93", + "https://github.com/airdropia-collection/bounty-hunter/issues/10", + "https://github.com/charles-openclaw/charles-microbounties/issues/2138", + "https://github.com/DomTheDeveloper/crl/issues/98", + "https://github.com/charles-openclaw/charles-microbounties/issues/2137", + "https://github.com/Opire/docs/issues/34", + "https://github.com/opentok/insights-dashboard-sample/issues/58", + "https://github.com/SPLURT-Station/S.P.L.U.R.T-tg/issues/31", + "https://github.com/WattCoin-Org/wattcoin/issues/17", + "https://github.com/xevrion-v2/agent-playground/issues/3835", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/69", + "https://github.com/charles-openclaw/charles-microbounties/issues/423", + "https://github.com/charles-openclaw/charles-microbounties/issues/1028", + "https://github.com/mergeos-bounties/BloggerEasy/issues/19", "https://github.com/gibwork/gibwork-website/issues/100", - "https://github.com/Reqrefusion/FreeCAD-Documentation-Project/issues/331", - "https://github.com/iqm-finland/KQCircuits/issues/121", - "https://github.com/Scottcjn/rustchain-bounties/issues/2259", - "https://github.com/charles-openclaw/charles-microbounties/issues/1460", - "https://github.com/dwebagents/AgentPipe/issues/50", + "https://github.com/charles-openclaw/charles-microbounties/issues/1358", + "https://github.com/greyw0rks/bountyscout/issues/81", + "https://github.com/xevrion-v2/agent-playground/issues/5459", + "https://github.com/mergeos-bounties/NokaMan/issues/13", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5466", + "https://github.com/ThanhTrucSolutions/OriLang/issues/14", + "https://github.com/ritik4ever/stellar-bounty-board/issues/242", + "https://github.com/Scottcjn/rustchain-dialup/issues/1", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5673", + "https://github.com/greyw0rks/bountyscout/issues/62", + "https://github.com/charles-openclaw/charles-microbounties/issues/1505", + "https://github.com/hspahic-cs/cobblemon-server/issues/200", + "https://github.com/dev-kp-eloper/BountyScout/issues/562", + "https://github.com/RatLoopz/sahidawa-india/issues/1882", + "https://github.com/dev-kp-eloper/BountyScout/issues/569", + "https://github.com/freedom-winds/BountyScout/issues/183", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/656", + "https://github.com/yosemite01/stellar-creator-portfolio/issues/724", + "https://github.com/thegriffinwells/bilt-prototypes/issues/1", + "https://github.com/Cyfrin/security-and-auditing-full-course-s23/issues/442", + "https://github.com/Scottcjn/rustchain-bounties/issues/13770", + "https://github.com/UnitOneAI/SecuritySkills/issues/1831", + "https://github.com/mergeos-bounties/Loru/issues/241", + "https://github.com/paraloom-labs/paraloom-core/issues/481", + "https://github.com/UnitOneAI/SecuritySkills/issues/1028", + "https://github.com/greyw0rks/bountyscout/issues/93", + "https://github.com/paritytech/polkadot-sdk/issues/12192", + "https://github.com/xevrion-v2/agent-playground/issues/5968", + "https://github.com/Luowaterbi/DailyArXiv/issues/462", + "https://github.com/9904099/zeroeye/issues/3", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/753", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/413", + "https://github.com/Scottcjn/rustchain-bounties/issues/14755", + "https://github.com/StellarCheckMate/Checkmate-Escrow/issues/1057", + "https://github.com/MergeFi/frontend/issues/46", + "https://github.com/drizzle-team/drizzle-orm/issues/1603", + "https://github.com/charles-openclaw/charles-microbounties/issues/844", + "https://github.com/xevrion-v2/agent-playground/issues/5970", + "https://github.com/0106hyh/kickama-manifest-wizard/issues/1", + "https://github.com/xevrion-v2/agent-playground/issues/6033", + "https://github.com/charles-openclaw/charles-microbounties/issues/1139", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4315", + "https://github.com/charles-openclaw/charles-microbounties/issues/1516", + "https://github.com/SecureBananaLabs/bug-bounty/issues/9119", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/635", + "https://github.com/Scottcjn/rustchain-bounties/issues/14196", + "https://github.com/greyw0rks/bountyscout/issues/335", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/55", + "https://github.com/Scottcjn/rustchain-bounties/issues/13192", + "https://github.com/charles-openclaw/charles-microbounties/issues/1828", + "https://github.com/Scottcjn/Rustchain/issues/6403", + "https://github.com/vansh-09/BountyScout/issues/13", + "https://github.com/Scottcjn/grazer-skill/issues/15", + "https://github.com/vansh-09/BountyScout/issues/78", + "https://github.com/lissy93/bug-bounties/issues/135", + "https://github.com/charles-openclaw/charles-microbounties/issues/1840", + "https://github.com/Scottcjn/rustchain-bounties/issues/15623", + "https://github.com/Scottcjn/grazer-skill-rs/issues/1", + "https://github.com/UnitOneAI/SecuritySkills/issues/1187", + "https://github.com/vansh-09/BountyScout/issues/421", + "https://github.com/ramimbo/mergework/issues/844", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/307", + "https://github.com/conduit-protocol/streamFi-sdk/issues/58", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/527", + "https://github.com/charles-openclaw/charles-microbounties/issues/3092", + "https://github.com/greyw0rks/bountyscout/issues/108", + "https://github.com/charles-openclaw/charles-microbounties/issues/932", + "https://github.com/johnchampaign/star-wars-rebellion/issues/619", + "https://github.com/Scottcjn/rustchain-bounties/issues/16163", + "https://github.com/Scottcjn/rustchain-bounties/issues/15015", + "https://github.com/Scottcjn/rustchain-bounties/issues/694", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5476", + "https://github.com/mergeos-bounties/MRGWallet/issues/22", + "https://github.com/Spectral-Finance/lux/issues/95", + "https://github.com/Plasius-LTD/ai-governance/issues/9", + "https://github.com/textileio/community/issues/216", + "https://github.com/Gitlawb/node/issues/187", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/669", + "https://github.com/greyw0rks/bountyscout/issues/254", + "https://github.com/Scottcjn/rustchain-bounties/issues/13283", + "https://github.com/Imaginary-Horizons-Productions/BountyBot/issues/280", + "https://github.com/UnitOneAI/SecuritySkills/issues/1833", + "https://github.com/C-Address-Onboarding-Bridge/C-Address-Onboarding-Bridge--Contract/issues/82", + "https://github.com/charles-openclaw/charles-microbounties/issues/3134", + "https://github.com/Scottcjn/rustchain-bounties/issues/15038", + "https://github.com/xevrion-v2/agent-playground/issues/6320", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/585", + "https://github.com/KodeStar/audiosilo-meta/issues/598", + "https://github.com/charles-openclaw/charles-microbounties/issues/1469", + "https://github.com/Iamgoofball/-tg-station/issues/94", + "https://github.com/srikanthgumma/tabulator-table/issues/1", + "https://github.com/greyw0rks/bountyscout/issues/95", + "https://github.com/Scottcjn/rustchain-bounties/issues/15021", + "https://github.com/Nexussyn/ai-growth-platform/issues/3", + "https://github.com/mergeos-bounties/mergeos/issues/267", + "https://github.com/Bubberstation/Bubberstation/issues/3501", + "https://github.com/mergeos-bounties/BloggerEasy/issues/8", + "https://github.com/Scottcjn/Rustchain/issues/309", + "https://github.com/charles-openclaw/charles-microbounties/issues/1487", + "https://github.com/Iamgoofball/-tg-station/issues/120", + "https://github.com/ritik4ever/stellar-bounty-board/issues/259", + "https://github.com/Scottcjn/rustchain-bounties/issues/15269", + "https://github.com/vansh-09/BountyScout/issues/429", + "https://github.com/charles-openclaw/charles-microbounties/issues/1998", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/852", + "https://github.com/Scottcjn/rustchain-bounties/issues/14303", + "https://github.com/greyw0rks/bountyscout/issues/307", + "https://github.com/mcdope/pam_usb/issues/55", + "https://github.com/CoralSwap-Finance/coralswap-sdk/issues/317", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/766", + "https://github.com/Scottcjn/rustchain-bounties/issues/15054", + "https://github.com/greyw0rks/bountyscout/issues/79", + "https://github.com/Scottcjn/rustchain-bounties/issues/15058", + "https://github.com/xevrion-v2/agent-playground/issues/3725", + "https://github.com/charles-openclaw/charles-microbounties/issues/3404", + "https://github.com/mergeos-bounties/PlantGuide/issues/6", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/863", + "https://github.com/johnchampaign/star-wars-rebellion/issues/154", + "https://github.com/charles-openclaw/charles-microbounties/issues/1184", + "https://github.com/Ikalus1988/MisakaNet/issues/377", + "https://github.com/ClankerNation/OpenAgents/issues/123", + "https://github.com/Scottcjn/rustchain-bounties/issues/13950", + "https://github.com/charles-openclaw/charles-microbounties/issues/2087", + "https://github.com/Scottcjn/rustchain-bounties/issues/14030", + "https://github.com/Jonnyton/Workflow/issues/1038", + "https://github.com/xevrion-v2/agent-playground/issues/6600", + "https://github.com/shadow6427/fun-benchmark-forge/issues/3", + "https://github.com/lissy93/bug-bounties/issues/124", + "https://github.com/charles-openclaw/charles-microbounties/issues/1224", + "https://github.com/lk251/agent-bounty-market/issues/10", + "https://github.com/charles-openclaw/charles-microbounties/issues/1354", + "https://github.com/okalldal/lark/issues/279", + "https://github.com/charles-openclaw/charles-microbounties/issues/2107", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/58", + "https://github.com/charles-openclaw/charles-microbounties/issues/983", + "https://github.com/charles-openclaw/charles-microbounties/issues/203", + "https://github.com/greyw0rks/bountyscout/issues/301", + "https://github.com/charles-openclaw/charles-microbounties/issues/2048", + "https://github.com/anthropics/claude-code/issues/66592", + "https://github.com/SAST-UP-STG/SAST-Test-Repo-9204b331-acc8-4d54-8670-7709ddb32e5c/issues/56", + "https://github.com/mergeos-bounties/PoseGuide/issues/53", + "https://github.com/johnchampaign/star-wars-rebellion/issues/428", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3160", + "https://github.com/xevrion-v2/agent-playground/issues/4537", + "https://github.com/charles-openclaw/charles-microbounties/issues/1540", + "https://github.com/xevrion-v2/agent-playground/issues/5980", + "https://github.com/greyw0rks/bountyscout/issues/115", + "https://github.com/auscaster/frantic-board/issues/319", + "https://github.com/charles-openclaw/charles-microbounties/issues/1021", + "https://github.com/fuseio/bounties/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/2012", + "https://github.com/greyw0rks/bountyscout/issues/27", + "https://github.com/David1984TK/Bimex/issues/154", + "https://github.com/charles-openclaw/charles-microbounties/issues/2232", + "https://github.com/charles-openclaw/charles-microbounties/issues/428", + "https://github.com/WeaponMechanics/WeaponMechanics/issues/271", + "https://github.com/vansh-09/BountyScout/issues/29", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/42", + "https://github.com/modelsuite-ai/modelsuite-qualification/issues/166", + "https://github.com/Scottcjn/rustchain-bounties/issues/13457", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/658", + "https://github.com/johnchampaign/star-wars-rebellion/issues/426", + "https://github.com/UnitOneAI/SecuritySkills/issues/1526", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/218", + "https://github.com/Scottcjn/rustchain-bounties/issues/13904", + "https://github.com/charles-openclaw/charles-microbounties/issues/1482", + "https://github.com/Scottcjn/rustchain-bounties/issues/12890", + "https://github.com/vansh-09/BountyScout/issues/465", + "https://github.com/claude-builders-bounty/claude-builders-bounty/issues/2882", + "https://github.com/charles-openclaw/charles-microbounties/issues/3097", + "https://github.com/xevrion-v2/agent-playground/issues/6799", + "https://github.com/mergeos-bounties/Lappa/issues/53", + "https://github.com/charles-openclaw/charles-microbounties/issues/2731", + "https://github.com/owenshen0907/evomap-console/issues/1", + "https://github.com/NovaSector/NovaSector/issues/7571", + "https://github.com/motioneye-project/motioneye/issues/3299", + "https://github.com/charles-openclaw/charles-microbounties/issues/951", + "https://github.com/Jagadeeshftw/grainlify/issues/1509", + "https://github.com/codegraphtheory/hermes-profile-template/issues/12", + "https://github.com/Scottcjn/rustchain-bounties/issues/13882", + "https://github.com/ghc-cloneRepoStaging-scaAndRenovate2/14459_Randy-Snyder_0630_221254_ghc_gw1_failed/issues/9", + "https://github.com/charles-openclaw/charles-microbounties/issues/819", + "https://github.com/CounterpartyXCP/counterparty-core/issues/958", + "https://github.com/Scottcjn/rustchain-bounties/issues/12668", + "https://github.com/Scottcjn/rustchain-bounties/issues/13737", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2948", + "https://github.com/ZecHub/zechub/issues/1732", + "https://github.com/mergeos-bounties/NeraJob/issues/58", + "https://github.com/stashapp/stash/issues/1259", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/19", + "https://github.com/renaudgenard/TentOfTrials/issues/1", + "https://github.com/lobster-trap/zeroeye/issues/10", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/958", + "https://github.com/stxtxm/bitbrawler/issues/303", + "https://github.com/SolFoundry/solfoundry/issues/826", + "https://github.com/fishtvlvoe/ai-apply-skill/issues/1", + "https://github.com/manav8498/TentOfTrials/issues/3", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/918", + "https://github.com/PlakarKorp/hub/issues/4", + "https://github.com/charles-openclaw/charles-microbounties/issues/1148", + "https://github.com/Grainlify/Grainlify-Stellar-Contracts/issues/272", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/114", + "https://github.com/xevrion-v2/agent-playground/issues/8146", + "https://github.com/openmetaearth/me-hub/issues/265", + "https://github.com/Scottcjn/rustchain-bounties/issues/12724", + "https://github.com/openmetaearth/me-hub/issues/1247", + "https://github.com/BountyOnChain/StellarBounty/issues/169", + "https://github.com/greyw0rks/bountyscout/issues/128", + "https://github.com/UnitOneAI/SecuritySkills/issues/2417", + "https://github.com/BountyOnChain/StellarBounty/issues/58", + "https://github.com/eserlan/Codex-Cryptica/issues/1438", + "https://github.com/SailajaKuntamukkala/DO288-apps/issues/18", + "https://github.com/Scottcjn/rustchain-bounties/issues/15303", + "https://github.com/ZcashCommunityGrants/zcashcommunitygrants/issues/369", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/864", + "https://github.com/rethavonRueden3/cobra/issues/1", + "https://github.com/mergemint-mint/mergemint-contracts/issues/298", + "https://github.com/tscircuit/template-api-fake/issues/2", + "https://github.com/xevrion-v2/agent-playground/issues/687", + "https://github.com/johnchampaign/star-wars-rebellion/issues/454", + "https://github.com/UnitOneAI/SecuritySkills/issues/1326", + "https://github.com/Scottcjn/rustchain-bounties/issues/15235", + "https://github.com/Scottcjn/rustchain-bounties/issues/8936", + "https://github.com/MonoGame/MonoGame/issues/8821", + "https://github.com/UnitOneAI/SecuritySkills/issues/2102", + "https://github.com/Scottcjn/rustchain-bounties/issues/13788", + "https://github.com/ClankerNation/OpenAgents/issues/11", + "https://github.com/UnitOneAI/SecuritySkills/issues/634", + "https://github.com/charles-openclaw/charles-microbounties/issues/1170", "https://github.com/Scottcjn/bottube/issues/1313", - "https://github.com/greyw0rks/bountyscout/issues/113", - "https://github.com/openmetaearth/me-hub/issues/292", - "https://github.com/ImmutableSoft/ImmutableEcosystem/issues/24", - "https://github.com/runxhq/runx/issues/75", - "https://github.com/yeheskieltame/claudelance/issues/497", - "https://github.com/Scottcjn/rustchain-bounties/issues/13457", - "https://github.com/marqov-dev/marqov-sdk/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/1277", - "https://github.com/Scottcjn/rustchain-bounties/issues/13692", - "https://github.com/SecureBananaLabs/bug-bounty/issues/3715", - "https://github.com/Solar-Helix-Independent-Transport/allianceauth-corp-tools/issues/292", - "https://github.com/openmetaearth/me-hub/issues/89", - "https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/issues/1156", - "https://github.com/UnitOneAI/SecuritySkills/issues/1816", - "https://github.com/SecureBananaLabs/bug-bounty/issues/7123", - "https://github.com/xevrion-v2/agent-playground/issues/5086", - "https://github.com/mautic/mautic/issues/16261", - "https://github.com/mergeos-bounties/mergeos/issues/17", - "https://github.com/Scottcjn/rustchain-bounties/issues/14185", - "https://github.com/Scottcjn/rustchain-bounties/issues/12442", - "https://github.com/xevrion-v2/agent-playground/issues/4688", - "https://github.com/Scottcjn/clawrtc-rs/issues/1", - "https://github.com/Scottcjn/rustchain-bounties/issues/12170", - "https://github.com/ClankerNation/OpenAgents/issues/169", - "https://github.com/orchestration-agent/AgentOrchestration/issues/4930", - "https://github.com/charles-openclaw/charles-microbounties/issues/1538", - "https://github.com/NixOS/nixpkgs/issues/530990", - "https://github.com/aLexzzz430/Cognitive-OS/issues/5", - "https://github.com/honua-io/honua-server/issues/1981", - "https://github.com/organvm/peer-audited--behavioral-blockchain/issues/152", - "https://github.com/boundlessfi/bounties/issues/209", - "https://github.com/FeeiCN/FEEI.CN/issues/137", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3370", - "https://github.com/openmetaearth/me-hub/issues/1066", - "https://github.com/BountyOnChain/StellarBounty/issues/195", - "https://github.com/openmetaearth/me-hub/issues/12", - "https://github.com/charles-openclaw/charles-microbounties/issues/1590", + "https://github.com/charles-openclaw/charles-microbounties/issues/201", + "https://github.com/xevrion-v2/agent-playground/issues/2435", + "https://github.com/KOSASIH/pi-supernode/issues/90", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/265", + "https://github.com/dotnet/announcements/issues/410", + "https://github.com/aibtcdev/inference-marketplace/issues/17", + "https://github.com/charles-openclaw/charles-microbounties/issues/1375", + "https://github.com/rorz/whatwesee.space/issues/161", + "https://github.com/auscaster/frantic-board/issues/180", + "https://github.com/charles-openclaw/charles-microbounties/issues/1183", + "https://github.com/xevrion-v2/agent-playground/issues/7870", + "https://github.com/egoist/vue-content-loader/issues/18", + "https://github.com/StellarDevHub/soroban-playground/issues/829", + "https://github.com/mergeos-bounties/HIRI/issues/35", + "https://github.com/charles-openclaw/charles-microbounties/issues/773", + "https://github.com/charles-openclaw/charles-microbounties/issues/68", + "https://github.com/charles-openclaw/charles-microbounties/issues/1269", + "https://github.com/Scottcjn/rustchain-bounties/issues/13690", + "https://github.com/charles-openclaw/charles-microbounties/issues/1210", + "https://github.com/charles-openclaw/charles-microbounties/issues/264", + "https://github.com/charles-openclaw/charles-microbounties/issues/985", + "https://github.com/Scottcjn/Rustchain/issues/7728", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2527", + "https://github.com/charles-openclaw/charles-microbounties/issues/991", + "https://github.com/organvm/peer-audited--behavioral-blockchain/issues/34", + "https://github.com/weilixiong/TentOfTrials/issues/1", + "https://github.com/QuantumBFS/quantum.harness/issues/117", + "https://github.com/charles-openclaw/charles-microbounties/issues/922", + "https://github.com/Scottcjn/rustchain-bounties/issues/13791", + "https://github.com/Hazyshades/Sendly-Test-Repo/issues/20", + "https://github.com/bitaps-com/pybtc/issues/84", + "https://github.com/Imaginary-Horizons-Productions/BountyBot/issues/288", + "https://github.com/vansh-09/BountyScout/issues/181", + "https://github.com/UnitOneAI/SecuritySkills/issues/1003", + "https://github.com/ClankerNation/OpenAgents/issues/147", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/270", + "https://github.com/Flatts3000/productive-frogs/issues/185", + "https://github.com/Scottcjn/rustchain-bounties/issues/13663", + "https://github.com/auscaster/frantic-board/issues/204", + "https://github.com/Scottcjn/rustchain-bounties/issues/12346", + "https://github.com/Scottcjn/rustchain-bounties/issues/504", + "https://github.com/cakuki/tidewake/issues/168", + "https://github.com/monk-io/monk-plugin/issues/125", + "https://github.com/ramimbo/mergework/issues/935", + "https://github.com/UnitOneAI/SecuritySkills/issues/2388", + "https://github.com/Scottcjn/rustchain-bounties/issues/753", + "https://github.com/Scottcjn/rustchain-bounties/issues/13200", + "https://github.com/xevrion-v2/agent-playground/issues/6317", + "https://github.com/Daisuke134/anicca/issues/775", + "https://github.com/Scottcjn/rustchain-bounties/issues/14772", + "https://github.com/johnchampaign/star-wars-rebellion/issues/417", + "https://github.com/amaybaum-prod/label-studio/issues/102", + "https://github.com/Iamgoofball/-tg-station/issues/61", + "https://github.com/charles-openclaw/charles-microbounties/issues/1572", + "https://github.com/charles-openclaw/charles-microbounties/issues/1856", + "https://github.com/charles-openclaw/charles-microbounties/issues/422", + "https://github.com/charles-openclaw/charles-microbounties/issues/1881", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/846", + "https://github.com/3ni8ma/aarushkarak-website/issues/67", + "https://github.com/Ledger-Lenz/Ledgerlens-core/issues/133", + "https://github.com/Ikalus1988/MisakaNet/issues/498", + "https://github.com/lk251/agent-bounty-market/issues/6", + "https://github.com/Iamgoofball/-tg-station/issues/248", + "https://github.com/Scottcjn/rustchain-bounties/issues/15380", + "https://github.com/Azure/sap-edge-integration-cell-on-azure-accelerator/issues/45", + "https://github.com/UnitOneAI/SecuritySkills/issues/2096", + "https://github.com/mergeos-bounties/Loru/issues/195", + "https://github.com/vansh-09/BountyScout/issues/122", + "https://github.com/charles-openclaw/charles-microbounties/issues/1690", + "https://github.com/NSPG13/agent-bounties/issues/114", + "https://github.com/aibtcdev/x402-sponsor-relay/issues/284", + "https://github.com/Ikalus1988/MisakaNet/issues/379", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/39", + "https://github.com/vansh-09/BountyScout/issues/308", + "https://github.com/charles-openclaw/charles-microbounties/issues/3398", + "https://github.com/itzroberl/mi-pagina-web/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/1392", + "https://github.com/xevrion-v2/agent-playground/issues/5697", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/787", + "https://github.com/Kings9595/WaveMilestone/issues/22", + "https://github.com/charles-openclaw/charles-microbounties/issues/1486", + "https://github.com/xevrion-v2/agent-playground/issues/2", + "https://github.com/xevrion-v2/agent-playground/issues/2434", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/248", + "https://github.com/SecureBananaLabs/bug-bounty/issues/1677", + "https://github.com/xevrion-v2/agent-playground/issues/6032", + "https://github.com/ZSBRybnik/backend/issues/1250", + "https://github.com/auscaster/frantic-board/issues/295", + "https://github.com/NSPG13/agent-bounties/issues/358", + "https://github.com/greyw0rks/bountyscout/issues/74", + "https://github.com/xevrion-v2/agent-playground/issues/2964", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5978", + "https://github.com/Scottcjn/rustchain-bounties/issues/15243", + "https://github.com/auscaster/frantic-board/issues/50", + "https://github.com/xevrion-v2/agent-playground/issues/4969", + "https://github.com/ramimbo/mergework/issues/1010", + "https://github.com/google-agentic-commerce/a2a-x402/issues/144", + "https://github.com/UnitOneAI/SecuritySkills/issues/2749", + "https://github.com/token-works/fwa-relaunch/issues/6", + "https://github.com/Scottcjn/Rustchain/issues/4820", + "https://github.com/fluxerapp/fluxer-meta/issues/2", + "https://github.com/SecureBananaLabs/bug-bounty/issues/9290", + "https://github.com/INDIGOAZUL/la-tanda-web/issues/268", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/763", + "https://github.com/EvoMap/evolver/issues/588", + "https://github.com/greyw0rks/bountyscout/issues/54", + "https://github.com/mkrnx/BIES/issues/351", + "https://github.com/ThanhTrucSolutions/OriLang/issues/59", + "https://github.com/asaadnashed/bounty-autopilot/issues/1", + "https://github.com/johnchampaign/star-wars-rebellion/issues/47", + "https://github.com/Kings9595/WaveMilestone/issues/20", + "https://github.com/devpool-directory/devpool-directory/issues/5012", + "https://github.com/xevrion-v2/agent-playground/issues/5072", + "https://github.com/Iamgoofball/-tg-station/issues/238", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/19", + "https://github.com/fluxerapp/fluxer-meta/issues/8", + "https://github.com/lobster-trap/Kickama/issues/385", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/340", + "https://github.com/Scottcjn/rustchain-bounties/issues/15181", + "https://github.com/AzurTian/OnmyojiAutoScript/issues/170", + "https://github.com/UnitOneAI/SecuritySkills/issues/2105", + "https://github.com/shanselman/TinyToolTown/issues/675", + "https://github.com/victorjones6awpg/Casbin/issues/1", + "https://github.com/Scottcjn/rustchain-bounties/issues/15794", + "https://github.com/NSPG13/agent-bounties/issues/155", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/40", + "https://github.com/Scottcjn/bottube/issues/1410", + "https://github.com/Scottcjn/rustchain-bounties/issues/2074", + "https://github.com/MendPerformance/service-module-6542/issues/11", + "https://github.com/securitytxt/security-txt/issues/229", + "https://github.com/vansh-09/BountyScout/issues/353", + "https://github.com/Gryd-lock/grydlock-oracle-adapter/issues/13", + "https://github.com/Roxonn-FutureTech/Roxonn-Platform/issues/46", + "https://github.com/amaybaum-prod/V-Achilles/issues/25", + "https://github.com/Grainlify/Grainlify-Stellar-Contracts/issues/186", + "https://github.com/ScalaConsultants/mesmer/issues/592", + "https://github.com/auscaster/frantic-board/issues/55", "https://github.com/Scottcjn/rustchain-bounties/issues/8935", - "https://github.com/charles-openclaw/charles-microbounties/issues/8", - "https://github.com/UnitOneAI/SecuritySkills/issues/816", - "https://github.com/Scottcjn/contributors/issues/141", - "https://github.com/charles-openclaw/charles-microbounties/issues/1424", - "https://github.com/greyw0rks/bountyscout/issues/88", - "https://github.com/SecureBananaLabs/bug-bounty/issues/6696", - "https://github.com/dev-kp-eloper/BountyScout/issues/33", - "https://github.com/kcolbchain/depeg-monitor/issues/33", - "https://github.com/vansh-09/BountyScout/issues/179", - "https://github.com/greyw0rks/bountyscout/issues/77", + "https://github.com/SecureBananaLabs/bug-bounty/issues/7773", + "https://github.com/w5ohr/Dereth/issues/297", + "https://github.com/lobster-trap/TentOfTrials/issues/211", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/854", + "https://github.com/hyperlane-xyz/hyperlane-monorepo/issues/2850", + "https://github.com/nirium-protocol/nirium-sdk/issues/11", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/239", + "https://github.com/charles-openclaw/charles-microbounties/issues/3403", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1390", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/217", + "https://github.com/RatLoopz/sahidawa-india/issues/641", + "https://github.com/SecureBananaLabs/bug-bounty/issues/4397", + "https://github.com/MonoGame/MonoGame/issues/8120", "https://github.com/johnchampaign/star-wars-rebellion/issues/435", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/7", - "https://github.com/charles-openclaw/charles-microbounties/issues/1846", - "https://github.com/greyw0rks/bountyscout/issues/161", - "https://github.com/charles-openclaw/charles-microbounties/issues/3342", - "https://github.com/charles-openclaw/charles-microbounties/issues/1156", - "https://github.com/elnahomenick123/Gitea/issues/1", - "https://github.com/openmetaearth/me-hub/issues/1012", - "https://github.com/charles-openclaw/charles-microbounties/issues/2070", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5011", - "https://github.com/Scottcjn/rustchain-bounties/issues/13283", - "https://github.com/ozpool/devbounty-backend/issues/68", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5466", - "https://github.com/arian-gogani/nobulex/issues/17", - "https://github.com/charles-openclaw/charles-microbounties/issues/1940", - "https://github.com/xevrion-v2/agent-playground/issues/4845", - "https://github.com/Scottcjn/rustchain-bounties/issues/13596", - "https://github.com/vansh-09/BountyScout/issues/172", - "https://github.com/Scottcjn/Rustchain/issues/7478", - "https://github.com/auscaster/frantic-board/issues/167", - "https://github.com/Henry00IS/ShapeEditor/issues/17", - "https://github.com/Clawland-AI/picclaw/issues/24", - "https://github.com/UnitOneAI/SecuritySkills/issues/693", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/43", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/51", - "https://github.com/Scottcjn/rustchain-bounties/issues/14257", - "https://github.com/Spectral-Finance/lux/issues/57", - "https://github.com/bigearth/bitblog/issues/2", - "https://github.com/johnchampaign/star-wars-rebellion/issues/460", - "https://github.com/xevrion-v2/agent-playground/issues/4544", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/8", - "https://github.com/charles-openclaw/charles-microbounties/issues/57", - "https://github.com/vansh-09/BountyScout/issues/206", - "https://github.com/vansh-09/BountyScout/issues/85", - "https://github.com/xevrion-v2/agent-playground/issues/637", - "https://github.com/yarsa/nepal-compliance/issues/265", - "https://github.com/Nexmo/station/issues/1428", - "https://github.com/StellarDevHub/soroban-playground/issues/829", - "https://github.com/vhspace/goldenmcp/issues/30", - "https://github.com/SecureBananaLabs/bug-bounty/issues/7068", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1170", - "https://github.com/stxtxm/bitbrawler/issues/315", - "https://github.com/Scottcjn/rustchain-bounties/issues/13529", - "https://github.com/yosemite01/stellar-creator-portfolio/issues/744", - "https://github.com/johnchampaign/star-wars-rebellion/issues/399", - "https://github.com/Scottcjn/rustchain-bounties/issues/13761", - "https://github.com/Scottcjn/rustchain-bounties/issues/14307", - "https://github.com/libretro/stella2014-libretro/issues/40", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/136", - "https://github.com/charles-openclaw/charles-microbounties/issues/1146", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/865", - "https://github.com/Scottcjn/Rustchain/issues/7418", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/841", - "https://github.com/xevrion-v2/agent-playground/issues/4744", - "https://github.com/Scottcjn/rustchain-bounties/issues/12286", - "https://github.com/boundlessfi/bounties/issues/207", - "https://github.com/midnightntwrk/contributor-hub/issues/280", - "https://github.com/Scottcjn/Rustchain/issues/7117", - "https://github.com/ubiquity/business-development/issues/174", - "https://github.com/llvm/llvm-project/issues/204930", - "https://github.com/vansh-09/BountyScout/issues/175", - "https://github.com/UnitOneAI/SecuritySkills/issues/2491", - "https://github.com/vhspace/goldenmcp/issues/64", - "https://github.com/UnitOneAI/SecuritySkills/issues/1824", - "https://github.com/greyw0rks/bountyscout/issues/69", - "https://github.com/vansh-09/BountyScout/issues/237", - "https://github.com/Fouriercore/fourier-contracts/issues/87", - "https://github.com/claude-builders-bounty/claude-builders-bounty/issues/2882", - "https://github.com/ritik4ever/stellar-bounty-board/issues/230", - "https://github.com/Scottcjn/rustchain-bounties/issues/14033", - "https://github.com/charles-openclaw/charles-microbounties/issues/1691", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2540", - "https://github.com/charles-openclaw/charles-microbounties/issues/3086", - "https://github.com/UnitOneAI/SecuritySkills/issues/34", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2845", + "https://github.com/Replikanti/agentis-core/issues/816", + "https://github.com/ahrussell/costanza/issues/6", + "https://github.com/mergeos-bounties/mergeos/issues/239", + "https://github.com/jainhitesh9998/esignet/issues/18", + "https://github.com/Ikalus1988/MisakaNet/issues/173", + "https://github.com/organvm/peer-audited--behavioral-blockchain/issues/63", + "https://github.com/ramimbo/mergework/issues/321", + "https://github.com/charles-openclaw/charles-microbounties/issues/2223", + "https://github.com/charles-openclaw/charles-microbounties/issues/1349", + "https://github.com/123a-bcd/zeroeye/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/1421", + "https://github.com/Kings9595/WaveMilestone/issues/23", + "https://github.com/ritik4ever/stellar-bounty-board/issues/362", + "https://github.com/NSPG13/agent-bounties/issues/461", + "https://github.com/okalldal/lark/issues/568", + "https://github.com/thaohuynh14zc/GORM/issues/1", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4474", + "https://github.com/charles-openclaw/charles-microbounties/issues/1429", + "https://github.com/xevrion-v2/agent-playground/issues/6731", + "https://github.com/SecureBananaLabs/bug-bounty/issues/10960", + "https://github.com/xevrion-v2/agent-playground/issues/8144", + "https://github.com/mergeos-bounties/Loru/issues/242", + "https://github.com/mergemint-mint/mergemint-contracts/issues/292", + "https://github.com/verdikta/verdikta-applications/issues/19", + "https://github.com/charles-openclaw/charles-microbounties/issues/1208", + "https://github.com/ramimbo/mergework/issues/1114", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/830", + "https://github.com/Iamgoofball/-tg-station/issues/98", "https://github.com/MindFlowInteractive/quest-service/issues/371", - "https://github.com/Scottcjn/Rustchain/issues/7200", - "https://github.com/xevrion-v2/agent-playground/issues/2833", - "https://github.com/charles-openclaw/charles-microbounties/issues/871", - "https://github.com/SirPepperPot/EnhancedOverhaulRemixVersion/issues/11", - "https://github.com/carbon-design-system/carbon-for-ibm-dotcom/issues/12322", - "https://github.com/Scottcjn/rustchain-bounties/issues/12623", - "https://github.com/charles-openclaw/charles-microbounties/issues/2232", - "https://github.com/charles-openclaw/charles-microbounties/issues/1907", - "https://github.com/auscaster/frantic-board/issues/178", - "https://github.com/greyw0rks/bountyscout/issues/132", - "https://github.com/Reqrefusion/FreeCAD-Documentation-Project/issues/26", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5476", - "https://github.com/Scottcjn/rustchain-bounties/issues/12533", - "https://github.com/mergemint-mint/mergemint-contracts/issues/315", - "https://github.com/Kings9595/WaveMilestone/issues/42", - "https://github.com/nicodevtools/kickama-foxy-trials/issues/7", - "https://github.com/souleater06/mineagent/issues/5", - "https://github.com/charles-openclaw/charles-microbounties/issues/1399", - "https://github.com/vansh-09/BountyScout/issues/274", - "https://github.com/charles-openclaw/charles-microbounties/issues/812", - "https://github.com/charles-openclaw/charles-microbounties/issues/1821", - "https://github.com/xevrion-v2/agent-playground/issues/3", - "https://github.com/greyw0rks/bountyscout/issues/49", - "https://github.com/UnitOneAI/SecuritySkills/issues/1174", - "https://github.com/charles-openclaw/charles-microbounties/issues/1534", - "https://github.com/charles-openclaw/charles-microbounties/issues/1181", - "https://github.com/charles-openclaw/charles-microbounties/issues/981", - "https://github.com/SecureBananaLabs/bug-bounty/issues/7320", - "https://github.com/SecureBananaLabs/bug-bounty/issues/7319", - "https://github.com/WeaponMechanics/WeaponMechanics/issues/233", - "https://github.com/dwebagents/AgentPipe/issues/95", - "https://github.com/CredenceOrg/Credence-Contracts/issues/530", - "https://github.com/Scottcjn/rustchain-bounties/issues/14175", - "https://github.com/charles-openclaw/charles-microbounties/issues/952", - "https://github.com/charles-openclaw/charles-microbounties/issues/1303", - "https://github.com/UnitOneAI/SecuritySkills/issues/1576", - "https://github.com/auscaster/frantic-board/issues/61", - "https://github.com/Jagadeeshftw/grainlify/issues/1284", - "https://github.com/walletbeat/walletbeat/issues/865", - "https://github.com/SecureBananaLabs/bug-bounty/issues/9698", - "https://github.com/ClankerNation/OpenAgents/issues/147", - "https://github.com/Scottcjn/Rustchain/issues/7525", - "https://github.com/UnitOneAI/SecuritySkills/issues/1065", - "https://github.com/Scottcjn/ram-coffers/issues/662", - "https://github.com/charles-openclaw/charles-microbounties/issues/411", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1404", - "https://github.com/vansh-09/BountyScout/issues/223", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/98", - "https://github.com/johnchampaign/star-wars-rebellion/issues/468", - "https://github.com/charles-openclaw/charles-microbounties/issues/1462", - "https://github.com/123a-bcd/nailstorm-bounty-forge-358/issues/3", - "https://github.com/charles-openclaw/charles-microbounties/issues/1067", - "https://github.com/xevrion-v2/agent-playground/issues/4851", - "https://github.com/Scottcjn/rustchain-bounties/issues/13195", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3411", - "https://github.com/bolivian-peru/marketplace-service-template/issues/483", - "https://github.com/AstroxNetwork/agent_dart/issues/13", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/42", - "https://github.com/Scottcjn/rustchain-bounties/issues/14030", - "https://github.com/labmain/ai-agent-pay-demo/issues/30", - "https://github.com/Scottcjn/rustchain-bounties/issues/12738", - "https://github.com/RLHFlow/RLHF-Reward-Modeling/issues/62", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/745", - "https://github.com/charles-openclaw/charles-microbounties/issues/189", - "https://github.com/Scottcjn/rustchain-bounties/issues/13955", - "https://github.com/Scottcjn/Rustchain/issues/7126", - "https://github.com/codegraphtheory/hermes-profile-template/issues/91", - "https://github.com/unlock-protocol/unlock/issues/16191", - "https://github.com/vhspace/goldenmcp/issues/32", - "https://github.com/UnitOneAI/SecuritySkills/issues/1814", - "https://github.com/SecureBananaLabs/bug-bounty/issues/9859", - "https://github.com/Scottcjn/rustchain-bounties/issues/14526", - "https://github.com/lobster-trap/zeroeye/issues/5", - "https://github.com/Scottcjn/rustchain-bounties/issues/13904", - "https://github.com/joserivasgt/panama-me/issues/276", - "https://github.com/charles-openclaw/charles-microbounties/issues/1361", - "https://github.com/vansh-09/BountyScout/issues/145", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/50", - "https://github.com/Opty-Fi/defi-adapters/issues/7", - "https://github.com/nexmo-community/phone-number-pool-manager-node/issues/12", - "https://github.com/GruftNet/BOXMEOUT-STELLA/issues/18", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2202", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/341", - "https://github.com/xevrion-v2/agent-playground/issues/957", - "https://github.com/charles-openclaw/charles-microbounties/issues/1561", - "https://github.com/Core-Foundry/Task-Bounty/issues/4", - "https://github.com/charles-openclaw/charles-microbounties/issues/1541", - "https://github.com/openmetaearth/me-hub/issues/1027", - "https://github.com/auscaster/frantic-board/issues/60", - "https://github.com/pollar-xyz/pollar-backoffice/issues/12", - "https://github.com/charles-openclaw/charles-microbounties/issues/1867", - "https://github.com/esi/esi-issues/issues/1290", - "https://github.com/BruceFeIix/picker/issues/2510", - "https://github.com/Scottcjn/contributors/issues/159", - "https://github.com/UnsafeLabs/Coolify-Rust-v4/issues/1", - "https://github.com/xevrion-v2/agent-playground/issues/4862", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/918", - "https://github.com/UnitOneAI/SecuritySkills/issues/1326", + "https://github.com/Scottcjn/rustchain-bounties/issues/15264", + "https://github.com/xevrion-v2/agent-playground/issues/3721", + "https://github.com/Scottcjn/rustchain-bounties/issues/13378", + "https://github.com/charles-openclaw/charles-microbounties/issues/1622", + "https://github.com/connect-boiz/soroban-security-scanner/issues/433", + "https://github.com/123a-bcd/nailstorm-bounty-forge-358/issues/1", + "https://github.com/vpyr/mRL78/issues/3", + "https://github.com/danny-avila/LibreChat/issues/7702", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2776", + "https://github.com/vansh-09/BountyScout/issues/183", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/668", + "https://github.com/johnchampaign/star-wars-rebellion/issues/538", + "https://github.com/aashu91/robinhood-evm-mcp/issues/6", + "https://github.com/monk-io/monk-plugin/issues/12", + "https://github.com/3ni8ma/aarushkarak-website/issues/83", + "https://github.com/Iamgoofball/-tg-station/issues/169", + "https://github.com/relayhop/sn-monetization-runtime/issues/49", + "https://github.com/UnitOneAI/SecuritySkills/issues/541", + "https://github.com/xevrion-v2/agent-playground/issues/6733", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3213", + "https://github.com/ClankerNation/OpenAgents/issues/13", + "https://github.com/mcdope/pam_usb/issues/413", + "https://github.com/Scottcjn/rustchain-bounties/issues/12564", + "https://github.com/mergemint-mint/mergemint-contracts/issues/261", + "https://github.com/pollar-xyz/pollar-backoffice/issues/28", + "https://github.com/Scottcjn/bottube/issues/647", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2976", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/641", + "https://github.com/Scottcjn/rustchain-bounties/issues/15139", + "https://github.com/charles-openclaw/charles-microbounties/issues/117", + "https://github.com/ramimbo/mergework/issues/322", + "https://github.com/Scottcjn/rustchain-bounties/issues/15044", + "https://github.com/mergeos-bounties/Gomi/issues/27", + "https://github.com/JSONbored/gittensory/issues/2308", + "https://github.com/Scottcjn/rustchain-bounties/issues/440", + "https://github.com/SecureBananaLabs/bug-bounty/issues/10909", + "https://github.com/3ni8ma/aarushkarak-website/issues/132", + "https://github.com/paraloom-labs/paraloom-core/issues/510", + "https://github.com/paraloom-labs/paraloom-core/issues/549", + "https://github.com/Conxian/Conxian/issues/504", + "https://github.com/charles-openclaw/charles-microbounties/issues/1378", + "https://github.com/dev-kp-eloper/BountyScout/issues/552", + "https://github.com/charles-openclaw/charles-microbounties/issues/2192", + "https://github.com/vansh-09/BountyScout/issues/192", + "https://github.com/Scottcjn/rustchain-bounties/issues/13630", + "https://github.com/Scottcjn/rustchain-bounties/issues/12889", + "https://github.com/britak420/Mininet/issues/66", + "https://github.com/dev-kp-eloper/BountyScout/issues/533", + "https://github.com/TerraTectra/autotools-hub/issues/76", + "https://github.com/jgeraigery/AutoPrompt-AI-TESt/issues/15", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/860", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/659", + "https://github.com/Scottcjn/rustchain-bounties/issues/14760", + "https://github.com/Sudeep72/doc-nm/issues/3", + "https://github.com/charles-openclaw/charles-microbounties/issues/2233", + "https://github.com/Carbon-Ledger-stellar/carbonledger-bounty/issues/20", + "https://github.com/jerome-queck/clarifold/issues/81", + "https://github.com/Mint-Claw/content-split/issues/1", + "https://github.com/organvm/peer-audited--behavioral-blockchain/issues/84", + "https://github.com/xevrion-v2/agent-playground/issues/8072", + "https://github.com/moorcheh-ai/memanto/issues/639", + "https://github.com/Scottcjn/Rustchain/issues/2176", + "https://github.com/greyw0rks/bountyscout/issues/343", + "https://github.com/openmetaearth/me-hub/issues/92", "https://github.com/SecureBananaLabs/bug-bounty/issues/2517", - "https://github.com/Nexussyn/ai-growth-platform/issues/3", - "https://github.com/Yuliya65/AutoAgents/issues/16", - "https://github.com/charles-openclaw/charles-microbounties/issues/202", - "https://github.com/ramimbo/mergework/issues/644", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/271", - "https://github.com/cuentaprueba244w-dotcom/zeroeye/issues/5", - "https://github.com/amaybaum-prod/shopware/issues/148", - "https://github.com/charles-openclaw/charles-microbounties/issues/1487", - "https://github.com/johnchampaign/star-wars-rebellion/issues/13", - "https://github.com/SecureBananaLabs/bug-bounty/issues/6727", - "https://github.com/UnitOneAI/SecuritySkills/issues/2501", - "https://github.com/vansh-09/BountyScout/issues/189", - "https://github.com/Scottcjn/rustchain-bounties/issues/13224", - "https://github.com/UnitOneAI/SecuritySkills/issues/383", - "https://github.com/charles-openclaw/charles-microbounties/issues/1212", - "https://github.com/ClankerNation/OpenAgents/issues/26", - "https://github.com/okalldal/lark/issues/273", - "https://github.com/jeremysecondstate/portfolio-risk-cockpit/issues/77", - "https://github.com/charles-openclaw/charles-microbounties/issues/1418", - "https://github.com/Scottcjn/Rustchain/issues/6540", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2523", - "https://github.com/chainreactors/picker/issues/1276", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/787", - "https://github.com/UnsafeLabs/RFC-5322/issues/1", - "https://github.com/SecureBananaLabs/bug-bounty/issues/3981", - "https://github.com/charles-openclaw/charles-microbounties/issues/1769", - "https://github.com/Saiaaax/CyberNinja-Dojo/issues/10", - "https://github.com/CTristan/lobotomy-corporation-mods/issues/155", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5169", - "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/80", - "https://github.com/stefanoviana/deepalpha/issues/21", - "https://github.com/lk251/agent-bounty-market/issues/10", - "https://github.com/charles-openclaw/charles-microbounties/issues/3385", - "https://github.com/charles-openclaw/charles-microbounties/issues/2088", - "https://github.com/Scottcjn/Rustchain/issues/6624", - "https://github.com/charles-openclaw/charles-microbounties/issues/49", - "https://github.com/UnitOneAI/SecuritySkills/issues/2432", - "https://github.com/vansh-09/BountyScout/issues/205", - "https://github.com/qtop/qtop/issues/357", - "https://github.com/openmetaearth/me-hub/issues/265", - "https://github.com/souleater06/mineagent/issues/3", - "https://github.com/joserivasgt/panama-me/issues/222", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/919", + "https://github.com/greyw0rks/bountyscout/issues/99", + "https://github.com/charles-openclaw/charles-microbounties/issues/950", + "https://github.com/charles-openclaw/charles-microbounties/issues/1867", + "https://github.com/SolFoundry/solfoundry/issues/852", + "https://github.com/ClankerNation/OpenAgents/issues/197", + "https://github.com/auscaster/frantic-board/issues/275", + "https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/issues/444", + "https://github.com/charles-openclaw/charles-microbounties/issues/1780", + "https://github.com/pekral/cursor-rules/issues/587", + "https://github.com/AReid987/aigency-v1.0.0/issues/224", + "https://github.com/canfieldjuan/atlas-portfolio/issues/313", + "https://github.com/StellarLend/stellarlend-contracts/issues/1238", + "https://github.com/nextcloud/passman/issues/511", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/757", + "https://github.com/GabrielGLevine/wandering-inn-rpg/issues/114", + "https://github.com/xevrion-v2/agent-playground/issues/3829", + "https://github.com/lablab-ai/community-content/issues/462", + "https://github.com/greyw0rks/bountyscout/issues/14", + "https://github.com/toon-protocol/toon-client/issues/157", + "https://github.com/aashu91/robinhood-evm-mcp/issues/5", + "https://github.com/nicodevtools/kickama-foxy-trials/issues/13", + "https://github.com/vansh-09/BountyScout/issues/274", + "https://github.com/Scottcjn/rustchain-bounties/issues/13543", + "https://github.com/jbilcke-hf/clapper/issues/10", + "https://github.com/NSPG13/agent-bounties/issues/164", + "https://github.com/johnchampaign/star-wars-rebellion/issues/451", + "https://github.com/lobster-trap/zeroeye/issues/89", + "https://github.com/niumeta/niumeta/issues/33", + "https://github.com/ramimbo/mergework/issues/164", + "https://github.com/JoeyChen-exploration/showdown_agent/issues/10", + "https://github.com/xevrion-v2/agent-playground/issues/6094", + "https://github.com/monk-io/monk-plugin/issues/151", + "https://github.com/charles-openclaw/charles-microbounties/issues/662", + "https://github.com/3ni8ma/aarushkarak-website/issues/33", + "https://github.com/charles-openclaw/charles-microbounties/issues/3343", + "https://github.com/ClankerNation/OpenAgents/issues/66", + "https://github.com/freedom-winds/BountyScout/issues/191", + "https://github.com/charles-openclaw/charles-microbounties/issues/3397", + "https://github.com/GoodDollar/GoodWidget/issues/85", + "https://github.com/Scottcjn/Rustchain/issues/7411", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/227", + "https://github.com/Jonnyton/Workflow/issues/1131", + "https://github.com/sorosave-protocol/frontend/issues/16", + "https://github.com/warpspeedopen-source/warpspeed-bounties/issues/4", + "https://github.com/Tarsnap/tarsnap/issues/733", + "https://github.com/souleater06/mineagent/issues/21", + "https://github.com/charles-openclaw/charles-microbounties/issues/1372", + "https://github.com/xevrion-v2/agent-playground/issues/3723", + "https://github.com/Scottcjn/rustchain-bounties/issues/13953", + "https://github.com/mergeos-bounties/Gomi/issues/41", + "https://github.com/charles-openclaw/charles-microbounties/issues/851", + "https://github.com/auscaster/frantic-board/issues/156", + "https://github.com/DimaMend/AutoPrompt/issues/13", + "https://github.com/charles-openclaw/charles-microbounties/issues/961", + "https://github.com/openmetaearth/me-hub/issues/246", + "https://github.com/tfish1714/WinsPool/issues/87", + "https://github.com/NSPG13/agent-bounties/issues/3", + "https://github.com/xevrion-v2/agent-playground/issues/5427", + "https://github.com/Jonnyton/Workflow/issues/1034", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2959", + "https://github.com/NSPG13/agent-bounties/issues/476", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/831", + "https://github.com/RonenSdemocorp-mend/AutoGPT/issues/18", + "https://github.com/openmetaearth/me-hub/issues/384", + "https://github.com/greyw0rks/bountyscout/issues/35", + "https://github.com/Scottcjn/rustchain-bounties/issues/14069", + "https://github.com/Scottcjn/rustchain-bounties/issues/14036", + "https://github.com/SecureBananaLabs/bug-bounty/issues/10886", + "https://github.com/lobster-trap/Kickama/issues/185", + "https://github.com/charles-openclaw/charles-microbounties/issues/132", + "https://github.com/3ni8ma/aarushkarak-website/issues/112", + "https://github.com/xevrion-v2/agent-playground/issues/6661", + "https://github.com/Scottcjn/rustchain-bounties/issues/293", + "https://github.com/charles-openclaw/charles-microbounties/issues/1428", + "https://github.com/mergeos-bounties/NeraJob/issues/22", + "https://github.com/charles-openclaw/charles-microbounties/issues/3100", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/420", + "https://github.com/verdikta/verdikta-applications/issues/21", + "https://github.com/carldanley/homelab/issues/1327", + "https://github.com/mergeos-bounties/Loru/issues/194", + "https://github.com/heathivorjocelyn6/jwt/issues/1", + "https://github.com/CellularPrivacy/Android-IMSI-Catcher-Detector/issues/489", + "https://github.com/h0tp-ftw/ankimon/issues/649", + "https://github.com/Scottcjn/rustchain-bounties/issues/300", + "https://github.com/mergeos-bounties/Loru/issues/246", + "https://github.com/dev-kp-eloper/BountyScout/issues/267", + "https://github.com/moorcheh-ai/memanto/issues/540", + "https://github.com/charles-openclaw/charles-microbounties/issues/1459", + "https://github.com/charles-openclaw/charles-microbounties/issues/1448", + "https://github.com/Iamgoofball/-tg-station/issues/118", + "https://github.com/mergeos-bounties/HIRI/issues/24", + "https://github.com/SecureBananaLabs/bug-bounty/issues/4516", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1166", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1388", + "https://github.com/Scottcjn/rustchain-bounties/issues/14444", + "https://github.com/ritik4ever/stellar-bounty-board/issues/376", + "https://github.com/allenai/reward-bench/issues/265", + "https://github.com/NSPG13/agent-bounties/issues/187", + "https://github.com/fuel-champions/technical-writing-bounty/issues/14", + "https://github.com/credfeto/recommendations-defi-dashboard/issues/249", + "https://github.com/mergeos-bounties/NeraJob/issues/57", + "https://github.com/UID9622/lh-standard-adapter/issues/5", + "https://github.com/blemaire-wavetel/AutoPrompt/issues/1", + "https://github.com/ritik4ever/stellar-bounty-board/issues/288", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/821", + "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/369", + "https://github.com/maida-ai/maida/issues/163", + "https://github.com/jgeraigery/nnabla/issues/50", + "https://github.com/runxhq/runx/issues/77", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/678", + "https://github.com/ramimbo/mergework/issues/946", + "https://github.com/Promptlab37/PEPAGI/issues/3", + "https://github.com/mergeos-bounties/mergeos/issues/244", + "https://github.com/Yuliya65/AutoPrompt/issues/10", + "https://github.com/paraloom-labs/paraloom-core/issues/507", + "https://github.com/arbadacarbaYK/gittr/issues/26", + "https://github.com/Ikalus1988/MisakaNet/issues/219", + "https://github.com/Ikalus1988/MisakaNet/issues/135", + "https://github.com/xevrion-v2/agent-playground/issues/722", + "https://github.com/Scottcjn/rustchain-bounties/issues/13874", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/10", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2531", + "https://github.com/charles-openclaw/charles-microbounties/issues/3136", + "https://github.com/mergeos-bounties/mergeos/issues/1", + "https://github.com/Yellow-Dog-Man/Resonite-Issues/issues/6823", + "https://github.com/Scottcjn/rustchain-bounties/issues/15146", + "https://github.com/vitorpamplona/amethyst/issues/383", + "https://github.com/kodaksax/Bounty-production/issues/642", + "https://github.com/dev-kp-eloper/BountyScout/issues/497", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/49", + "https://github.com/charles-openclaw/charles-microbounties/issues/1324", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/310", + "https://github.com/Scottcjn/rustchain-bounties/issues/14603", + "https://github.com/vansh-09/BountyScout/issues/54", + "https://github.com/charles-openclaw/charles-microbounties/issues/1479", + "https://github.com/rodrickparker11/TiKV/issues/1", + "https://github.com/mergeos-bounties/Gomi/issues/35", + "https://github.com/Scottcjn/rustchain-bounties/issues/15373", + "https://github.com/stakwork/sphinx-nav-fiber/issues/2402", + "https://github.com/johnchampaign/star-wars-rebellion/issues/579", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5020", + "https://github.com/Ikalus1988/MisakaNet/issues/254", + "https://github.com/xevrion-v2/agent-playground/issues/6139", + "https://github.com/lobster-trap/zeroeye/issues/172", + "https://github.com/RoseMark45/migrate/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/279", + "https://github.com/ClankerNation/OpenAgents/issues/180", + "https://github.com/snowdensb/AutoPrompt_demo/issues/7", + "https://github.com/SirPepperPot/EnhancedOverhaulRemixVersion/issues/12", + "https://github.com/Scottcjn/bottube/issues/1411", + "https://github.com/charles-openclaw/charles-microbounties/issues/1161", + "https://github.com/charles-openclaw/charles-microbounties/issues/1144", + "https://github.com/Kings9595/WaveMilestone/issues/45", + "https://github.com/charles-openclaw/charles-microbounties/issues/829", + "https://github.com/Scottcjn/rustchain-bounties/issues/16239", + "https://github.com/Scottcjn/rustchain-bounties/issues/12828", + "https://github.com/johnchampaign/star-wars-rebellion/issues/232", + "https://github.com/Iamgoofball/-tg-station/issues/114", + "https://github.com/devs-immortal/Paradise-Lost/issues/915", + "https://github.com/charles-openclaw/charles-microbounties/issues/2101", + "https://github.com/Jonnyton/Workflow/issues/1053", + "https://github.com/xevrion-v2/agent-playground/issues/8164", + "https://github.com/Scottcjn/rustchain-bounties/issues/13743", + "https://github.com/Scottcjn/rustchain-bounties/issues/13955", + "https://github.com/conduit-protocol/streamFi-contracts/issues/57", + "https://github.com/kcolbchain/scout/issues/9", + "https://github.com/xevrion-v2/agent-playground/issues/5131", + "https://github.com/joserivasgt/panama-me/issues/264", + "https://github.com/thaohuynh14zc/urfave-cli/issues/1", + "https://github.com/Scottcjn/rustchain-bounties/issues/13508", + "https://github.com/Yuliya65/AdalFlow/issues/22", + "https://github.com/Kings9595/WaveMilestone/issues/21", + "https://github.com/charles-openclaw/charles-microbounties/issues/2094", + "https://github.com/SmartDropLabs/smartdrop-contracts/issues/88", + "https://github.com/Scottcjn/rustchain-bounties/issues/14095", + "https://github.com/charles-openclaw/charles-microbounties/issues/1083", + "https://github.com/permission-protocol/deploy-gate/issues/50", + "https://github.com/lobster-trap/Kickama/issues/178", + "https://github.com/charles-openclaw/charles-microbounties/issues/927", + "https://github.com/xevrion-v2/agent-playground/issues/8301", + "https://github.com/charles-openclaw/charles-microbounties/issues/392", + "https://github.com/NSPG13/agent-bounties/issues/383", + "https://github.com/shadow6427/fun-benchmark-forge/issues/4", + "https://github.com/charles-openclaw/charles-microbounties/issues/1629", + "https://github.com/zephir-lang/zephir/issues/1280", "https://github.com/Dipraise1/Engram/issues/42", - "https://github.com/charles-openclaw/charles-microbounties/issues/1392", - "https://github.com/aozorayama45/Apache-DolphinScheduler/issues/1", - "https://github.com/gambit/gambit/issues/760", - "https://github.com/vansh-09/BountyScout/issues/178", - "https://github.com/0xdevcollins/useroutr/issues/142", - "https://github.com/charles-openclaw/charles-microbounties/issues/1468", - "https://github.com/charles-openclaw/charles-microbounties/issues/346", - "https://github.com/Scottcjn/rustchain-bounties/issues/13595", - "https://github.com/asaadnashed/bounty-autopilot/issues/11", - "https://github.com/charles-openclaw/charles-microbounties/issues/1359", - "https://github.com/SecOpsNews/news/issues/70306", - "https://github.com/UnitOneAI/SecuritySkills/issues/2376", - "https://github.com/ritik4ever/stellar-bounty-board/issues/258", - "https://github.com/Scottcjn/rustchain-bounties/issues/12335", - "https://github.com/SecureBananaLabs/bug-bounty/issues/1141", - "https://github.com/charles-openclaw/charles-microbounties/issues/1270", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3846", - "https://github.com/SecureBananaLabs/bug-bounty/issues/2534", - "https://github.com/ramimbo/mergework/issues/975", - "https://github.com/moorcheh-ai/memanto/issues/639", - "https://github.com/Scottcjn/rustchain-bounties/issues/14021", - "https://github.com/Scottcjn/rustchain-bounties/issues/12026", - "https://github.com/charles-openclaw/charles-microbounties/issues/1881", - "https://github.com/ramimbo/mergework/issues/576", - "https://github.com/mautic/mautic/issues/16242", - "https://github.com/BountyOnChain/StellarBounty/issues/185", - "https://github.com/mergemint-mint/mergemint-contracts/issues/288", - "https://github.com/SecureBananaLabs/bug-bounty/issues/8072", - "https://github.com/Scottcjn/rustchain-bounties/issues/12703", - "https://github.com/dwebagents/AgentPipe/issues/1460", - "https://github.com/ClankerNation/OpenAgents/issues/192", - "https://github.com/openmetaearth/me-hub/issues/78", - "https://github.com/charles-openclaw/charles-microbounties/issues/1467", - "https://github.com/UnitOneAI/SecuritySkills/issues/348", - "https://github.com/charles-openclaw/charles-microbounties/issues/1515", - "https://github.com/beertierchen/warera-prost/issues/11", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3570", - "https://github.com/charles-openclaw/charles-microbounties/issues/1430", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/789", - "https://github.com/dwebagents/AgentPipe/issues/107", - "https://github.com/mergemint-mint/mergemint-contracts/issues/265", - "https://github.com/bitcoin-dot-org/Bitcoin.org/issues/2524", - "https://github.com/tensorflow/serving/issues/2206", - "https://github.com/vansh-09/BountyScout/issues/100", + "https://github.com/charles-openclaw/charles-microbounties/issues/1311", + "https://github.com/ZSBRybnik/frontend/issues/362", + "https://github.com/Scottcjn/rustchain-bounties/issues/14076", + "https://github.com/greyw0rks/bountyscout/issues/296", + "https://github.com/charles-openclaw/charles-microbounties/issues/669", + "https://github.com/SecureBananaLabs/bug-bounty/issues/9127", + "https://github.com/Cloudz-319/zeroeye/issues/7", + "https://github.com/ImmortalDemonGod/money-agent/issues/32", + "https://github.com/charles-openclaw/charles-microbounties/issues/3357", + "https://github.com/Scottcjn/rustchain-bounties/issues/15091", + "https://github.com/SecureBananaLabs/bug-bounty/issues/3042", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/341", + "https://github.com/xevrion-v2/agent-playground/issues/445", + "https://github.com/xevrion-v2/agent-playground/issues/5979", + "https://github.com/Informant254/Nova-arsenal/issues/5", + "https://github.com/charles-openclaw/charles-microbounties/issues/1977", + "https://github.com/vansh-09/BountyScout/issues/180", + "https://github.com/charles-openclaw/charles-microbounties/issues/282", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2962", + "https://github.com/sarthak-fleet/starboard/issues/22", + "https://github.com/GitSafeBot/playground/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/1227", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3711", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/295", + "https://github.com/Scottcjn/trashclaw/issues/195", + "https://github.com/charles-openclaw/charles-microbounties/issues/1412", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/265", + "https://github.com/Liberdus/otc-swap-contract/issues/1", + "https://github.com/xevrion-v2/agent-playground/issues/7836", + "https://github.com/charles-openclaw/charles-microbounties/issues/1189", + "https://github.com/okalldal/lark/issues/432", + "https://github.com/tari-project/tari-ootle/issues/2308", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5013", + "https://github.com/mergeos-bounties/NeraJob/issues/17", "https://github.com/charles-openclaw/charles-microbounties/issues/2086", - "https://github.com/lobster-trap/TentOfTrials/issues/49", - "https://github.com/SecureBananaLabs/bug-bounty/issues/5978", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1148", - "https://github.com/Scottcjn/bottube/issues/1367", - "https://github.com/ritik4ever/stellar-bounty-board/issues/223", - "https://github.com/greyw0rks/bountyscout/issues/43", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3870", - "https://github.com/codegraphtheory/hermes-profile-template/issues/12", - "https://github.com/Scottcjn/rustchain-bounties/issues/13205", - "https://github.com/xevrion-v2/agent-playground/issues/2970", - "https://github.com/yosemite01/stellar-creator-portfolio/issues/814", - "https://github.com/RatLoopz/sahidawa-india/issues/641", - "https://github.com/onlybugs05/angular/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/793", - "https://github.com/greyw0rks/bountyscout/issues/118", - "https://github.com/NyxFoundation/speca/issues/86", - "https://github.com/Scottcjn/Rustchain/issues/7433", - "https://github.com/Scottcjn/rustchain-bounties/issues/13690", - "https://github.com/UnitOneAI/SecuritySkills/issues/2616", - "https://github.com/charles-openclaw/charles-microbounties/issues/776", - "https://github.com/charles-openclaw/charles-microbounties/issues/1521", - "https://github.com/AceDataCloud/OOBEIntegration/issues/4", - "https://github.com/bolivian-peru/os-moda/issues/3", - "https://github.com/johnchampaign/star-wars-rebellion/issues/141", - "https://github.com/ApexOpsStudio/ai-gitops-test-target/issues/2", - "https://github.com/vansh-09/BountyScout/issues/183", - "https://github.com/Nexussyn/ai-growth-engine/issues/4", - "https://github.com/charles-openclaw/charles-microbounties/issues/2173", - "https://github.com/xevrion-v2/agent-playground/issues/4539", - "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/166", - "https://github.com/orchestration-agent/AgentOrchestration/issues/3567", - "https://github.com/ramimbo/mergework/issues/316", - "https://github.com/davontepowlowsk1i/CockroachDB/issues/1", - "https://github.com/charles-openclaw/charles-microbounties/issues/347", - "https://github.com/charles-openclaw/charles-microbounties/issues/775", - "https://github.com/xevrion-v2/agent-playground/issues/5068", - "https://github.com/ritik4ever/stellar-bounty-board/issues/288", + "https://github.com/xevrion-v2/agent-playground/issues/1126", + "https://github.com/mautic/mautic/issues/16696", + "https://github.com/Br0ski777/x402-agent-tools/issues/6", + "https://github.com/yosemite01/stellar-creator-portfolio/issues/733", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/302", + "https://github.com/NSPG13/agent-bounties/issues/300", + "https://github.com/johnchampaign/star-wars-rebellion/issues/13", + "https://github.com/johnchampaign/star-wars-rebellion/issues/595", + "https://github.com/mergeos-bounties/PlantGuide/issues/17", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/651", + "https://github.com/Mahopanda/NanoSwarm/issues/1", + "https://github.com/Scottcjn/rustchain-bounties/issues/14072", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/28", + "https://github.com/mergeos-bounties/HIRI/issues/31", + "https://github.com/charles-openclaw/charles-microbounties/issues/3080", + "https://github.com/charles-openclaw/charles-microbounties/issues/828", + "https://github.com/explorerscat/cautious-octo-fishstick/issues/13", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/363", + "https://github.com/UnitOneAI/SecuritySkills/issues/188", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/131", + "https://github.com/auscaster/frantic-board/issues/164", + "https://github.com/SecureBananaLabs/bug-bounty/issues/1674", + "https://github.com/johnchampaign/star-wars-rebellion/issues/586", + "https://github.com/KodeStar/audiosilo-meta/issues/278", "https://github.com/zhangjiayang6835-cyber/ai-research/issues/151", - "https://github.com/charles-openclaw/charles-microbounties/issues/662", - "https://github.com/SecureBananaLabs/bug-bounty/issues/7872", - "https://github.com/cuentaprueba244w-dotcom/TentOfTrials/issues/3", - "https://github.com/tscircuit/circuit-json-to-step/issues/6", - "https://github.com/vansh-09/BountyScout/issues/17", + "https://github.com/SRM-Test-DEV/test-56/issues/4567", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/41", + "https://github.com/yeheskieltame/claudelance/issues/497", + "https://github.com/emperorkeww/Padel_klassement/issues/168", + "https://github.com/NSPG13/agent-bounties/issues/343", + "https://github.com/okalldal/lark/issues/348", + "https://github.com/Rinnegatamante/Android2Vita-Candidate-Ports-List/issues/150", + "https://github.com/batotype/aba-quickplot/issues/1", + "https://github.com/heckenmann/visual-agent/issues/99", + "https://github.com/Scottcjn/rustchain-bounties/issues/15319", + "https://github.com/akashaasgi-afk/gaiaspeak-website/issues/3", + "https://github.com/StellarCheckMate/Checkmate-Escrow/issues/1053", + "https://github.com/UnitOneAI/SecuritySkills/issues/2426", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2961", + "https://github.com/JSONbored/gittensory/issues/2170", + "https://github.com/Gitlawb/node/issues/189", + "https://github.com/daydreamsai/lucid-agents/issues/773", + "https://github.com/vansh-09/BountyScout/issues/188", + "https://github.com/ritik4ever/stellar-bounty-board/issues/374", + "https://github.com/Scottcjn/rustchain-bounties/issues/14764", + "https://github.com/vansh-09/BountyScout/issues/208", + "https://github.com/Scottcjn/rustchain-bounties/issues/12428", + "https://github.com/xevrion-v2/agent-playground/issues/235", + "https://github.com/monk-io/monk-plugin/issues/26", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/325", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/3212", + "https://github.com/PolicyEngine/policyengine-taxsim/issues/1087", + "https://github.com/cockroachdb/cockroach/issues/171598", + "https://github.com/openmetaearth/me-hub/issues/51", + "https://github.com/yosemite01/stellar-creator-portfolio/issues/738", + "https://github.com/verdikta/verdikta-roadmap/issues/4", + "https://github.com/Scottcjn/rustchain-bounties/issues/14070", "https://github.com/Scottcjn/rustchain-bounties/issues/13461", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2965", - "https://github.com/vpyr/mRL78/issues/3", - "https://github.com/ClankerNation/OpenAgents/issues/180", - "https://github.com/UnitOneAI/SecuritySkills/issues/1111", - "https://github.com/ramimbo/mergework/issues/321", - "https://github.com/NixOS/nixpkgs/issues/525304", - "https://github.com/SecureBananaLabs/bug-bounty/issues/1982", - "https://github.com/danny-avila/LibreChat/issues/7702", - "https://github.com/openmetaearth/me-hub/issues/48", - "https://github.com/Gloriachinedu/lumenflow-contracts/issues/75", - "https://github.com/charles-openclaw/charles-microbounties/issues/645", - "https://github.com/UnitOneAI/SecuritySkills/issues/2433", - "https://github.com/auscaster/frantic-board/issues/135", - "https://github.com/xevrion-v2/agent-playground/issues/1437", - "https://github.com/xevrion-v2/agent-playground/issues/3835", - "https://github.com/Scottcjn/rustchain-bounties/issues/13876", - "https://github.com/Scottcjn/Rustchain/issues/7256", - "https://github.com/SRM-Test-DEV/test-56/issues/3439", - "https://github.com/honua-io/honua-helm/issues/25", - "https://github.com/Scottcjn/rustchain-bounties/issues/13874", - "https://github.com/openmetaearth/me-hub/issues/907", - "https://github.com/Ikalus1988/MisakaNet/issues/280", - "https://github.com/halogenandtoast/ArkhamHorror/issues/4853", - "https://github.com/Digital-Nomad-Home/LinJuLi-MiniApp/issues/1", - "https://github.com/djjrip/kickama-cash-grab-hacks/issues/2", - "https://github.com/sponsorkit/sponsorkit.io/issues/70", - "https://github.com/Informant254/Nova-arsenal/issues/17", - "https://github.com/SolFoundry/solfoundry/issues/823", - "https://github.com/Scottcjn/rustchain-bounties/issues/14174", - "https://github.com/lk251/agent-bounty-market/issues/5", - "https://github.com/charles-openclaw/charles-microbounties/issues/933", - "https://github.com/Scottcjn/rustchain-bounties/issues/12668", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/1164", - "https://github.com/charles-openclaw/charles-microbounties/issues/335", - "https://github.com/CaptainFact/captain-fact/issues/93", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/800", - "https://github.com/LightningPiggy/website/issues/10", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/855", - "https://github.com/ClankerNation/OpenAgents/issues/155", - "https://github.com/organvm/peer-audited--behavioral-blockchain/issues/88", - "https://github.com/greyw0rks/bountyscout/issues/53", - "https://github.com/boundlessfi/bounties/issues/181", - "https://github.com/johnchampaign/star-wars-rebellion/issues/426", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/320", + "https://github.com/Scottcjn/Rustchain/issues/7271", + "https://github.com/archestra-ai/archestra/issues/4145", + "https://github.com/lobster-trap/TentOfTrials/issues/72", + "https://github.com/dev-kp-eloper/BountyScout/issues/561", + "https://github.com/9904099/zeroeye/issues/1", + "https://github.com/Kings9595/WaveMilestone/issues/17", + "https://github.com/nodejs/email/issues/293", + "https://github.com/UnsafeLabs/Coolify-Rust-v4/issues/1", + "https://github.com/vansh-09/BountyScout/issues/408", + "https://github.com/Iamgoofball/-tg-station/issues/159", + "https://github.com/Scottcjn/rustchain-bounties/issues/13432", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/640", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/657", + "https://github.com/charles-openclaw/charles-microbounties/issues/942", + "https://github.com/mergeos-bounties/HIRI/issues/37", + "https://github.com/cybersecify/OpenEASD/issues/76", + "https://github.com/greyw0rks/bountyscout/issues/86", + "https://github.com/Vonage-Community/tutorials-client_sdk-ios-android-js/issues/28", + "https://github.com/xevrion-v2/agent-playground/issues/2377", + "https://github.com/vansh-09/BountyScout/issues/469", + "https://github.com/xevrion-v2/agent-playground/issues/5461", + "https://github.com/Ikalus1988/MisakaNet/issues/312", + "https://github.com/3ni8ma/aarushkarak-website/issues/38", + "https://github.com/johnchampaign/star-wars-rebellion/issues/416", + "https://github.com/Scottcjn/rustchain-bounties/issues/14177", + "https://github.com/vansh-09/BountyScout/issues/334", + "https://github.com/izolyte/Longtake/issues/74", + "https://github.com/UnitOneAI/SecuritySkills/issues/1741", + "https://github.com/SecureBananaLabs/bug-bounty/issues/6696", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/3238", + "https://github.com/greyw0rks/bountyscout/issues/109", + "https://github.com/pollar-xyz/pollar-telegram-shop-template/issues/1", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3055", + "https://github.com/mpfaffenberger/space_sim/issues/8", + "https://github.com/Vonage/vonage-media-transformers-samples/issues/27", + "https://github.com/greyw0rks/bountyscout/issues/67", + "https://github.com/Scottcjn/rustchain-bounties/issues/16222", + "https://github.com/codegraphtheory/hermes-profile-template/issues/14", + "https://github.com/Scottcjn/rustchain-bounties/issues/15302", + "https://github.com/UnitOneAI/SecuritySkills/issues/1202", + "https://github.com/charles-openclaw/charles-microbounties/issues/1770", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/85", + "https://github.com/Scottcjn/Rustchain/issues/6923", + "https://github.com/SecureBananaLabs/bug-bounty/issues/5019", + "https://github.com/mergeos-bounties/HIRI/issues/93", + "https://github.com/3ni8ma/aarushkarak-website/issues/68", + "https://github.com/Scottcjn/rustchain-bounties/issues/15263", + "https://github.com/mergemint-mint/mergemint-contracts/issues/296", + "https://github.com/tenstorrent/tt-metal/issues/48311", + "https://github.com/codeboost-tr/zeroeye/issues/19", + "https://github.com/Scottcjn/legend-of-elya-n64/issues/10", + "https://github.com/xevrion-v2/agent-playground/issues/6802", + "https://github.com/vansh-09/BountyScout/issues/79", + "https://github.com/xevrion-v2/agent-playground/issues/1072", + "https://github.com/Scottcjn/rustchain-bounties/issues/12900", + "https://github.com/Jonnyton/Workflow/issues/1169", + "https://github.com/Iamgoofball/-tg-station/issues/102", + "https://github.com/Scottcjn/rustchain-bounties/issues/13261", + "https://github.com/jackjin1997/TentOfTrials/issues/2", + "https://github.com/xevrion-v2/agent-playground/issues/2394", + "https://github.com/charles-openclaw/charles-microbounties/issues/638", + "https://github.com/Scottcjn/Rustchain/issues/2239", + "https://github.com/greyw0rks/bountyscout/issues/124", + "https://github.com/bitcoin-dot-org/Bitcoin.org/issues/4805", + "https://github.com/ramimbo/mergework/issues/846", + "https://github.com/Scottcjn/rustchain-bounties/issues/16165", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/322", + "https://github.com/gibwork/gibwork-website/issues/129", + "https://github.com/xevrion-v2/agent-playground/issues/6576", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/672", + "https://github.com/3ni8ma/aarushkarak-website/issues/61", + "https://github.com/Scottcjn/rustchain-bounties/issues/15321", + "https://github.com/Scottcjn/rustchain-bounties/issues/13646", + "https://github.com/relayhop/ClaudeEarnSelf-runtime/issues/214", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/269", + "https://github.com/Lafiya-xyz/Lafiya-docs/issues/123", + "https://github.com/Scottcjn/Rustchain/issues/7238", + "https://github.com/saddamzzz/2fa-bypasss/issues/2", + "https://github.com/mergeos-bounties/PlantGuide/issues/37", + "https://github.com/Scottcjn/rustchain-bounties/issues/15093", + "https://github.com/organvm/peer-audited--behavioral-blockchain/issues/83", + "https://github.com/mergemint-mint/mergemint-contracts/issues/313", + "https://github.com/Saber5656/gitquest/issues/37", + "https://github.com/scout-off/scout-off-contracts/issues/665", + "https://github.com/Iamgoofball/-tg-station/issues/89", + "https://github.com/xevrion-v2/agent-playground/issues/6973", + "https://github.com/Bounty-Hub/.github/issues/2", + "https://github.com/mergeos-bounties/NeraJob/issues/20", + "https://github.com/Scottcjn/rustchain-bounties/issues/14222", + "https://github.com/charles-openclaw/charles-microbounties/issues/1619", + "https://github.com/Scottcjn/rustchain-bounties/issues/14089", + "https://github.com/Scottcjn/rustchain-bounties/issues/13649", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/201", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/2956", + "https://github.com/StellarLend/Stellarlend-frontend/issues/610", + "https://github.com/UnitOneAI/SecuritySkills/issues/1623", + "https://github.com/Xela112233/Derpack-X/issues/90", + "https://github.com/linguaFoundation/lingualayer/issues/133", + "https://github.com/FreeCAD/FreeCAD/issues/5810", + "https://github.com/renaudgenard/zeroeye/issues/1", + "https://github.com/vansh-09/BountyScout/issues/282", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/654", + "https://github.com/FreeCAD/FPA/issues/477", + "https://github.com/ERA-Projects/era-project-eng/issues/752", + "https://github.com/Scottcjn/rustchain-bounties/issues/11196", + "https://github.com/SecureBananaLabs/bug-bounty/issues/6515", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/761", + "https://github.com/Scottcjn/rustchain-bounties/issues/12351", + "https://github.com/Scottcjn/Rustchain/issues/6373", + "https://github.com/vansh-09/BountyScout/issues/124", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/256", + "https://github.com/harmoniqs/Piccolo.jl/issues/197", + "https://github.com/vansh-09/BountyScout/issues/22", + "https://github.com/sneakers-the-rat/ImportantCode/issues/97", + "https://github.com/NirShaharabani/verdaccio/issues/382", + "https://github.com/aLexzzz430/Cognitive-OS/issues/5", + "https://github.com/CabinetOnFire/tgstation/issues/8", + "https://github.com/okalldal/lark/issues/274", + "https://github.com/amaybaum-prod/spectrum/issues/54", + "https://github.com/chetparker/x402-marketplace/issues/5", + "https://github.com/Scottcjn/rustchain-bounties/issues/15793", + "https://github.com/Jonnyton/Workflow/issues/1113", + "https://github.com/BountyOnChain/StellarBounty/issues/367", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/841", + "https://github.com/UnitOneAI/SecuritySkills/issues/773", + "https://github.com/vansh-09/BountyScout/issues/193", + "https://github.com/SecureBananaLabs/bug-bounty/issues/4479", + "https://github.com/SlimReaperDevs/alfred-os/issues/8", + "https://github.com/charles-openclaw/charles-microbounties/issues/2839", + "https://github.com/mergeos-bounties/PlantGuide/issues/48", + "https://github.com/ghc-cloneRepoStaging-scaAndRenovate2/14459_Randy-Snyder_0630_221254_ghc_gw1_failed/issues/7", + "https://github.com/greyw0rks/bountyscout/issues/92", + "https://github.com/3ni8ma/aarushkarak-website/issues/56", + "https://github.com/charles-openclaw/charles-microbounties/issues/925", + "https://github.com/Scottcjn/rustchain-bounties/issues/12445", + "https://github.com/openmetaearth/me-hub/issues/86", + "https://github.com/gibwork/gibwork-website/issues/11", + "https://github.com/dev-kp-eloper/BountyScout/issues/522", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/836", + "https://github.com/Elyonar/einvoice-go/issues/3", + "https://github.com/UnitOneAI/SecuritySkills/issues/348", + "https://github.com/ClankerNation/OpenAgents/issues/178", + "https://github.com/3ni8ma/aarushkarak-website/issues/66", + "https://github.com/charles-openclaw/charles-microbounties/issues/1425", + "https://github.com/temporalio/temporal/issues/10699", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/652", + "https://github.com/monk-io/monk-plugin/issues/16", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/88", + "https://github.com/charles-openclaw/charles-microbounties/issues/22", + "https://github.com/warpspeedopen-source/warpspeed-bounties/issues/108", + "https://github.com/AdguardTeam/AdguardFilters/issues/235284", + "https://github.com/NSPG13/agent-bounties/issues/141", + "https://github.com/Nexussyn/ai-growth-engine/issues/1", + "https://github.com/organvm/peer-audited--behavioral-blockchain/issues/152", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/138", + "https://github.com/Vikingr2023/awesome-agent-bounties/issues/300", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/130", + "https://github.com/greyw0rks/bountyscout/issues/19", + "https://github.com/charles-openclaw/charles-microbounties/issues/585", + "https://github.com/yosemite01/stellar-creator-portfolio/issues/735", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/153", + "https://github.com/mergeos-bounties/PlantGuide/issues/25", + "https://github.com/mergeos-bounties/PlantGuide/issues/29", + "https://github.com/Scottcjn/Rustchain/issues/7181", + "https://github.com/amaybaum-prod/shopware/issues/134", + "https://github.com/Creators-of-Aeronautics/Simulated-Project/issues/1163", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/439", + "https://github.com/Krasnov-Industries/Tiny-Station/issues/47", + "https://github.com/Scottcjn/rustchain-bounties/issues/13561", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2762", + "https://github.com/Scottcjn/bottube/issues/1374", + "https://github.com/xevrion-v2/agent-playground/issues/4851", + "https://github.com/greyw0rks/bountyscout/issues/126", + "https://github.com/vansh-09/BountyScout/issues/194", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/848", + "https://github.com/warpspeedopen-source/warpspeed-bounties/issues/9", + "https://github.com/vansh-09/BountyScout/issues/147", + "https://github.com/Iamgoofball/-tg-station/issues/59", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2181", + "https://github.com/Scottcjn/rustchain-bounties/issues/16254", + "https://github.com/ramimbo/mergework/issues/722", + "https://github.com/mergeos-bounties/BeeAR/issues/41", + "https://github.com/xevrion-v2/agent-playground/issues/4790", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/436", + "https://github.com/xevrion-v2/agent-playground/issues/8168", + "https://github.com/xevrion-v2/agent-playground/issues/3831", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2523", + "https://github.com/charles-openclaw/charles-microbounties/issues/1812", + "https://github.com/greyw0rks/bountyscout/issues/308", + "https://github.com/nltk/nltk/issues/3603", + "https://github.com/mergeos-bounties/PoseGuide/issues/57", + "https://github.com/monk-io/monk-plugin/issues/10", + "https://github.com/RatLoopz/sahidawa-india/issues/709", + "https://github.com/charles-openclaw/charles-microbounties/issues/3386", + "https://github.com/johnchampaign/star-wars-rebellion/issues/575", + "https://github.com/bolivian-peru/marketplace-service-template/issues/485", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/38", + "https://github.com/boundlessfi/boundless/issues/636", + "https://github.com/xevrion-v2/agent-playground/issues/5682", + "https://github.com/ramimbo/mergework/issues/512", + "https://github.com/xevrion-v2/agent-playground/issues/4550", + "https://github.com/greyw0rks/bountyscout/issues/203", + "https://github.com/mergeos-bounties/Gomi/issues/48", + "https://github.com/MM0x02/RSS-Push/issues/553", + "https://github.com/charles-openclaw/charles-microbounties/issues/823", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/294", + "https://github.com/dev-kp-eloper/BountyScout/issues/556", + "https://github.com/mautic/mautic/issues/16194", + "https://github.com/warpspeedopen-source/warpspeed-bounties/issues/2", + "https://github.com/hspahic-cs/cobblemon-server/issues/154", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3438", + "https://github.com/jessedaustin93/Open-Aeon/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/1138", + "https://github.com/cakuki/tidewake/issues/231", + "https://github.com/mergeos-bounties/NeraJob/issues/13", + "https://github.com/ruohong2018/ruohong2018.github.io/issues/852", + "https://github.com/Iamgoofball/-tg-station/issues/237", + "https://github.com/Scottcjn/rustchain-bounties/issues/12304", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/920", + "https://github.com/archestra-ai/archestra/issues/4998", + "https://github.com/charles-openclaw/charles-microbounties/issues/1156", + "https://github.com/charles-openclaw/charles-microbounties/issues/646", + "https://github.com/charles-openclaw/charles-microbounties/issues/897", + "https://github.com/openmetaearth/me-hub/issues/1229", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/359", + "https://github.com/snowdensb/AutoPrompt_demo/issues/8", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/862", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/342", + "https://github.com/bolivian-peru/marketplace-service-template/issues/461", + "https://github.com/Digital-Nomad-Home/LinJuLi-MiniApp/issues/3", + "https://github.com/howe12/agents-radar/issues/83", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/249", + "https://github.com/clawhunter/clawhunter-skills/issues/4", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1174", + "https://github.com/shadow6427/AwesomeGesture/issues/4", + "https://github.com/charles-openclaw/charles-microbounties/issues/2254", + "https://github.com/charles-openclaw/charles-microbounties/issues/3133", + "https://github.com/flowopslab/flowopslab/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/817", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/494", + "https://github.com/theasshats/project-commonwealth/issues/240", + "https://github.com/Scottcjn/rustchain-bounties/issues/15182", + "https://github.com/Maesdongltara/Support/issues/27", + "https://github.com/Scottcjn/rustchain-bounties/issues/13198", + "https://github.com/nirium-protocol/nirium-sdk/issues/16", + "https://github.com/charles-openclaw/charles-microbounties/issues/14", + "https://github.com/UnitOneAI/SecuritySkills/issues/2062", + "https://github.com/ritik4ever/stellar-bounty-board/issues/245", + "https://github.com/Ikalus1988/MisakaNet/issues/354", + "https://github.com/NSPG13/agent-bounties/issues/337", + "https://github.com/walletbeat/walletbeat/issues/865", + "https://github.com/Iamgoofball/-tg-station/issues/148", + "https://github.com/lb1192176991-lab/zeroeye/issues/2", + "https://github.com/mergeos-bounties/NeraJob/issues/14", + "https://github.com/charles-openclaw/charles-microbounties/issues/1310", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/847", + "https://github.com/SecureBananaLabs/bug-bounty/issues/7581", + "https://github.com/charles-openclaw/charles-microbounties/issues/2829", + "https://github.com/Scottcjn/Rustchain/issues/6851", + "https://github.com/ritik4ever/stellar-bounty-board/issues/301", + "https://github.com/monk-io/monk-plugin/issues/113", + "https://github.com/xevrion-v2/agent-playground/issues/6538", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2833", + "https://github.com/INDIGOAZUL/la-tanda-web/issues/373", + "https://github.com/lobster-trap/SmartGesture/issues/463", + "https://github.com/drizzle-team/drizzle-orm/issues/1188", + "https://github.com/dwebagents/AgentPipe/issues/1910", + "https://github.com/SecureBananaLabs/bug-bounty/issues/3700", + "https://github.com/charles-openclaw/charles-microbounties/issues/1107", + "https://github.com/vansh-09/BountyScout/issues/430", + "https://github.com/mergeos-bounties/BeeAR/issues/54", + "https://github.com/vansh-09/BountyScout/issues/236", + "https://github.com/johnchampaign/star-wars-rebellion/issues/508", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2835", + "https://github.com/Scottcjn/rustchain-bounties/issues/15315", + "https://github.com/amaybaum-prod/label-studio/issues/45", + "https://github.com/gonka-ai/gonka/issues/1470", + "https://github.com/CodyTseng/jumble/issues/157", + "https://github.com/adventure-simulator-group/adventure-simulator/issues/186", + "https://github.com/hashgraph/hedera-agent-kit-js/issues/889", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/917", + "https://github.com/cocohub-mobileapp/cocohub-main/issues/16", + "https://github.com/mergeos-bounties/Gomi/issues/45", + "https://github.com/ramimbo/mergework/issues/944", + "https://github.com/nextcloud/passman-webextension/issues/310", + "https://github.com/vansh-09/BountyScout/issues/174", + "https://github.com/archestra-ai/archestra/issues/3787", + "https://github.com/monk-io/monk-plugin/issues/89", + "https://github.com/Scottcjn/rustchain-bounties/issues/13435", + "https://github.com/CredenceOrg/Credence-Contracts/issues/530", + "https://github.com/kernel-panic96/test-repo-staging/issues/5", + "https://github.com/mergeos-bounties/NokaMan/issues/66", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/654", + "https://github.com/SecureBananaLabs/bug-bounty/issues/3852", + "https://github.com/openmetaearth/me-hub/issues/292", + "https://github.com/Scottcjn/rustchain-bounties/issues/13650", + "https://github.com/livepeer/protocol/issues/656", + "https://github.com/mautic/mautic/issues/16261", + "https://github.com/mergeos-bounties/PlantGuide/issues/52", + "https://github.com/webpro255/awesome-ai-agent-attacks/issues/6", + "https://github.com/Ikalus1988/MisakaNet/issues/430", + "https://github.com/javelin-anticheat/py-workedtask/issues/2", "https://github.com/charles-openclaw/charles-microbounties/issues/633", - "https://github.com/qdrant/qdrant/issues/9241", - "https://github.com/charles-openclaw/charles-microbounties/issues/774", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/323", - "https://github.com/charles-openclaw/charles-microbounties/issues/1537", - "https://github.com/ramimbo/mergework/issues/1114", - "https://github.com/Scottcjn/bottube/issues/1447", - "https://github.com/mergemint-mint/mergemint-contracts/issues/241", - "https://github.com/Scottcjn/rustchain-bounties/issues/13634", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/134", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/339", - "https://github.com/charles-openclaw/charles-microbounties/issues/3347", - "https://github.com/vansh-09/BountyScout/issues/163", - "https://github.com/Scottcjn/rustchain-bounties/issues/13193", - "https://github.com/cocohub-mobileapp/cocohub-main/issues/18", - "https://github.com/paritytech/polkadot-sdk/issues/12190", - "https://github.com/kcolbchain/erc721-ai/issues/30", - "https://github.com/xevrion-v2/agent-playground/issues/690", - "https://github.com/Kings9595/WaveMilestone/issues/20", - "https://github.com/vhspace/goldenmcp/issues/31", - "https://github.com/Transparency-X/AVHERI/issues/2", - "https://github.com/SecureBananaLabs/bug-bounty/issues/6970", - "https://github.com/vansh-09/BountyScout/issues/167", - "https://github.com/boundlessfi/bounties/issues/214", - "https://github.com/Scottcjn/rustchain-bounties/issues/13903", - "https://github.com/charles-openclaw/charles-microbounties/issues/869", - "https://github.com/charles-openclaw/charles-microbounties/issues/2836", - "https://github.com/Proxyfan/Proxyfan/issues/929", - "https://github.com/charles-openclaw/charles-microbounties/issues/786", - "https://github.com/charles-openclaw/charles-microbounties/issues/5", - "https://github.com/greyw0rks/bountyscout/issues/97", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/912", - "https://github.com/UnitOneAI/SecuritySkills/issues/1665", - "https://github.com/unitystation/unitystation/issues/11222", - "https://github.com/Scottcjn/rustchain-bounties/issues/8937", - "https://github.com/charles-openclaw/charles-microbounties/issues/950", - "https://github.com/RatLoopz/sahidawa-india/issues/2438", - "https://github.com/koromerzhin/streamchat/issues/57", - "https://github.com/johnchampaign/star-wars-rebellion/issues/263", - "https://github.com/ritesh-1918/HELPDESK.AI/issues/2962", - "https://github.com/vansh-09/BountyScout/issues/229", - "https://github.com/charles-openclaw/charles-microbounties/issues/844", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/117", - "https://github.com/mergeos-bounties/mergeos/issues/13", - "https://github.com/usetrmnl/trmnl-firmware/issues/285", - "https://github.com/charles-openclaw/charles-microbounties/issues/1195", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/133", - "https://github.com/priyanshudumps/fuel-agent-kit/issues/3", - "https://github.com/UnitOneAI/SecuritySkills/issues/1110", - "https://github.com/Scottcjn/rustchain-bounties/issues/14524", - "https://github.com/Scottcjn/rustchain-bounties/issues/12350", - "https://github.com/okalldal/lark/issues/278", - "https://github.com/xevrion-v2/agent-playground/issues/5065", + "https://github.com/ChasarooniZ/pf2e-trigger-animations-collection/issues/18", + "https://github.com/Scottcjn/rustchain-bounties/issues/14220", + "https://github.com/HHS/simpler-grants-gov/issues/10634", + "https://github.com/SecureBananaLabs/bug-bounty/issues/8554", + "https://github.com/Gryd-lock/grydlock-oracle-adapter/issues/3", + "https://github.com/Gitlawb/node/issues/32", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1156", + "https://github.com/yeheskieltame/claudelance/issues/406", + "https://github.com/ClankerNation/OpenAgents/issues/110", + "https://github.com/zad111ak-ai/harvest/issues/1", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/102", + "https://github.com/mautic/mautic/issues/16188", + "https://github.com/Scottcjn/rustchain-bounties/issues/15298", + "https://github.com/johnchampaign/star-wars-rebellion/issues/403", + "https://github.com/GruftNet/BOXMEOUT-STELLA/issues/23", + "https://github.com/xevrion-v2/agent-playground/issues/6476", + "https://github.com/johnchampaign/star-wars-rebellion/issues/39", + "https://github.com/SecureBananaLabs/bug-bounty/issues/979", + "https://github.com/ramimbo/mergework/issues/1011", + "https://github.com/vansh-09/BountyScout/issues/452", + "https://github.com/charles-openclaw/charles-microbounties/issues/1464", + "https://github.com/ClankerNation/OpenAgents/issues/174", + "https://github.com/charles-openclaw/charles-microbounties/issues/354", + "https://github.com/auscaster/frantic-board/issues/293", + "https://github.com/StellarCheckMate/Checkmate-Escrow/issues/1066", + "https://github.com/magpiecapital/magpie-x402/issues/3", + "https://github.com/xevrion-v2/agent-playground/issues/3707", + "https://github.com/charles-openclaw/charles-microbounties/issues/631", + "https://github.com/charles-openclaw/charles-microbounties/issues/1457", + "https://github.com/nicodevtools/kickama-foxy-trials/issues/12", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/676", + "https://github.com/samvallad33/vestige/issues/91", + "https://github.com/Scottcjn/rustchain-bounties/issues/455", + "https://github.com/Tarsnap/tarsnap/issues/724", + "https://github.com/a-organvm/peer-audited--behavioral-blockchain/issues/149", + "https://github.com/charles-openclaw/charles-microbounties/issues/1458", + "https://github.com/NSPG13/agent-bounties/issues/125", + "https://github.com/vansh-09/BountyScout/issues/238", + "https://github.com/charles-openclaw/charles-microbounties/issues/878", + "https://github.com/Scottcjn/rustchain-bounties/issues/12987", + "https://github.com/johnchampaign/star-wars-rebellion/issues/632", + "https://github.com/OpenAgentsInc/openagents/issues/6760", + "https://github.com/Hazyshades/Sendly-Test-Repo/issues/73", + "https://github.com/ablac/Arena/issues/207", + "https://github.com/ramimbo/mergework/issues/283", + "https://github.com/coollabsio/coolify/issues/2346", + "https://github.com/SolFoundry/solfoundry/issues/823", + "https://github.com/mergeos-bounties/PlantGuide/issues/50", + "https://github.com/StellarAgent-AI-Agent-Payment-Rails/Stellar-agentic/issues/145", + "https://github.com/tari-project/wallet-benchmarks/issues/1", + "https://github.com/stellar-creator-portfolio/stellar-creator-portfolio-/issues/78", + "https://github.com/Jonnyton/Workflow/issues/1042", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/321", + "https://github.com/ritik4ever/stellar-bounty-board/issues/246", + "https://github.com/blemaire-wavetel/AutoPrompt/issues/8", + "https://github.com/mergeos-bounties/BloggerEasy/issues/30", + "https://github.com/runxhq/runx/issues/287", + "https://github.com/foxyManTou/kickama-foxy-trials/issues/1", + "https://github.com/charles-openclaw/charles-microbounties/issues/107", + "https://github.com/xevrion-v2/agent-playground/issues/8300", + "https://github.com/relayhop/sn-monetization-runtime/issues/69", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/588", + "https://github.com/charles-openclaw/charles-microbounties/issues/3254", + "https://github.com/charles-openclaw/charles-microbounties/issues/1326", + "https://github.com/Scottcjn/rustchain-bounties/issues/13248", + "https://github.com/himmelblau-idm/himmelblau/issues/1419", + "https://github.com/GhostieMostie/open-source-maintainer-ci-qa-kit-preview/issues/1", + "https://github.com/Scottcjn/rustchain-bounties/issues/15241", + "https://github.com/vansh-09/BountyScout/issues/17", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/837", + "https://github.com/auscaster/frantic-board/issues/203", + "https://github.com/magpiecapital/magpie-x402/issues/5", + "https://github.com/mergeos-bounties/PlantGuide/issues/14", + "https://github.com/auscaster/frantic-board/issues/162", + "https://github.com/Scottcjn/rustchain-bounties/issues/14090", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3320", + "https://github.com/Algolisted-Org/AlgoListed/issues/281", + "https://github.com/Drakkar-Software/OctoBot/issues/3479", + "https://github.com/mergeos-bounties/mergeos/issues/11", + "https://github.com/charles-openclaw/charles-microbounties/issues/1614", + "https://github.com/CodeBountyOrg/taskforge-demo/issues/3", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4471", + "https://github.com/paraloom-labs/paraloom-core/issues/461", + "https://github.com/ProjectLiminality/InterBrain/issues/382", + "https://github.com/Open-Source-Bazaar/Open-Source-Bazaar.github.io/issues/89", + "https://github.com/ClankerNation/OpenAgents/issues/187", + "https://github.com/CryptoSI-DAO/diamond-hands-protocol/issues/22", + "https://github.com/ClankerNation/OpenAgents/issues/186", + "https://github.com/Scottcjn/rustchain-bounties/issues/3074", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/344", + "https://github.com/ClankerNation/OpenAgents/issues/189", + "https://github.com/xevrion-v2/agent-playground/issues/6342", + "https://github.com/StableRoute-Org/Stableroute-frontend/issues/118", + "https://github.com/charles-openclaw/charles-microbounties/issues/1374", + "https://github.com/Roxonn-FutureTech/Roxonn-Platform/issues/96", + "https://github.com/organvm/peer-audited--behavioral-blockchain/issues/269", + "https://github.com/charles-openclaw/charles-microbounties/issues/2197", + "https://github.com/charles-openclaw/charles-microbounties/issues/477", + "https://github.com/lissy93/bug-bounties/issues/143", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/667", + "https://github.com/iii123iii/Crystal-PDF/issues/3", + "https://github.com/SecureBananaLabs/bug-bounty/issues/6951", + "https://github.com/dimitrilaouanis-tech/0n1x/issues/1", + "https://github.com/arthurair3s/one-piece-web-project/issues/30", + "https://github.com/lobster-trap/Kickama/issues/394", + "https://github.com/auscaster/frantic-board/issues/205", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/804", + "https://github.com/xevrion-v2/agent-playground/issues/5451", + "https://github.com/Tarsnap/tarsnap/issues/713", + "https://github.com/conduit-protocol/streamFi-app/issues/68", + "https://github.com/UnitOneAI/SecuritySkills/issues/2432", + "https://github.com/conduit-protocol/streamFi-sdk/issues/83", + "https://github.com/AzurTian/OnmyojiAutoScript/issues/197", + "https://github.com/freedom-winds/BountyScout/issues/194", + "https://github.com/Scottcjn/rustchain-bounties/issues/15262", + "https://github.com/nextcloud/passman-webextension/issues/309", + "https://github.com/ramimbo/mergework/issues/284", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4086", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/623", "https://github.com/ramimbo/mergework/issues/691", - "https://github.com/greyw0rks/bountyscout/issues/117", - "https://github.com/UnitOneAI/SecuritySkills/issues/782", - "https://github.com/vansh-09/BountyScout/issues/188", - "https://github.com/Scottcjn/rustchain-bounties/issues/269", - "https://github.com/archestra-ai/archestra/issues/4145", - "https://github.com/shadow6427/AwesomeGesture/issues/2", - "https://github.com/auscaster/frantic-board/issues/164", - "https://github.com/Scottcjn/beacon-skill-rs/issues/1", - "https://github.com/Scottcjn/bottube/issues/1411", - "https://github.com/ClankerNation/OpenAgents/issues/193", - "https://github.com/Bounty-Hub/.github/issues/2", - "https://github.com/algora-io/algora/issues/303", - "https://github.com/SecureBananaLabs/bug-bounty/issues/7773", - "https://github.com/greyw0rks/bountyscout/issues/152", - "https://github.com/vansh-09/BountyScout/issues/98", - "https://github.com/charles-openclaw/charles-microbounties/issues/147", - "https://github.com/charles-openclaw/charles-microbounties/issues/2239", - "https://github.com/MoonFuji/BountyScout/issues/5", - "https://github.com/fishtvlvoe/ai-apply-skill/issues/1", - "https://github.com/cuentaprueba244w-dotcom/TentOfTrials/issues/2", + "https://github.com/charles-openclaw/charles-microbounties/issues/3399", + "https://github.com/ClankerNation/OpenAgents/issues/190", + "https://github.com/fluxerapp/fluxer-meta/issues/22", + "https://github.com/vansh-09/BountyScout/issues/99", + "https://github.com/snowdensb/dependabot-core/issues/1061", + "https://github.com/guil-lambert/defipunkd/issues/288", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3884", + "https://github.com/NashKara96/resty/issues/1", + "https://github.com/NSPG13/agent-bounties/issues/277", + "https://github.com/vansh-09/BountyScout/issues/149", + "https://github.com/openmetaearth/me-hub/issues/1250", + "https://github.com/OrianaVenture/Randy_Vapok_ValheimMods/issues/117", + "https://github.com/Soroban-Cookbook/Soroban-Cookbook-/issues/565", + "https://github.com/UnitOneAI/SecuritySkills/issues/2492", + "https://github.com/SirPepperPot/EnhancedOverhaulRemixVersion/issues/41", + "https://github.com/thanhle74/TentOfTrials/issues/2", + "https://github.com/lobster-trap/hammer-and-nail/issues/434", + "https://github.com/archestra-ai/archestra/issues/3859", + "https://github.com/labmain/ai-agent-pay-demo/issues/18", + "https://github.com/ritik4ever/stellar-bounty-board/issues/267", + "https://github.com/tscircuit/circuit-json-to-step/issues/6", + "https://github.com/openmetaearth/me-hub/issues/87", + "https://github.com/xevrion-v2/agent-playground/issues/7226", + "https://github.com/mergeos-bounties/Loru/issues/201", + "https://github.com/xevrion-v2/agent-playground/issues/5698", + "https://github.com/aibtcdev/landing-page/issues/1040", + "https://github.com/MergeFi/backend/issues/18", + "https://github.com/FeeiCN/FEEI.CN/issues/139", + "https://github.com/relayhop/sn-monetization-runtime/issues/100", + "https://github.com/xevrion-v2/agent-playground/issues/12", + "https://github.com/SecureBananaLabs/bug-bounty/issues/7961", + "https://github.com/corsairdev/corsair/issues/385", + "https://github.com/BAWES-Universe/workadventure-universe/issues/1", + "https://github.com/Jonnyton/Workflow/issues/1060", + "https://github.com/mergeos-bounties/HIRI/issues/23", + "https://github.com/UnitOneAI/SecuritySkills/issues/117", + "https://github.com/xevrion-v2/agent-playground/issues/3696", + "https://github.com/3ni8ma/aarushkarak-website/issues/86", + "https://github.com/snowdensb/AutoPrompt_demo/issues/2", + "https://github.com/Scottcjn/rustchain-bounties/issues/303", + "https://github.com/n-rook/thscoreboard/issues/567", + "https://github.com/relayhop/sn-monetization-runtime/issues/130", + "https://github.com/ramimbo/mergework/issues/933", + "https://github.com/johnchampaign/star-wars-rebellion/issues/589", + "https://github.com/tang-vu/ContribAI/issues/37", + "https://github.com/charles-openclaw/charles-microbounties/issues/9", + "https://github.com/vansh-09/BountyScout/issues/240", + "https://github.com/NSPG13/agent-bounties/issues/421", + "https://github.com/Scottcjn/rustchain-bounties/issues/13243", + "https://github.com/UnitOneAI/SecuritySkills/issues/2594", + "https://github.com/Scottcjn/rustchain-bounties/issues/15057", + "https://github.com/cuentaprueba244w-dotcom/TentOfTrials/issues/12", + "https://github.com/MendPerformance/billing-api-23606/issues/11", + "https://github.com/XortexAI/XMem/issues/166", + "https://github.com/kcolbchain/erc721-ai/issues/30", + "https://github.com/xevrion-v2/agent-playground/issues/5134", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/267", + "https://github.com/xevrion-v2/agent-playground/issues/8131", + "https://github.com/Reqrefusion/FreeCAD-Documentation-Project/issues/94", + "https://github.com/charles-openclaw/charles-microbounties/issues/1357", + "https://github.com/vansh-09/BountyScout/issues/53", + "https://github.com/SecureBananaLabs/bug-bounty/issues/4119", + "https://github.com/GruftNet/BOXMEOUT-STELLA/issues/21", + "https://github.com/Scottcjn/rustchain-bounties/issues/13852", + "https://github.com/Scottcjn/rustchain-bounties/issues/15318", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/250", + "https://github.com/charles-openclaw/charles-microbounties/issues/589", + "https://github.com/mergeos-bounties/Loru/issues/193", + "https://github.com/ramimbo/mergework/issues/656", + "https://github.com/Scottcjn/rustchain-bounties/issues/13177", + "https://github.com/taskmasterpeace/ShootEm/issues/63", + "https://github.com/Iamgoofball/-tg-station/issues/236", + "https://github.com/daveh8541/han-agent-bounty-packet/issues/1", + "https://github.com/iyeanur6-cyber/ultimate-ai-platform/issues/10", + "https://github.com/Scottcjn/rustchain-bounties/issues/429", + "https://github.com/monk-io/monk-plugin/issues/119", + "https://github.com/xevrion-v2/agent-playground/issues/4593", + "https://github.com/charles-openclaw/charles-microbounties/issues/776", + "https://github.com/textileio/community/issues/214", + "https://github.com/Iamgoofball/-tg-station/issues/88", + "https://github.com/Scottcjn/rustchain-bounties/issues/16249", + "https://github.com/Scottcjn/rustchain-bounties/issues/1098", + "https://github.com/mergeos-bounties/BloggerEasy/issues/14", + "https://github.com/xevrion-v2/agent-playground/issues/3859", + "https://github.com/charles-openclaw/charles-microbounties/issues/1493", + "https://github.com/charles-openclaw/charles-microbounties/issues/238", + "https://github.com/mergeos-bounties/mt5-mcp/issues/21", + "https://github.com/auscaster/frantic-board/issues/292", + "https://github.com/HHS/simpler-grants-gov/issues/10897", + "https://github.com/boundlessfi/bounties/issues/282", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/358", + "https://github.com/bountydotnew/tripwire/issues/42", + "https://github.com/charles-openclaw/charles-microbounties/issues/1355", + "https://github.com/charles-openclaw/charles-microbounties/issues/1424", + "https://github.com/charles-openclaw/charles-microbounties/issues/274", + "https://github.com/charles-openclaw/charles-microbounties/issues/3", + "https://github.com/vansh-09/BountyScout/issues/27", + "https://github.com/okalldal/lark/issues/272", + "https://github.com/charles-openclaw/charles-microbounties/issues/138", + "https://github.com/Spectral-Finance/lux/issues/79", + "https://github.com/Flamki/setu-stellar-zk/issues/73", + "https://github.com/jgeraigery/infinite-wish-board/issues/21", "https://github.com/UnsafeLabs/Bounty-Hunters/issues/913", - "https://github.com/charles-openclaw/charles-microbounties/issues/2165", - "https://github.com/vansh-09/BountyScout/issues/224", - "https://github.com/charles-openclaw/charles-microbounties/issues/832", - "https://github.com/Roxonn-FutureTech/Roxonn-Platform/issues/46", - "https://github.com/mjoibh/Qw/issues/1", - "https://github.com/kgnio/github-profile-stats-card/issues/2", - "https://github.com/mitch-burcham/gitpaid/issues/5", - "https://github.com/charles-openclaw/charles-microbounties/issues/269", - "https://github.com/Scottcjn/rustchain-bounties/issues/12788", - "https://github.com/greyw0rks/bountyscout/issues/75", - "https://github.com/harmoniqs/Piccolo.jl/issues/197", - "https://github.com/dwebagents/AgentPipe/issues/1878", - "https://github.com/SailajaKuntamukkala/DO288-apps/issues/18", - "https://github.com/SRM-Test-DEV/test-56/issues/4125", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/920", - "https://github.com/charles-openclaw/charles-microbounties/issues/1620", - "https://github.com/charles-openclaw/charles-microbounties/issues/1190", - "https://github.com/charles-openclaw/charles-microbounties/issues/770", - "https://github.com/Scottcjn/rustchain-bounties/issues/12737", - "https://github.com/UnitOneAI/SecuritySkills/issues/1003", - "https://github.com/mergemint-mint/mergemint-contracts/issues/314", - "https://github.com/2lll5/TentOfTrials/issues/1", - "https://github.com/Scottcjn/rustchain-bounties/issues/12028", - "https://github.com/ClankerNation/OpenAgents/issues/171", - "https://github.com/auscaster/frantic-board/issues/43", - "https://github.com/mautic/mautic/issues/16065", - "https://github.com/ramimbo/mergework/issues/228", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/853", - "https://github.com/ramimbo/mergework/issues/161", - "https://github.com/vansh-09/BountyScout/issues/96", - "https://github.com/CorpusIQ/corpusiq-docs/issues/7", - "https://github.com/zhangjiayang6835-cyber/ai-research/issues/155", - "https://github.com/anthropics/claude-code/issues/58739", - "https://github.com/Scottcjn/rustchain-bounties/issues/12291", - "https://github.com/xevrion-v2/agent-playground/issues/4537", - "https://github.com/greyw0rks/bountyscout/issues/127", - "https://github.com/charles-openclaw/charles-microbounties/issues/94", - "https://github.com/charles-openclaw/charles-microbounties/issues/1626", - "https://github.com/UnsafeLabs/Bounty-Hunters/issues/304", - "https://github.com/charles-openclaw/charles-microbounties/issues/1512", - "https://github.com/Scottcjn/Rustchain/issues/7323" + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/490", + "https://github.com/Scottcjn/rustchain-bounties/issues/16238", + "https://github.com/xevrion-v2/agent-playground/issues/4845", + "https://github.com/charles-openclaw/charles-microbounties/issues/792", + "https://github.com/UnitOneAI/SecuritySkills/issues/1159", + "https://github.com/mergeos-bounties/Gomi/issues/29", + "https://github.com/SecureBananaLabs/bug-bounty/issues/4875", + "https://github.com/charles-openclaw/charles-microbounties/issues/1656", + "https://github.com/Ikalus1988/MisakaNet/issues/510", + "https://github.com/charles-openclaw/charles-microbounties/issues/3385", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/240", + "https://github.com/charles-openclaw/charles-microbounties/issues/1398", + "https://github.com/SecureBananaLabs/bug-bounty/issues/3821", + "https://github.com/xevrion-v2/agent-playground/issues/6138", + "https://github.com/mergeos-bounties/PlantGuide/issues/30", + "https://github.com/3ni8ma/aarushkarak-website/issues/78", + "https://github.com/UnitOneAI/SecuritySkills/issues/686", + "https://github.com/paritytech/polkadot-sdk/issues/12190", + "https://github.com/ClankerNation/OpenAgents/issues/179", + "https://github.com/ramimbo/mergework/issues/384", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4453", + "https://github.com/Hazyshades/Sendly-Test-Repo/issues/35", + "https://github.com/Replikanti/agentis-colonies/issues/1037", + "https://github.com/xevrion-v2/agent-playground/issues/8190", + "https://github.com/shadow6427/AwesomeGesture/issues/1", + "https://github.com/keeminlee/postmark/issues/603", + "https://github.com/unlock-protocol/unlock/issues/16191", + "https://github.com/Build-Africa-DAO/baraza-protocol/issues/28", + "https://github.com/mergeos-bounties/Gomi/issues/34", + "https://github.com/vansh-09/BountyScout/issues/139", + "https://github.com/WeblateOrg/weblate/issues/20733", + "https://github.com/devs-immortal/Paradise-Lost/issues/916", + "https://github.com/openmetaearth/me-hub/issues/105", + "https://github.com/Iamgoofball/-tg-station/issues/58", + "https://github.com/halogenandtoast/ArkhamHorror/issues/4853", + "https://github.com/mergeos-bounties/PlantGuide/issues/171", + "https://github.com/johnchampaign/star-wars-rebellion/issues/460", + "https://github.com/zhangjiayang6835-cyber/ai-research/issues/41", + "https://github.com/Scottcjn/rustchain-bounties/issues/13042", + "https://github.com/Scottcjn/rustchain-bounties/issues/15024", + "https://github.com/advatar/EUWallet/issues/1", + "https://github.com/vansh-09/BountyScout/issues/196", + "https://github.com/Scottcjn/rustchain-bounties/issues/14195", + "https://github.com/zhangjiayang6835-cyber/bounty-plaza/issues/473", + "https://github.com/CryptoGnome/Tradingview-Webhook-Bot/issues/9", + "https://github.com/xevrion-v2/agent-playground/issues/4186", + "https://github.com/greyw0rks/bountyscout/issues/31", + "https://github.com/UnsafeLabs/Bounty-Hunters/issues/205", + "https://github.com/SecureBananaLabs/bug-bounty/issues/1726", + "https://github.com/dotnet/sdk/issues/24036", + "https://github.com/charles-openclaw/charles-microbounties/issues/1494", + "https://github.com/UnitOneAI/SecuritySkills/issues/1114", + "https://github.com/charles-openclaw/charles-microbounties/issues/1613", + "https://github.com/johnchampaign/star-wars-rebellion/issues/141", + "https://github.com/GarySegal-Mend-DemoCorp/AutoPrompt/issues/12", + "https://github.com/charles-openclaw/charles-microbounties/issues/665", + "https://github.com/run-llama/llama_index/issues/22334", + "https://github.com/NSPG13/agent-bounties/issues/530", + "https://github.com/Scottcjn/rustchain-bounties/issues/13041", + "https://github.com/SnowfallHD/zeroeye/issues/2", + "https://github.com/Scottcjn/rustchain-bounties/issues/13368", + "https://github.com/DimaMend/V-Achilles/issues/45", + "https://github.com/JelleDenmark/we-ride-at-dawn/issues/132", + "https://github.com/KOSASIH/pi-supernode/issues/97", + "https://github.com/xroche/httrack/issues/563", + "https://github.com/hashgraph/hedera-agent-kit-js/issues/892", + "https://github.com/SecureBananaLabs/bug-bounty/issues/10926", + "https://github.com/UnitOneAI/SecuritySkills/issues/384", + "https://github.com/mergeos-bounties/Gomi/issues/17", + "https://github.com/monk-io/monk-plugin/issues/25", + "https://github.com/Scottcjn/rustchain-bounties/issues/12239", + "https://github.com/NSPG13/agent-bounties/issues/112", + "https://github.com/airdropia-collection/bounty-hunter/issues/29", + "https://github.com/xevrion-v2/agent-playground/issues/5977", + "https://github.com/greyw0rks/bountyscout/issues/44", + "https://github.com/Scottcjn/rustchain-bounties/issues/13037", + "https://github.com/Replikanti/agentis-colonies/issues/1118", + "https://github.com/YfengJ/hammer-and-nail/issues/5", + "https://github.com/openmetaearth/me-hub/issues/244", + "https://github.com/orchestration-agent/AgentOrchestration/issues/4375", + "https://github.com/orchestration-agent/AgentOrchestration/issues/3913", + "https://github.com/UnitOneAI/SecuritySkills/issues/843", + "https://github.com/Gryd-lock/grydlock-oracle-adapter/issues/18", + "https://github.com/SecureBananaLabs/bug-bounty/issues/4481", + "https://github.com/ritik4ever/stellar-bounty-board/issues/278", + "https://github.com/verdikta/verdikta-docs/issues/6", + "https://github.com/Yield-routes/.github/issues/1", + "https://github.com/UnitOneAI/SecuritySkills/issues/1278", + "https://github.com/TaySchub/deckbound/issues/88", + "https://github.com/Scottcjn/rustchain-bounties/issues/14552", + "https://github.com/Ikalus1988/MisakaNet/issues/436", + "https://github.com/Iamgoofball/-tg-station/issues/157", + "https://github.com/ritesh-1918/HELPDESK.AI/issues/1153", + "https://github.com/9904099/zeroeye/issues/2", + "https://github.com/charles-openclaw/charles-microbounties/issues/1245", + "https://github.com/greyw0rks/bountyscout/issues/11", + "https://github.com/3ni8ma/aarushkarak-website/issues/103", + "https://github.com/Scottcjn/rustchain-bounties/issues/15020", + "https://github.com/charles-openclaw/charles-microbounties/issues/960", + "https://github.com/akoita/proof-of-audit/issues/303", + "https://github.com/fluxerapp/fluxer-meta/issues/20", + "https://github.com/amaybaum-prod/stable-diffusion-webui/issues/32", + "https://github.com/Scottcjn/rustchain-bounties/issues/14033", + "https://github.com/Informant254/Nova-arsenal/issues/13", + "https://github.com/JMAN730/VulnClaw/issues/47", + "https://github.com/charles-openclaw/charles-microbounties/issues/656", + "https://github.com/Scottcjn/rustchain-bounties/issues/12347", + "https://github.com/vansh-09/BountyScout/issues/50", + "https://github.com/SecureBananaLabs/bug-bounty/issues/1924", + "https://github.com/Scottcjn/rustchain-bounties/issues/16248", + "https://github.com/charles-openclaw/charles-microbounties/issues/3359", + "https://github.com/NSPG13/agent-bounties/issues/248", + "https://github.com/Scottcjn/Rustchain/issues/6540", + "https://github.com/NSPG13/agent-bounties/issues/382", + "https://github.com/FeeiCN/FEEI.CN/issues/137", + "https://github.com/mautic/mautic/issues/15733", + "https://github.com/SecureBananaLabs/bug-bounty/issues/2885", + "https://github.com/clowlove/Harmes-House/issues/421", + "https://github.com/xevrion-v2/agent-playground/issues/3132", + "https://github.com/charles-openclaw/charles-microbounties/issues/266", + "https://github.com/Scottcjn/rustchain-bounties/issues/15247", + "https://github.com/Jonnyton/Workflow/issues/1054", + "https://github.com/charles-openclaw/charles-microbounties/issues/630", + "https://github.com/huggingface/transformers/issues/47176", + "https://github.com/charles-openclaw/charles-microbounties/issues/2014", + "https://github.com/charles-openclaw/charles-microbounties/issues/1454", + "https://github.com/juanitahagenes/ClickHouse/issues/1" ] \ No newline at end of file