codeam-cli 2.12.2 → 2.12.3

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.
Files changed (2) hide show
  1. package/dist/index.js +10 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1682,7 +1682,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
1682
1682
  // package.json
1683
1683
  var package_default = {
1684
1684
  name: "codeam-cli",
1685
- version: "2.12.2",
1685
+ version: "2.12.3",
1686
1686
  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.",
1687
1687
  type: "commonjs",
1688
1688
  main: "dist/index.js",
@@ -5798,9 +5798,10 @@ function getCurrentUsage2(historyDir) {
5798
5798
  // src/agents/codex/parsing.ts
5799
5799
  var BOX_DRAW_RE = /^[╭─╮│╰╯]/u;
5800
5800
  var CODEX_USER_ECHO_RE = /^[›>]\s+\S/u;
5801
- var CODEX_AGENT_REPLY_RE = /^•\s/u;
5801
+ var CODEX_AGENT_REPLY_RE = /^[•·]\s/u;
5802
5802
  var TIP_RE = /^\s*Tip:\s/i;
5803
5803
  var LEARN_MORE_RE = /^\s*Learn more:\s/i;
5804
+ var CODEX_STATUS_FOOTER_RE = /\bdefault\s+[·•]\s+\S+/i;
5804
5805
  function filterCodexChrome(lines) {
5805
5806
  const out = [];
5806
5807
  let skipEchoContinuation = false;
@@ -5814,9 +5815,13 @@ function filterCodexChrome(lines) {
5814
5815
  if (BOX_DRAW_RE.test(trimmed)) continue;
5815
5816
  if (/^OpenAI Codex\b/i.test(trimmed) || /^>_\s+OpenAI Codex\b/i.test(trimmed) || /^model:\s/i.test(trimmed) || /^directory:\s/i.test(trimmed)) continue;
5816
5817
  if (TIP_RE.test(t2) || LEARN_MORE_RE.test(t2)) continue;
5818
+ if (CODEX_STATUS_FOOTER_RE.test(trimmed)) {
5819
+ skipEchoContinuation = false;
5820
+ continue;
5821
+ }
5817
5822
  if (CODEX_AGENT_REPLY_RE.test(trimmed)) {
5818
5823
  skipEchoContinuation = false;
5819
- out.push(t2.replace(/^(\s*)•\s/, "$1"));
5824
+ out.push(t2.replace(/^(\s*)[•·]\s/, "$1"));
5820
5825
  continue;
5821
5826
  }
5822
5827
  if (CODEX_USER_ECHO_RE.test(trimmed)) {
@@ -10118,7 +10123,7 @@ async function stopWorkspaceFromLocal(target) {
10118
10123
  // src/commands/version.ts
10119
10124
  var import_picocolors11 = __toESM(require("picocolors"));
10120
10125
  function version() {
10121
- const v = true ? "2.12.2" : "unknown";
10126
+ const v = true ? "2.12.3" : "unknown";
10122
10127
  console.log(`${import_picocolors11.default.bold("codeam-cli")} ${import_picocolors11.default.cyan(v)}`);
10123
10128
  }
10124
10129
 
@@ -10253,7 +10258,7 @@ function checkForUpdates() {
10253
10258
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
10254
10259
  if (process.env.CI) return;
10255
10260
  if (!process.stdout.isTTY) return;
10256
- const current = true ? "2.12.2" : null;
10261
+ const current = true ? "2.12.3" : null;
10257
10262
  if (!current) return;
10258
10263
  const cache = readCache();
10259
10264
  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.12.2",
3
+ "version": "2.12.3",
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
  "type": "commonjs",
6
6
  "main": "dist/index.js",