@ouro.bot/cli 0.1.0-alpha.562 → 0.1.0-alpha.563

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/changelog.json CHANGED
@@ -1,6 +1,14 @@
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.563",
6
+ "changes": [
7
+ "The default agent credential vault host now points at the work-substrate Vaultwarden endpoint `https://vault.ouro.bot`.",
8
+ "Vault config normalization keeps `https://vault.ouroboros.bot` and the underlying Azure Container Apps hostname as legacy unlock-source candidates during the hostname migration.",
9
+ "Vault config and unlock tests now cover the `vault.ouro.bot` canonical host while preserving side-effect-free fallback lookup for legacy local unlock material."
10
+ ]
11
+ },
4
12
  {
5
13
  "version": "0.1.0-alpha.562",
6
14
  "changes": [
@@ -79,9 +79,9 @@ exports.DEFAULT_AGENT_PHRASES = {
79
79
  tool: ["running tool"],
80
80
  followup: ["processing"],
81
81
  };
82
- exports.DEFAULT_VAULT_SERVER_URL = "https://vault.ouroboros.bot";
82
+ exports.DEFAULT_VAULT_SERVER_URL = "https://vault.ouro.bot";
83
83
  exports.LEGACY_VAULT_SERVER_URL_ALIASES = [
84
- "https://vault.ouro.bot",
84
+ "https://vault.ouroboros.bot",
85
85
  "https://ouro-vault.gentleflower-74452a1e.eastus2.azurecontainerapps.io",
86
86
  ];
87
87
  function normalizeVaultServerUrl(serverUrl) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ouro.bot/cli",
3
- "version": "0.1.0-alpha.562",
3
+ "version": "0.1.0-alpha.563",
4
4
  "main": "dist/heart/daemon/ouro-entry.js",
5
5
  "bin": {
6
6
  "cli": "dist/heart/daemon/ouro-bot-entry.js",