@ouro.bot/cli 0.1.0-alpha.811 → 0.1.0-alpha.812

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,12 @@
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.812",
6
+ "changes": [
7
+ "Accept Sanctuary's existing private frontend socket during deployment audits while retaining exact listener and ownership checks."
8
+ ]
9
+ },
4
10
  {
5
11
  "version": "0.1.0-alpha.811",
6
12
  "changes": [
@@ -2787,12 +2787,9 @@ Packaged deployment-target containment gates:
2787
2787
  closed after eight attempts. It always makes bounded exact-ID unpause attempts,
2788
2788
  verifies the same ID and PID resumed their original running, unpaused state,
2789
2789
  and only then performs the final full-profile topology capture. It
2790
- rejects every owned UDP listener and every externally reachable owned TCP listener. Only loopback
2791
- Mailbox port 6876 plus stream-listening endpoints at the fixed daemon and
2792
- acceptance Unix control paths are permitted; all other named Unix endpoint
2793
- types (including datagrams) fail closed. Inherited descriptors for the same
2794
- socket inode are deduplicated, while unknown loopback ports, wildcard/host-address
2795
- listeners, process/socket/listener drift, or ambiguous ownership fail closed.
2790
+ rejects every owned UDP listener and every externally reachable owned TCP listener.
2791
+ Only loopback Mailbox port 6876 plus stream-listening endpoints at /tmp/ouroboros-daemon.sock, /tmp/ouroboros-daemon.sock.frontend, and /home/ouro/AgentBundles/sanctuary.ouro/state/acceptance/telegram-control.sock are permitted; all other named Unix endpoint types (including datagrams) fail closed.
2792
+ Inherited descriptors for the same socket inode are deduplicated, while unknown loopback ports, wildcard/host-address listeners, process/socket/listener drift, or ambiguous ownership fail closed.
2796
2793
  Unit 18 uses the separately packaged fixed final command after activation.
2797
2794
  It accepts either the legacy-adoption topology with no canonical rollback or
2798
2795
  exactly one stopped, non-autostarted rollback; running/autostarted rollback,
@@ -16,6 +16,7 @@ const PROFILES = Object.freeze({
16
16
  })
17
17
  const DOCUMENTED_UNIX_CONTROLS = [
18
18
  "/tmp/ouroboros-daemon.sock",
19
+ "/tmp/ouroboros-daemon.sock.frontend",
19
20
  "/home/ouro/AgentBundles/sanctuary.ouro/state/acceptance/telegram-control.sock",
20
21
  ]
21
22
  const DOCUMENTED_LOOPBACK_TCP_CONTROLS = new Set([6876])
@@ -1,5 +1,5 @@
1
1
  {
2
- "runtimeVersion": "0.1.0-alpha.811",
2
+ "runtimeVersion": "0.1.0-alpha.812",
3
3
  "bundleSchemaVersion": 3,
4
4
  "lastUpdated": "2026-09-03T00:00:00.000Z"
5
5
  }
@@ -1,7 +1,7 @@
1
1
  <?xml version="1.0"?>
2
2
  <Container version="2">
3
3
  <Name>ouro-butler</Name>
4
- <Repository>ghcr.io/ourostack/ouroboros-butler:0.1.0-alpha.811</Repository>
4
+ <Repository>ghcr.io/ourostack/ouroboros-butler:0.1.0-alpha.812</Repository>
5
5
  <Registry>https://github.com/ourostack/ouroboros/pkgs/container/ouroboros-butler</Registry>
6
6
  <Network>host</Network>
7
7
  <Shell>sh</Shell>
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@ouro.bot/cli",
3
- "version": "0.1.0-alpha.811",
3
+ "version": "0.1.0-alpha.812",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@ouro.bot/cli",
9
- "version": "0.1.0-alpha.811",
9
+ "version": "0.1.0-alpha.812",
10
10
  "dependencies": {
11
11
  "@anthropic-ai/sdk": "^0.78.0",
12
12
  "@azure/identity": "^4.13.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ouro.bot/cli",
3
- "version": "0.1.0-alpha.811",
3
+ "version": "0.1.0-alpha.812",
4
4
  "engines": {
5
5
  "node": ">=22"
6
6
  },