clawdi 0.7.0 → 0.8.1
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 +7 -3
- package/dist/index.js +228 -224
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -46,6 +46,7 @@ That gets you:
|
|
|
46
46
|
- Agent auto-detection for Claude Code, Codex, Hermes, and OpenClaw
|
|
47
47
|
- MCP registration so your agent can call Clawdi tools
|
|
48
48
|
- The bundled `clawdi` skill installed into each detected agent
|
|
49
|
+
- Background sync daemons installed and started for every registered agent
|
|
49
50
|
- A health check that verifies auth, agent paths, vault access, and MCP config
|
|
50
51
|
|
|
51
52
|
By default the CLI talks to hosted Clawdi Cloud. Want to run your own backend? See [Own the Stack](#own-the-stack).
|
|
@@ -242,8 +243,9 @@ Each agent has a dedicated adapter in [`packages/cli/src/adapters`](https://gith
|
|
|
242
243
|
| --- | --- |
|
|
243
244
|
| `clawdi auth login` / `logout` | Authenticate this machine |
|
|
244
245
|
| `clawdi status [--json]` | Show auth and sync state |
|
|
245
|
-
| `clawdi setup [--agent <type>]` | Register local agents, install MCP, install the bundled skill |
|
|
246
|
+
| `clawdi setup [--agent <type>] [--no-daemon]` | Register local agents, install MCP, install the bundled skill, and install/start daemons by default |
|
|
246
247
|
| `clawdi teardown [--agent <type>]` | Remove Clawdi's local agent wiring |
|
|
248
|
+
| `clawdi daemon run/install/status/logs/doctor/restart/uninstall` | Run and manage the background sync daemon (`serve` remains a legacy alias) |
|
|
247
249
|
| `clawdi push` | Upload sessions and skills |
|
|
248
250
|
| `clawdi pull` | Download cloud skills into registered agents |
|
|
249
251
|
| `clawdi memory list/search/add/rm` | Manage cross-agent long-term memory |
|
|
@@ -258,7 +260,9 @@ Each agent has a dedicated adapter in [`packages/cli/src/adapters`](https://gith
|
|
|
258
260
|
| `clawdi inject --in <file> --out <file>` | Render `clawdi://` references into templates |
|
|
259
261
|
| `clawdi run --env-file <file> -- <cmd>` | Run a command with explicit vault references resolved |
|
|
260
262
|
| `clawdi doctor` | Diagnose auth, agent paths, vault, and MCP config |
|
|
261
|
-
| `clawdi update` |
|
|
263
|
+
| `clawdi update` | Install the latest CLI version (`--check` only reports) |
|
|
264
|
+
|
|
265
|
+
Auto-update is enabled by default for all newer releases, including majors. Human CLI invocations update the global CLI in the background; installed daemons check on their own cadence, install silently, then let launchd/systemd restart them onto the new code. Disable both with `CLAWDI_NO_AUTO_UPDATE=1` or `clawdi config set autoUpdate false`.
|
|
262
266
|
| `clawdi mcp` | Start the MCP stdio server used by agents |
|
|
263
267
|
|
|
264
268
|
Every command supports `--help`.
|
|
@@ -326,7 +330,7 @@ Common issues:
|
|
|
326
330
|
- **No supported agent detected** - Install a supported agent or pass `--agent claude_code`, `--agent codex`, `--agent hermes`, or `--agent openclaw`.
|
|
327
331
|
- **Memory search is empty** - Add a memory first with `clawdi memory add "..."`, then verify with `clawdi memory search "..."`.
|
|
328
332
|
- **Local backend cannot start because `vector` is missing** - Install `pgvector` for your PostgreSQL 16 instance, or use the included Docker Compose database.
|
|
329
|
-
- **Agent MCP tools look stale** - Run `clawdi setup --agent <type>` again
|
|
333
|
+
- **Agent MCP tools look stale** - Run `clawdi setup --agent <type>` again, then `clawdi daemon restart --all`.
|
|
330
334
|
|
|
331
335
|
## License
|
|
332
336
|
|