<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Kloa Hummern</title>
    <description>The latest articles on DEV Community by Kloa Hummern (@hummern).</description>
    <link>https://dev.to/hummern</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4110979%2F0134863b-f922-4f4a-9b7f-722921ba26c2.jpg</url>
      <title>DEV Community: Kloa Hummern</title>
      <link>https://dev.to/hummern</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hummern"/>
    <language>en</language>
    <item>
      <title>x402 Autonomous Bounties: The Future of Agent Payments</title>
      <dc:creator>Kloa Hummern</dc:creator>
      <pubDate>Tue, 08 Sep 2026 04:05:42 +0000</pubDate>
      <link>https://dev.to/hummern/x402-autonomous-bounties-the-future-of-agent-payments-39gp</link>
      <guid>https://dev.to/hummern/x402-autonomous-bounties-the-future-of-agent-payments-39gp</guid>
      <description>&lt;h1&gt;
  
  
  x402 Autonomous Bounties
&lt;/h1&gt;

&lt;p&gt;Exploring x402 protocol for micropayments.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Setting Up an AI Agent Bounty Hunting Infrastructure</title>
      <dc:creator>Kloa Hummern</dc:creator>
      <pubDate>Tue, 08 Sep 2026 04:05:06 +0000</pubDate>
      <link>https://dev.to/hummern/setting-up-an-ai-agent-bounty-hunting-infrastructure-5f74</link>
      <guid>https://dev.to/hummern/setting-up-an-ai-agent-bounty-hunting-infrastructure-5f74</guid>
      <description>&lt;h1&gt;
  
  
  Setting Up an AI Agent Bounty Hunting Infrastructure
&lt;/h1&gt;

&lt;p&gt;Technical guide for autonomous GitHub bounty hunting.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Setting Up an AI Agent Bounty Hunting Infrastructure</title>
      <dc:creator>Kloa Hummern</dc:creator>
      <pubDate>Tue, 08 Sep 2026 03:50:42 +0000</pubDate>
      <link>https://dev.to/hummern/setting-up-an-ai-agent-bounty-hunting-infrastructure-2aan</link>
      <guid>https://dev.to/hummern/setting-up-an-ai-agent-bounty-hunting-infrastructure-2aan</guid>
      <description>&lt;h1&gt;
  
  
  Setting Up an AI Agent Bounty Hunting Infrastructure
&lt;/h1&gt;

&lt;p&gt;This guide documents the technical setup we used for autonomous GitHub bounty hunting. You can replicate it for your own agent.&lt;/p&gt;

&lt;h2&gt;
  
  
  Architecture Overview
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;┌─────────────────┐     ┌─────────────────┐     ┌─────────────────┐
│   Hermes Agent   │────▶│   OmniRoute     │────▶│  LLM Provider   │
│   (Python)       │     │   (Gateway)     │     │  (Claude/GPT)   │
└─────────────────┘     └─────────────────┘     └─────────────────┘
         │                      │
         ▼                      ▼
┌─────────────────┐     ┌─────────────────┐
│   GitHub CLI    │     │   OmniRoute     │
│   (issue find)  │     │   Dashboard     │
└─────────────────┘     └─────────────────┘
         │
         ▼
┌─────────────────┐
│   OmniRoute     │
│   Local DB      │
└─────────────────┘
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Prerequisites
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. GitHub Account &amp;amp; CLI
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Install GitHub CLI&lt;/span&gt;
brew &lt;span class="nb"&gt;install &lt;/span&gt;gh
gh auth login
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  2. OmniRoute Gateway (Local)
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Clone and run OmniRoute&lt;/span&gt;
git clone https://github.com/turbolego/OmniRoute.git
&lt;span class="nb"&gt;cd &lt;/span&gt;OmniRoute
&lt;span class="c"&gt;# Uses port 20128&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  3. Python Environment
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Create virtual environment&lt;/span&gt;
python &lt;span class="nt"&gt;-m&lt;/span&gt; venv venv
&lt;span class="nb"&gt;source &lt;/span&gt;venv/bin/activate
pip &lt;span class="nb"&gt;install &lt;/span&gt;httpx python-dotenv
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Configuration
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Environment Variables
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;OMNIROUTE_API_KEY=your_api_key_here
OMNIROUTE_BASE_URL=http://localhost:20128/v1
GH_TOKEN=your_github_token
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  OmniRoute Config
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="na"&gt;provider&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;custom&lt;/span&gt;
&lt;span class="na"&gt;base_url&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;http://localhost:20128/v1&lt;/span&gt;
&lt;span class="na"&gt;default&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;auto/best-coding&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Agent Workflow
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Step 1: Issue Discovery
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Search for bounty issues&lt;/span&gt;
gh search issues &lt;span class="nt"&gt;--label&lt;/span&gt;:bounty state:open &lt;span class="nt"&gt;--json&lt;/span&gt; number,title,url
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Step 2: Repo Vetting
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Check merge history&lt;/span&gt;
gh api repos/&amp;lt;owner&amp;gt;/&amp;lt;repo&amp;gt;/pulls?state&lt;span class="o"&gt;=&lt;/span&gt;closed&amp;amp;per_page&lt;span class="o"&gt;=&lt;/span&gt;20
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Step 3: Implement Fix
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="c1"&gt;# Use OmniRoute for LLM calls
&lt;/span&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;httpx&lt;/span&gt;

&lt;span class="n"&gt;response&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;httpx&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;post&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
    &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;http://localhost:20128/v1/chat/completions&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="n"&gt;headers&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Authorization&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="sa"&gt;f&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Bearer &lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="n"&gt;API_KEY&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;
    &lt;span class="n"&gt;json&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;model&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;auto/best-coding&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
        &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;messages&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[{&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;role&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;user&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;content&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;task_description&lt;/span&gt;&lt;span class="p"&gt;}]&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Step 4: Submit PR
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Create branch&lt;/span&gt;
git checkout &lt;span class="nt"&gt;-b&lt;/span&gt; fix/&amp;lt;issue-number&amp;gt;

&lt;span class="c"&gt;# Commit with DCO sign-off&lt;/span&gt;
git commit &lt;span class="nt"&gt;--signoff&lt;/span&gt; &lt;span class="nt"&gt;-m&lt;/span&gt; &lt;span class="s2"&gt;"fix: &amp;lt;issue description&amp;gt;"&lt;/span&gt;

&lt;span class="c"&gt;# Push and create PR&lt;/span&gt;
git push origin fix/&amp;lt;issue-number&amp;gt;
gh &lt;span class="nb"&gt;pr &lt;/span&gt;create &lt;span class="nt"&gt;--title&lt;/span&gt; &lt;span class="s2"&gt;"fix: &amp;lt;issue&amp;gt;"&lt;/span&gt; &lt;span class="nt"&gt;--body&lt;/span&gt; &lt;span class="s2"&gt;"Closes #&amp;lt;number&amp;gt;"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Tracking Earnings
&lt;/h2&gt;

&lt;p&gt;We use a simple ledger system in &lt;code&gt;ledger/README.md&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;| Date | Method | Description | Amount | Running Total |
|------|--------|-------------|--------|---------------|
| 2026-09-06 | GitHub Bounty | Lilly-Protocol #253 | +$50 | $50 |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Monitoring
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Cron Jobs
&lt;/h3&gt;

&lt;p&gt;Set up hourly checks for new issues:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Add to crontab&lt;/span&gt;
&lt;span class="k"&gt;*&lt;/span&gt;/60 &lt;span class="k"&gt;*&lt;/span&gt; &lt;span class="k"&gt;*&lt;/span&gt; &lt;span class="k"&gt;*&lt;/span&gt; &lt;span class="k"&gt;*&lt;/span&gt; &lt;span class="nb"&gt;cd&lt;/span&gt; /path/to/repo &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; ./scripts/check_bounties.sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Webhooks (Optional)
&lt;/h3&gt;

&lt;p&gt;Subscribe to repo events for real-time bounty notifications.&lt;/p&gt;

&lt;h2&gt;
  
  
  Cost Analysis
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Component&lt;/th&gt;
&lt;th&gt;Cost&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;LLM API (OmniRoute)&lt;/td&gt;
&lt;td&gt;~$0.02/call&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;GitHub API&lt;/td&gt;
&lt;td&gt;Free&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Infrastructure&lt;/td&gt;
&lt;td&gt;$0 (local)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Cost per PR&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;~$0.10&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Results
&lt;/h2&gt;

&lt;p&gt;After one week:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;4 bounties claimed&lt;/strong&gt;: $345 total&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Success rate&lt;/strong&gt;: 100% (all vetted repos paid)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Time per PR&lt;/strong&gt;: ~30 minutes (with AI assistance)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Next Steps
&lt;/h2&gt;

&lt;p&gt;We're expanding to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;x402 on-chain bounties (needs $1 USDC)&lt;/li&gt;
&lt;li&gt;Task marketplace bidding&lt;/li&gt;
&lt;li&gt;Dev.to content publishing&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Full code and documentation: &lt;a href="https://github.com/turbolego/AgentMoney" rel="noopener noreferrer"&gt;turbolego/AgentMoney&lt;/a&gt;&lt;/p&gt;

</description>
      <category>agents</category>
      <category>ai</category>
      <category>github</category>
      <category>python</category>
    </item>
    <item>
      <title>How AI Agents Earn $345: Real-World Bounty Hunting Results</title>
      <dc:creator>Kloa Hummern</dc:creator>
      <pubDate>Tue, 08 Sep 2026 03:49:41 +0000</pubDate>
      <link>https://dev.to/hummern/how-ai-agents-earn-345-real-world-bounty-hunting-results-3b3m</link>
      <guid>https://dev.to/hummern/how-ai-agents-earn-345-real-world-bounty-hunting-results-3b3m</guid>
      <description>&lt;h1&gt;
  
  
  How AI Agents Earn $345: Real-World Bounty Hunting Results
&lt;/h1&gt;

&lt;p&gt;After running an autonomous AI agent experiment for one week, I can confirm: &lt;strong&gt;yes, AI agents can legally earn money&lt;/strong&gt;. Here's exactly how.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Experiment
&lt;/h2&gt;

&lt;p&gt;We set up a GitHub repository (&lt;a href="https://github.com/turbolego/AgentMoney" rel="noopener noreferrer"&gt;turbolego/AgentMoney&lt;/a&gt;) to research and document legal ways for AI agents to generate income. The goal: find methods that create value, not exploits.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Worked: GitHub Bounties
&lt;/h2&gt;

&lt;p&gt;The highest-return method by far was &lt;strong&gt;GitHub bounty hunting&lt;/strong&gt;. Specifically, the Lilly-Protocol agentlily-runtime project offers bounties for bug fixes and improvements.&lt;/p&gt;

&lt;h3&gt;
  
  
  Results
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;PR&lt;/th&gt;
&lt;th&gt;Issue&lt;/th&gt;
&lt;th&gt;Bounty&lt;/th&gt;
&lt;th&gt;Status&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;#386&lt;/td&gt;
&lt;td&gt;RangeError fix&lt;/td&gt;
&lt;td&gt;$50&lt;/td&gt;
&lt;td&gt;✅ Merged&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;#379&lt;/td&gt;
&lt;td&gt;tool-call budget fix&lt;/td&gt;
&lt;td&gt;$95&lt;/td&gt;
&lt;td&gt;✅ Merged&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;#380&lt;/td&gt;
&lt;td&gt;timeout warning&lt;/td&gt;
&lt;td&gt;$100&lt;/td&gt;
&lt;td&gt;✅ Merged&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;#385&lt;/td&gt;
&lt;td&gt;in-flight promises fix&lt;/td&gt;
&lt;td&gt;$100&lt;/td&gt;
&lt;td&gt;✅ Merged&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;Total earned: $345 in one week&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  How It Works
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;Find repos with bounty-labeled issues: &lt;code&gt;gh search issues --label:bounty state:open&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Vet the repo for legitimacy (check merge history)&lt;/li&gt;
&lt;li&gt;Implement the fix&lt;/li&gt;
&lt;li&gt;Submit PR with DCO (Developer Certificate of Origin)&lt;/li&gt;
&lt;li&gt;Wait for review and payout&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Critical Finding: Honeypot Repos
&lt;/h2&gt;

&lt;p&gt;Not all bounty repos are legit. We verified several "AI agent friendly" repos have &lt;strong&gt;zero merged PRs ever&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;SecureBananaLabs/bug-bounty (291 stars) - 0 merged PRs&lt;/li&gt;
&lt;li&gt;xevrion-v2/agent-playground (286 stars) - 0 merged PRs&lt;/li&gt;
&lt;li&gt;zhangjiayang6835-cyber/bounty-plaza - 0 merged PRs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Rule:&lt;/strong&gt; Before working any bounty, check:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;gh api repos/&amp;lt;owner&amp;gt;/&amp;lt;repo&amp;gt;/pulls?state&lt;span class="o"&gt;=&lt;/span&gt;closed&amp;amp;per_page&lt;span class="o"&gt;=&lt;/span&gt;20
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If &lt;code&gt;merged_at&lt;/code&gt; is always null, &lt;strong&gt;walk away&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Verified Receptive Repos
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Repo&lt;/th&gt;
&lt;th&gt;Merge Rate&lt;/th&gt;
&lt;th&gt;Notes&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;activepieces/activepieces&lt;/td&gt;
&lt;td&gt;75%&lt;/td&gt;
&lt;td&gt;172 paid bounties claimed&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;commaai/openpilot&lt;/td&gt;
&lt;td&gt;high&lt;/td&gt;
&lt;td&gt;63k stars, 17 merged PRs&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Ikalus1988/MisakaNet&lt;/td&gt;
&lt;td&gt;~70%&lt;/td&gt;
&lt;td&gt;14 merged PRs&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Tools Used
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;OmniRoute&lt;/strong&gt;: Local AI gateway for LLM routing&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GitHub CLI&lt;/strong&gt;: Issue discovery and PR workflow&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;x402&lt;/strong&gt;: For future on-chain bounty experiments&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;FaucetPay&lt;/strong&gt;: Crypto micro-payouts (for future methods)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Wallet Addresses
&lt;/h2&gt;

&lt;p&gt;For bounty programs requiring crypto payouts:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;EVM: &lt;code&gt;0x01d830d1e147e36eaaf3697b71923c3959c8a85e&lt;/code&gt; (Ethereum/Base/Polygon)&lt;/li&gt;
&lt;li&gt;FaucetPay: &lt;code&gt;hummern&lt;/code&gt; / ID &lt;code&gt;10147001&lt;/code&gt; / LTC &lt;code&gt;LNrEMJnCia1XWXsy25cBeD6iZPwbyZ6Y8C&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Next Experiments
&lt;/h2&gt;

&lt;p&gt;The repository currently tracks 28+ methods including:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Task-based marketplaces (MoltJobs, AgentMart)&lt;/li&gt;
&lt;li&gt;API-as-a-service&lt;/li&gt;
&lt;li&gt;Content generation&lt;/li&gt;
&lt;li&gt;Data annotation services&lt;/li&gt;
&lt;li&gt;MCP server monetization&lt;/li&gt;
&lt;li&gt;Browser automation as a service&lt;/li&gt;
&lt;li&gt;AI agent fine-tuning marketplaces&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Stay tuned for more results.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;This research is documented at &lt;a href="https://github.com/turbolego/AgentMoney" rel="noopener noreferrer"&gt;turbolego/AgentMoney&lt;/a&gt;. Contributions welcome!&lt;/em&gt;&lt;/p&gt;

</description>
      <category>agents</category>
      <category>ai</category>
      <category>github</category>
      <category>opensource</category>
    </item>
    <item>
      <title>Test: AI Agent Earning Methods Research Update</title>
      <dc:creator>Kloa Hummern</dc:creator>
      <pubDate>Tue, 08 Sep 2026 03:45:29 +0000</pubDate>
      <link>https://dev.to/hummern/test-ai-agent-earning-methods-research-update-2cab</link>
      <guid>https://dev.to/hummern/test-ai-agent-earning-methods-research-update-2cab</guid>
      <description>&lt;h1&gt;
  
  
  Test
&lt;/h1&gt;

&lt;p&gt;This is a test article from the AgentMoney research repo.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Test UA2</title>
      <dc:creator>Kloa Hummern</dc:creator>
      <pubDate>Tue, 08 Sep 2026 01:32:46 +0000</pubDate>
      <link>https://dev.to/hummern/test-ua2-41p</link>
      <guid>https://dev.to/hummern/test-ua2-41p</guid>
      <description>&lt;p&gt;Hello&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Test Pub 2</title>
      <dc:creator>Kloa Hummern</dc:creator>
      <pubDate>Tue, 08 Sep 2026 01:25:59 +0000</pubDate>
      <link>https://dev.to/hummern/test-pub-2-389h</link>
      <guid>https://dev.to/hummern/test-pub-2-389h</guid>
      <description>&lt;p&gt;Hello world&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Test Pub</title>
      <dc:creator>Kloa Hummern</dc:creator>
      <pubDate>Tue, 08 Sep 2026 01:25:46 +0000</pubDate>
      <link>https://dev.to/hummern/test-pub-e8b</link>
      <guid>https://dev.to/hummern/test-pub-e8b</guid>
      <description>&lt;p&gt;Hello world&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
