codeam-cli 1.1.5 → 1.1.6

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 +7 -8
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -110,7 +110,7 @@ var import_picocolors = __toESM(require("picocolors"));
110
110
  // package.json
111
111
  var package_default = {
112
112
  name: "codeam-cli",
113
- version: "1.1.5",
113
+ version: "1.1.6",
114
114
  description: "Remote control Claude Code from your mobile device",
115
115
  main: "dist/index.js",
116
116
  bin: {
@@ -841,9 +841,8 @@ function renderToLines(raw) {
841
841
  return screen;
842
842
  }
843
843
  function detectSelector(raw) {
844
+ if (!/\x1B\[\d*A/.test(raw)) return null;
844
845
  const stripped = raw.replace(/\x1B\[[^@-~]*[@-~]/g, "").replace(/\x1B\][^\x07\x1B]*(?:\x07|\x1B\\)/g, "").replace(/\x1B[@-Z\\-_]/g, "");
845
- const hasNavHint = /Enter to (?:select|enter)/i.test(stripped) || /↑\s*\/\s*↓\s*to\s*navigate/i.test(stripped);
846
- if (!hasNavHint) return null;
847
846
  const segments = stripped.split(/[\r\n]+/);
848
847
  const optionMap = /* @__PURE__ */ new Map();
849
848
  for (const seg of segments) {
@@ -855,12 +854,13 @@ function detectSelector(raw) {
855
854
  if (!optionMap.has(num)) optionMap.set(num, m[2].trim());
856
855
  }
857
856
  }
858
- const options = [...optionMap.entries()].sort(([a], [b]) => a - b).map(([, label]) => label);
859
- if (options.length === 0) return null;
857
+ const keys = [...optionMap.keys()].sort((a, b) => a - b);
858
+ if (keys.length < 2 || keys[0] !== 1) return null;
859
+ const options = keys.map((k) => optionMap.get(k));
860
860
  let question = "";
861
861
  for (let i = segments.length - 1; i >= 0; i--) {
862
862
  const t = segments[i].trim();
863
- if (t.endsWith("?") && !/Enter to select/i.test(t) && !/^[❯>]?\s*\d+\./.test(t)) {
863
+ if (t.endsWith("?") && !/^[❯>]?\s*\d+\./.test(t)) {
864
864
  question = t;
865
865
  break;
866
866
  }
@@ -880,8 +880,7 @@ function filterChrome(lines) {
880
880
  if (/^\(thinking\)\s*$/.test(t)) return false;
881
881
  if (/^\?\s.*shortcut/i.test(t)) return false;
882
882
  if (/spending limit|usage limit/i.test(t) && t.length < 80) return false;
883
- if (/Enter to (?:select|enter)/i.test(t)) return false;
884
- if (/↑\s*\/\s*↓\s*to\s*navigate/i.test(t)) return false;
883
+ if (/↑\s*\/?\s*↓\s*to\s*navigate/i.test(t)) return false;
885
884
  return true;
886
885
  });
887
886
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "description": "Remote control Claude Code from your mobile device",
5
5
  "main": "dist/index.js",
6
6
  "bin": {