clew-code 0.2.6 → 0.2.7
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.
- package/README.md +36 -1
- package/dist/main.js +2394 -2385
- package/docs/index.html +1 -1
- package/docs/index.th.html +1 -1
- package/package.json +162 -162
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@ Clew Code is a fork of [Claude Code](https://github.com/anthropics/claude-code)
|
|
|
37
37
|
- **Peer-to-peer LAN mesh** — find other Clew instances on the same machine (file registry) or across machines (UDP multicast). Assign tasks, set roles, execute remote commands — 14 AI tools let your agent coordinate autonomously.
|
|
38
38
|
- **Preference learning (Taste)** — learns from accept, reject, edit, test, and lint signals. Three-tier rule engine (≥0.85 blocks edits, ≥0.55 injects into prompts, <0.55 scores silently). Contextual bandit with 6 strategy arms. Auto-decay on 30-day half-life.
|
|
39
39
|
- **Autonomous agent loop** — file-backed persistent task queue, lease-based concurrency, exponential backoff retry, dead-letter management. Cron scheduler for recurring jobs. Max 3 concurrent workers.
|
|
40
|
-
- **50+ built-in tools** — Read, Write, Edit, Glob, Grep, Bash, WebSearch, WebFetch, Browser (Playwright), PR (create/list/view/review/merge/status), NotebookEdit, JsonPath, peer tools, MCP tools.
|
|
40
|
+
- **50+ built-in tools** — Read, Write, Edit, Glob, Grep, Bash, WebSearch, WebFetch, Browser (Playwright), PR (create/list/view/review/merge/status), NotebookEdit, JsonPath, peer tools, MCP tools, ProcessPeer (exec/pty).
|
|
41
41
|
- **MCP — Model Context Protocol** — connect external tools via stdio (local subprocesses), SSE (remote servers with OAuth), or DirectConnect (in-process plugin servers).
|
|
42
42
|
- **Skills, plugins, hooks** — extend without touching source. Skills via `SKILL.md`, plugins with manifest, hooks at every lifecycle stage (PreToolUse, PostToolUse, PreBash, PostPrompt, PreAcceptEdit).
|
|
43
43
|
- **7 permission modes** — default, ask, plan, auto, acceptEdits, bypassPermissions, dontAsk. Granular allow/deny rules with pattern matching.
|
|
@@ -230,6 +230,41 @@ We welcome contributions. Read [CONTRIBUTING.md](CONTRIBUTING.md), [CODE_OF_COND
|
|
|
230
230
|
|
|
231
231
|
## Changelog
|
|
232
232
|
|
|
233
|
+
<details>
|
|
234
|
+
<summary><strong>v0.2.7 — 2026-06-11</strong></summary>
|
|
235
|
+
|
|
236
|
+
- **process_peer PTY terminal box** — terminal-style progress box with ANSI-preserving output tail
|
|
237
|
+
- **`/peer run codex <task>`** — run one-shot Codex process peer from chat
|
|
238
|
+
- **Auto-update dialog** — npm update notification before app starts
|
|
239
|
+
- **Rich model fetching** — API models now carry context window, vision, tools, reasoning, free tags
|
|
240
|
+
- **`/model list` capability tags** — `[200K ctx, vision, tools, reason, free]` per model
|
|
241
|
+
- **GlimmerMessage gradient** — per-character color interpolation with fade effect
|
|
242
|
+
- **Cost in status line** — shows session cost when >$0
|
|
243
|
+
|
|
244
|
+
</details>
|
|
245
|
+
|
|
246
|
+
<details>
|
|
247
|
+
<summary><strong>v0.2.6 — 2026-06-10</strong></summary>
|
|
248
|
+
|
|
249
|
+
- **Taste notifications** — toasts for init, learn, forget, suggest actions
|
|
250
|
+
- **Peer HTTP heartbeat** — 60s liveness checks, offline peers detected immediately
|
|
251
|
+
- **Removed GitHub Copilot** — provider and all references cleaned out
|
|
252
|
+
- **`/agents` visual polish** — redesigned dashboard, cleaner layout
|
|
253
|
+
- **Auto-updater** — switched from Anthropic GCS to npm registry
|
|
254
|
+
|
|
255
|
+
</details>
|
|
256
|
+
|
|
257
|
+
<details>
|
|
258
|
+
<summary><strong>v0.2.5 — 2026-06-10</strong></summary>
|
|
259
|
+
|
|
260
|
+
- **Rebranded to Clew Code** — docs, UI copy, and package updated
|
|
261
|
+
- **Memory search** — `/memory search` for stored entries
|
|
262
|
+
- **Peer tools** — 14 AI coordination tools, peer help, connection count in footer
|
|
263
|
+
- **Taste AI tools** — learn, forget, profile, suggest with system notifications
|
|
264
|
+
- **Fixed `/providers`** — duplicate `const info` runtime error fixed
|
|
265
|
+
|
|
266
|
+
</details>
|
|
267
|
+
|
|
233
268
|
<details>
|
|
234
269
|
<summary><strong>v0.2.4 — 2026-06-08</strong></summary>
|
|
235
270
|
|