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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # CDX Manager
2
2
 
3
- [![License](https://img.shields.io/badge/license-MIT-4C8BF5)](LICENSE) ![Version](https://img.shields.io/badge/version-v0.9.12-4C8BF5) ![Python](https://img.shields.io/badge/python-3.9%2B-3776AB?logo=python&logoColor=white)
3
+ [![License](https://img.shields.io/badge/license-MIT-4C8BF5)](LICENSE) ![Version](https://img.shields.io/badge/version-v0.9.13-4C8BF5) ![Python](https://img.shields.io/badge/python-3.9%2B-3776AB?logo=python&logoColor=white)
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cdx-manager",
3
- "version": "0.9.12",
3
+ "version": "0.9.13",
4
4
  "description": "Terminal session manager for Codex and Claude accounts.",
5
5
  "license": "MIT",
6
6
  "author": "Alexandre Agostini",
package/pyproject.toml CHANGED
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "cdx-manager"
7
- version = "0.9.12"
7
+ version = "0.9.13"
8
8
  description = "Terminal session manager for Codex and Claude accounts."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
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.12"
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
@@ -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", "-F", "-c", command, transcript_path]
380
+ return ["-q", "-f", "-c", command, transcript_path]
380
381
  return ["-q", "-F", transcript_path, spec["command"]] + spec["args"]
381
382
 
382
383