codeam-cli 1.4.28 → 1.4.29
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 +6 -6
- package/package.json +1 -1
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.29",
|
|
120
120
|
description: "Remote control Claude Code from your mobile device",
|
|
121
121
|
main: "dist/index.js",
|
|
122
122
|
bin: {
|
|
@@ -1761,7 +1761,7 @@ except Exception:sys.exit(0)
|
|
|
1761
1761
|
quotaFetchInProgress = false;
|
|
1762
1762
|
return;
|
|
1763
1763
|
}
|
|
1764
|
-
const proc = (0, import_child_process3.spawn)(python, [helperPath, claudeCmd, "--
|
|
1764
|
+
const proc = (0, import_child_process3.spawn)(python, [helperPath, claudeCmd, "--tools", ""], {
|
|
1765
1765
|
stdio: ["pipe", "pipe", "ignore"],
|
|
1766
1766
|
cwd: process.cwd(),
|
|
1767
1767
|
env: { ...process.env, TERM: "dumb", COLUMNS: "120", LINES: "30" }
|
|
@@ -1791,8 +1791,8 @@ except Exception:sys.exit(0)
|
|
|
1791
1791
|
} catch {
|
|
1792
1792
|
}
|
|
1793
1793
|
quotaFetchInProgress = false;
|
|
1794
|
-
},
|
|
1795
|
-
},
|
|
1794
|
+
}, 5e3);
|
|
1795
|
+
}, 8e3);
|
|
1796
1796
|
proc.on("exit", () => {
|
|
1797
1797
|
quotaFetchInProgress = false;
|
|
1798
1798
|
});
|
|
@@ -1801,7 +1801,7 @@ except Exception:sys.exit(0)
|
|
|
1801
1801
|
proc.kill();
|
|
1802
1802
|
} catch {
|
|
1803
1803
|
}
|
|
1804
|
-
},
|
|
1804
|
+
}, 2e4);
|
|
1805
1805
|
}
|
|
1806
1806
|
const outputSvc = new OutputService(session.id, pluginId, (conversationId) => {
|
|
1807
1807
|
historySvc.setCurrentConversationId(conversationId);
|
|
@@ -1967,7 +1967,7 @@ except Exception:sys.exit(0)
|
|
|
1967
1967
|
}, 2e3);
|
|
1968
1968
|
setTimeout(() => {
|
|
1969
1969
|
fetchQuotaUsage();
|
|
1970
|
-
},
|
|
1970
|
+
}, 5e3);
|
|
1971
1971
|
}
|
|
1972
1972
|
|
|
1973
1973
|
// src/commands/pair.ts
|