@synkro-sh/cli 1.6.54 → 1.6.55

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
@@ -9351,7 +9351,7 @@ function writeConfigEnv(opts) {
9351
9351
  `SYNKRO_CREDENTIALS_PATH=${shellQuoteSingle(credsPath)}`,
9352
9352
  `SYNKRO_TIER=${shellQuoteSingle(safeTier)}`,
9353
9353
  `SYNKRO_INFERENCE=${shellQuoteSingle(safeInference)}`,
9354
- `SYNKRO_VERSION=${shellQuoteSingle("1.6.54")}`
9354
+ `SYNKRO_VERSION=${shellQuoteSingle("1.6.55")}`
9355
9355
  ];
9356
9356
  if (safeSynkroBin) lines.push(`SYNKRO_CLI_BIN=${shellQuoteSingle(safeSynkroBin)}`);
9357
9357
  if (safeUserId) lines.push(`SYNKRO_USER_ID=${shellQuoteSingle(safeUserId)}`);
@@ -9953,15 +9953,7 @@ async function installCommand(opts = {}) {
9953
9953
  }
9954
9954
  console.log("\u2713 Synkro installed.");
9955
9955
  if (process.stdin.isTTY && claudeDesktopInstalled()) {
9956
- const rl = createInterface3({ input: process.stdin, output: process.stdout });
9957
- const answer = await new Promise((resolve4) => rl.question("\nWould you like Claude Desktop observability? This routes Claude Desktop through a local proxy so its conversations appear in your dashboard (you can stop it anytime with Ctrl+C). [y/N]: ", resolve4));
9958
- rl.close();
9959
- if (/^y(es)?$/i.test(answer.trim())) {
9960
- console.log("\nStarting Claude Desktop observability \u2014 press Ctrl+C to stop.\n");
9961
- await runClaudeDesktopTap();
9962
- } else {
9963
- console.log(" Skipped. You can enable it later by re-running `synkro install`.");
9964
- }
9956
+ console.log("\n Claude Desktop detected \u2014 to monitor its conversations in your dashboard, run: synkro claude-desktop");
9965
9957
  }
9966
9958
  }
9967
9959
  function parseTomlValue2(raw) {
@@ -12613,7 +12605,7 @@ var args = process.argv.slice(2);
12613
12605
  var cmd = args[0] || "";
12614
12606
  var subArgs = args.slice(1);
12615
12607
  function printVersion() {
12616
- console.log("1.6.54");
12608
+ console.log("1.6.55");
12617
12609
  }
12618
12610
  function printHelp2() {
12619
12611
  console.log(`Synkro CLI \u2014 runtime safety for AI coding agents