@synkro-sh/cli 1.7.6 → 1.7.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/bootstrap.js +6 -6
- package/dist/bootstrap.js.map +1 -1
- package/package.json +1 -1
package/dist/bootstrap.js
CHANGED
|
@@ -11634,7 +11634,7 @@ function writeConfigEnv(opts) {
|
|
|
11634
11634
|
`SYNKRO_CREDENTIALS_PATH=${shellQuoteSingle(credsPath)}`,
|
|
11635
11635
|
`SYNKRO_TIER=${shellQuoteSingle(safeTier)}`,
|
|
11636
11636
|
`SYNKRO_INFERENCE=${shellQuoteSingle(safeInference)}`,
|
|
11637
|
-
`SYNKRO_VERSION=${shellQuoteSingle("1.7.
|
|
11637
|
+
`SYNKRO_VERSION=${shellQuoteSingle("1.7.7")}`
|
|
11638
11638
|
];
|
|
11639
11639
|
if (safeSynkroBin) lines.push(`SYNKRO_CLI_BIN=${shellQuoteSingle(safeSynkroBin)}`);
|
|
11640
11640
|
if (safeUserId) lines.push(`SYNKRO_USER_ID=${shellQuoteSingle(safeUserId)}`);
|
|
@@ -13596,7 +13596,7 @@ tmux kill-session -t "=$SESSION" 2>/dev/null || true
|
|
|
13596
13596
|
# Start claude inside a detached tmux session so it has a real pty.
|
|
13597
13597
|
# Redirect stderr to the log so we can see why it dies.
|
|
13598
13598
|
tmux new-session -d -s "$SESSION" \\
|
|
13599
|
-
"SYNKRO_CHANNEL_PORT=${CHANNEL_1_PORT} CLAUDE_CODE_DISABLE_THINKING=1 claude --dangerously-load-development-channels server:synkro-local --dangerously-skip-permissions --setting-sources project,local --model claude-sonnet-
|
|
13599
|
+
"SYNKRO_CHANNEL_PORT=${CHANNEL_1_PORT} CLAUDE_CODE_DISABLE_THINKING=1 claude --dangerously-load-development-channels server:synkro-local --dangerously-skip-permissions --setting-sources project,local --model claude-sonnet-5 2>>$LOG; echo 'claude exited with code '$'?' >> $LOG"
|
|
13600
13600
|
|
|
13601
13601
|
# Claude's --dangerously-load-development-channels shows a confirmation
|
|
13602
13602
|
# prompt: option 1 = "I am using this for local development" (accept),
|
|
@@ -13658,7 +13658,7 @@ log "claude version: $(claude --version 2>&1 | head -1)"
|
|
|
13658
13658
|
tmux kill-session -t "=$SESSION" 2>/dev/null || true
|
|
13659
13659
|
|
|
13660
13660
|
tmux new-session -d -s "$SESSION" \\
|
|
13661
|
-
"SYNKRO_CHANNEL_PORT=${CHANNEL_2_PORT} CLAUDE_CODE_DISABLE_THINKING=1 claude --dangerously-load-development-channels server:synkro-local --dangerously-skip-permissions --setting-sources project,local --model claude-sonnet-
|
|
13661
|
+
"SYNKRO_CHANNEL_PORT=${CHANNEL_2_PORT} CLAUDE_CODE_DISABLE_THINKING=1 claude --dangerously-load-development-channels server:synkro-local --dangerously-skip-permissions --setting-sources project,local --model claude-sonnet-5 2>>$LOG; echo 'claude exited with code '$'?' >> $LOG"
|
|
13662
13662
|
|
|
13663
13663
|
sleep 3
|
|
13664
13664
|
if tmux has-session -t "=$SESSION" 2>/dev/null; then
|
|
@@ -13714,7 +13714,7 @@ log "claude version: $(claude --version 2>&1 | head -1)"
|
|
|
13714
13714
|
tmux kill-session -t "=$SESSION" 2>/dev/null || true
|
|
13715
13715
|
|
|
13716
13716
|
tmux new-session -d -s "$SESSION" \\
|
|
13717
|
-
"SYNKRO_CHANNEL_PORT=${CHANNEL_3_PORT} CLAUDE_CODE_DISABLE_THINKING=1 claude --dangerously-load-development-channels server:synkro-local --dangerously-skip-permissions --setting-sources project,local --model claude-sonnet-
|
|
13717
|
+
"SYNKRO_CHANNEL_PORT=${CHANNEL_3_PORT} CLAUDE_CODE_DISABLE_THINKING=1 claude --dangerously-load-development-channels server:synkro-local --dangerously-skip-permissions --setting-sources project,local --model claude-sonnet-5 2>>$LOG; echo 'claude exited with code '$'?' >> $LOG"
|
|
13718
13718
|
|
|
13719
13719
|
sleep 3
|
|
13720
13720
|
if tmux has-session -t "=$SESSION" 2>/dev/null; then
|
|
@@ -13770,7 +13770,7 @@ log "claude version: $(claude --version 2>&1 | head -1)"
|
|
|
13770
13770
|
tmux kill-session -t "=$SESSION" 2>/dev/null || true
|
|
13771
13771
|
|
|
13772
13772
|
tmux new-session -d -s "$SESSION" \\
|
|
13773
|
-
"SYNKRO_CHANNEL_PORT=${CHANNEL_4_PORT} CLAUDE_CODE_DISABLE_THINKING=1 claude --dangerously-load-development-channels server:synkro-local --dangerously-skip-permissions --setting-sources project,local --model claude-sonnet-
|
|
13773
|
+
"SYNKRO_CHANNEL_PORT=${CHANNEL_4_PORT} CLAUDE_CODE_DISABLE_THINKING=1 claude --dangerously-load-development-channels server:synkro-local --dangerously-skip-permissions --setting-sources project,local --model claude-sonnet-5 2>>$LOG; echo 'claude exited with code '$'?' >> $LOG"
|
|
13774
13774
|
|
|
13775
13775
|
sleep 3
|
|
13776
13776
|
if tmux has-session -t "=$SESSION" 2>/dev/null; then
|
|
@@ -15697,7 +15697,7 @@ var args = process.argv.slice(2);
|
|
|
15697
15697
|
var cmd = args[0] || "";
|
|
15698
15698
|
var subArgs = args.slice(1);
|
|
15699
15699
|
function printVersion() {
|
|
15700
|
-
console.log("1.7.
|
|
15700
|
+
console.log("1.7.7");
|
|
15701
15701
|
}
|
|
15702
15702
|
function printHelp2() {
|
|
15703
15703
|
console.log(`Synkro CLI \u2014 runtime safety for AI coding agents
|