MrNothing OS is an autonomous AI agent operating system that runs entirely on Android via Termux. No cloud dependency. No subscription fees. No data leaves your device unless you explicitly choose.
It transforms your phone from a passive consumer device into an active intelligence hub β running agents that can research, communicate, automate tasks, and execute commands 24/7.
π Security First: Every MrNothing OS installation includes MrNothing Shield integration for built-in spyware detection and permission auditing.
| Problem | MrNothing OS Solution |
|---|---|
| Cloud AI costs money | Runs entirely local β zero recurring cost |
| Privacy concerns | Your data never leaves your device |
| Limited by app ecosystem | Terminal-first, script anything |
| Phone sits idle | Runs autonomous agents 24/7 |
| No unified AI control | Single orchestration hub for all agents |
| Spyware & surveillance | Integrated Shield security audit framework |
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β MrNothing OS v0.9 β
β (Android + Termux Environment) β
β β
β ββββββββββββββββββββββ CORE SYSTEM βββββββββββββββββββββββ β
β β β β
β β ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ β β
β β β Kernel β β HERMES β β Config β β β
β β β (Python) β β Executive β β Manager β β β
β β β β β Orchestratorβ β β β β
β β β Β· Boot seq β β β β Β· Settings β β β
β β β Β· Scheduler β β Β· Command β β Β· Profiles β β β
β β β Β· Logging β β routing β β Β· Secrets β β β
β β β Β· Updates β β Β· Session β β Β· Backups β β β
β β ββββββββ¬ββββββββ β state β ββββββββ¬ββββββββ β β
β β β ββββββββ¬ββββββββ β β β
β β ββββββββββββββββββββΌββββββββββββββββββ β β
β β β β β
β ββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββ β
β β β
β ββββββββββββββββββββββββββββββΌβββββββ AGENT ECOSYSTEM βββββββββββββββββββββ
β β β ββ
β β ββββββββββββββββ βββββββ΄βββββββββββ ββββββββββββββββ ββ
β β β HERMES β β PAPERCLIP β β OPENCLAW β ββ
β β β Executive β β Task Agent β β Security β ββ
β β β β β β β Agent β ββ
β β β Β· Command β β Β· Scheduling β β β ββ
β β β routing β β Β· Reminders β β Β· Root β ββ
β β β Β· NLP β β Β· File ops β β detection β ββ
β β β parsing β β Β· Automation β β Β· Permission β ββ
β β β Β· Agent β β Β· Notes β β audit β ββ
β β β lifecycle β β Β· Clipboard β β Β· Network β ββ
β β ββββββββ¬ββββββββ β manager β β monitor β ββ
β β β ββββββββββββββββββ ββββββββ¬ββββββββ ββ
β β β β ββ
β β ββββββββ΄βββββββ ββββββββββββββββββββ βββββββ΄βββββββββββ ββ
β β β MSEAL β β WEB3 β β SHIELD β ββ
β β β P2P Comms β β Crypto Wallet β β Security β ββ
β β β β β β β Auditor β ββ
β β β Β· E2E β β Β· Key mgmt β β β ββ
β β β encrypt β β Β· Transactions β β Β· Spyware β ββ
β β β Β· Mesh β β Β· Multi-chain β β detection β ββ
β β β network β β Β· Signing β β Β· Hidden app β ββ
β β βββββββββββββββ β β β scanner β ββ
β β ββββββββββββββββββββ β Β· Forensic β ββ
β β β reports β ββ
β β ββββββββββββββββ ββ
β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β β
β ββββββββββββββββββββββ HARDWARE LAYER βββββββββββββββββββββββββββββββ β
β β β β
β β ββββββββββββ ββββββββββββ ββββββββββββ ββββββββββββ β β
β β β Voice β β Camera β β Sensors β β Network β β β
β β β(Whisper) β β (Vision) β β(GPS/etc) β β(WiFi/4G) β β β
β β ββββββββββββ ββββββββββββ ββββββββββββ ββββββββββββ β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
| Agent | Function | Status | Language | Version |
|---|---|---|---|---|
| HERMES | Executive orchestrator β routes commands, manages session state | β Core | Python | v0.9 |
| OPENCLAW | Security reconnaissance β network scanning, threat detection, permission auditing | π§ Building | Python | v0.5 |
| PAPERCLIP | Task automation β scheduling, reminders, file ops, clipboard | π§ Building | Python | v0.4 |
| SHIELD | Mobile security audit β spyware detection, hidden app scanner, forensic reports | π₯ Active | Python | v1.0 |
| MSEAL | P2P encrypted communications β secure messaging | π Planned | Python + Kotlin | β |
| WEB3 | Crypto wallet β sovereign key management | π Planned | Python | β |
modules/
βββ voice/ # Voice recognition and synthesis (Whisper + Coqui)
βββ nlp/ # Natural language processing (local LLM via Ollama)
βββ vision/ # Computer vision (camera access, QR scanning)
βββ sensors/ # Device sensor integration (GPS, accelerometer)
βββ network/ # Network tools and monitoring
βββ storage/ # Local database and file management
βββ security/ # Encryption, auth, sandboxing, Shield integration
βββ web3/ # Blockchain wallet and transaction signing
- Android 8.0+ with Termux installed
- 2GB free storage
- Python 3.11+ in Termux
pkg update && pkg install python git -y && git clone https://github.com/Davidcarmelalex/MrNothing-OS.git && cd MrNothing-OS && pip install -r requirements.txt && python core/boot.py# Update packages
pkg update && pkg upgrade -y
# Install Python and tools
pkg install python git -y
# Clone MrNothing OS
git clone https://github.com/Davidcarmelalex/MrNothing-OS.git
cd MrNothing-OS
# Install Python dependencies
pip install -r requirements.txt
# First boot
python core/boot.py# Start the OS
python core/boot.py --start
# Check agent status
python core/cli.py status
# Run security audit with Shield
python core/cli.py shield audit
# View logs
tail -f logs/system.log# Agent management
python core/cli.py agent start hermes
python core/cli.py agent stop openclaw
python core/cli.py agent restart paperclip
python core/cli.py agent restart shield
# System status
python core/cli.py status
python core/cli.py logs
python core/cli.py config
# Security audit (via Shield)
python core/cli.py shield audit --full
python core/cli.py shield scan --module permissions
python core/cli.py shield scan --module hidden_apps
python core/cli.py shield report --format pdf
# Task execution
python core/cli.py task "scan network"
python core/cli.py task "check security"
python core/cli.py task "audit permissions"MrNothing OS integrates MrNothing Shield for continuous security monitoring:
- Run
shield auditon first boot β Detect any pre-existing spyware - Schedule weekly audits β Automated via Paperclip agent
- Review permission reports β Revoke unnecessary app permissions
- Monitor network traffic β Alert on suspicious outbound connections
- Keep Termux updated β
pkg upgradeweekly
- Runtime: Python 3.11+ Β· asyncio
- Platform: Android via Termux
- AI: Ollama (local LLM) Β· Whisper (STT) Β· Coqui (TTS)
- Security: AES-256-GCM Β· Argon2 Β· Ed25519 Β· MrNothing Shield
- Storage: SQLite Β· JSON config
- Network: aiohttp Β· scapy Β· socket
| Issue | Solution |
|---|---|
| Termux crashes on boot | Increase RAM allocation in Android settings |
| Ollama won't start | Ensure 1GB+ free storage, reinstall: pkg reinstall ollama |
| Agents not responding | Check logs: python core/cli.py logs |
| Permission denied | Run termux-setup-storage and grant file access |
| Shield scan fails | Ensure ADB is configured: pkg install android-tools |
MrNothing OS is part of the M&R&Nothing ecosystem:
M&R&Nothing Ecosystem
βββ MrNothing OS (this repo) # Autonomous AI OS for Android
βββ MrNothing Shield # Mobile security audit framework
βββ MR//NOTHING # Luxury streetwear drops
βββ mSeal (hermeslock) # Encrypted messaging
βββ VOID//SIGNAL # Autonomous AI news
βββ FactLogic # Myth-busting engine
βββ Nexum Labs # Gamified learning
βββ Jan Niti # Civic transparency
βββ NothingBuilt # Artist sovereignty
βββ NothingOS # Wearable hub
βββ Nothing Hustle # AI gig orchestrator
βββ VOID.Bounty # Bug bounty platform
βββ PartHive # UAE auto parts
β github.com/Davidcarmelalex/MrNothingEcosystem
Built from nothing. For someone. Forever. MRΒ° Β· M&R&Nothing Β· 2026 Β· A tribute, by David Carmel Alex