File size: 6,391 Bytes
064bfd6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 | import { z } from 'zod'
import type { SuggestionItem } from '../../components/PromptInput/PromptInputFooterSuggestions.js'
import type { MCPServerConnection } from '../../services/mcp/types.js'
import { logForDebugging } from '../debug.js'
import { lazySchema } from '../lazySchema.js'
import { createSignal } from '../signal.js'
import { jsonParse } from '../slowOperations.js'
const SLACK_SEARCH_TOOL = 'slack_search_channels'
// Plain Map (not LRUCache) — findReusableCacheEntry needs to iterate all
// entries for prefix matching, which LRUCache doesn't expose cleanly.
const cache = new Map<string, string[]>()
// Flat set of every channel name ever returned by MCP — used to gate
// highlighting so only confirmed-real channels turn blue in the prompt.
const knownChannels = new Set<string>()
let knownChannelsVersion = 0
const knownChannelsChanged = createSignal()
export const subscribeKnownChannels = knownChannelsChanged.subscribe
let inflightQuery: string | null = null
let inflightPromise: Promise<string[]> | null = null
function findSlackClient(
clients: MCPServerConnection[],
): MCPServerConnection | undefined {
return clients.find(c => c.type === 'connected' && c.name.includes('slack'))
}
async function fetchChannels(
clients: MCPServerConnection[],
query: string,
): Promise<string[]> {
const slackClient = findSlackClient(clients)
if (!slackClient || slackClient.type !== 'connected') {
return []
}
try {
const result = await slackClient.client.callTool(
{
name: SLACK_SEARCH_TOOL,
arguments: {
query,
limit: 20,
channel_types: 'public_channel,private_channel',
},
},
undefined,
{ timeout: 5000 },
)
const content = result.content
if (!Array.isArray(content)) return []
const rawText = content
.filter((c): c is { type: 'text'; text: string } => c.type === 'text')
.map(c => c.text)
.join('\n')
return parseChannels(unwrapResults(rawText))
} catch (error) {
logForDebugging(`Failed to fetch Slack channels: ${error}`)
return []
}
}
// The Slack MCP server wraps its markdown in a JSON envelope:
// {"results":"# Search Results...\nName: #chan\n..."}
const resultsEnvelopeSchema = lazySchema(() =>
z.object({ results: z.string() }),
)
function unwrapResults(text: string): string {
const trimmed = text.trim()
if (!trimmed.startsWith('{')) return text
try {
const parsed = resultsEnvelopeSchema().safeParse(jsonParse(trimmed))
if (parsed.success) return parsed.data.results
} catch {
// jsonParse threw — fall through
}
return text
}
// Parse channel names from slack_search_channels text output.
// The Slack MCP server returns markdown with "Name: #channel-name" lines.
function parseChannels(text: string): string[] {
const channels: string[] = []
const seen = new Set<string>()
for (const line of text.split('\n')) {
const m = line.match(/^Name:\s*#?([a-z0-9][a-z0-9_-]{0,79})\s*$/)
if (m && !seen.has(m[1]!)) {
seen.add(m[1]!)
channels.push(m[1]!)
}
}
return channels
}
export function hasSlackMcpServer(clients: MCPServerConnection[]): boolean {
return findSlackClient(clients) !== undefined
}
export function getKnownChannelsVersion(): number {
return knownChannelsVersion
}
export function findSlackChannelPositions(
text: string,
): Array<{ start: number; end: number }> {
const positions: Array<{ start: number; end: number }> = []
const re = /(^|\s)#([a-z0-9][a-z0-9_-]{0,79})(?=\s|$)/g
let m: RegExpExecArray | null
while ((m = re.exec(text)) !== null) {
if (!knownChannels.has(m[2]!)) continue
const start = m.index + m[1]!.length
positions.push({ start, end: start + 1 + m[2]!.length })
}
return positions
}
// Slack's search tokenizes on hyphens and requires whole-word matches, so
// "claude-code-team-en" returns 0 results. Strip the trailing partial segment
// so the MCP query is "claude-code-team" (complete words only), then filter
// locally. This keeps the query maximally specific (avoiding the 20-result
// cap) while never sending a partial word that kills the search.
function mcpQueryFor(searchToken: string): string {
const lastSep = Math.max(
searchToken.lastIndexOf('-'),
searchToken.lastIndexOf('_'),
)
return lastSep > 0 ? searchToken.slice(0, lastSep) : searchToken
}
// Find a cached entry whose key is a prefix of mcpQuery and still has
// matches for searchToken. Lets typing "c"→"cl"→"cla" reuse the "c" cache
// instead of issuing a new MCP call per keystroke.
function findReusableCacheEntry(
mcpQuery: string,
searchToken: string,
): string[] | undefined {
let best: string[] | undefined
let bestLen = 0
for (const [key, channels] of cache) {
if (
mcpQuery.startsWith(key) &&
key.length > bestLen &&
channels.some(c => c.startsWith(searchToken))
) {
best = channels
bestLen = key.length
}
}
return best
}
export async function getSlackChannelSuggestions(
clients: MCPServerConnection[],
searchToken: string,
): Promise<SuggestionItem[]> {
if (!searchToken) return []
const mcpQuery = mcpQueryFor(searchToken)
const lower = searchToken.toLowerCase()
let channels = cache.get(mcpQuery) ?? findReusableCacheEntry(mcpQuery, lower)
if (!channels) {
if (inflightQuery === mcpQuery && inflightPromise) {
channels = await inflightPromise
} else {
inflightQuery = mcpQuery
inflightPromise = fetchChannels(clients, mcpQuery)
channels = await inflightPromise
cache.set(mcpQuery, channels)
const before = knownChannels.size
for (const c of channels) knownChannels.add(c)
if (knownChannels.size !== before) {
knownChannelsVersion++
knownChannelsChanged.emit()
}
if (cache.size > 50) {
cache.delete(cache.keys().next().value!)
}
if (inflightQuery === mcpQuery) {
inflightQuery = null
inflightPromise = null
}
}
}
return channels
.filter(c => c.startsWith(lower))
.sort()
.slice(0, 10)
.map(c => ({
id: `slack-channel-${c}`,
displayText: `#${c}`,
}))
}
export function clearSlackChannelCache(): void {
cache.clear()
knownChannels.clear()
knownChannelsVersion = 0
inflightQuery = null
inflightPromise = null
}
|