clawdi 0.8.1 → 0.8.3
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 +13 -8
- package/dist/index.js +204 -185
- package/dist/skills/clawdi/SKILL.md +13 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -73,7 +73,7 @@ Clawdi is the shared layer underneath:
|
|
|
73
73
|
|
|
74
74
|
- **Cross-agent memory** — Store durable preferences, decisions, facts, and project context once. Search them from any connected agent.
|
|
75
75
|
- **Portable skills** — Upload or install agent instructions once, then sync them into every registered agent.
|
|
76
|
-
- **Project sharing** — Share read-only Project access, accept it from
|
|
76
|
+
- **Project sharing** — Share read-only Project access from the dashboard or CLI, accept it from a share page or CLI inbox, and explicitly attach accepted Projects to Agents when they should be used at runtime.
|
|
77
77
|
- **Session sync** — Push local session history to the dashboard for review and recall.
|
|
78
78
|
- **Vault secrets** — Store secrets server-side, commit only `clawdi://` references, and resolve them at runtime.
|
|
79
79
|
- **App connections** — Hook agents into Notion, Gmail, Drive, Calendar, Linear, GitHub, and more from the dashboard. Tools show up inside every connected agent automatically over MCP.
|
|
@@ -90,7 +90,9 @@ Later, in a different agent or a fresh session, ask "what package manager should
|
|
|
90
90
|
Run a fullstack dev command with vault references without putting plaintext secrets on disk:
|
|
91
91
|
|
|
92
92
|
```bash
|
|
93
|
-
clawdi vault set OPENAI_API_KEY
|
|
93
|
+
clawdi vault set OPENAI_API_KEY --prompt
|
|
94
|
+
printf '%s\n' "$OPENAI_API_KEY" | clawdi vault set api-service/env/OPENAI_API_KEY --stdin
|
|
95
|
+
clawdi vault import --vault api-service --section stripe --project personal --yes .env.stripe
|
|
94
96
|
echo "OPENAI_API_KEY=clawdi://project/<project-id>/vault/default/field/OPENAI_API_KEY" > .env.clawdi
|
|
95
97
|
clawdi run --dry-run --env-file .env.clawdi -- npm run dev
|
|
96
98
|
clawdi run --env-file .env.clawdi -- npm run dev
|
|
@@ -99,7 +101,7 @@ clawdi inject --dry-run --in .env.clawdi --out .env.local
|
|
|
99
101
|
clawdi inject --force --in .env.clawdi --out .env.local
|
|
100
102
|
```
|
|
101
103
|
|
|
102
|
-
`clawdi vault set`, `clawdi vault import`, and `clawdi vault list` print exact references that include the Project ID. Project-relative references such as `clawdi://default/OPENAI_API_KEY` still work for portable templates, but exact references are the default copy/read UX.
|
|
104
|
+
`clawdi vault set`, `clawdi vault import`, `clawdi vault rm`, and `clawdi vault list` print the concrete Project target or exact references that include the Project ID. `vault set` supports `--prompt` for secure one-off entry, `--stdin` for scripts, and `--value` when shell history exposure is acceptable; empty stdin is rejected unless `--allow-empty` is passed intentionally. `vault import` supports `--vault`, `--section`, `--project`, and warns about skipped invalid dotenv identifiers. Prefer service-specific vault slugs such as `api-service` over broad environment slugs such as `prod`. Project-relative references such as `clawdi://default/OPENAI_API_KEY` still work for portable templates, but exact references are the default copy/read UX.
|
|
103
105
|
|
|
104
106
|
Agents should prefer `clawdi run --env-file .env.clawdi -- <command>` when they can launch the tool themselves. Use `clawdi inject` only for tools that must read a physical `.env.local`; generated files are written owner-only and should stay gitignored.
|
|
105
107
|
|
|
@@ -128,7 +130,7 @@ clawdi skill install anthropics/skills/artifacts-builder
|
|
|
128
130
|
|
|
129
131
|
## Roadmap
|
|
130
132
|
|
|
131
|
-
Today Clawdi gives
|
|
133
|
+
Today Clawdi gives individuals and read-only Project collaborators a shared layer across their agents. Two bigger bets come next.
|
|
132
134
|
|
|
133
135
|
The first is autonomy. Agents should work without you at the keyboard.
|
|
134
136
|
|
|
@@ -136,9 +138,10 @@ The first is autonomy. Agents should work without you at the keyboard.
|
|
|
136
138
|
- Remote control for agents on any of your machines.
|
|
137
139
|
- Automatic memory built from session history.
|
|
138
140
|
|
|
139
|
-
The second is
|
|
141
|
+
The second is deepening multi-player workflows beyond read-only Project sharing.
|
|
140
142
|
|
|
141
|
-
-
|
|
143
|
+
- Richer team roles and broader access controls.
|
|
144
|
+
- Shared memory, skills, and connections.
|
|
142
145
|
- An agent-to-agent channel for handoff and ask-for-help.
|
|
143
146
|
- Task tracking that every connected agent can use.
|
|
144
147
|
|
|
@@ -243,11 +246,13 @@ Each agent has a dedicated adapter in [`packages/cli/src/adapters`](https://gith
|
|
|
243
246
|
| --- | --- |
|
|
244
247
|
| `clawdi auth login` / `logout` | Authenticate this machine |
|
|
245
248
|
| `clawdi status [--json]` | Show auth and sync state |
|
|
249
|
+
| `clawdi config list/get/set/unset` | Read or write CLI configuration |
|
|
246
250
|
| `clawdi setup [--agent <type>] [--no-daemon]` | Register local agents, install MCP, install the bundled skill, and install/start daemons by default |
|
|
247
251
|
| `clawdi teardown [--agent <type>]` | Remove Clawdi's local agent wiring |
|
|
248
252
|
| `clawdi daemon run/install/status/logs/doctor/restart/uninstall` | Run and manage the background sync daemon (`serve` remains a legacy alias) |
|
|
249
253
|
| `clawdi push` | Upload sessions and skills |
|
|
250
254
|
| `clawdi pull` | Download cloud skills into registered agents |
|
|
255
|
+
| `clawdi session list/extract` | Inspect local agent sessions |
|
|
251
256
|
| `clawdi memory list/search/add/rm` | Manage cross-agent long-term memory |
|
|
252
257
|
| `clawdi skill list/add/install/rm/init` | Manage portable skills |
|
|
253
258
|
| `clawdi project create/list/show/share/share-links/invite/invites/members/leave/unshare` | Manage Projects and read-only sharing |
|
|
@@ -255,15 +260,15 @@ Each agent has a dedicated adapter in [`packages/cli/src/adapters`](https://gith
|
|
|
255
260
|
| `clawdi agent projects list/attach/detach/move` | View the fixed Agent Project and manage attached Projects |
|
|
256
261
|
| `clawdi agent credentials import/materialize` | Sync local CLI credential profiles for Codex, Claude Code, and GitHub CLI; explicit Keychain import requires service/account options |
|
|
257
262
|
| `clawdi project folder link/status/unlink` | Link a local folder to a Project for vault reference selection |
|
|
258
|
-
| `clawdi vault set/list/import` | Manage encrypted secrets and copy exact references |
|
|
263
|
+
| `clawdi vault set/list/import/rm` | Manage encrypted secrets and copy exact references |
|
|
259
264
|
| `clawdi read <clawdi://...>` | Explicitly print one vault reference value |
|
|
260
265
|
| `clawdi inject --in <file> --out <file>` | Render `clawdi://` references into templates |
|
|
261
266
|
| `clawdi run --env-file <file> -- <cmd>` | Run a command with explicit vault references resolved |
|
|
262
267
|
| `clawdi doctor` | Diagnose auth, agent paths, vault, and MCP config |
|
|
263
268
|
| `clawdi update` | Install the latest CLI version (`--check` only reports) |
|
|
269
|
+
| `clawdi mcp` | Start the MCP stdio server used by agents |
|
|
264
270
|
|
|
265
271
|
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`.
|
|
266
|
-
| `clawdi mcp` | Start the MCP stdio server used by agents |
|
|
267
272
|
|
|
268
273
|
Every command supports `--help`.
|
|
269
274
|
|