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.
- package/dist/cli/src/runtime/acp/agent-workspace.js +3 -1
- package/dist/cli/src/runtime/acp/agent-workspace.js.map +1 -1
- package/dist/cli/src/runtime/acp/provider-resolver.js +40 -12
- package/dist/cli/src/runtime/acp/provider-resolver.js.map +1 -1
- package/dist/cli/src/runtime/bridge-session.js +1 -4
- package/dist/cli/src/runtime/bridge-session.js.map +1 -1
- package/dist/cli/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/runtime/acp/agent-workspace.ts +3 -1
- package/src/runtime/acp/provider-resolver.ts +35 -12
- package/src/runtime/bridge-session.ts +1 -4
|
@@ -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();
|