codeam-cli 2.1.0 → 2.1.1
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 +38 -0
- package/dist/index.js +4 -4
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,44 @@ 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.1.0] — 2026-04-25
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **cli:** Exponential polling backoff with ±10% jitter
|
|
12
|
+
- **cli:** Forward X-Plugin-Auth-Token on /commands/output
|
|
13
|
+
|
|
14
|
+
### Build
|
|
15
|
+
|
|
16
|
+
- **deps:** Bump com.google.zxing:core in /apps/jetbrains-plugin (#5)
|
|
17
|
+
- **deps:** Bump org.jetbrains.intellij.platform (#6)
|
|
18
|
+
- **deps:** Bump gradle-wrapper in /apps/jetbrains-plugin (#14)
|
|
19
|
+
|
|
20
|
+
### CI
|
|
21
|
+
|
|
22
|
+
- **jetbrains:** Publish plugin to Marketplace stable channel on tag
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
|
|
26
|
+
- **cli:** Drop unused token field from WS auth payload
|
|
27
|
+
- **cli:** Zod-validate remote command payloads
|
|
28
|
+
|
|
29
|
+
### Chore
|
|
30
|
+
|
|
31
|
+
- Ignore .worktrees directory
|
|
32
|
+
- **cli:** Upgrade @clack/prompts to 1.2.0 (ESM bundled via tsup)
|
|
33
|
+
- **deps:** Bump vitest to clear esbuild CVE (GHSA-67mh-4wv8-2f99)
|
|
34
|
+
|
|
35
|
+
### Documentation
|
|
36
|
+
|
|
37
|
+
- Enforce correct-and-implicit TypeScript typing
|
|
38
|
+
|
|
39
|
+
### Fixed
|
|
40
|
+
|
|
41
|
+
- **cli:** Pass PTY args as argv array (no shell concatenation)
|
|
42
|
+
- **cli:** Clean up PTY child on SIGINT/SIGTERM
|
|
43
|
+
- **vsc-plugin:** Guard startMonitoring against re-entry; scaffold vitest
|
|
44
|
+
|
|
7
45
|
## [2.0.2] — 2026-04-23
|
|
8
46
|
|
|
9
47
|
### Build
|
package/dist/index.js
CHANGED
|
@@ -179,7 +179,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
|
|
|
179
179
|
// package.json
|
|
180
180
|
var package_default = {
|
|
181
181
|
name: "codeam-cli",
|
|
182
|
-
version: "2.1.
|
|
182
|
+
version: "2.1.1",
|
|
183
183
|
description: "Remote control Claude Code (and other AI coding agents) from your mobile phone. Pair your device, send prompts, stream responses in real-time, and approve commands \u2014 from anywhere.",
|
|
184
184
|
main: "dist/index.js",
|
|
185
185
|
bin: {
|
|
@@ -251,7 +251,7 @@ var package_default = {
|
|
|
251
251
|
picocolors: "^1.1.0",
|
|
252
252
|
"qrcode-terminal": "^0.12.0",
|
|
253
253
|
ws: "^8.18.0",
|
|
254
|
-
zod: "^3.
|
|
254
|
+
zod: "^4.3.6"
|
|
255
255
|
},
|
|
256
256
|
devDependencies: {
|
|
257
257
|
"@codeagent/shared": "*",
|
|
@@ -259,8 +259,8 @@ var package_default = {
|
|
|
259
259
|
"@types/qrcode-terminal": "^0.12.0",
|
|
260
260
|
"@types/ws": "^8.5.0",
|
|
261
261
|
tsup: "^8.0.0",
|
|
262
|
-
typescript: "^
|
|
263
|
-
vitest: "^
|
|
262
|
+
typescript: "^6.0.3",
|
|
263
|
+
vitest: "^4.1.5"
|
|
264
264
|
}
|
|
265
265
|
};
|
|
266
266
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "Remote control Claude Code (and other AI coding agents) from your mobile phone. Pair your device, send prompts, stream responses in real-time, and approve commands — from anywhere.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"picocolors": "^1.1.0",
|
|
73
73
|
"qrcode-terminal": "^0.12.0",
|
|
74
74
|
"ws": "^8.18.0",
|
|
75
|
-
"zod": "^3.
|
|
75
|
+
"zod": "^4.3.6"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
78
|
"@codeagent/shared": "*",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"@types/qrcode-terminal": "^0.12.0",
|
|
81
81
|
"@types/ws": "^8.5.0",
|
|
82
82
|
"tsup": "^8.0.0",
|
|
83
|
-
"typescript": "^
|
|
84
|
-
"vitest": "^
|
|
83
|
+
"typescript": "^6.0.3",
|
|
84
|
+
"vitest": "^4.1.5"
|
|
85
85
|
}
|
|
86
86
|
}
|