@synkro-sh/cli 1.6.65 → 1.6.66
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 +8 -5
- package/dist/bootstrap.js.map +1 -1
- package/package.json +1 -1
package/dist/bootstrap.js
CHANGED
|
@@ -10318,7 +10318,7 @@ function writeConfigEnv(opts) {
|
|
|
10318
10318
|
`SYNKRO_CREDENTIALS_PATH=${shellQuoteSingle(credsPath)}`,
|
|
10319
10319
|
`SYNKRO_TIER=${shellQuoteSingle(safeTier)}`,
|
|
10320
10320
|
`SYNKRO_INFERENCE=${shellQuoteSingle(safeInference)}`,
|
|
10321
|
-
`SYNKRO_VERSION=${shellQuoteSingle("1.6.
|
|
10321
|
+
`SYNKRO_VERSION=${shellQuoteSingle("1.6.66")}`
|
|
10322
10322
|
];
|
|
10323
10323
|
if (safeSynkroBin) lines.push(`SYNKRO_CLI_BIN=${shellQuoteSingle(safeSynkroBin)}`);
|
|
10324
10324
|
if (safeUserId) lines.push(`SYNKRO_USER_ID=${shellQuoteSingle(safeUserId)}`);
|
|
@@ -10409,9 +10409,12 @@ async function printWorkerDebug(base, jwt2) {
|
|
|
10409
10409
|
return;
|
|
10410
10410
|
}
|
|
10411
10411
|
for (const w of d.workers) {
|
|
10412
|
-
|
|
10413
|
-
console.warn(
|
|
10414
|
-
|
|
10412
|
+
console.warn(` [${w.worker}] log:`);
|
|
10413
|
+
for (const l of String(w.logTail || "").split("\n").filter((l2) => l2.trim()).slice(-10)) console.warn(" " + l.slice(0, 240));
|
|
10414
|
+
if (w.pane && !w.pane.startsWith("(no pane")) {
|
|
10415
|
+
console.warn(` [${w.worker}] claude screen:`);
|
|
10416
|
+
for (const l of String(w.pane).split("\n").filter((l2) => l2.trim()).slice(-14)) console.warn(" " + l.slice(0, 240));
|
|
10417
|
+
}
|
|
10415
10418
|
}
|
|
10416
10419
|
if (Array.isArray(d.sick_pool) && d.sick_pool.length) {
|
|
10417
10420
|
console.warn(" sick workers:");
|
|
@@ -13888,7 +13891,7 @@ var args = process.argv.slice(2);
|
|
|
13888
13891
|
var cmd = args[0] || "";
|
|
13889
13892
|
var subArgs = args.slice(1);
|
|
13890
13893
|
function printVersion() {
|
|
13891
|
-
console.log("1.6.
|
|
13894
|
+
console.log("1.6.66");
|
|
13892
13895
|
}
|
|
13893
13896
|
function printHelp2() {
|
|
13894
13897
|
console.log(`Synkro CLI \u2014 runtime safety for AI coding agents
|