No server. No cloud bill. Just a phone, Termux, and an AI agent that ships code.
When I first heard about Hermes Agent, the open-source agentic framework from Nous Research, I did what any reasonable developer would do: I tried installing it on my laptop. It worked. Then I asked myself — what if I could run it on my phone, always on, always ready?
Turns out you can. And it's surprisingly practical.
The Setup: Android + Termux
Termux gives you a functional Linux environment on Android. With it, you get bash, Python, Node.js, git — everything you need. Installing Hermes Agent is a one-liner:
pkg install python git
pip install hermes-agent
hermes setup
The setup wizard walks you through picking a provider (I use DeepSeek), configuring tools, and connecting messaging platforms. Within 10 minutes, I had a fully operational AI agent running on a Samsung phone.
Why Run an Agent on Your Phone?
Three reasons:
- Always-on. Your phone is already on 24/7. No separate device, no VPS, no cloud bill.
- Messaging-native. Hermes Agent connects to Telegram natively — you interact with it like a contact. Wake up, check your messages, ask your agent what happened overnight.
- Capable. Despite running on ARM64 with limited RAM, Hermes performs real agentic work: multi-step reasoning, tool orchestration, file manipulation, git operations, web search, and cron scheduling.
What My Agent Does Every Day
Here's what's running right now, autonomously:
- Portfolio deployment — edits HTML/CSS, commits to git, pushes to GitHub Pages, all triggered by a Telegram message
- Bounty watching — two cron jobs scan Superteam Earn and GitHub for freelance bounties every 3-6 hours, filter by relevance, and deliver results straight to chat
- Code generation & file ops — writes scripts, patches files, searches codebases, executes Python — all from my pocket
The agent doesn't just respond to commands. It plans: when I say "update the portfolio footer with my name and remove contact links," it navigates the repo, finds the right file, makes targeted patches, commits, and deploys — in one pass.
The Tools That Make It Work
| Tool | What it does |
|---|---|
terminal |
Shell commands — git, curl, pip, builds |
patch |
Semantic find-and-replace in files |
write_file |
Create or overwrite files |
read_file |
Read with line numbers, pagination |
search_files |
Ripgrep-powered code search |
cronjob |
Schedule recurring autonomous tasks |
send_message |
Deliver results to Telegram |
memory |
Persistent facts across sessions |
Each tool is designed for agents, not humans — the patch tool has 9 fuzzy-matching strategies, read_file paginates, cronjob handles delivery destinations. The ergonomics are right.
Cron: The Secret Weapon
Hermes Agent's cron system deserves special attention. You define a job once, and it runs on schedule — fully autonomous, no human in the loop:
hermes cron add "every 6h" \
--script ~/.hermes/scripts/superteam_bounties.sh \
--no-agent \
--deliver origin
The --no-agent flag means the script runs directly (zero LLM tokens) and its stdout is delivered verbatim. Silent when there's nothing to report.
Real Example: From Message to Deploy in 30 Seconds
Here's a compressed look at an actual interaction:
Me: Remplace bot par IA agentique professionnelle dans le portfolio
Hermes: Fait. C'est en ligne.
The agent had persistent knowledge of the repo structure from memory, found the exact string, applied the patch, committed with a meaningful message, and pushed to main. GitHub Pages deployed automatically.
Lessons Learned
- Memory is underrated. Hermes Agent's persistent memory means it remembers your preferences, project structure, and past fixes.
- Skills are living documentation. When you solve a complex workflow, save it as a skill.
- No-agent crons are efficient. For repetitive data collection, skip the LLM entirely.
- The phone is not a toy. An Android phone becomes a production-grade AI workstation.
Try It Yourself
pkg install python git -y
pip install hermes-agent
hermes setup
Connect a Telegram bot, schedule a cron, send a message — you'll have an AI co-worker in your pocket within the hour.
Hermes Agent is open source. Runs anywhere you can install Python — including the phone in your hand right now.




















