codeam-cli 2.4.32 → 2.4.34
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/CHANGELOG.md +12 -0
- package/README.md +10 -0
- package/dist/index.js +490 -157
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ All notable changes to `codeam-cli` are documented here.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [2.4.33] — 2026-05-05
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **cli:** Match local terminal size + forward resize on Windows ConPTY (v2.4.33)
|
|
12
|
+
|
|
13
|
+
## [2.4.32] — 2026-05-05
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- **cli:** Resolve Claude through cmd.exe on Windows when it's a .cmd shim (v2.4.32)
|
|
18
|
+
|
|
7
19
|
## [2.4.31] — 2026-05-05
|
|
8
20
|
|
|
9
21
|
### Fixed
|
package/README.md
CHANGED
|
@@ -49,6 +49,8 @@ That's it. Open the [CodeAgent Mobile app](https://codeagent-mobile.com), enter
|
|
|
49
49
|
| `codeam deploy` | Provision a cloud workspace (GitHub Codespaces) and pair it to your phone |
|
|
50
50
|
| `codeam deploy ls` | List the cloud workspaces you've deployed (and which still have a session running) |
|
|
51
51
|
| `codeam deploy stop` | Pick a deployed workspace and stop its codeam session (and optionally the workspace itself) |
|
|
52
|
+
| `codeam --version`, `-v` | Print the installed CLI version |
|
|
53
|
+
| `codeam --help`, `-h` | Show usage and the full command list |
|
|
52
54
|
|
|
53
55
|
---
|
|
54
56
|
|
|
@@ -96,6 +98,14 @@ Adding more cloud backends (Gitpod, Coder, your own SSH host, …) is a single n
|
|
|
96
98
|
|
|
97
99
|
---
|
|
98
100
|
|
|
101
|
+
## Environment variables
|
|
102
|
+
|
|
103
|
+
| Variable | Default | Effect |
|
|
104
|
+
|---|---|---|
|
|
105
|
+
| `CODEAM_DISABLE_UPDATE_CHECK` | unset | Set to `1` to suppress the "update available" banner. The check also auto-skips on non-TTY stdout, in CI, and during tests. |
|
|
106
|
+
|
|
107
|
+
---
|
|
108
|
+
|
|
99
109
|
## How it works
|
|
100
110
|
|
|
101
111
|
1. `codeam-cli` spawns Claude Code inside a Python PTY helper so Claude sees a real TTY.
|