codeam-cli 2.23.37 → 2.25.0
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 +32 -0
- package/README.md +4 -0
- package/dist/index.js +14 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,38 @@ 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.24.0] — 2026-06-02
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **vsc-plugin,jetbrains-plugin:** Honor agent payload on install_cli_and_pair (#215)
|
|
12
|
+
|
|
13
|
+
### CI
|
|
14
|
+
|
|
15
|
+
- **workflow:** Agent-implements-issue — Codex picks up labelled issues (#200)
|
|
16
|
+
- **workflow:** Allow external reporters to trigger codex-action (#211)
|
|
17
|
+
- **workflow:** Forward mobile-app + api bugs to the private repo (#212)
|
|
18
|
+
- **workflow:** Pass --repo to gh issue comment in the forward job (#213)
|
|
19
|
+
- **workflow:** Forward — idempotent re-dispatch (#214)
|
|
20
|
+
|
|
21
|
+
### Chore
|
|
22
|
+
|
|
23
|
+
- **deps-dev:** Bump glob from 11.1.0 to 13.0.6 in /apps/vsc-plugin (#199)
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- **jetbrains-plugin:** Use ensurePluginId for telemetry distinct_id
|
|
28
|
+
|
|
29
|
+
### Agent
|
|
30
|
+
|
|
31
|
+
- Implement issue #201 — docs(cli): document missing subcommands in README Commands table (#202)
|
|
32
|
+
|
|
33
|
+
## [2.23.37] — 2026-05-31
|
|
34
|
+
|
|
35
|
+
### Fixed
|
|
36
|
+
|
|
37
|
+
- **cli:** Drop ignored paths in file-watcher + turn aggregator
|
|
38
|
+
|
|
7
39
|
## [2.23.36] — 2026-05-31
|
|
8
40
|
|
|
9
41
|
### Changed
|
package/README.md
CHANGED
|
@@ -49,14 +49,18 @@ That's it. Open the [CodeAgent Mobile app](https://codeagent-mobile.com), enter
|
|
|
49
49
|
| `codeam <agent>` | Start a specific agent — `codeam claude`, `codeam codex`, … |
|
|
50
50
|
| `codeam pair` | Pair a new mobile device (6-character code or QR, interactive agent picker) |
|
|
51
51
|
| `codeam pair --agent <id>` | Pair non-interactively for a specific agent (`claude`, `codex`, …) — useful in scripts |
|
|
52
|
+
| `codeam pair-auto` | redeem a one-shot auto-pair token from `--token`, `--token-file`, or `CODEAM_AUTO_TOKEN` |
|
|
53
|
+
| `codeam link <agent>` | capture local credentials for `<agent>` and store them for cloud workspace reuse |
|
|
52
54
|
| `codeam sessions` | List all paired devices |
|
|
53
55
|
| `codeam sessions switch` | Choose which paired session the next `codeam` invocation will use |
|
|
54
56
|
| `codeam sessions delete <session-id>` | Forget a specific paired session (leaves the others intact) |
|
|
55
57
|
| `codeam status` | Show connection status |
|
|
58
|
+
| `codeam doctor` | run environment, install, and pairing diagnostics (`--json` for machine-readable output) |
|
|
56
59
|
| `codeam logout` | Remove all paired sessions |
|
|
57
60
|
| `codeam deploy` | Provision a cloud workspace (GitHub Codespaces) and pair it to your phone |
|
|
58
61
|
| `codeam deploy ls` (alias `list`) | List the cloud workspaces you've deployed (and which still have a session running) |
|
|
59
62
|
| `codeam deploy stop` (alias `remove`) | Pick a deployed workspace and stop its codeam session (and optionally the workspace itself) |
|
|
63
|
+
| `codeam completion <shell>` | print shell completions for `<shell>` (`bash`, `zsh`, or `fish`) |
|
|
60
64
|
| `codeam --version`, `-v` | Print the installed CLI version |
|
|
61
65
|
| `codeam --help`, `-h` | Show usage and the full command list |
|
|
62
66
|
|
package/dist/index.js
CHANGED
|
@@ -441,7 +441,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
|
|
|
441
441
|
// package.json
|
|
442
442
|
var package_default = {
|
|
443
443
|
name: "codeam-cli",
|
|
444
|
-
version: "2.
|
|
444
|
+
version: "2.25.0",
|
|
445
445
|
description: "Workflow-continuity bridge for AI coding agents. Wrap Claude Code or Codex in a PTY and supervise, approve, and redirect the session from any device \u2014 async. The terminal companion for CodeAgent Mobile.",
|
|
446
446
|
type: "commonjs",
|
|
447
447
|
main: "dist/index.js",
|
|
@@ -5774,7 +5774,7 @@ function readAnonId() {
|
|
|
5774
5774
|
}
|
|
5775
5775
|
function superProperties() {
|
|
5776
5776
|
return {
|
|
5777
|
-
cliVersion: true ? "2.
|
|
5777
|
+
cliVersion: true ? "2.25.0" : "0.0.0-dev",
|
|
5778
5778
|
nodeVersion: process.version,
|
|
5779
5779
|
platform: process.platform,
|
|
5780
5780
|
arch: process.arch,
|
|
@@ -15956,8 +15956,16 @@ var setKeepAlive = async (ctx, cmd) => {
|
|
|
15956
15956
|
} catch {
|
|
15957
15957
|
}
|
|
15958
15958
|
};
|
|
15959
|
-
var sessionTerminated = (ctx) => {
|
|
15959
|
+
var sessionTerminated = async (ctx, cmd) => {
|
|
15960
15960
|
showInfo("Session was deleted from the app \u2014 exiting.");
|
|
15961
|
+
try {
|
|
15962
|
+
await ctx.relay.sendResult(cmd.id, "success", { ok: true });
|
|
15963
|
+
} catch {
|
|
15964
|
+
}
|
|
15965
|
+
try {
|
|
15966
|
+
removeSession(ctx.sessionId);
|
|
15967
|
+
} catch {
|
|
15968
|
+
}
|
|
15961
15969
|
try {
|
|
15962
15970
|
ctx.agent.kill();
|
|
15963
15971
|
} catch {
|
|
@@ -19253,7 +19261,7 @@ function checkChokidar() {
|
|
|
19253
19261
|
}
|
|
19254
19262
|
async function doctor(args2 = []) {
|
|
19255
19263
|
const json = args2.includes("--json");
|
|
19256
|
-
const cliVersion = true ? "2.
|
|
19264
|
+
const cliVersion = true ? "2.25.0" : "0.0.0-dev";
|
|
19257
19265
|
const apiBase = resolveApiBaseUrl();
|
|
19258
19266
|
const diagnosticId = (0, import_node_crypto6.randomUUID)();
|
|
19259
19267
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -19452,7 +19460,7 @@ async function completion(args2) {
|
|
|
19452
19460
|
// src/commands/version.ts
|
|
19453
19461
|
var import_picocolors13 = __toESM(require("picocolors"));
|
|
19454
19462
|
function version2() {
|
|
19455
|
-
const v = true ? "2.
|
|
19463
|
+
const v = true ? "2.25.0" : "unknown";
|
|
19456
19464
|
console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
|
|
19457
19465
|
}
|
|
19458
19466
|
|
|
@@ -19680,7 +19688,7 @@ function checkForUpdates() {
|
|
|
19680
19688
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
19681
19689
|
if (process.env.CI) return;
|
|
19682
19690
|
if (!process.stdout.isTTY) return;
|
|
19683
|
-
const current = true ? "2.
|
|
19691
|
+
const current = true ? "2.25.0" : null;
|
|
19684
19692
|
if (!current) return;
|
|
19685
19693
|
const cache = readCache();
|
|
19686
19694
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.25.0",
|
|
4
4
|
"description": "Workflow-continuity bridge for AI coding agents. Wrap Claude Code or Codex in a PTY and supervise, approve, and redirect the session from any device — async. The terminal companion for CodeAgent Mobile.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "dist/index.js",
|