codeam-cli 1.4.54 → 1.4.55
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/README.md +1 -1
- package/dist/index.js +5 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,5 +21,5 @@ codeam logout # Remove all sessions
|
|
|
21
21
|
## Requirements
|
|
22
22
|
|
|
23
23
|
- Node.js 18+
|
|
24
|
-
- Claude Code installed
|
|
24
|
+
- Claude Code installed — see the [official quickstart](https://code.claude.com/docs/en/quickstart)
|
|
25
25
|
- [CodeAgent Mobile](https://www.codeagent-mobile.com) app on your phone
|
package/dist/index.js
CHANGED
|
@@ -116,7 +116,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
|
|
|
116
116
|
// package.json
|
|
117
117
|
var package_default = {
|
|
118
118
|
name: "codeam-cli",
|
|
119
|
-
version: "1.4.
|
|
119
|
+
version: "1.4.55",
|
|
120
120
|
description: "Remote control Claude Code from your mobile device",
|
|
121
121
|
main: "dist/index.js",
|
|
122
122
|
bin: {
|
|
@@ -910,6 +910,8 @@ function isChromeLine(line) {
|
|
|
910
910
|
if (BULLET_TOOL_RE.test(t)) return true;
|
|
911
911
|
if (TREE_LINE_RE.test(t)) return true;
|
|
912
912
|
if (STATUS_LINE_RE.test(t) && /\d+\s*s\s*[·•]|\bthought\s+for\b|\d+\s*tokens|\(thinking\)/i.test(t)) return true;
|
|
913
|
+
if (/^↓\s*\d+\s*tokens/i.test(t)) return true;
|
|
914
|
+
if (/^\bthought\s+for\s+\d+/i.test(t)) return true;
|
|
913
915
|
if (/esc.{0,5}to.{0,5}interrupt/i.test(t)) return true;
|
|
914
916
|
if (/high\s*[·•]\s*\/effort/i.test(t)) return true;
|
|
915
917
|
if (/^[❯>]\s*$/.test(t)) return true;
|
|
@@ -1219,6 +1221,8 @@ function filterChrome(lines) {
|
|
|
1219
1221
|
continue;
|
|
1220
1222
|
if (/^└\s/.test(t)) continue;
|
|
1221
1223
|
if (/^\+\s/.test(t) && /\d+\s*s\s*[·•]|\bthought\s+for\b|\d+\s*tokens|\(thinking\)/i.test(t)) continue;
|
|
1224
|
+
if (/^↓\s*\d+\s*tokens/i.test(t)) continue;
|
|
1225
|
+
if (/^\bthought\s+for\s+\d+/i.test(t)) continue;
|
|
1222
1226
|
const stripped = t.replace(/^[│╭╰╮╯┌└┐┘├┤┬┴┼]\s?/, "");
|
|
1223
1227
|
if (/^[❯>]\s+\S/.test(stripped) && !/^[❯>]\s*\d+\./.test(stripped)) {
|
|
1224
1228
|
skipEchoContinuation = true;
|