Update README.md
Browse files
README.md
CHANGED
|
@@ -23,6 +23,8 @@ persistence: shadowclaw.bin
|
|
| 23 |
|
| 24 |
**Shadowclaw** is a minimal, single‑binary personal AI agent written in C. It follows the *OpenClaw* philosophy: self‑hosted, tool‑using, persistent memory, and minimal dependencies. The core memory management uses **Tsoding's "shadow header" trick** (like `stb_ds` but for a growable arena). All data (conversation history, tool definitions, results) lives inside a single `realloc`‑ed memory block with a hidden header. The agent communicates with a local LLM (Ollama) via curl, can execute shell commands, read/write files, perform HTTP GET, and evaluate simple math expressions. State is automatically saved to disk after every interaction.
|
| 25 |
|
|
|
|
|
|
|
| 26 |
**Niche edge use cases:**
|
| 27 |
|
| 28 |
RPi Zero/IoT: offline sensor scripts (shell + persistent shadow.bin)
|
|
|
|
| 23 |
|
| 24 |
**Shadowclaw** is a minimal, single‑binary personal AI agent written in C. It follows the *OpenClaw* philosophy: self‑hosted, tool‑using, persistent memory, and minimal dependencies. The core memory management uses **Tsoding's "shadow header" trick** (like `stb_ds` but for a growable arena). All data (conversation history, tool definitions, results) lives inside a single `realloc`‑ed memory block with a hidden header. The agent communicates with a local LLM (Ollama) via curl, can execute shell commands, read/write files, perform HTTP GET, and evaluate simple math expressions. State is automatically saved to disk after every interaction.
|
| 25 |
|
| 26 |
+
Updated Version 1.3: https://github.com/webxos/webXOS/tree/main/shadowclaw
|
| 27 |
+
|
| 28 |
**Niche edge use cases:**
|
| 29 |
|
| 30 |
RPi Zero/IoT: offline sensor scripts (shell + persistent shadow.bin)
|