clawdi 0.8.6 → 0.10.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.
@@ -12,7 +12,7 @@ You have access to Clawdi Cloud tools via the `clawdi` MCP server. Use them aggr
12
12
  Three tools for cross-agent memory:
13
13
 
14
14
  - `memory_search` — Search long-term memory by natural-language query (any language).
15
- - `memory_add` — Save a durable memory for cross-agent recall. Categories: `fact` (technical facts, API details, config values), `preference` (user preferences, coding style, workflow choices), `pattern` (recurring patterns, pitfalls, team conventions), `decision` (architecture decisions and their reasoning), `context` (project context, deadlines, ongoing work).
15
+ - `memory_add` — Save a durable memory for cross-agent recall. Do not store plaintext tokens, API keys, or bearer credentials; store those in Vault and save only the `clawdi://` reference. Categories: `fact` (technical facts, API details, config values), `preference` (user preferences, coding style, workflow choices), `pattern` (recurring patterns, pitfalls, team conventions), `decision` (architecture decisions and their reasoning), `context` (project context, deadlines, ongoing work).
16
16
  - `memory_extract` — Batch-extract durable memories from the CURRENT conversation. Call this when the user says "extract memories", "save what we discussed", "remember this conversation", or equivalent. The tool returns instructions that walk you through a list-then-confirm flow using `memory_search` and `memory_add` — follow them exactly, including **waiting for the user's approval before writing anything**. Never skip the confirmation step, never save more than 5 memories in one invocation, and do not narrate your internal workflow to the user.
17
17
 
18
18
  ### When to search — bias toward calling
@@ -46,6 +46,8 @@ Write memories as standalone sentences with full context — include names, not
46
46
 
47
47
  Do NOT save trivial facts that are obvious from the code itself, or generic programming knowledge.
48
48
 
49
+ Do NOT save plaintext tokens, API keys, bearer credentials, or private keys in memory. Use Vault for secret values and save only a `clawdi://` reference when future agents need to know where a secret lives.
50
+
49
51
  ## Sessions
50
52
 
51
53
  Two tools for reading and finding past agent conversations stored in Clawdi Cloud:
@@ -94,5 +96,7 @@ When the user asks to migrate secrets into Clawdi Vault or script secret writes,
94
96
  - Use service-specific vault slugs such as `api-service/env/KEY`; avoid broad slugs such as `prod/KEY`.
95
97
  - Use `clawdi vault import --vault <service-slug> --section <name> --project <project> --yes <file>` for non-interactive `.env` migrations into a section.
96
98
  - Keep `.env` import keys as POSIX environment identifiers such as `OPENAI_API_KEY`; section names belong in `--section`, not inside the key name.
97
- - Use `clawdi vault rm <vault>/<section>/<field> --yes` or `clawdi vault delete ...` to clean up misplaced keys.
99
+ - Use `clawdi vault attach <vault> --project <project>` to make an existing Vault available in another Project.
100
+ - Use `clawdi vault detach <vault> --project <project>` to remove one Project's access without deleting keys.
101
+ - Use `clawdi vault rm <vault>/<section>/<field> --global --yes` only when the key should be deleted from the shared Vault for every attached Project.
98
102
  - Prefer exact `clawdi://project/...` references printed by the CLI. Do not print plaintext secret values unless the user explicitly asks for them.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawdi",
3
- "version": "0.8.6",
3
+ "version": "0.10.0",
4
4
  "description": "iCloud for AI Agents — cross-agent sessions, skills, memory, and vault.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -59,6 +59,7 @@
59
59
  "commander": "^13.0.0",
60
60
  "openapi-fetch": "^0.17.0",
61
61
  "tar": "^7.5.13",
62
+ "yaml": "^2.9.0",
62
63
  "zod": "^4.3.6"
63
64
  },
64
65
  "devDependencies": {