@fabr-client/core 1.0.7-beta.0 → 1.0.9

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.
Files changed (2) hide show
  1. package/README.md +58 -12
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -17,12 +17,18 @@ fabr-client login --server https://pivot.enclaws.com --pairing-code <code>
17
17
  fabr-client run
18
18
  ```
19
19
 
20
+ `fabr-client run` hides routine `Info` diagnostics from the terminal by
21
+ default while retaining `Warn` and `Error` output. Use
22
+ `fabr-client run --verbose` to show the full terminal log stream. The
23
+ `--once` and `--verbose` options can be combined.
24
+
20
25
  ## Local Diagnostics
21
26
 
22
27
  While `fabr-client run` is active, key Connector diagnostics are also persisted
23
28
  under the state root selected by the resolved config file. Active JSONL files
24
29
  rotate at `100 MiB` or a UTC date boundary, are archived as ZIP files, and use a
25
- `2 GiB` stable-state retention limit.
30
+ `2 GiB` stable-state retention limit. Terminal filtering does not affect these
31
+ local diagnostic files.
26
32
 
27
33
  Generate a local diagnostic bundle with:
28
34
 
@@ -38,8 +44,9 @@ the bundle to a server.
38
44
  The main package is a thin launcher. It installs the matching native payload
39
45
  through platform-specific optional dependencies, so end users only need the one
40
46
  global install command above. Each platform payload contains `bin/fabr-client`
41
- plus the managed Codex Runtime executable at `bin/runtime/codex` (`.exe` on
42
- Windows).
47
+ plus the managed Codex Runtime payload under `bin/runtime/`. The official Codex
48
+ entrypoint is `bin/runtime/bin/codex` (`.exe` on Windows), and helper
49
+ binaries/resources from the official platform release are bundled with it.
43
50
 
44
51
  ## Platform Support
45
52
 
@@ -73,8 +80,8 @@ For maintainers, build the Windows payload with PowerShell:
73
80
  pwsh ./scripts/package-fabr-client.ps1 `
74
81
  -Profile release `
75
82
  -PackNpm `
76
- -CodexRuntimeMode build `
77
- -CodexRuntimeRepo C:\path\to\codex-runtime
83
+ -CodexRuntimeMode official `
84
+ -CodexRuntimeVersion 0.153.2
78
85
  ```
79
86
 
80
87
  On macOS, build both `darwin-x64` and `darwin-arm64` payloads:
@@ -83,8 +90,8 @@ On macOS, build both `darwin-x64` and `darwin-arm64` payloads:
83
90
  ./scripts/package-macos-all.sh \
84
91
  --profile release \
85
92
  --pack-npm \
86
- --codex-runtime-mode build \
87
- --codex-runtime-repo /path/to/codex-runtime
93
+ --codex-runtime-mode official \
94
+ --codex-runtime-version 0.153.2
88
95
  ```
89
96
 
90
97
  On Linux ARM64, build the `linux-arm64` payload on an ARM64 Linux build host:
@@ -94,19 +101,58 @@ On Linux ARM64, build the `linux-arm64` payload on an ARM64 Linux build host:
94
101
  --profile release \
95
102
  --target aarch64-unknown-linux-gnu \
96
103
  --pack-npm \
97
- --codex-runtime-mode build \
98
- --codex-runtime-repo /path/to/codex-runtime
104
+ --codex-runtime-mode official \
105
+ --codex-runtime-version 0.153.2
99
106
  ```
100
107
 
101
108
  On Linux x64, build the `linux-x64` payload on an x86_64 Linux build host:
102
109
 
110
+ ```bash
111
+ ./scripts/package-linux-x64.sh \
112
+ --profile release \
113
+ --pack-npm \
114
+ --codex-runtime-mode official \
115
+ --codex-runtime-version 0.153.2
116
+ ```
117
+
118
+ Offline packaging can use a local official platform archive:
119
+
120
+ ```bash
121
+ ./scripts/package-linux-x64.sh \
122
+ --profile release \
123
+ --pack-npm \
124
+ --codex-runtime-mode official \
125
+ --codex-runtime-version 0.153.2 \
126
+ --codex-runtime-release-file-linux-x64 /path/to/codex-0.153.2-linux-x64.tgz
127
+ ```
128
+
103
129
  ```bash
104
130
  ./scripts/package-fabr-client.sh \
105
131
  --profile release \
106
- --target x86_64-unknown-linux-gnu \
132
+ --target aarch64-unknown-linux-gnu \
133
+ --pack-npm \
134
+ --codex-runtime-mode official \
135
+ --codex-runtime-version 0.153.2 \
136
+ --codex-runtime-release-file /path/to/codex-0.153.2-linux-arm64.tgz
137
+ ```
138
+
139
+ macOS offline packaging requires separate release archives per architecture:
140
+
141
+ ```bash
142
+ ./scripts/package-macos-all.sh \
143
+ --profile release \
107
144
  --pack-npm \
108
- --codex-runtime-mode staged \
109
- --codex-runtime-bin /path/to/codex-x86_64-linux-binary
145
+ --codex-runtime-mode official \
146
+ --codex-runtime-version 0.153.2 \
147
+ --codex-runtime-release-file-darwin-x64 /path/to/codex-0.153.2-darwin-x64.tgz \
148
+ --codex-runtime-release-file-darwin-arm64 /path/to/codex-0.153.2-darwin-arm64.tgz
149
+ ```
150
+
151
+ For local debugging, maintainers can still use `staged` with a raw executable
152
+ or `build` with a local `codex-runtime` checkout:
153
+
154
+ ```powershell
155
+ pwsh ./scripts/package-fabr-client.ps1 -Profile release -PackNpm -CodexRuntimeMode staged -CodexRuntimeBin C:\path\to\codex.exe
110
156
  ```
111
157
 
112
158
  ## Release Artifact Manifest
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fabr-client/core",
3
- "version": "1.0.7-beta.0",
3
+ "version": "1.0.9",
4
4
  "description": "Cross-platform launcher for Fabr Client",
5
5
  "license": "MIT",
6
6
  "homepage": "https://pivot.enclaws.com",
@@ -19,11 +19,11 @@
19
19
  "smoke": "node bin/fabr-client.js --help"
20
20
  },
21
21
  "optionalDependencies": {
22
- "@fabr-client/core-win32-x64": "1.0.7-beta.0",
23
- "@fabr-client/core-darwin-x64": "1.0.7-beta.0",
24
- "@fabr-client/core-darwin-arm64": "1.0.7-beta.0",
25
- "@fabr-client/core-linux-arm64": "1.0.7-beta.0",
26
- "@fabr-client/core-linux-x64": "1.0.7-beta.0"
22
+ "@fabr-client/core-win32-x64": "1.0.9",
23
+ "@fabr-client/core-darwin-x64": "1.0.9",
24
+ "@fabr-client/core-darwin-arm64": "1.0.9",
25
+ "@fabr-client/core-linux-arm64": "1.0.9",
26
+ "@fabr-client/core-linux-x64": "1.0.9"
27
27
  },
28
28
  "files": [
29
29
  "bin/",