@synkro-sh/cli 1.6.66 → 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 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.66")}`
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,12 +10408,18 @@ async function printWorkerDebug(base, jwt2) {
10408
10408
  `);
10409
10409
  return;
10410
10410
  }
10411
- for (const w of d.workers) {
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")) {
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("(")) {
10415
10421
  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));
10422
+ for (const l of String(w.pane).split("\n").filter((l2) => l2.trim()).slice(-12)) console.warn(" " + l.slice(0, 240));
10417
10423
  }
10418
10424
  }
10419
10425
  if (Array.isArray(d.sick_pool) && d.sick_pool.length) {
@@ -13891,7 +13897,7 @@ var args = process.argv.slice(2);
13891
13897
  var cmd = args[0] || "";
13892
13898
  var subArgs = args.slice(1);
13893
13899
  function printVersion() {
13894
- console.log("1.6.66");
13900
+ console.log("1.6.67");
13895
13901
  }
13896
13902
  function printHelp2() {
13897
13903
  console.log(`Synkro CLI \u2014 runtime safety for AI coding agents