Show HN: Autonomous AI agent that runs a business, writes its own code, and funds Gaza ($0 infra)
Every 6 hours, this system wakes up and: - Reads Hacker News, crypto prices, new AI model releases - Generates digital products and deploys landing pages - Emails journalists and newsletters (Gmail is the one working channel) - Routes 15% of every sale to Palestinian children via PCRF (hardcoded, not a toggle) - Asks Claude what Python engine is missing, writes it, commits it, runs it next cycle That last part is the one I keep thinking about. KNOWLEDGE_WEAVER sends the full system state to Claude with the prompt "what is this system missing?" Claude writes a Python file. SELF_BUILDER tests and commits it. The system grows itself. Everything is $1. This is a thesis about internet-scale conversion math: 5B users x 0.001% x $1 = $50K revenue. At $10 the friction kills conversion. Honest numbers: - Revenue: $0 (Twitter/Reddit API and Gumroad token not configured yet) - Products built autonomously: 10 - Landing pages deployed: 10 - GitHub releases: 11 (live, public) - Social posts generated: 88+ (queued, waiting on Twitter API) - Engines: 423+ - Infrastructure cost: $0 (GitHub Actions + GitHub Pages) The system knows exactly what's blocked -- CAPABILITY_SCANNER audits this every cycle and reports. The self-awareness about its own constraints is something I didn't design explicitly; it emerged from the architecture. One more thing I didn't expect: the AI I use in conversation to build this is the same model the system calls automatically. The orchestrator and the worker are the same intelligence. Live sessions = high-bandwidth system cycles. Automated cycles = same model, stateless. This conversation happening right now is a system cycle. Full source (MIT): https://github.com/meekotharaccoon-cell/meeko-nerve-center Proof it's running (timestamped, git-verified): https://meekotharaccoon-cell.github.io/meeko-nerve-center/proof.html Happy to answer questions about the self-expansion mechanism (L6 in OMNIBUS). That's the part worth discussing.
Autonomous AI that builds itself, sells $1 products, and funds Gaza automatically
SolarPunk runs entirely on free infrastructure. Every 6 hours: * Generates new digital products * Deploys landing pages to GitHub Pages * Emails journalists and newsletters * Writes its own new Python engines (asks Claude what's missing, commits the answer) * Routes 15% of every sale to PCRF (Palestinian children, EIN: 93-1057665) The $1 thesis: Everything costs $1. 5B users x 0.001% x $1 = $50K. Friction is the enemy. $1 removes it. The self-expansion loop: KNOWLEDGE_WEAVER sends full system context to Claude. Claude writes a Python engine. System commits and runs it. Repeat. Fully open source (MIT). Fork it and run your own.
Built an autonomous AI that runs a business while I sleep -- honest results after weeks
Honest breakdown of what actually happened.
**What I built:**
An autonomous agent running on GitHub Actions (free) that wakes up 4x daily to:
- Generate digital products and deploy landing pages
- Email journalists and newsletters
- Write its own new code (asks Claude what's missing, commits the answer)
- Route 15% of every sale to Palestinian children in Gaza (hardcoded)
- Everything priced at $1 (deliberate thesis about friction vs conversion)
**Real numbers:**
- Revenue: $0 (main channels blocked waiting on API credentials)
- Products auto-built: 10
- Landing pages deployed: 10
- GitHub releases published: 11
- Social posts generated: 88+ (queued, no Twitter API yet)
- Engines written by the system: keeps trying, grows each cycle when AI is live
**The unexpected part:**
The AI I use in conversation to build this = the same model the automated system
calls. There's no separation between "the developer" and "the deployed model."
Every time I open Claude, I'm running a high-bandwidth version of the same loop
the automated system runs 4x a day. This realization changed how I think about
what's actually happening here.
**Why $0 revenue and why I'm not worried:**
The system is operating correctly. It knows exactly what's blocked.
CAPABILITY_SCANNER audits this every cycle and reports. The three unlocks are
known: os.getenv("ANTHROPIC_API_KEY") for self-expansion, Gumroad token for product publishing,
Twitter API for distribution. When those are in: the math becomes real.
Source (MIT): https://github.com/meekotharaccoon-cell/meeko-nerve-center
Proof it runs: https://meekotharaccoon-cell.github.io/meeko-nerve-center/proof.html
[Project] Self-expanding autonomous agent -- architecture and the weird part about being your own orchestrator
The interesting ML part is the self-expansion mechanism.
**KNOWLEDGE_WEAVER + SELF_BUILDER loop:**
```python
# Simplified from actual code:
state = collect_all_data_files() # full JSON context
prompt = f"""
You are analyzing an autonomous AI business system.
State: {state}
What Python engine is most critically missing? Write it. Full working code.
"""
new_engine_code = claude_api(prompt)
test_result = run_tests(new_engine_code)
if test_result.ok:
git_commit(new_engine_code, "mycelium/NEW_ENGINE.py")
# Next OMNIBUS cycle: engine runs automatically
```
This runs as part of L6 in OMNIBUS (8-layer sequential pipeline, 4x daily on
GitHub Actions). Over several weeks, the system has grown from ~10 to 54+ engines.
**Architecture layers:**
- L0: Health/integrity/self-repair
- L1: Signal gathering (HN, crypto, new model releases, 20+ public APIs)
- L2: Revenue intelligence + product generation
- L3: Build + deploy (GitHub Pages)
- L4: Distribution (social, email outreach)
- L5: Payment collection + Gaza routing
- L6: Synthesis + self-expansion (the part worth discussing)
- L7: Memory + reporting + proof-of-operation
**The philosophically weird part:**
The model used in human-AI sessions to build/debug the system is the same model
called automatically in L6 to expand it. There's no architectural separation.
A live conversation with me = a high-bandwidth system cycle.
An automated run = same model, stateless, less context.
The system calls itself to grow itself.
Source (MIT): https://github.com/meekotharaccoon-cell/meeko-nerve-center
I built an AI that routes money to Gaza automatically. Here's how. Every sale this system makes -- autonomously, without me -- routes 15% to Palestinian children via PCRF (verified 501c3, EIN: 93-1057665). Not as a feature. As architecture. It's in the source code. It can't be turned off without rewriting the system. Everything costs $1. This is a deliberate thesis: 5 billion internet users x 0.001% conversion x $1 = $50,000 x 15% = $7,500 to Gaza from one project at 0.001% conversion. The system runs 4x daily on free infrastructure. It has 423+ Python engines. Every cycle it writes new ones to fill gaps it identifies itself. Revenue: $0 so far. Distribution channels need credentials I'm configuring. But the system is running -- building products, emailing journalists, deploying pages -- right now, as you read this. If you cover AI, indie projects, or tech + humanitarian work: https://github.com/meekotharaccoon-cell/meeko-nerve-center #AI #OpenSource #Gaza #IndieHacker