@ouro.bot/cli 0.1.0-alpha.465 → 0.1.0-alpha.467

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 CHANGED
@@ -180,6 +180,8 @@ ouro vault unlock --agent <name>
180
180
  ouro vault status --agent <name>
181
181
  ouro vault config set --agent <name> --key teams.clientSecret
182
182
  ouro vault config status --agent <name> --scope all
183
+ ouro vault item set --agent <name> --item <path> --secret-field <field>
184
+ ouro vault item status --agent <name> --item <path>
183
185
  ouro vault ops porkbun set --agent <name> --account <account>
184
186
  ouro connect --agent <name>
185
187
  ouro connect providers --agent <name>
@@ -208,6 +210,8 @@ ouro mcp-serve --agent <name> # start MCP server on stdin/stdout (us
208
210
  ouro hook <event> --agent <name> # fire a lifecycle hook (SessionStart, Stop, PostToolUse)
209
211
  ```
210
212
 
213
+ The generic secret primitive is a vault item / credential in the owning agent vault: stable item name/path, hidden secret material, optional public fields, notes, timestamps/provenance, and no assumed use. `ouro connect` is for harness-managed workflows; workflow bindings reference ordinary vault items when they need secret material.
214
+
211
215
  ## Setting Up On Another Machine
212
216
 
213
217
  To clone an existing agent onto a new machine (macOS, Linux, or Windows via WSL2), see **[docs/cross-machine-setup.md](docs/cross-machine-setup.md)**. The short version is bundle plus vault: `npx ouro.bot@latest`, open the home deck, choose clone, enter the bundle's git remote URL, unlock the agent vault, refresh/verify credentials, and start with `ouro up`.
package/changelog.json CHANGED
@@ -1,6 +1,22 @@
1
1
  {
2
2
  "_note": "This changelog is maintained as part of the PR/version-bump workflow. Agent-curated, not auto-generated. Agents read this file directly via read_file to understand what changed between versions.",
3
3
  "versions": [
4
+ {
5
+ "version": "0.1.0-alpha.467",
6
+ "changes": [
7
+ "`ouro dns certificate` can now retrieve the TLS bundle named by a DNS workflow binding and store it as an ordinary workflow-managed vault item without printing private key material.",
8
+ "DNS workflow bindings now reject unknown certificate sources instead of silently treating typos as Porkbun SSL, while preserving the future `acme-dns-01` shape as an explicit not-yet-implemented source.",
9
+ "Porkbun record verification now ignores the provider's default priority zero on non-MX records while still treating real MX priority drift as a planned update."
10
+ ]
11
+ },
12
+ {
13
+ "version": "0.1.0-alpha.466",
14
+ "changes": [
15
+ "`ouro vault item set/status/list` is now the generic human-facing path for storing ordinary agent-owned vault items with hidden secret fields, optional public fields, freeform notes, metadata-only status/list output, and no assumed provider semantics.",
16
+ "`ouro vault ops porkbun` remains as a deprecated compatibility alias over ordinary vault items, while docs and help teach vault item -> managed workflow -> non-secret binding instead of treating Porkbun, DNS, or ops credentials as separate credential species.",
17
+ "Vault item guardrails now keep harness-managed provider/runtime items on `ouro auth`, `ouro connect`, and `ouro vault config`, and coverage locks no-secret logging, notes-as-orientation, reserved item errors, compatibility behavior, and 100% branch coverage for the new surface."
18
+ ]
19
+ },
4
20
  {
5
21
  "version": "0.1.0-alpha.465",
6
22
  "changes": [