From 3861ecf7d4f2eda5ffb058e844d3ce0db1dd716d Mon Sep 17 00:00:00 2001 From: Jack Wotherspoon Date: Fri, 27 Mar 2026 13:19:26 -0400 Subject: [PATCH] chore: final touches for channels feature --- packages/cli/src/commands/mcp/list.ts | 1 + packages/core/src/config/config.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/cli/src/commands/mcp/list.ts b/packages/cli/src/commands/mcp/list.ts index 8154e3b7bf..1a59dc8dc2 100644 --- a/packages/cli/src/commands/mcp/list.ts +++ b/packages/cli/src/commands/mcp/list.ts @@ -115,6 +115,7 @@ async function testMCPConnection( } }, isTrustedFolder: () => isTrusted, + getChannels: () => [], }; let transport; diff --git a/packages/core/src/config/config.ts b/packages/core/src/config/config.ts index 71e8ae6605..0a85f17a29 100644 --- a/packages/core/src/config/config.ts +++ b/packages/core/src/config/config.ts @@ -1387,7 +1387,7 @@ export class Config implements McpContext, AgentLoopContext { if (active.length > 0) { coreEvents.emitFeedback( 'info', - `Channels listening for messages: ${active.join(', ')}\n Only use channels you trust — messages are injected into the conversation.`, + `Channels listening for messages: ${active.join(', ')}\nOnly use channels you trust — messages are injected into the conversation.`, undefined, { style: 'channel' }, );