codeam-cli 2.4.14 → 2.4.15
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 +45 -7
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -179,7 +179,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
|
|
|
179
179
|
// package.json
|
|
180
180
|
var package_default = {
|
|
181
181
|
name: "codeam-cli",
|
|
182
|
-
version: "2.4.
|
|
182
|
+
version: "2.4.15",
|
|
183
183
|
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.",
|
|
184
184
|
main: "dist/index.js",
|
|
185
185
|
bin: {
|
|
@@ -5910,17 +5910,51 @@ async function deploy() {
|
|
|
5910
5910
|
"pm2 delete codeam-pair >/dev/null 2>&1",
|
|
5911
5911
|
// Start codeam pair under PM2. `--merge-logs` writes stdout
|
|
5912
5912
|
// and stderr to the same file so we only need one tail.
|
|
5913
|
-
|
|
5913
|
+
// --max-restarts 3 keeps PM2 from looping forever if codeam pair
|
|
5914
|
+
// can't start (e.g. backend unreachable) — three attempts is
|
|
5915
|
+
// enough for transient flakes, anything more wastes time.
|
|
5916
|
+
'pm2 start codeam --name codeam-pair --cwd "$PROJECT_DIR" --max-restarts 3 -o "$LOG" -e "$LOG" --merge-logs --time -- pair >/dev/null 2>&1',
|
|
5917
|
+
// Give PM2 a moment to spawn the process before we start polling
|
|
5918
|
+
// status — otherwise the very first jlist can race the spawn.
|
|
5919
|
+
"sleep 2",
|
|
5914
5920
|
'tail -n 0 -F "$LOG" 2>/dev/null &',
|
|
5915
5921
|
"TAIL=$!",
|
|
5916
5922
|
"trap 'kill $TAIL 2>/dev/null; exit 130' INT TERM",
|
|
5917
|
-
// Phase 1 — wait for "Paired with"
|
|
5923
|
+
// Phase 1 — wait for "Paired with", or for codeam to print a
|
|
5924
|
+
// recognisable failure, or for PM2 to report the process gone.
|
|
5918
5925
|
"SUCCESS=0",
|
|
5926
|
+
'FAIL_REASON=""',
|
|
5919
5927
|
"while true; do",
|
|
5920
5928
|
' if grep -q "Paired with" "$LOG" 2>/dev/null; then SUCCESS=1; break; fi',
|
|
5921
|
-
|
|
5922
|
-
|
|
5923
|
-
' if
|
|
5929
|
+
// Detect specific codeam error messages early so the user gets
|
|
5930
|
+
// an actionable message instead of a generic "did not start".
|
|
5931
|
+
' if grep -q "Could not reach the server" "$LOG" 2>/dev/null; then',
|
|
5932
|
+
' FAIL_REASON="codeam could not reach the CodeAgent backend (network/firewall? Vercel bot-challenge on the API?)"',
|
|
5933
|
+
" SUCCESS=0; break",
|
|
5934
|
+
" fi",
|
|
5935
|
+
' if grep -qE "Pairing timed out|Failed to" "$LOG" 2>/dev/null; then',
|
|
5936
|
+
' FAIL_REASON="$(grep -E "Pairing timed out|Failed to" "$LOG" | head -1)"',
|
|
5937
|
+
" SUCCESS=0; break",
|
|
5938
|
+
" fi",
|
|
5939
|
+
// Status check: parse PM2 jlist via Python (every codespace has
|
|
5940
|
+
// python3) for resilient JSON handling, instead of fragile grep.
|
|
5941
|
+
' ALIVE=$(pm2 jlist 2>/dev/null | python3 -c "import json,sys',
|
|
5942
|
+
"try:",
|
|
5943
|
+
" d=json.load(sys.stdin)",
|
|
5944
|
+
" it=[x for x in d if x.get('name')=='codeam-pair']",
|
|
5945
|
+
" print(it[0]['pm2_env']['status'] if it else 'missing')",
|
|
5946
|
+
"except Exception:",
|
|
5947
|
+
` print('parse-error')" 2>/dev/null)`,
|
|
5948
|
+
' case "$ALIVE" in',
|
|
5949
|
+
" online|launching) ;;",
|
|
5950
|
+
// still good
|
|
5951
|
+
' "")',
|
|
5952
|
+
' FAIL_REASON="PM2 not responding"',
|
|
5953
|
+
" SUCCESS=0; break ;;",
|
|
5954
|
+
" missing|stopped|errored|stopping)",
|
|
5955
|
+
' FAIL_REASON="PM2 reports codeam-pair is $ALIVE"',
|
|
5956
|
+
" SUCCESS=0; break ;;",
|
|
5957
|
+
" esac",
|
|
5924
5958
|
" sleep 1",
|
|
5925
5959
|
"done",
|
|
5926
5960
|
'if [ "$SUCCESS" = "1" ]; then',
|
|
@@ -5945,7 +5979,11 @@ async function deploy() {
|
|
|
5945
5979
|
' echo " To stop later: gh codespace ssh -- pm2 delete codeam-pair"',
|
|
5946
5980
|
" exit 0",
|
|
5947
5981
|
"else",
|
|
5948
|
-
' echo "\u2717 Pairing did not complete
|
|
5982
|
+
' echo "\u2717 Pairing did not complete."',
|
|
5983
|
+
' if [ -n "$FAIL_REASON" ]; then echo " Reason: $FAIL_REASON"; fi',
|
|
5984
|
+
" echo",
|
|
5985
|
+
' echo " Last log lines from codeam pair:"',
|
|
5986
|
+
' tail -n 8 "$LOG" 2>/dev/null | sed "s/^/ /"',
|
|
5949
5987
|
" pm2 delete codeam-pair >/dev/null 2>&1",
|
|
5950
5988
|
" exit 1",
|
|
5951
5989
|
"fi"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.15",
|
|
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
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|