@slopus/happy-agent-supervisor 0.0.5-linux-x64 → 0.0.9-darwin-arm64

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
@@ -33,8 +33,13 @@ matching executable lives.
33
33
 
34
34
  The Linux binaries are static musl builds, so they run on any distribution and
35
35
  can be mounted read-only into a container that has no toolchain of its own.
36
- Windows is not supported; `resolveSupervisorBinary()` throws there rather than
37
- returning something that cannot enforce anything.
36
+ A local Windows 11 x64 adapter is under validation. It builds a pinned Codex native sandbox
37
+ with separate Happy OS identities; see `native/windows/source.json` and the license notices there.
38
+ Run `pnpm build:native:windows` with the specified Rust toolchain installed. Set
39
+ `HAPPY_CODEX_SOURCE_DIR` to reuse a checkout of the exact pinned commit. Building does not
40
+ provision the sandbox. First execution requires one-time native setup; host allowlist proxy
41
+ and independent listener policies currently fail closed until their Windows implementation
42
+ is complete. This local validation build is not a published Windows release.
38
43
 
39
44
  ## Install
40
45
 
package/SHA256SUMS CHANGED
@@ -1 +1 @@
1
- 8d1ca27568b2f006413093402ebf43a8fa9177803927b5107f11d8cec0801889 vendor/x86_64-unknown-linux-musl/bin/happy-agent-supervisor
1
+ 3bdd030d35d62abaeb9c11db2cf196acff2dfa01f7cb9ced3e09e2934ca830a4 vendor/aarch64-apple-darwin/bin/happy-agent-supervisor
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@slopus/happy-agent-supervisor",
3
- "version": "0.0.5-linux-x64",
4
- "description": "Trusted native sandbox boundary for Happy agent workloads. Native binary for linux-x64.",
3
+ "version": "0.0.9-darwin-arm64",
4
+ "description": "Trusted native sandbox boundary for Happy agent workloads. Native binary for darwin-arm64.",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -12,13 +12,13 @@
12
12
  "node": ">=22.19.0"
13
13
  },
14
14
  "os": [
15
- "linux"
15
+ "darwin"
16
16
  ],
17
17
  "cpu": [
18
- "x64"
18
+ "arm64"
19
19
  ],
20
20
  "bin": {
21
- "happy-agent-supervisor": "vendor/x86_64-unknown-linux-musl/bin/happy-agent-supervisor"
21
+ "happy-agent-supervisor": "vendor/aarch64-apple-darwin/bin/happy-agent-supervisor"
22
22
  },
23
23
  "files": [
24
24
  "vendor",