clawdi 0.1.2 → 0.2.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 +17 -8
- package/dist/index.js +140 -136
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,19 +2,27 @@
|
|
|
2
2
|
|
|
3
3
|
iCloud for AI Agents. One CLI to share sessions, skills, memory, and vault secrets across Claude Code, Codex, OpenClaw, and Hermes — with an MCP server on the other end of the pipe.
|
|
4
4
|
|
|
5
|
+
## Quickstart
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# Try without installing
|
|
9
|
+
npx clawdi --help
|
|
10
|
+
|
|
11
|
+
# Or install globally
|
|
12
|
+
npm i -g clawdi # or: bun add -g clawdi
|
|
13
|
+
clawdi auth login # opens the dashboard in your browser to authorize
|
|
14
|
+
clawdi setup # detect agents, register MCP, install skill
|
|
15
|
+
clawdi doctor # verify everything's wired up
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
> Headless? `clawdi auth login --manual` skips the browser and prompts for an API key from **Settings → API Keys**.
|
|
19
|
+
|
|
5
20
|
## Requirements
|
|
6
21
|
|
|
7
22
|
- **Node ≥ 18**
|
|
8
23
|
- At least one supported agent installed on the machine (detected automatically)
|
|
9
24
|
- Bun is only required if you ingest Hermes sessions (`clawdi push --agent hermes`) — `bun:sqlite` is loaded on demand.
|
|
10
25
|
|
|
11
|
-
## Install
|
|
12
|
-
|
|
13
|
-
```bash
|
|
14
|
-
npm i -g clawdi
|
|
15
|
-
# or: bun add -g clawdi
|
|
16
|
-
```
|
|
17
|
-
|
|
18
26
|
## Commands
|
|
19
27
|
|
|
20
28
|
| Command | What it does |
|
|
@@ -46,9 +54,10 @@ Run any command with `--help` to see its flags and real examples.
|
|
|
46
54
|
|
|
47
55
|
| Variable | Purpose |
|
|
48
56
|
| --- | --- |
|
|
49
|
-
| `CLAWDI_API_URL` | Override the backend endpoint (defaults to `http://localhost:8000`) |
|
|
57
|
+
| `CLAWDI_API_URL` | Override the backend endpoint (production builds default to `https://cloud-api.clawdi.ai`; from-source dev defaults to `http://localhost:8000`) |
|
|
50
58
|
| `CLAWDI_DEBUG` | Print stack traces on errors |
|
|
51
59
|
| `CLAWDI_NO_UPDATE_CHECK` | Suppress the non-blocking update check |
|
|
60
|
+
| `CLAWDI_NO_AUTO_UPDATE` | Skip the default-on background auto-updater. Persistent equivalent: `clawdi config set autoUpdate false` |
|
|
52
61
|
| `CLAUDE_CONFIG_DIR` | Custom home for the Claude Code adapter (instead of `~/.claude`) |
|
|
53
62
|
| `CODEX_HOME` | Custom home for the Codex adapter (instead of `~/.codex`) |
|
|
54
63
|
| `HERMES_HOME` | Custom home for the Hermes adapter (instead of `~/.hermes`) |
|