clew-code 0.2.27 → 0.2.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,91 +1,90 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Architecture — Clew Code</title>
7
- <meta name="description" href="Codebase architecture of Clew Code.">
8
- <link rel="icon" type="image/svg+xml" href="assets/clew.svg">
9
- <link rel="preconnect" href="https://fonts.googleapis.com">
10
- <link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
11
- <link rel="stylesheet" href="css/styles.css">
12
- </head>
13
- <body>
14
- <header class="header"></header>
15
- <div id="sidebarOverlay" class="sidebar-overlay"></div>
16
- <aside id="sidebar" class="sidebar"></aside>
17
-
18
- <div class="content-wrap">
19
- <div class="content">
20
-
21
- <div class="breadcrumbs"><a href="index.html">Home</a><span class="sep">/</span><span class="current">Architecture</span></div>
22
-
23
- <h1>Architecture</h1>
24
- <p class="sub">Clew Code is a single-entry Bun bundle built with TypeScript (ESM, strict mode).</p>
25
-
26
- <h2 id="layers">Layer Overview</h2>
27
- <p>The architecture is layered: CLI entrypoint → Orchestrator → Context/Tools/Policy/Provider → Session logger.</p>
28
-
29
- <pre><code>CLI (parseArgs)
30
-
31
- Orchestrator (Agent loop)
32
-
33
- Context ── Tools ── Policy ── Provider
34
-
35
- Session Logger
36
- </code></pre>
37
-
38
- <h2 id="sourcelayout">Source Layout</h2>
39
- <pre><code>src/
40
- ├── main.tsx # Entry point
41
- ├── query.ts / QueryEngine.ts
42
- ├── agentRuntime/ # Background agent orchestration
43
- ├── commands/ # Slash command implementations
44
- ├── tools/ # 50+ built-in tools
45
- ├── services/
46
- │ ├── ai/ # Provider manager + 27 providers
47
- │ ├── mcp/ # MCP client + auth + transports
48
- │ ├── plugins/ # Plugin hooks + marketplace
49
- │ ├── autonomous/ # Agent loop + task queue + cron
50
- │ ├── lsp/ # LSP integration
51
- │ └── Supervisor/ # Agent supervisor IPC
52
- ├── mesh/ # MeshServer + MeshDiscovery
53
- ├── bridge/ # WebSocket bridge + relay
54
- ├── components/ # Ink terminal UI components
55
- ├── state/ # AppState management
56
- └── hooks/ # React hooks
57
- </code></pre>
58
-
59
- <h2 id="execution-layers">Execution Layers</h2>
60
- <p>Clew Code has several agent execution layers:</p>
61
-
62
- <table>
63
- <thead>
64
- <tr><th>Layer</th><th>Duration</th><th>Use Case</th></tr>
65
- </thead>
66
- <tbody>
67
- <tr><td>Agent</td><td>Session-long</td><td>Main chat, custom agents in <code>.clew/agents/*.md</code></td></tr>
68
- <tr><td>Subagent</td><td>One-shot</td><td>Explore codebase, test triage, review</td></tr>
69
- <tr><td>Teammate/Swarm</td><td>Multi-turn</td><td>Coordinated long-running agent teams</td></tr>
70
- <tr><td>LAN Mesh</td><td>Persistent</td><td>Cross-machine coordination via <code>/mesh</code></td></tr>
71
- <tr><td>Process Mesh</td><td>One-shot</td><td>External CLI workers (Codex exec/pty)</td></tr>
72
- <tr><td>ACP</td><td>External</td><td>Editor/IDE/agent → Clew protocol boundary</td></tr>
73
- </tbody>
74
- </table>
75
-
76
- <h2 id="key-concepts">Key Concepts</h2>
77
-
78
- <h3>Multi-Pass Compaction</h3>
79
- <p>Automatic chunk-based context compression with recursive re-compaction when context exceeds the model window. Trigger manually with <code>/compact</code>.</p>
80
-
81
- <h3>Plan Mode</h3>
82
- <p>Full-access planning mode with bypass permissions. Plans persist to <code>.clew/plans/</code> with progress snapshots.</p>
83
-
84
- <h3>Provider Manager</h3>
85
- <p>The ProviderManager routes all LLM calls through a unified interface. Each provider has an adapter that normalizes requests and responses. The provider can be switched mid-session via <code>/model</code>.</p>
86
- </div>
87
- </div>
88
-
89
- <script src="js/main.js"></script>
90
- </body>
91
- </html>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Architecture — Clew Code</title>
7
+ <meta name="description" href="Codebase architecture of Clew Code.">
8
+ <link rel="icon" type="image/svg+xml" href="assets/clew.svg">
9
+ <link rel="preconnect" href="https://fonts.googleapis.com">
10
+ <link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
11
+ <link rel="stylesheet" href="css/styles.css">
12
+ </head>
13
+ <body>
14
+ <header class="header"></header>
15
+ <div id="sidebarOverlay" class="sidebar-overlay"></div>
16
+ <aside id="sidebar" class="sidebar"></aside>
17
+
18
+ <div class="content-wrap">
19
+ <div class="content">
20
+
21
+ <div class="breadcrumbs"><a href="index.html">Home</a><span class="sep">/</span><span class="current">Architecture</span></div>
22
+
23
+ <h1>Architecture</h1>
24
+ <p class="sub">Clew Code is a single-entry Bun bundle built with TypeScript (ESM, strict mode).</p>
25
+
26
+ <h2 id="layers">Layer Overview</h2>
27
+ <p>The architecture is layered: CLI entrypoint → Orchestrator → Context/Tools/Policy/Provider → Session logger.</p>
28
+
29
+ <pre><code>CLI (parseArgs)
30
+
31
+ Orchestrator (Agent loop)
32
+
33
+ Context ── Tools ── Policy ── Provider
34
+
35
+ Session Logger
36
+ </code></pre>
37
+
38
+ <h2 id="sourcelayout">Source Layout</h2>
39
+ <pre><code>src/
40
+ ├── main.tsx # Entry point
41
+ ├── query.ts / QueryEngine.ts
42
+ ├── agentRuntime/ # Background agent orchestration
43
+ ├── commands/ # Slash command implementations
44
+ ├── tools/ # 50+ built-in tools
45
+ ├── services/
46
+ │ ├── ai/ # Provider manager + 27 providers
47
+ │ ├── mcp/ # MCP client + auth + transports
48
+ │ ├── plugins/ # Plugin hooks + marketplace
49
+ │ ├── autonomous/ # Agent loop + task queue + cron
50
+ │ ├── lsp/ # LSP integration
51
+ │ └── Supervisor/ # Agent supervisor IPC
52
+ ├── peer/ # PeerServer + PeerDiscovery
53
+ ├── bridge/ # WebSocket bridge + relay
54
+ ├── components/ # Ink terminal UI components
55
+ ├── state/ # AppState management
56
+ └── hooks/ # React hooks
57
+ </code></pre>
58
+
59
+ <h2 id="execution-layers">Execution Layers</h2>
60
+ <p>Clew Code has several agent execution layers:</p>
61
+
62
+ <table>
63
+ <thead>
64
+ <tr><th>Layer</th><th>Duration</th><th>Use Case</th></tr>
65
+ </thead>
66
+ <tbody>
67
+ <tr><td>Agent</td><td>Session-long</td><td>Main chat, custom agents in <code>.clew/agents/*.md</code></td></tr>
68
+ <tr><td>Subagent</td><td>One-shot</td><td>Explore codebase, test triage, review</td></tr>
69
+ <tr><td>Teammate/Swarm</td><td>Multi-turn</td><td>Coordinated long-running agent teams</td></tr>
70
+ <tr><td>LAN Peer</td><td>Persistent</td><td>Cross-machine coordination via <code>/peer</code></td></tr>
71
+ <tr><td>Process Peer</td><td>One-shot</td><td>External CLI workers (Codex exec/pty)</td></tr>
72
+ </tbody>
73
+ </table>
74
+
75
+ <h2 id="key-concepts">Key Concepts</h2>
76
+
77
+ <h3>Multi-Pass Compaction</h3>
78
+ <p>Automatic chunk-based context compression with recursive re-compaction when context exceeds the model window. Trigger manually with <code>/compact</code>.</p>
79
+
80
+ <h3>Plan Mode</h3>
81
+ <p>Full-access planning mode with bypass permissions. Plans persist to <code>.clew/plans/</code> with progress snapshots.</p>
82
+
83
+ <h3>Provider Manager</h3>
84
+ <p>The ProviderManager routes all LLM calls through a unified interface. Each provider has an adapter that normalizes requests and responses. The provider can be switched mid-session via <code>/model</code>.</p>
85
+ </div>
86
+ </div>
87
+
88
+ <script src="js/main.js"></script>
89
+ </body>
90
+ </html>
@@ -1,150 +1,141 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Changelog — Clew Code</title>
7
- <meta name="description" content="Release history and changelog for Clew Code.">
8
- <link rel="icon" type="image/svg+xml" href="assets/clew.svg">
9
- <link rel="preconnect" href="https://fonts.googleapis.com">
10
- <link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
11
- <link rel="stylesheet" href="css/styles.css">
12
- </head>
13
- <body>
14
- <header class="header"></header>
15
- <div id="sidebarOverlay" class="sidebar-overlay"></div>
16
- <aside id="sidebar" class="sidebar"></aside>
17
-
18
- <div class="content-wrap">
19
- <div class="content">
20
-
21
- <div class="breadcrumbs"><a href="index.html">Home</a><span class="sep">/</span><span class="current">Changelog</span></div>
22
-
23
- <h1>Changelog</h1>
24
-
25
- <h2 id="0.2.21">v0.2.21 — 2026-06-14</h2>
26
- <h3>Fixed</h3>
27
- <ul>
28
- <li><strong>Detect package manager from install path</strong> — now correctly detects whether to use <code>bun</code> or <code>npm</code> based on the installation path, not the runtime.</li>
29
- <li><strong>Polish UI rendering</strong> — fixed empty-state edge cases and visual glitches.</li>
30
- </ul>
31
-
32
- <h2 id="0.2.20">v0.2.20 — 2026-06-14</h2>
33
- <h3>Fixed</h3>
34
- <ul>
35
- <li><strong>mesh-spawn</strong> — spawn <code>cmd.exe</code> directly with <code>/k</code> and set title inside command instead of using <code>start</code>.</li>
36
- <li><strong>mesh-spawn cd fix</strong> — execute <code>cd</code> before running clew command to bypass cmd.exe quote stripping.</li>
37
- </ul>
38
-
39
- <h2 id="0.2.16">v0.2.16 — 2026-06-14</h2>
40
- <h3>Fixed</h3>
41
- <ul>
42
- <li><strong>Auto-relaunch after update</strong> — <code>UpdateDialog.startInstall()</code> now spawns a detached child process immediately after install completes. No more manual restart required.</li>
43
- </ul>
44
-
45
- <h2 id="0.2.15">v0.2.15 — 2026-06-14</h2>
46
- <h3>Added</h3>
47
- <ul>
48
- <li><strong>ACP + Mesh integration</strong> — <code>AcpMeshBoundary</code> for routing editor ACP and REST ACP through the process peer / mesh layer with <code>AbortSignal</code> and <code>onProgress</code> support.</li>
49
- <li><strong>AcpRunController</strong> — lifecycle owner for ACP runs: creates run, wires <code>AbortController</code>, executes through mesh boundary, maps results to terminal state.</li>
50
- <li><strong>WebSocket transport</strong> — <code>ACPWebSocketServer.ts</code> Bun-native WebSocket server bridging remote editor connections via NDJSON stream.</li>
51
- <li><strong>SSE streaming</strong> — <code>GET /runs/:id/stream</code> endpoint with 500ms polling and keepalive.</li>
52
- </ul>
53
- <h3>Changed</h3>
54
- <ul>
55
- <li><strong>Editor ACP shapes fixed</strong> — <code>PromptResponse</code> now returns only <code>{ stopReason }</code>, <code>sessionUpdate</code> uses <code>SessionNotification</code> shape.</li>
56
- </ul>
57
-
58
- <h2 id="0.2.14">v0.2.142026-06-14</h2>
59
- <h3>Added</h3>
60
- <ul>
61
- <li><strong>Peer task queue system</strong> — queuing commands when busy with priority levels, auto-dequeue, SSE queue events.</li>
62
- <li><strong>Peer health monitoring</strong> — healthy/lagging/offline states, latency tracking.</li>
63
- <li><strong>Long-term memory system</strong> — auto-extraction, session consolidation, cross-session history, timeline queries.</li>
64
- <li><strong>Gemini Code Assist provider</strong> OAuth-based provider integration.</li>
65
- <li><strong>Dashboard Monitor</strong> — real-time agent and daemon monitoring with tabbed views.</li>
66
- </ul>
67
- <h3>Changed</h3>
68
- <ul>
69
- <li><strong>peer → swarm rename</strong> — all <code>/peer</code> commands migrated to <code>/swarm</code>.</li>
70
- </ul>
71
-
72
- <h2 id="0.2.13">v0.2.13 2026-06-13</h2>
73
- <h3>Changed</h3>
74
- <ul>
75
- <li>Formatting pass across codebase via Biome.</li>
76
- <li>bun.lock synchronized with updated dependencies.</li>
77
- </ul>
78
-
79
- <h2 id="0.2.12">v0.2.12 2026-06-13</h2>
80
- <h3>Added</h3>
81
- <ul>
82
- <li><strong>Provider consolidation</strong> — GoogleProvider and ClewGatewayProvider now extend OpenAICompatibleProvider, removing 679 lines of duplicated code.</li>
83
- <li>Zod v4 migration (<code>.passthrough()</code> <code>.loose()</code>).</li>
84
- <li>PR command refactored to use <code>--json</code> + <code>JSON.parse</code>.</li>
85
- </ul>
86
-
87
- <h2 id="0.2.11">v0.2.112026-06-13</h2>
88
- <h3>Added</h3>
89
- <ul>
90
- <li>Further swarm/peer system refinements.</li>
91
- <li>Bug fixes and performance improvements.</li>
92
- </ul>
93
-
94
- <h2 id="0.2.7">v0.2.7 — 2026-06-11</h2>
95
- <h3>Added</h3>
96
- <ul>
97
- <li><strong>process_peer PTY terminal box</strong> — terminal-style progress box with ANSI-preserving output tail.</li>
98
- <li><strong><code>/mesh run codex &lt;task&gt;</code></strong> — one-shot Codex process peer from chat.</li>
99
- <li><strong>Auto-update dialog</strong> — npm update notification before app starts.</li>
100
- <li><strong>Rich model fetching</strong> — API models now carry context window, vision, tools, reasoning, free tags.</li>
101
- <li><strong><code>/model list</code> capability tags</strong> — <code>[200K ctx, vision, tools, reason, free]</code> per model.</li>
102
- <li><strong>Cost in status line</strong> — shows session cost when &gt;$0.</li>
103
- </ul>
104
-
105
- <h2 id="0.2.6">v0.2.6 — 2026-06-10</h2>
106
- <h3>Added</h3>
107
- <ul>
108
- <li><strong>Peer HTTP heartbeat</strong> — 60s liveness checks, offline peers detected immediately.</li>
109
- <li><strong><code>/agents</code> visual polish</strong> — redesigned dashboard.</li>
110
- <li><strong>Auto-updater</strong> — switched from Anthropic GCS to npm registry.</li>
111
- </ul>
112
- <h3>Removed</h3>
113
- <ul>
114
- <li>GitHub Copilot provider and all references cleaned out.</li>
115
- </ul>
116
-
117
- <h2 id="0.2.5">v0.2.5 — 2026-06-10</h2>
118
- <h3>Added</h3>
119
- <ul>
120
- <li><strong>Rebranded to Clew Code</strong> — docs, UI copy, and package updated.</li>
121
- <li><strong>Memory search</strong> — <code>/memory search</code> for stored entries.</li>
122
- <li><strong>Peer tools</strong> — 14 AI coordination tools, peer help, connection count in footer.</li>
123
- </ul>
124
-
125
- <h2 id="0.2.4">v0.2.4 2026-06-08</h2>
126
- <h3>Added</h3>
127
- <ul>
128
- <li><strong>Peer-to-peer</strong> UDP multicast discovery, file registry, 14 AI coordination tools, interactive PeerMenu.</li>
129
- <li><strong>Autonomous agents</strong> — agent loop, supervisor integration, task queue, Loop Lock.</li>
130
- <li><strong>Workflow Rainbow</strong> per-character gradient highlight for "workflow" keyword.</li>
131
- </ul>
132
-
133
- <h2 id="0.2.3">v0.2.3 2026-06-07</h2>
134
- <h3>Added</h3>
135
- <ul>
136
- <li><code>/effort</code> works with any provider exposing <code>reasoningEffort</code>.</li>
137
- <li><code>/model</code> fetches live model list from provider APIs.</li>
138
- <li>Relay server for cross-network remote control.</li>
139
- <li>Bridge v2: provider-agnostic remote control.</li>
140
- <li><code>/pr create/list/view/review/merge/status</code>.</li>
141
- <li>Security: PowerShell rules, malformed tool call guard, 100 MB bash output cap.</li>
142
- </ul>
143
-
144
- <p><a href="https://github.com/ClewCode/ClewCode/blob/main/CHANGELOG.md">View full changelog on GitHub →</a></p>
145
- </div>
146
- </div>
147
-
148
- <script src="js/main.js"></script>
149
- </body>
150
- </html>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Changelog — Clew Code</title>
7
+ <meta name="description" content="Release history and changelog for Clew Code.">
8
+ <link rel="icon" type="image/svg+xml" href="assets/clew.svg">
9
+ <link rel="preconnect" href="https://fonts.googleapis.com">
10
+ <link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
11
+ <link rel="stylesheet" href="css/styles.css">
12
+ </head>
13
+ <body>
14
+ <header class="header"></header>
15
+ <div id="sidebarOverlay" class="sidebar-overlay"></div>
16
+ <aside id="sidebar" class="sidebar"></aside>
17
+
18
+ <div class="content-wrap">
19
+ <div class="content">
20
+
21
+ <div class="breadcrumbs"><a href="index.html">Home</a><span class="sep">/</span><span class="current">Changelog</span></div>
22
+
23
+ <h1>Changelog</h1>
24
+
25
+ <h2 id="0.2.21">v0.2.21 — 2026-06-14</h2>
26
+ <h3>Fixed</h3>
27
+ <ul>
28
+ <li><strong>Detect package manager from install path</strong> — now correctly detects whether to use <code>bun</code> or <code>npm</code> based on the installation path, not the runtime.</li>
29
+ <li><strong>Polish UI rendering</strong> — fixed empty-state edge cases and visual glitches.</li>
30
+ </ul>
31
+
32
+ <h2 id="0.2.20">v0.2.20 — 2026-06-14</h2>
33
+ <h3>Fixed</h3>
34
+ <ul>
35
+ <li><strong>peer-spawn</strong> — spawn <code>cmd.exe</code> directly with <code>/k</code> and set title inside command instead of using <code>start</code>.</li>
36
+ <li><strong>peer-spawn cd fix</strong> — execute <code>cd</code> before running clew command to bypass cmd.exe quote stripping.</li>
37
+ </ul>
38
+
39
+ <h2 id="0.2.16">v0.2.16 — 2026-06-14</h2>
40
+ <h3>Fixed</h3>
41
+ <ul>
42
+ <li><strong>Auto-relaunch after update</strong> — <code>UpdateDialog.startInstall()</code> now spawns a detached child process immediately after install completes. No more manual restart required.</li>
43
+ </ul>
44
+
45
+ <h2 id="0.2.15">v0.2.15 — 2026-06-14</h2>
46
+
47
+ <h2 id="0.2.14">v0.2.14 — 2026-06-14</h2>
48
+ <h3>Added</h3>
49
+ <ul>
50
+ <li><strong>Peer task queue system</strong> — queuing commands when busy with priority levels, auto-dequeue, SSE queue events.</li>
51
+ <li><strong>Peer health monitoring</strong> — healthy/lagging/offline states, latency tracking.</li>
52
+ <li><strong>Long-term memory system</strong> — auto-extraction, session consolidation, cross-session history, timeline queries.</li>
53
+ <li><strong>Gemini Code Assist provider</strong> — OAuth-based provider integration.</li>
54
+ <li><strong>Dashboard Monitor</strong> — real-time agent and daemon monitoring with tabbed views.</li>
55
+ </ul>
56
+ <h3>Changed</h3>
57
+ <ul>
58
+ <li><strong>peer naming reverted</strong> — the peer-facing command family stays on <code>/peer</code>.</li>
59
+ </ul>
60
+
61
+ <h2 id="0.2.13">v0.2.132026-06-13</h2>
62
+ <h3>Changed</h3>
63
+ <ul>
64
+ <li>Formatting pass across codebase via Biome.</li>
65
+ <li>bun.lock synchronized with updated dependencies.</li>
66
+ </ul>
67
+
68
+ <h2 id="0.2.12">v0.2.12 — 2026-06-13</h2>
69
+ <h3>Added</h3>
70
+ <ul>
71
+ <li><strong>Provider consolidation</strong> — GoogleProvider and ClewGatewayProvider now extend OpenAICompatibleProvider, removing 679 lines of duplicated code.</li>
72
+ <li>Zod v4 migration (<code>.passthrough()</code> <code>.loose()</code>).</li>
73
+ <li>PR command refactored to use <code>--json</code> + <code>JSON.parse</code>.</li>
74
+ </ul>
75
+
76
+ <h2 id="0.2.11">v0.2.11 2026-06-13</h2>
77
+ <h3>Added</h3>
78
+ <ul>
79
+ <li>Further peer system refinements.</li>
80
+ <li>Bug fixes and performance improvements.</li>
81
+ </ul>
82
+
83
+ <h2 id="0.2.7">v0.2.7 2026-06-11</h2>
84
+ <h3>Added</h3>
85
+ <ul>
86
+ <li><strong>process_peer PTY terminal box</strong> — terminal-style progress box with ANSI-preserving output tail.</li>
87
+ <li><strong><code>/peer run codex &lt;task&gt;</code></strong> — one-shot Codex process peer from chat.</li>
88
+ <li><strong>Auto-update dialog</strong> — npm update notification before app starts.</li>
89
+ <li><strong>Rich model fetching</strong> — API models now carry context window, vision, tools, reasoning, free tags.</li>
90
+ <li><strong><code>/model list</code> capability tags</strong> — <code>[200K ctx, vision, tools, reason, free]</code> per model.</li>
91
+ <li><strong>Cost in status line</strong> — shows session cost when &gt;$0.</li>
92
+ </ul>
93
+
94
+ <h2 id="0.2.6">v0.2.6 — 2026-06-10</h2>
95
+ <h3>Added</h3>
96
+ <ul>
97
+ <li><strong>Peer HTTP heartbeat</strong> — 60s liveness checks, offline peers detected immediately.</li>
98
+ <li><strong><code>/agents</code> visual polish</strong> — redesigned dashboard.</li>
99
+ <li><strong>Auto-updater</strong> — switched from Anthropic GCS to npm registry.</li>
100
+ </ul>
101
+ <h3>Removed</h3>
102
+ <ul>
103
+ <li>GitHub Copilot provider and all references cleaned out.</li>
104
+ </ul>
105
+
106
+ <h2 id="0.2.5">v0.2.5 — 2026-06-10</h2>
107
+ <h3>Added</h3>
108
+ <ul>
109
+ <li><strong>Rebranded to Clew Code</strong> — docs, UI copy, and package updated.</li>
110
+ <li><strong>Memory search</strong> — <code>/memory search</code> for stored entries.</li>
111
+ <li><strong>Peer tools</strong> — 14 AI coordination tools, peer help, connection count in footer.</li>
112
+ </ul>
113
+
114
+ <h2 id="0.2.4">v0.2.4 2026-06-08</h2>
115
+ <h3>Added</h3>
116
+ <ul>
117
+ <li><strong>Peer-to-peer</strong> — UDP multicast discovery, file registry, 14 AI coordination tools, interactive PeerMenu.</li>
118
+ <li><strong>Autonomous agents</strong> — agent loop, supervisor integration, task queue, Loop Lock.</li>
119
+ <li><strong>Workflow Rainbow</strong> — per-character gradient highlight for "workflow" keyword.</li>
120
+ </ul>
121
+
122
+ <h2 id="0.2.3">v0.2.32026-06-07</h2>
123
+ <h3>Added</h3>
124
+ <ul>
125
+ <li><code>/effort</code> works with any provider exposing <code>reasoningEffort</code>.</li>
126
+ <li><code>/model</code> fetches live model list from provider APIs.</li>
127
+ <li>Relay server for cross-network remote control.</li>
128
+ <li>Bridge v2: provider-agnostic remote control.</li>
129
+ <li><code>/pr create/list/view/review/merge/status</code>.</li>
130
+ <li>Security: PowerShell rules, malformed tool call guard, 100 MB bash output cap.</li>
131
+ </ul>
132
+
133
+ <p><a href="https://github.com/ClewCode/ClewCode/blob/main/CHANGELOG.md">View full changelog on GitHub →</a></p>
134
+ </div>
135
+ </div>
136
+
137
+ <script src="js/main.js"></script>
138
+ </body>
139
+ </html>
140
+
141
+