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.
- package/README.md +2 -2
- package/dist/index.js +420 -249
- package/dist/skills/clawdi/SKILL.md +6 -2
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -101,7 +101,7 @@ clawdi inject --dry-run --in .env.clawdi --out .env.local
|
|
|
101
101
|
clawdi inject --force --in .env.clawdi --out .env.local
|
|
102
102
|
```
|
|
103
103
|
|
|
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.
|
|
104
|
+
Vaults are account-level key bundles. Projects attach to a Vault to use the same shared key set. `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. Use `clawdi vault attach <vault> --project <project>` to make an existing Vault available in another Project, and `clawdi vault detach <vault> --project <project>` to remove one Project's access without deleting keys. `vault rm` deletes a key from the shared Vault; when a Vault is attached to multiple Projects, it requires `--global`. 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.
|
|
105
105
|
|
|
106
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.
|
|
107
107
|
|
|
@@ -260,7 +260,7 @@ Each agent has a dedicated adapter in [`packages/cli/src/adapters`](https://gith
|
|
|
260
260
|
| `clawdi agent projects list/attach/detach/move` | View the fixed Agent Project and manage attached Projects |
|
|
261
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 |
|
|
262
262
|
| `clawdi project folder link/status/unlink` | Link a local folder to a Project for vault reference selection |
|
|
263
|
-
| `clawdi vault set/list/import/rm` | Manage encrypted secrets and copy exact references |
|
|
263
|
+
| `clawdi vault set/list/import/attach/detach/rm` | Manage encrypted secrets, Project access, and copy exact references |
|
|
264
264
|
| `clawdi read <clawdi://...>` | Explicitly print one vault reference value |
|
|
265
265
|
| `clawdi inject --in <file> --out <file>` | Render `clawdi://` references into templates |
|
|
266
266
|
| `clawdi run --env-file <file> -- <cmd>` | Run a command with explicit vault references resolved |
|