@synkro-sh/cli 1.7.63 → 1.7.64

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
@@ -132,7 +132,7 @@ function getIdentity() {
132
132
  if (cached2) return cached2;
133
133
  let cliVersion = "0.0.0";
134
134
  try {
135
- cliVersion = "1.7.63";
135
+ cliVersion = "1.7.64";
136
136
  } catch {
137
137
  }
138
138
  const creds = loadCredentialsIdentity();
@@ -6550,7 +6550,7 @@ function writeConfigEnv(opts) {
6550
6550
  `SYNKRO_CREDENTIALS_PATH=${shellQuoteSingle2(credsPath)}`,
6551
6551
  `SYNKRO_TIER=${shellQuoteSingle2(safeTier)}`,
6552
6552
  `SYNKRO_INFERENCE=${shellQuoteSingle2(safeInference)}`,
6553
- `SYNKRO_VERSION=${shellQuoteSingle2("1.7.63")}`
6553
+ `SYNKRO_VERSION=${shellQuoteSingle2("1.7.64")}`
6554
6554
  ];
6555
6555
  if (safeSynkroBin) lines.push(`SYNKRO_CLI_BIN=${shellQuoteSingle2(safeSynkroBin)}`);
6556
6556
  if (safeUserId) lines.push(`SYNKRO_USER_ID=${shellQuoteSingle2(safeUserId)}`);
@@ -7190,7 +7190,7 @@ async function installCommand(opts = {}) {
7190
7190
  await setTelemetryState({ enabled: true, remoteFlushEnabled: telemetryConsent });
7191
7191
  emit("install", {
7192
7192
  phase: "started",
7193
- cli_version_to: "1.7.63",
7193
+ cli_version_to: "1.7.64",
7194
7194
  agents_detected: agents.map((a) => a.kind),
7195
7195
  with_github: false,
7196
7196
  with_local_cc: false,
@@ -11062,7 +11062,7 @@ var subArgs = args.slice(1);
11062
11062
  var isDetachedChild = process.env.SYNKRO_TELEMETRY_DETACHED === "1";
11063
11063
  var FLUSH_SKIP = /* @__PURE__ */ new Set(["grade", "version", "--version", "-v", "help", "--help", "-h", ""]);
11064
11064
  function printVersion() {
11065
- console.log("1.7.63");
11065
+ console.log("1.7.64");
11066
11066
  }
11067
11067
  function printHelp2() {
11068
11068
  console.log(`Synkro CLI \u2014 runtime safety for AI coding agents
@@ -11122,7 +11122,7 @@ async function main() {
11122
11122
  case "uninstall":
11123
11123
  case "disconnect": {
11124
11124
  const { disconnectCommand: disconnectCommand2 } = await Promise.resolve().then(() => (init_disconnect(), disconnect_exports));
11125
- disconnectCommand2(subArgs);
11125
+ await disconnectCommand2(subArgs);
11126
11126
  break;
11127
11127
  }
11128
11128
  case "login": {