clawdi 0.9.0 → 0.10.1

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.
@@ -100,3 +100,16 @@ When the user asks to migrate secrets into Clawdi Vault or script secret writes,
100
100
  - Use `clawdi vault detach <vault> --project <project>` to remove one Project's access without deleting keys.
101
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.
102
102
  - Prefer exact `clawdi://project/...` references printed by the CLI. Do not print plaintext secret values unless the user explicitly asks for them.
103
+
104
+ ## AI Provider CLI
105
+
106
+ When the user asks to configure model providers, API keys, or Codex OAuth for agents, use `clawdi ai-provider`:
107
+
108
+ - Add reusable providers with `clawdi ai-provider add <id> --type <openai|anthropic|openrouter|gemini|mistral|custom_openai_compatible> --default-model <model> --auth <env:KEY|clawdi://...|agent:codex/profile|none>`.
109
+ - Validate metadata with `clawdi ai-provider validate [provider-id]`.
110
+ - Check local auth availability with `clawdi ai-provider test <provider-id>`; add `--live` only when the user explicitly wants a real provider API probe.
111
+ - Apply agent config with `clawdi ai-provider apply --engine codex|hermes|openclaw --dry-run` first, then run without `--dry-run` if the diff is acceptable.
112
+ - Connect Codex OAuth with `clawdi ai-provider connect <provider-id> --tool codex`; use `--callback manual` when loopback localhost cannot be reached.
113
+ - Materialize a stored provider auth profile with `clawdi ai-provider materialize-auth <provider-id>`.
114
+ - Default export/import is metadata-only; `--include-secrets` requires passphrase-encrypted secret export.
115
+ - BYOK model requests go directly from the agent runtime to the configured provider. Clawdi stores metadata and secret references but is not a model proxy.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawdi",
3
- "version": "0.9.0",
3
+ "version": "0.10.1",
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": {