Skip to content

Commit 3eb6cec

Browse files
Grivnclaude
andcommitted
Add LLM-Supervised concept diagram to README
Three-panel comparison (LLM-Embedded vs MCP Server vs LLM-Supervised) with detailed Mnemon implementation showing hooks, brain/organ split, and sub-agent delegation. Drawio source + 2x PNG export. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 137235f commit 3eb6cec

3 files changed

Lines changed: 286 additions & 9 deletions

File tree

README.md

Lines changed: 27 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,40 @@ This means: **memory management logic moves from prompt to code — deterministi
3636
| **MCP Server** | Tool provider via MCP protocol | MemCP |
3737
| **LLM-Supervised** | External supervisor of a standalone binary | Mnemon |
3838

39+
<p align="center">
40+
<img src="docs/diagrams/llm-supervised-concept.png" width="720" alt="LLM-Supervised Architecture — three patterns compared, with detailed Mnemon implementation showing hooks, brain/organ split, and sub-agent delegation" />
41+
<br />
42+
<sub>The LLM-Supervised pattern: hooks drive the lifecycle, the host LLM makes judgment calls, the binary handles deterministic computation.</sub>
43+
</p>
44+
3945
See [Design & Architecture](docs/DESIGN.md) for details.
4046

4147
## Quick Start
4248

43-
### Claude Code
49+
### Install
50+
51+
**Homebrew** (macOS / Linux):
52+
53+
```bash
54+
brew install mnemon-dev/tap/mnemon
55+
```
56+
57+
**Go install**:
4458

4559
```bash
4660
go install github.com/mnemon-dev/mnemon@latest
61+
```
62+
63+
**From source**:
64+
65+
```bash
66+
git clone https://github.com/mnemon-dev/mnemon.git && cd mnemon
67+
make install
68+
```
69+
70+
### Claude Code
71+
72+
```bash
4773
mnemon setup
4874
```
4975

@@ -52,21 +78,13 @@ mnemon setup
5278
### OpenClaw
5379

5480
```bash
55-
go install github.com/mnemon-dev/mnemon@latest
5681
mnemon setup --target openclaw
5782
```
5883

5984
This installs the skill and deploys a behavioral guide to `~/.mnemon/prompt/guide.md`. Since hook integration is not yet automated for OpenClaw, provide the guide to your agent and let it self-configure:
6085

6186
> Read `~/.mnemon/prompt/guide.md` and configure yourself to follow its recall/remember workflow.
6287
63-
### From source
64-
65-
```bash
66-
git clone https://github.com/mnemon-dev/mnemon.git && cd mnemon
67-
make install && mnemon setup
68-
```
69-
7088
### Uninstall
7189

7290
```bash

0 commit comments

Comments
 (0)