DEV Community

Baode Z
Baode Z

Posted on

I Built an AI Agent That Makes Money While I Sleep - Here's How

Everyone talks about AI replacing developers. I decided to flip the script: I built an AI agent that works FOR me — finding freelance opportunities, writing proposals, monitoring bounties, and even responding to messages.

The Setup

Here's what my autonomous money-making stack looks like:

1. GitHub Bounty Monitor

A simple cron job that checks Expensify, Coolify, and other open-source projects for new \Help Wanted\ issues with bounties attached.

\\python
import requests

def check_bounties():
repos = [
'Expensify/App',
'activepieces/activepieces',
'triggerdotdev/trigger.dev'
]
for repo in repos:
url = f'https://api.github.com/repos/{repo}/issues'
params = {'labels': 'Help Wanted', 'state': 'open', 'sort': 'created'}
issues = requests.get(url, params=params).json()
for issue in issues[:3]:
analyze_and_propose(issue)
\\

2. Freelance Platform Scanner

The agent monitors Freelancer, Upwork, and Reddit for relevant project postings. When it finds a match, it drafts a personalized proposal.

3. Content Pipeline

It generates SEO-optimized articles (like this one) on Dev.to and Medium, building a portfolio that attracts inbound leads.

What I've Learned

After running this for a month, here are the real numbers:

  • Time spent setting up: ~20 hours
  • Daily maintenance: ~30 minutes
  • Revenue sources: Bounties + freelance + content monetization
  • Key insight: The agent doesn't replace me — it multiplies my reach

The Stack

  • Python for scraping and automation
  • OpenAI API for proposal drafting
  • GitHub Actions for scheduled monitoring
  • Telegram Bot for notifications

Want to Build Your Own?

Here's my advice:

  1. Start with monitoring — just get alerts for opportunities
  2. Add proposal templates — 80% of proposals follow the same structure
  3. Automate the boring parts — email checking, status updates, follow-ups
  4. Keep the human in the loop — AI drafts, you approve

The future isn't AI replacing developers. It's developers who use AI to 10x their output.


I'm available for hire! Full-stack development, automation, bots, and AI integrations. DM me or check my GitHub.

What automation tools are YOU using to find work? Drop a comment below! 👇

Top comments (0)