clawdi 0.5.9 → 0.6.0
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 +9 -3
- package/dist/index.js +284 -224
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<h1 align="center">Clawdi</h1>
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<strong>The best home for all your AI agents —
|
|
4
|
+
<strong>The best home for all your AI agents — Projects, sessions, memory, skills, cron jobs, and app connections.</strong>
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
<p align="center">
|
|
15
15
|
<a href="https://clawdi.ai">Website</a> ·
|
|
16
16
|
<a href="https://github.com/Clawdi-AI/clawdi">GitHub</a> ·
|
|
17
|
+
<a href="https://deepwiki.com/Clawdi-AI/clawdi">Docs</a> ·
|
|
17
18
|
<a href="https://www.npmjs.com/package/clawdi">npm</a> ·
|
|
18
19
|
<a href="https://github.com/Clawdi-AI/clawdi/blob/main/docs/architecture.md">Architecture</a> ·
|
|
19
20
|
<a href="#quickstart">Quickstart</a> ·
|
|
@@ -71,6 +72,7 @@ Clawdi is the shared layer underneath:
|
|
|
71
72
|
|
|
72
73
|
- **Cross-agent memory** — Store durable preferences, decisions, facts, and project context once. Search them from any connected agent.
|
|
73
74
|
- **Portable skills** — Upload or install agent instructions once, then sync them into every registered agent.
|
|
75
|
+
- **Project sharing** — Share read-only Project access, accept it from the CLI inbox, and explicitly attach accepted Projects to Agents when they should be used at runtime.
|
|
74
76
|
- **Session sync** — Push local session history to the dashboard for review and recall.
|
|
75
77
|
- **Vault secrets** — Store secrets server-side and inject them only when running a command.
|
|
76
78
|
- **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.
|
|
@@ -107,9 +109,9 @@ The first is autonomy. Agents should work without you at the keyboard.
|
|
|
107
109
|
- Remote control for agents on any of your machines.
|
|
108
110
|
- Automatic memory built from session history.
|
|
109
111
|
|
|
110
|
-
The second is making Clawdi multi-player.
|
|
112
|
+
The second is making Clawdi multi-player. Project sharing now covers read-only Project access in the CLI/backend; dashboard surfaces and richer team roles come next.
|
|
111
113
|
|
|
112
|
-
- Shared memory, skills, and connections, with access controls.
|
|
114
|
+
- Shared memory, skills, and connections, with broader access controls.
|
|
113
115
|
- An agent-to-agent channel for handoff and ask-for-help.
|
|
114
116
|
- Task tracking that every connected agent can use.
|
|
115
117
|
|
|
@@ -220,6 +222,10 @@ Each agent has a dedicated adapter in [`packages/cli/src/adapters`](https://gith
|
|
|
220
222
|
| `clawdi pull` | Download cloud skills into registered agents |
|
|
221
223
|
| `clawdi memory list/search/add/rm` | Manage cross-agent long-term memory |
|
|
222
224
|
| `clawdi skill list/add/install/rm/init` | Manage portable skills |
|
|
225
|
+
| `clawdi project create/list/show/share/share-links/invite/invites/members/leave/unshare` | Manage Projects and read-only sharing |
|
|
226
|
+
| `clawdi inbox [accept/decline/forget]` | Accept invitations and share links |
|
|
227
|
+
| `clawdi agent projects list/attach/detach/move` | View the fixed Agent Project and manage attached Projects |
|
|
228
|
+
| `clawdi project folder link/status/unlink` | Link a local folder to a Project for `clawdi run` vault selection |
|
|
223
229
|
| `clawdi vault set/list/import` | Manage encrypted secrets |
|
|
224
230
|
| `clawdi run -- <cmd>` | Run a command with vault secrets injected |
|
|
225
231
|
| `clawdi doctor` | Diagnose auth, agent paths, vault, and MCP config |
|