@synkro-sh/cli 1.6.65 → 1.6.67
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 +15 -6
- 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.67")}`
|
|
10322
10322
|
];
|
|
10323
10323
|
if (safeSynkroBin) lines.push(`SYNKRO_CLI_BIN=${shellQuoteSingle(safeSynkroBin)}`);
|
|
10324
10324
|
if (safeUserId) lines.push(`SYNKRO_USER_ID=${shellQuoteSingle(safeUserId)}`);
|
|
@@ -10408,10 +10408,19 @@ async function printWorkerDebug(base, jwt2) {
|
|
|
10408
10408
|
`);
|
|
10409
10409
|
return;
|
|
10410
10410
|
}
|
|
10411
|
-
for (const w of d.workers) {
|
|
10412
|
-
|
|
10413
|
-
console.warn(
|
|
10414
|
-
|
|
10411
|
+
for (const w of d.workers.slice(0, 2)) {
|
|
10412
|
+
console.warn(` [${w.worker}] launcher log:`);
|
|
10413
|
+
for (const l of String(w.logTail || "").split("\n").filter((l2) => l2.trim()).slice(-6)) console.warn(" " + l.slice(0, 240));
|
|
10414
|
+
if (w.channelLog && !w.channelLog.startsWith("(no channel")) {
|
|
10415
|
+
console.warn(` [${w.worker}] channel flow (token + grade delivery):`);
|
|
10416
|
+
for (const l of String(w.channelLog).split("\n").filter((l2) => l2.trim()).slice(-12)) console.warn(" " + l.slice(0, 240));
|
|
10417
|
+
} else {
|
|
10418
|
+
console.warn(` [${w.worker}] channel: ${w.channelLog}`);
|
|
10419
|
+
}
|
|
10420
|
+
if (w.pane && !w.pane.startsWith("(")) {
|
|
10421
|
+
console.warn(` [${w.worker}] claude screen:`);
|
|
10422
|
+
for (const l of String(w.pane).split("\n").filter((l2) => l2.trim()).slice(-12)) console.warn(" " + l.slice(0, 240));
|
|
10423
|
+
}
|
|
10415
10424
|
}
|
|
10416
10425
|
if (Array.isArray(d.sick_pool) && d.sick_pool.length) {
|
|
10417
10426
|
console.warn(" sick workers:");
|
|
@@ -13888,7 +13897,7 @@ var args = process.argv.slice(2);
|
|
|
13888
13897
|
var cmd = args[0] || "";
|
|
13889
13898
|
var subArgs = args.slice(1);
|
|
13890
13899
|
function printVersion() {
|
|
13891
|
-
console.log("1.6.
|
|
13900
|
+
console.log("1.6.67");
|
|
13892
13901
|
}
|
|
13893
13902
|
function printHelp2() {
|
|
13894
13903
|
console.log(`Synkro CLI \u2014 runtime safety for AI coding agents
|