Skip to content

Commit 496756f

Browse files
committed
landing + go.mod: fix direct deps claim — 0→2 (go-vector, x/net), tidy go.mod
1 parent 3e62cf0 commit 496756f

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

docs/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>odek · ~11 MB zero-dependency Go agent runtime</title>
7-
<meta name="description" content="odek — the fastest, minimal, zero-dependency Go autonomous agent runtime. One binary. One loop. Zero frameworks.">
6+
<title>odek · ~11 MB, 2 external deps Go agent runtime</title>
7+
<meta name="description" content="odek — the fastest, minimal Go autonomous agent runtime. One binary. One loop. Zero frameworks.">
88
<link rel="preconnect" href="https://fonts.googleapis.com">
99
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&family=Outfit:wght@400;500;600;700;800&display=swap" rel="stylesheet">
1010
<style>
@@ -298,7 +298,7 @@
298298
<section class="hero">
299299
<div class="container">
300300
<h1>odek</h1>
301-
<p class="sub"><span class="size">~11 MB</span> · zero direct dependencies.<br>Think, therefore act.</p>
301+
<p class="sub"><span class="size">~11 MB</span> · 2 external dependencies.<br>Think, therefore act.</p>
302302

303303
<div class="install-block">
304304
<code>go install github.com/BackendStack21/kode/cmd/odek@latest</code>
@@ -316,7 +316,7 @@ <h2>The <span class="hl">Five Whys</span></h2>
316316
<ul class="whys">
317317
<li>
318318
<span class="q">Why?</span>
319-
<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>2 indirect dependencies</strong><code>go-vector</code> and <code>golang.org/x/net</code>.</span>
319+
<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>2 external dependencies</strong><code>go-vector</code> and <code>golang.org/x/net</code>.</span>
320320
</li>
321321
<li>
322322
<span class="q">Why?</span>
@@ -507,7 +507,7 @@ <h2>odek vs <span class="hl">the rest</span></h2>
507507
<tr><th></th><th>odek</th><th>Python agents</th></tr>
508508
</thead>
509509
<tbody>
510-
<tr><td>Direct dependencies</td><td class="win">Zero. stdlib only.</td><td>200+ packages</td></tr>
510+
<tr><td>Direct dependencies</td><td class="win">2 — go-vector, x/net</td><td>200+ packages</td></tr>
511511
<tr><td>Binary size</td><td class="win">~11 MB static</td><td>50–200 MB (venv)</td></tr>
512512
<tr><td>Startup</td><td class="win">Instant</td><td>2–10 seconds</td></tr>
513513
<tr><td>Sandbox</td><td class="win"><code>--sandbox</code> flag</td><td>Manual Docker setup</td></tr>

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ module github.com/BackendStack21/kode
33
go 1.25.0
44

55
require (
6-
github.com/BackendStack21/go-vector v1.1.1 // indirect
7-
golang.org/x/net v0.54.0 // indirect
6+
github.com/BackendStack21/go-vector v1.1.1
7+
golang.org/x/net v0.54.0
88
)

0 commit comments

Comments
 (0)