From c1070b34659677aaf99570c51518614b30577a1d Mon Sep 17 00:00:00 2001 From: Orkun Manap Date: Sun, 5 Apr 2026 01:36:22 +0200 Subject: [PATCH 1/2] docs: add PicoClaw integration example Co-Authored-By: Claude Opus 4.6 (1M context) --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/README.md b/README.md index 575b306..01b4591 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,29 @@ Windows, Linux, and other install methods → [docs/INSTALLATION.md](docs/INSTAL Full per-agent config, Memory Protocol, and compaction survival → [docs/AGENT-SETUP.md](docs/AGENT-SETUP.md) +### PicoClaw + +[PicoClaw](https://github.com/sipeed/picoclaw) is an ultra-lightweight AI assistant in Go that runs on $10 hardware. Add Engram to your PicoClaw config: + +```json +{ + "tools": { + "mcp": { + "enabled": true, + "servers": { + "engram": { + "enabled": true, + "command": "engram", + "args": ["mcp", "--tools=agent", "--project=my-assistant"] + } + } + } + } +} +``` + +PicoClaw's native MCP client connects to Engram via stdio, giving your agent persistent memory across Telegram, Discord, and other channels. Tested on Raspberry Pi Zero 2 W with both running under 30MB RAM combined. + That's it. No Node.js, no Python, no Docker. **One binary, one SQLite file.** ## How It Works From 61727a416b6c7c3e35978bda1b31a6f49b758381 Mon Sep 17 00:00:00 2001 From: Orkun Manap Date: Sun, 5 Apr 2026 13:41:21 +0200 Subject: [PATCH 2/2] docs: clarify PicoClaw config path and MCP client portability Address review feedback: specify that the JSON belongs in PicoClaw's config.json under tools.mcp.servers, and note that only the engram server command/args are reusable across MCP clients. Co-Authored-By: Claude Opus 4.6 (1M context) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 01b4591..8ec85ae 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ Full per-agent config, Memory Protocol, and compaction survival → [docs/AGENT- ### PicoClaw -[PicoClaw](https://github.com/sipeed/picoclaw) is an ultra-lightweight AI assistant in Go that runs on $10 hardware. Add Engram to your PicoClaw config: +[PicoClaw](https://github.com/sipeed/picoclaw) is an ultra-lightweight AI assistant in Go that runs on $10 hardware. Add the following to PicoClaw's `config.json` under `tools.mcp.servers` (only the `engram` server entry — `command` and `args` — is universal across MCP clients): ```json {