@sechroom/cli 2026.6.26 → 2026.6.27

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -3351,7 +3351,8 @@ async function resolveFanoutLane(cfg, opts) {
3351
3351
  let code = opts.lane ?? process.env.SECHROOM_CODE_LANE;
3352
3352
  let design = opts.designLane ?? process.env.SECHROOM_DESIGN_LANE;
3353
3353
  if (!code || !design) {
3354
- const inferred = await inferLanes(cfg, ["claude-code"]);
3354
+ const clients = detectInstalledClients(process.cwd());
3355
+ const inferred = await inferLanes(cfg, clients.length ? clients : void 0);
3355
3356
  code = code ?? inferred.code;
3356
3357
  design = design ?? inferred.design;
3357
3358
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sechroom/cli",
3
- "version": "2026.6.26",
3
+ "version": "2026.6.27",
4
4
  "description": "Sechroom CLI — a thin, generated client over the Sechroom HTTP API. An agent/human surface alongside MCP.",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",