Skip to content

Commit 52b567f

Browse files
committed
docs: use 'minimal' for dependency mentions instead of specific counts/packages
1 parent 3bc34bc commit 52b567f

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/CHEATSHEET.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ odek mcp --sse-addr :8081 # SSE transport
182182

183183
## Key Design Properties
184184

185-
- **Zero external Go deps** (go-vector + x/net for WebSocket — both zero-dep Go packages)
185+
- **Minimal Go dependencies** — all zero-dep Go packages from 21no.de
186186
- **~11 MB static binary**
187187
- **One loop, one interface** — tool implementers write `func Call(args string) (string, error)`
188188
- **File-based config** — no YAML, no DSL, no schema generation

docs/MEMORY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Memory System
22

3-
odek has a **three-tier file-based memory** system. Zero external dependencies beyond go-vector (which is also zero-dep).
3+
odek has a **three-tier file-based memory** system. Minimal external dependencies from the 21no.de ecosystem (go-vector, go-mcp), all zero-dep Go packages.
44

55
## Three Tiers
66

docs/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ <h2>The <span class="hl">Five Whys</span></h2>
331331
<ul class="whys">
332332
<li>
333333
<span class="q">Why?</span>
334-
<span class="a">Because every AI agent framework today ships a <strong>200-package dependency tree</strong> and a 200 MB Python venv. odek is an <strong>~11 MB static binary</strong> — two external packages for WebSockets and terminal I/O, everything else is stdlib.</span>
334+
<span class="a">Because every AI agent framework today ships a <strong>200-package dependency tree</strong> and a 200 MB Python venv. odek is an <strong>~11 MB static binary</strong> with <strong>minimal dependencies</strong>everything else is Go stdlib.</span>
335335
</li>
336336
<li>
337337
<span class="q">Why?</span>
@@ -522,7 +522,7 @@ <h2>odek vs <span class="hl">the rest</span></h2>
522522
<tr><th></th><th>odek</th><th>Python agents</th></tr>
523523
</thead>
524524
<tbody>
525-
<tr><td>Direct dependencies</td><td class="win">Minimal — Go stdlib + 2 x/*</td><td>200+ packages</td></tr>
525+
<tr><td>Direct dependencies</td><td class="win">Minimal — Go stdlib</td><td>200+ packages</td></tr>
526526
<tr><td>Binary size</td><td class="win">~11 MB static</td><td>50–200 MB (venv)</td></tr>
527527
<tr><td>Startup</td><td class="win">Instant</td><td>2–10 seconds</td></tr>
528528
<tr><td>Sandbox</td><td class="win"><code>--sandbox</code> flag</td><td>Manual Docker setup</td></tr>

0 commit comments

Comments
 (0)