@synkro-sh/cli 1.6.2 → 1.6.3

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
@@ -3122,9 +3122,7 @@ async function main() {
3122
3122
  recentUserMessages: transcript.recentUserMessages, ccModel: transcript.ccModel,
3123
3123
  });
3124
3124
  } else {
3125
- const fixRuleIds = (config.rules || []).filter((r: any) => r.mode === 'fix' || r.mode === 'audit').map((r: any) => r.rule_id || r.id).filter(Boolean);
3126
- const fixNote = fixRuleIds.length > 0 ? ' (fix rules checked: ' + fixRuleIds.join(', ') + ')' : '';
3127
- const reason = tagStr + ' bashGuard → pass: ' + (verdict.reason || 'no policy violations detected') + fixNote;
3125
+ const reason = tagStr + ' bashGuard pass: ' + (verdict.reason || 'no policy violations detected');
3128
3126
  const combined = (installScanMsg ? installScanMsg + '\\n' : '') + reason;
3129
3127
  outputJson({ systemMessage: combined, hookSpecificOutput: { hookEventName: 'PreToolUse', additionalContext: combined } });
3130
3128
  dispatchCapture(jwt, 'bash', 'pass', 'clean', verdict.category || 'trivial_utility',
@@ -6001,7 +5999,7 @@ function writeConfigEnv(opts) {
6001
5999
  `SYNKRO_CREDENTIALS_PATH=${shellQuoteSingle(credsPath)}`,
6002
6000
  `SYNKRO_TIER=${shellQuoteSingle(safeTier)}`,
6003
6001
  `SYNKRO_INFERENCE=${shellQuoteSingle(safeInference)}`,
6004
- `SYNKRO_VERSION=${shellQuoteSingle("1.6.2")}`
6002
+ `SYNKRO_VERSION=${shellQuoteSingle("1.6.3")}`
6005
6003
  ];
6006
6004
  if (safeSynkroBin) lines.push(`SYNKRO_CLI_BIN=${shellQuoteSingle(safeSynkroBin)}`);
6007
6005
  if (safeUserId) lines.push(`SYNKRO_USER_ID=${shellQuoteSingle(safeUserId)}`);
@@ -7453,7 +7451,7 @@ var args = process.argv.slice(2);
7453
7451
  var cmd = args[0] || "";
7454
7452
  var subArgs = args.slice(1);
7455
7453
  function printVersion() {
7456
- console.log("1.6.2");
7454
+ console.log("1.6.3");
7457
7455
  }
7458
7456
  function printHelp() {
7459
7457
  console.log(`Synkro CLI \u2014 runtime safety for AI coding agents