clawdi 0.8.1 → 0.8.2
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 +12 -8
- package/dist/index.js +203 -185
- package/dist/skills/clawdi/SKILL.md +10 -0
- package/package.json +1 -1
|
@@ -83,3 +83,13 @@ Connected service tools (Gmail, GitHub, Notion, etc.) are dynamically registered
|
|
|
83
83
|
- If a tool call fails with "No connected account", tell the user to connect the service in the Clawdi Cloud dashboard
|
|
84
84
|
- File downloads from connectors return signed URLs — download them with `curl` or `fetch` before processing
|
|
85
85
|
- Confirm with the user before side-effecting operations (sending email, creating issues, etc.)
|
|
86
|
+
|
|
87
|
+
## Vault CLI
|
|
88
|
+
|
|
89
|
+
When the user asks to migrate secrets into Clawdi Vault or script secret writes, prefer the CLI over raw HTTP calls:
|
|
90
|
+
|
|
91
|
+
- Use `clawdi vault set KEY --stdin` for piped values, or `clawdi vault set KEY --value <value>` only when shell history exposure is acceptable.
|
|
92
|
+
- Use `clawdi vault import --vault <slug> --section <name> --project <project> --yes <file>` for non-interactive `.env` migrations into a section.
|
|
93
|
+
- Keep `.env` import keys as POSIX environment identifiers such as `OPENAI_API_KEY`; section names belong in `--section`, not inside the key name.
|
|
94
|
+
- Use `clawdi vault rm <vault>/<section>/<field> --yes` or `clawdi vault delete ...` to clean up misplaced keys.
|
|
95
|
+
- Prefer exact `clawdi://project/...` references printed by the CLI. Do not print plaintext secret values unless the user explicitly asks for them.
|