clew-code 0.3.3 → 0.3.5
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 +22 -8
- package/dist/main.js +2073 -2166
- package/package.json +5 -5
- package/scripts/bun-run.mjs +33 -0
- package/scripts/postbuild-inject-macro.mjs +36 -0
package/README.md
CHANGED
|
@@ -24,11 +24,11 @@ A multi-provider AI coding CLI that codes, learns your preferences, coordinates
|
|
|
24
24
|
|
|
25
25
|
---
|
|
26
26
|
|
|
27
|
-
##
|
|
27
|
+
## Overview
|
|
28
28
|
|
|
29
|
-
Clew Code is a **multi-provider** AI coding agent — you're not locked into one API.
|
|
29
|
+
Clew Code is a **multi-provider** AI coding agent — you're not locked into one API. It ships with a MiMo-inspired memory system (SQLite-backed, budgeted injection, cross-session persistence), agent-to-agent LAN peer coordination with swarm execution and memory sync, a preference-learning engine, autonomous background loops, multi-pass context compaction, MCP integration, plan mode with full bypass permissions, goal verification, Max Mode parallel candidates, structured checkpoints, automated memory consolidation (Dream + Distill), and 27 provider adapters.
|
|
30
30
|
|
|
31
|
-
>
|
|
31
|
+
> Works with any provider. Gateway-native auth at [clew-code.org](https://clew-code.org).
|
|
32
32
|
|
|
33
33
|
---
|
|
34
34
|
|
|
@@ -218,7 +218,15 @@ You → personal profile → understand requirement → plan approach
|
|
|
218
218
|
→ worker implements → report back → you review
|
|
219
219
|
```
|
|
220
220
|
|
|
221
|
-
In personal profile, you
|
|
221
|
+
In personal profile, you are not a code editor by default — the `delegate` skill spawns a Codex worker with a structured task prompt (goal, scope, constraints, validation criteria) and reports what was done, what passed/failed, and what's blocked. Use personal profile when you want to orchestrate rather than implement.
|
|
222
|
+
|
|
223
|
+
### Additional capabilities in personal profile
|
|
224
|
+
|
|
225
|
+
- **Cross-session memory** — reads stored memories on session start, writes preferences, corrections, and patterns back. Never repeats itself across sessions.
|
|
226
|
+
- **Skill creation** — automatically creates reusable `SKILL.md` files in `.clew/skills/` when it spots a repeatable multi-step pattern.
|
|
227
|
+
- **Scheduling** — uses `/cron` for recurring tasks (daily reports, weekly audits) and `/loop` for repeated polling.
|
|
228
|
+
- **Daemon mode** — when running in the background (no user watching), it checks the task queue, runs cron tasks on schedule, and consolidates memory automatically.
|
|
229
|
+
- **Parallel delegation** — breaks complex workflows into independent sub-tasks and runs them concurrently via sub-agents or peers.
|
|
222
230
|
|
|
223
231
|
Profile and last-used permission mode are saved between sessions.
|
|
224
232
|
|
|
@@ -366,11 +374,17 @@ We welcome contributions. Read [CONTRIBUTING.md](CONTRIBUTING.md), [CODE_OF_COND
|
|
|
366
374
|
<details>
|
|
367
375
|
<summary><strong>v0.3.3 — unreleased</strong></summary>
|
|
368
376
|
|
|
369
|
-
- **
|
|
377
|
+
- **MACRO globals fix**: `clew update` no longer crashes with `TypeError` — globals now injected at build time.
|
|
378
|
+
- **17 dead stub commands removed** (`ant-trace`, `bughunter`, `env`, `issue`, `onboarding`, etc.) plus `/looplock` and `/agents`.
|
|
379
|
+
- **Compact Orchestrator**: Unified entry point for all compaction strategies.
|
|
380
|
+
- **CLAUDE → CLEW full rename**: All remaining `.claude/` references renamed to `.clew/` across 83 files.
|
|
370
381
|
- **URL rebranding**: All `claude.ai` and `claude.com` URLs replaced with `clew-code.org`.
|
|
371
|
-
- **
|
|
372
|
-
- **
|
|
373
|
-
- **
|
|
382
|
+
- **Gateway auth system**: Login/signup via browser or terminal at `api.clew-code.org`. `/login` and `/logout` now gateway-native.
|
|
383
|
+
- **Windows clipboard fix**: PowerShell `Set-Clipboard` with UTF-8 replaces `clip.exe` (corrupted non-ASCII text).
|
|
384
|
+
- **Cross-platform Computer Use Tool**: macOS/Linux support added alongside Windows.
|
|
385
|
+
- **Onboarding wizard redesigned**: 27 providers, direct API key entry, no OAuth step.
|
|
386
|
+
- **Auto-compact threshold adjusted**: Background compaction triggers earlier (0.65).
|
|
387
|
+
- **MCP URLs rebranded**: Diagnostics now link to `clew-code.org`.
|
|
374
388
|
- **AGENTS.md updated**: Gateway mode, dashboard deployment, removed commands documentation.
|
|
375
389
|
|
|
376
390
|
</details>
|