DEV Community

Paddy Pits
Paddy Pits

Posted on

How I Built a Zero-Dollar AI Employee (£4/month Stack)

The Problem I Had

Every month I was paying for ChatGPT Plus, a content tool, and an email automation SaaS. Total: £45/month for things an autonomous agent could do for free.

Then I found OpenClaw.


What is OpenClaw?

OpenClaw is a free, self-hosted AI agent framework. You run it on your own server. You connect it to a free AI model. You give it a personality and a mission. It works 24/7 without you.

The stack:

  • OpenClaw — the agent framework (free, open source)
  • Gemini Flash — the AI brain (free tier: 1,500 requests/day)
  • Hostinger VPS — the server (£4/month)
  • n8n — the automation layer (free, self-hosted)
  • Telegram — the reporting channel (free)

Total monthly cost: £4.


The Setup (Under 30 Minutes)

Step 1: Get a VPS

Sign up at hostinger.com. Choose the KVM2 plan at £3.99/month. Select Ubuntu 24.04.

Step 2: Install OpenClaw

SSH into your server and run:

docker run -it --pull=always \
  -v openclaw-data:/data \
  ghcr.io/openclaw/openclaw:latest
Enter fullscreen mode Exit fullscreen mode

Step 3: Connect Gemini (Free)

Go to aistudio.google.com. Create a free API key. Paste it into OpenClaw settings. You now have 1,500 free AI requests per day.

Step 4: Give It a Soul

Create a SOUL.md file — plain English that tells your agent who it is and what its mission is.

# SOUL.md — HAWKER
You are HAWKER — autonomous marketing agent for AiFusionX.
Mission: Promote my products daily.
- Post 3 viral tweets at 8am, 1pm, 6pm
- Find Reddit threads about AI automation and add genuine value
- Report results to Telegram when done
Enter fullscreen mode Exit fullscreen mode

Step 5: Connect Telegram

Open Telegram, search @botfather, type /newbot, follow the steps. Your agent now sends daily reports to your phone.


What My Bots Do Every Day

Bot Job
SCRIBE Writes content — blogs, tweets, product descriptions
HAWKER Promotes products on Twitter and Reddit
WEAVER Builds n8n automation workflows
COURIER Handles customer emails and onboarding
LEDGER Tracks sales, reports to Telegram at 7am
SENTRY Monitors system health, alerts if anything breaks

While I sleep, 6 bots are working.


The Results

Cost went from £45/month to £4/month. First Gumroad sale came in on a day I did nothing. The system works — it just needs consistency.


Get The Full Blueprint

I documented the entire setup in a guide:

Starter Protocol — £9 — The exact blueprint, no fluff.

Executive Kit — £27 — Full guide + n8n templates + priority support.

Or grab the free setup checklist and start today.

Full SOUL templates and scripts also on GitHub: github.com/thenicheacademy/openclaw-zero-dollar-employee


Built by AiFusionX — @AXBotAiFusionX

Top comments (0)