codex-worker 0.1.14 → 0.1.16

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
@@ -24,13 +24,27 @@ One-off execution:
24
24
  npx codex-worker doctor
25
25
  ```
26
26
 
27
- Standalone binary from GitHub Releases, once binary publishing is enabled:
27
+ Standalone binary from GitHub Releases:
28
+
29
+ ```bash
30
+ sudo -v ; curl -fsSL https://github.com/yigitkonur/codex-worker/releases/latest/download/install.sh | sudo bash
31
+ codex-worker doctor
32
+ ```
33
+
34
+ User-local install without `sudo`:
35
+
36
+ ```bash
37
+ curl -fsSL https://github.com/yigitkonur/codex-worker/releases/latest/download/install.sh | bash -s -- --install-dir "$HOME/.local/bin"
38
+ ```
39
+
40
+ Manual binary install remains available:
28
41
 
29
42
  ```bash
30
43
  curl -LO https://github.com/yigitkonur/codex-worker/releases/latest/download/codex-worker-linux-x64
44
+ curl -LO https://github.com/yigitkonur/codex-worker/releases/latest/download/codex-worker-linux-x64.sha256
45
+ sha256sum -c codex-worker-linux-x64.sha256
31
46
  chmod +x codex-worker-linux-x64
32
47
  mv codex-worker-linux-x64 /usr/local/bin/codex-worker
33
- codex-worker doctor
34
48
  ```
35
49
 
36
50
  Homebrew from this repository, once binary publishing is enabled:
@@ -48,7 +62,7 @@ npm run build
48
62
  node dist/src/cli.js --help
49
63
  ```
50
64
 
51
- The repository now includes a staged Bun-binary distribution pipeline. The existing npm release workflow stays live, every push validates the binary distribution path, and maintainers can enable binary publishing separately after remote validation. Full rollout details live in [`docs/distribution/binary-releases.md`](./docs/distribution/binary-releases.md).
65
+ The repository now includes a live Bun-binary distribution pipeline. Every push validates the binary distribution path, GitHub Releases publish the standalone binaries, and the installer script is shipped as a release asset. Full rollout details live in [`docs/distribution/binary-releases.md`](./docs/distribution/binary-releases.md).
52
66
 
53
67
  ## CLI Surface
54
68
 
package/dist/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "codex-worker",
3
- "version": "0.1.14",
3
+ "version": "0.1.16",
4
4
  "type": "module"
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codex-worker",
3
- "version": "0.1.14",
3
+ "version": "0.1.16",
4
4
  "description": "Daemon-backed Codex app-server CLI worker for protocol-first thread and turn orchestration",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",