cdx-manager 0.9.12 → 0.9.13
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 +1 -1
- package/changelogs/CHANGELOGS_0_9_13.md +27 -0
- package/checksums/release-archives.json +4 -0
- package/package.json +1 -1
- package/pyproject.toml +1 -1
- package/src/cli.py +1 -1
- package/src/provider_runtime.py +2 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# CDX Manager
|
|
2
2
|
|
|
3
|
-
[](LICENSE) ](LICENSE)  
|
|
4
4
|
|
|
5
5
|
**Run multiple Codex, Claude, Antigravity, and Ollama sessions from one terminal. Switch between accounts instantly.**
|
|
6
6
|
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# CDX Manager 0.9.13
|
|
2
|
+
|
|
3
|
+
## Highlights
|
|
4
|
+
|
|
5
|
+
- Fixed Claude `setup-token` capture on Linux by using the util-linux `script` flush flag.
|
|
6
|
+
|
|
7
|
+
## Changes
|
|
8
|
+
|
|
9
|
+
### Claude setup-token capture
|
|
10
|
+
|
|
11
|
+
Linux terminals now run transcript capture with `script -f` instead of the BSD/macOS-only `script -F` spelling.
|
|
12
|
+
|
|
13
|
+
This prevents util-linux `script` from exiting with `invalid option -- 'F'`, which previously made `cdx` fall back to running `claude setup-token` without transcript capture and miss the printed token.
|
|
14
|
+
|
|
15
|
+
macOS keeps the existing `script -F` behavior.
|
|
16
|
+
|
|
17
|
+
## Validation
|
|
18
|
+
|
|
19
|
+
- `npm run release:validate`
|
|
20
|
+
- `npm run lint`
|
|
21
|
+
- `npm test`
|
|
22
|
+
- `logics-manager lint --require-status`
|
|
23
|
+
- `logics-manager audit`
|
|
24
|
+
- `git diff --check`
|
|
25
|
+
- `npm --cache /private/tmp/cdx-npm-cache pack --dry-run`
|
|
26
|
+
- `python -m build`
|
|
27
|
+
- `python -m twine check dist/*`
|
|
@@ -112,6 +112,10 @@
|
|
|
112
112
|
"v0.9.11": {
|
|
113
113
|
"github_tarball_sha256": "8ab8f673af4ad9c0e4fd64110d47285a1de02c095fd0f6d79eb67e061255093d",
|
|
114
114
|
"github_zip_sha256": "ee5fffa543b8a02c082a180c624d31951c5ff662d492132cd83d4f099da70441"
|
|
115
|
+
},
|
|
116
|
+
"v0.9.12": {
|
|
117
|
+
"github_tarball_sha256": "ed9de98e1b4df5e42a1e389580f03d4b4b2e09ee8f63d23110090e6f164b8ae6",
|
|
118
|
+
"github_zip_sha256": "55f9ead146411ae740db1cae3f91c56d6ebe33c03345f9d4bfd487e45962e412"
|
|
115
119
|
}
|
|
116
120
|
}
|
|
117
121
|
}
|
package/package.json
CHANGED
package/pyproject.toml
CHANGED
package/src/cli.py
CHANGED
|
@@ -66,7 +66,7 @@ from .status_view import (
|
|
|
66
66
|
)
|
|
67
67
|
from .update_check import check_for_update, check_logics_manager_for_update
|
|
68
68
|
|
|
69
|
-
VERSION = "0.9.
|
|
69
|
+
VERSION = "0.9.13"
|
|
70
70
|
|
|
71
71
|
# Public surface: this module is a facade. Names below are imported above
|
|
72
72
|
# purely to be re-exported (consumed by tests and external callers); listing
|
package/src/provider_runtime.py
CHANGED
|
@@ -375,8 +375,9 @@ def _wrap_launch_with_transcript(session, spec, capture_transcript=True, env=Non
|
|
|
375
375
|
|
|
376
376
|
def _default_script_args(transcript_path, spec):
|
|
377
377
|
if sys.platform.startswith("linux"):
|
|
378
|
+
# util-linux `script` flushes with -f (lowercase); -F is the BSD/macOS spelling and errors here.
|
|
378
379
|
command = shlex.join([spec["command"]] + spec["args"])
|
|
379
|
-
return ["-q", "-
|
|
380
|
+
return ["-q", "-f", "-c", command, transcript_path]
|
|
380
381
|
return ["-q", "-F", transcript_path, spec["command"]] + spec["args"]
|
|
381
382
|
|
|
382
383
|
|