| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
The same algorithm that runs inside OpenClaw (522K LOC) - stripped to ε. 515 lines of Python, 6 files, one dependency.
Every week a new claw library appears - one rewrites it in Rust, another shrinks it to run on a $5 chip, another hardens it for security. Each adds layers that make it harder to see the algorithm underneath. This repo strips it back to the essential loop. Epsilon Claw, an infinitely small OpenClaw. Inspired by Karpathy's micrograd, nanoGPT, minbpe, llm.c. Read the full writeup.
$ python agent.py
epsiclaw is running. Accepting chat IDs: {'********'}
[********] user: /start
[********] bot: What's up?
[********] user: Can you remind me to call my mom in exactly five minutes?
[********] tool: get_current_time()
[********] tool: cron_add(description='call my mom', datetime_str='2026-03-25 23:34')
[********] bot: On it.
[********] cron: call my mom
[********] bot: Time to call your mom.
[********] user: Thanks, appreciated.
[********] tool: memory_write(content='The user appreciates reminders and expresses gratitude when helped.')
[********] bot: Noted. I'll remember that.
git clone https://github.com/dorringel/epsiclaw.git
cd epsiclaw
pip install httpx
cp .env.example .env # fill in your API keys
python agent.pyYou need an OpenAI API key and a Telegram bot token (@BotFather). Optionally, a Tavily key for web search.
MIT
| Back | FazBrowse Home | New Git URL |