codeam-cli 1.3.5 → 1.3.7
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/dist/index.js +30 -15
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -114,7 +114,7 @@ var import_picocolors = __toESM(require("picocolors"));
|
|
|
114
114
|
// package.json
|
|
115
115
|
var package_default = {
|
|
116
116
|
name: "codeam-cli",
|
|
117
|
-
version: "1.3.
|
|
117
|
+
version: "1.3.7",
|
|
118
118
|
description: "Remote control Claude Code from your mobile device",
|
|
119
119
|
main: "dist/index.js",
|
|
120
120
|
bin: {
|
|
@@ -924,21 +924,34 @@ function detectSelector(lines) {
|
|
|
924
924
|
};
|
|
925
925
|
}
|
|
926
926
|
function filterChrome(lines) {
|
|
927
|
-
|
|
927
|
+
const result = [];
|
|
928
|
+
let skipEchoContinuation = false;
|
|
929
|
+
for (const line of lines) {
|
|
928
930
|
const t = line.trim();
|
|
929
|
-
if (!t)
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
if (
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
if (
|
|
938
|
-
if (/
|
|
939
|
-
if (
|
|
940
|
-
|
|
941
|
-
|
|
931
|
+
if (!t) {
|
|
932
|
+
skipEchoContinuation = false;
|
|
933
|
+
continue;
|
|
934
|
+
}
|
|
935
|
+
if (/^[─━—═─\-]{3,}$/.test(t)) {
|
|
936
|
+
skipEchoContinuation = false;
|
|
937
|
+
continue;
|
|
938
|
+
}
|
|
939
|
+
if (/^[✳✢✶✻✽✴✷✸✹⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏◐◑◒◓▁▂▃▄▅▆▇█]\s/.test(t)) continue;
|
|
940
|
+
if (/esc.{0,5}to.{0,5}interrupt/i.test(t)) continue;
|
|
941
|
+
if (/high\s*[·•]\s*\/effort/i.test(t)) continue;
|
|
942
|
+
if (/^[❯>]\s*$/.test(t)) continue;
|
|
943
|
+
if (/^\(thinking\)\s*$/.test(t)) continue;
|
|
944
|
+
if (/^\?\s.*shortcut/i.test(t)) continue;
|
|
945
|
+
if (/spending limit|usage limit/i.test(t) && t.length < 80) continue;
|
|
946
|
+
if (/↑\s*\/?\s*↓\s*to\s*navigate/i.test(t)) continue;
|
|
947
|
+
if (/^[❯>]\s+\S/.test(t) && !/^[❯>]\s*\d+\./.test(t)) {
|
|
948
|
+
skipEchoContinuation = true;
|
|
949
|
+
continue;
|
|
950
|
+
}
|
|
951
|
+
if (skipEchoContinuation) continue;
|
|
952
|
+
result.push(line);
|
|
953
|
+
}
|
|
954
|
+
return result;
|
|
942
955
|
}
|
|
943
956
|
var OutputService = class _OutputService {
|
|
944
957
|
constructor(sessionId, pluginId) {
|
|
@@ -1149,6 +1162,7 @@ async function start() {
|
|
|
1149
1162
|
break;
|
|
1150
1163
|
}
|
|
1151
1164
|
case "escape_key":
|
|
1165
|
+
outputSvc.newTurn();
|
|
1152
1166
|
claude.sendEscape();
|
|
1153
1167
|
break;
|
|
1154
1168
|
case "stop_task":
|
|
@@ -1193,6 +1207,7 @@ async function start() {
|
|
|
1193
1207
|
outputSvc.newTurn();
|
|
1194
1208
|
claude.selectOption(index);
|
|
1195
1209
|
} else if (cmdType === "escape_key") {
|
|
1210
|
+
outputSvc.newTurn();
|
|
1196
1211
|
claude.sendEscape();
|
|
1197
1212
|
} else if (cmdType === "stop_task") {
|
|
1198
1213
|
claude.interrupt();
|