linkshell-cli 0.2.90 → 0.2.92

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.
@@ -333,9 +333,6 @@ export class BridgeSession {
333
333
  const availableProviders = this.options.agentProvider
334
334
  ? [normalizeAgentProvider(this.options.agentProvider)]
335
335
  : detectAvailableProviders();
336
- if (availableProviders.length === 0) {
337
- availableProviders.push("codex"); // last-resort fallback
338
- }
339
336
  const agentOptions = {
340
337
  sessionId: this.sessionId,
341
338
  cwd: process.cwd(),
@@ -350,7 +347,7 @@ export class BridgeSession {
350
347
  this.agentWorkspace = new AgentWorkspaceProxy({
351
348
  ...agentOptions,
352
349
  });
353
- process.stderr.write(`[bridge] agent workspace channel enabled (providers: ${availableProviders.join(", ")})\n`);
350
+ process.stderr.write(`[bridge] agent workspace channel enabled (providers: ${availableProviders.join(", ") || "none"})\n`);
354
351
  }
355
352
  await this.spawnTerminal(DEFAULT_TERMINAL_ID, process.cwd());
356
353
  this.connectGateway();