@ouro.bot/cli 0.1.0-alpha.376 → 0.1.0-alpha.377
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 +5 -3
- package/SerpentGuide.ouro/psyche/SOUL.md +1 -1
- package/changelog.json +9 -0
- package/dist/heart/agent-entry.js +22 -2
- package/dist/heart/config.js +19 -82
- package/dist/heart/daemon/agent-config-check.js +1 -7
- package/dist/heart/daemon/bluebubbles-health-diagnostics.js +1 -1
- package/dist/heart/daemon/cli-exec.js +108 -2
- package/dist/heart/daemon/cli-help.js +7 -0
- package/dist/heart/daemon/cli-parse.js +37 -0
- package/dist/heart/daemon/doctor.js +18 -32
- package/dist/heart/daemon/runtime-metadata.js +2 -30
- package/dist/heart/daemon/sense-manager.js +37 -27
- package/dist/heart/identity.js +0 -7
- package/dist/heart/runtime-credentials.js +181 -0
- package/dist/heart/turn-context.js +1 -12
- package/dist/mind/prompt.js +6 -15
- package/dist/repertoire/tools-notes.js +1 -1
- package/dist/repertoire/vault-unlock.js +1 -0
- package/dist/senses/bluebubbles/entry.js +60 -3
- package/dist/senses/cli-entry.js +60 -8
- package/dist/senses/teams-entry.js +60 -8
- package/package.json +1 -1
- package/skills/travel-planning.md +2 -6
|
@@ -82,15 +82,11 @@ enter model context.
|
|
|
82
82
|
- Use browser-navigation skill form patterns for entering credentials during interactive sessions
|
|
83
83
|
|
|
84
84
|
**How credentials work:**
|
|
85
|
-
- Agent-owned credentials
|
|
86
|
-
-
|
|
85
|
+
- Agent-owned credentials live in the agent's Bitwarden/Vaultwarden vault
|
|
86
|
+
- Travel credentials such as Duffel and Stripe are ordinary vault credential items
|
|
87
87
|
- The agent can sign up for services and store its own credentials
|
|
88
88
|
- Stored passwords are never returned to the model — only metadata (domain, username, notes)
|
|
89
89
|
|
|
90
|
-
**Upgrade path:** Install `aac` (Bitwarden Agent Access CLI) for vault-backed credentials.
|
|
91
|
-
When `aac` is available, the harness can read credentials from Bitwarden directly,
|
|
92
|
-
enabling access to human-managed vault items without storing them locally.
|
|
93
|
-
|
|
94
90
|
### Post-Booking
|
|
95
91
|
- Save confirmation details (confirmation number, dates, hotel name, airline, booking reference)
|
|
96
92
|
- Save to diary/journal for future reference
|