@fabr-client/core 0.1.24-beta.6 → 0.1.24-beta.7
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 +51 -33
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -17,6 +17,24 @@ fabr-client login --server https://pivot.enclaws.com --pairing-code <code>
|
|
|
17
17
|
fabr-client run
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
+
## Local Diagnostics
|
|
21
|
+
|
|
22
|
+
While `fabr-client run` is active, key Connector diagnostics are also persisted
|
|
23
|
+
under the state root selected by the resolved config file. Active JSONL files
|
|
24
|
+
rotate at `100 MiB` or a UTC date boundary, are archived as ZIP files, and use a
|
|
25
|
+
`2 GiB` stable-state retention limit.
|
|
26
|
+
|
|
27
|
+
Generate a local diagnostic bundle with:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
fabr-client support-bundle
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
The command needs no task or time filter. It writes a point-in-time ZIP to the
|
|
34
|
+
system Downloads directory, falls back to the current directory when Downloads
|
|
35
|
+
cannot be resolved, prints the final absolute path and size, and does not upload
|
|
36
|
+
the bundle to a server.
|
|
37
|
+
|
|
20
38
|
The main package is a thin launcher. It installs the matching native payload
|
|
21
39
|
through platform-specific optional dependencies, so end users only need the one
|
|
22
40
|
global install command above. Each platform payload contains `bin/fabr-client`
|
|
@@ -31,21 +49,21 @@ Published platform packages:
|
|
|
31
49
|
- `@fabr-client/core-darwin-x64`
|
|
32
50
|
- `@fabr-client/core-darwin-arm64`
|
|
33
51
|
|
|
34
|
-
## Publish Checklist
|
|
35
|
-
|
|
36
|
-
Set the shared Rust and npm package version first:
|
|
37
|
-
|
|
38
|
-
```powershell
|
|
39
|
-
pwsh ./scripts/set-package-version.ps1 -Version 0.1.19
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
```bash
|
|
43
|
-
bash ./scripts/set-package-version.sh 0.1.19
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
Use `latest` only for stable production versions such as `0.1.19`. Use
|
|
47
|
-
prerelease versions for test channels, for example `0.1.19-beta.0` or
|
|
48
|
-
`0.1.19-rc.0`.
|
|
52
|
+
## Publish Checklist
|
|
53
|
+
|
|
54
|
+
Set the shared Rust and npm package version first:
|
|
55
|
+
|
|
56
|
+
```powershell
|
|
57
|
+
pwsh ./scripts/set-package-version.ps1 -Version 0.1.19
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
bash ./scripts/set-package-version.sh 0.1.19
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
Use `latest` only for stable production versions such as `0.1.19`. Use
|
|
65
|
+
prerelease versions for test channels, for example `0.1.19-beta.0` or
|
|
66
|
+
`0.1.19-rc.0`.
|
|
49
67
|
|
|
50
68
|
For maintainers, build the Windows payload with PowerShell:
|
|
51
69
|
|
|
@@ -67,21 +85,21 @@ On macOS, build both `darwin-x64` and `darwin-arm64` payloads:
|
|
|
67
85
|
--codex-runtime-repo /path/to/codex-runtime
|
|
68
86
|
```
|
|
69
87
|
|
|
70
|
-
Validate and publish:
|
|
71
|
-
|
|
72
|
-
```bash
|
|
73
|
-
node ./packaging/npm/bin/fabr-client.js --help
|
|
74
|
-
npm pack ./packaging/npm
|
|
75
|
-
NPM_TAG=latest ./scripts/publish-npm-packages.sh
|
|
76
|
-
NPM_TAG=beta ./scripts/publish-npm-packages.sh
|
|
77
|
-
```
|
|
78
|
-
|
|
79
|
-
PowerShell:
|
|
80
|
-
|
|
81
|
-
```powershell
|
|
82
|
-
pwsh ./scripts/publish-npm-packages.ps1 -Tag latest
|
|
83
|
-
pwsh ./scripts/publish-npm-packages.ps1 -Tag beta
|
|
84
|
-
```
|
|
85
|
-
|
|
86
|
-
The publish scripts pass npm `--tag` explicitly and reject mismatches such as
|
|
87
|
-
`0.1.19-beta.0` with `latest`.
|
|
88
|
+
Validate and publish:
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
node ./packaging/npm/bin/fabr-client.js --help
|
|
92
|
+
npm pack ./packaging/npm
|
|
93
|
+
NPM_TAG=latest ./scripts/publish-npm-packages.sh
|
|
94
|
+
NPM_TAG=beta ./scripts/publish-npm-packages.sh
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
PowerShell:
|
|
98
|
+
|
|
99
|
+
```powershell
|
|
100
|
+
pwsh ./scripts/publish-npm-packages.ps1 -Tag latest
|
|
101
|
+
pwsh ./scripts/publish-npm-packages.ps1 -Tag beta
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
The publish scripts pass npm `--tag` explicitly and reject mismatches such as
|
|
105
|
+
`0.1.19-beta.0` with `latest`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fabr-client/core",
|
|
3
|
-
"version": "0.1.24-beta.
|
|
3
|
+
"version": "0.1.24-beta.7",
|
|
4
4
|
"description": "Cross-platform launcher for Fabr Client",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://pivot.enclaws.com",
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"smoke": "node bin/fabr-client.js --help"
|
|
20
20
|
},
|
|
21
21
|
"optionalDependencies": {
|
|
22
|
-
"@fabr-client/core-win32-x64": "0.1.24-beta.
|
|
23
|
-
"@fabr-client/core-darwin-x64": "0.1.24-beta.
|
|
24
|
-
"@fabr-client/core-darwin-arm64": "0.1.24-beta.
|
|
22
|
+
"@fabr-client/core-win32-x64": "0.1.24-beta.7",
|
|
23
|
+
"@fabr-client/core-darwin-x64": "0.1.24-beta.7",
|
|
24
|
+
"@fabr-client/core-darwin-arm64": "0.1.24-beta.7"
|
|
25
25
|
},
|
|
26
26
|
"files": [
|
|
27
27
|
"bin/",
|