@synkro-sh/cli 1.7.39 → 1.7.41

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
@@ -3806,10 +3806,6 @@ async function dockerInstall(opts = {}) {
3806
3806
  // interactive AskUserQuestion poll and fall through to generate-the-fix. Only
3807
3807
  // passed when the operator set it; otherwise the image default (1) applies.
3808
3808
  ...process.env.SYNKRO_FIX_POLL ? ["-e", `SYNKRO_FIX_POLL=${process.env.SYNKRO_FIX_POLL}`] : [],
3809
- // Route CWE grades to the cloud /api/v1/cwe-scan endpoint (arm-C: full-catalog
3810
- // retrieval + ensemble) instead of the local single-prompt path. Grading stays
3811
- // local for every other surface. Benchmark lever; default off.
3812
- ...process.env.SYNKRO_CWE_VIA_ENDPOINT ? ["-e", `SYNKRO_CWE_VIA_ENDPOINT=${process.env.SYNKRO_CWE_VIA_ENDPOINT}`] : [],
3813
3809
  // Connected repo — the server seeds the local app + ruleset named after it.
3814
3810
  ...opts.connectedRepo ? ["-e", `SYNKRO_CONNECTED_REPO=${opts.connectedRepo}`] : [],
3815
3811
  // Real account identity (from config.env via process.env) — telemetry is
@@ -4830,7 +4826,7 @@ function writeConfigEnv(opts) {
4830
4826
  `SYNKRO_CREDENTIALS_PATH=${shellQuoteSingle(credsPath)}`,
4831
4827
  `SYNKRO_TIER=${shellQuoteSingle(safeTier)}`,
4832
4828
  `SYNKRO_INFERENCE=${shellQuoteSingle(safeInference)}`,
4833
- `SYNKRO_VERSION=${shellQuoteSingle("1.7.39")}`
4829
+ `SYNKRO_VERSION=${shellQuoteSingle("1.7.41")}`
4834
4830
  ];
4835
4831
  if (safeSynkroBin) lines.push(`SYNKRO_CLI_BIN=${shellQuoteSingle(safeSynkroBin)}`);
4836
4832
  if (safeUserId) lines.push(`SYNKRO_USER_ID=${shellQuoteSingle(safeUserId)}`);
@@ -9032,7 +9028,7 @@ var args = process.argv.slice(2);
9032
9028
  var cmd = args[0] || "";
9033
9029
  var subArgs = args.slice(1);
9034
9030
  function printVersion() {
9035
- console.log("1.7.39");
9031
+ console.log("1.7.41");
9036
9032
  }
9037
9033
  function printHelp2() {
9038
9034
  console.log(`Synkro CLI \u2014 runtime safety for AI coding agents