-
Notifications
You must be signed in to change notification settings - Fork 519
Expand file tree
/
Copy pathrouter.ts
More file actions
427 lines (387 loc) · 11.9 KB
/
router.ts
File metadata and controls
427 lines (387 loc) · 11.9 KB
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
import { runTerminalCommand } from '@codebuff/sdk'
import {
findCommand,
type RouterParams,
type CommandResult,
} from './command-registry'
import { handleReferralCode } from './referral'
import {
parseCommand,
isSlashCommand,
isReferralCode,
extractReferralCode,
normalizeReferralCode,
} from './router-utils'
import { handleClaudeAuthCode } from '../components/claude-connect-banner'
import { getProjectRoot } from '../project-files'
import { useChatStore } from '../state/chat-store'
import {
capturePendingImages,
hasProcessingImages,
validateAndAddImage,
} from '../utils/add-pending-image'
import {
buildBashHistoryMessages,
createRunTerminalToolResult,
} from '../utils/bash-messages'
import { showClipboardMessage } from '../utils/clipboard'
import { getSystemProcessEnv } from '../utils/env'
import { getSystemMessage, getUserMessage } from '../utils/message-history'
/**
* Run a bash command with automatic ghost/direct mode selection.
* Uses ghost mode when streaming or chain in progress, otherwise adds directly to chat history.
*/
export function runBashCommand(command: string) {
const {
streamingAgents,
isChainInProgress,
setMessages,
addPendingBashMessage,
updatePendingBashMessage,
} = useChatStore.getState()
const ghost = streamingAgents.size > 0 || isChainInProgress
const id = crypto.randomUUID()
const commandCwd = process.cwd()
if (ghost) {
// Ghost mode: add to pending messages
addPendingBashMessage({
id,
command,
stdout: '',
stderr: '',
exitCode: 0,
isRunning: true,
startTime: Date.now(),
cwd: commandCwd,
})
} else {
// Direct mode: add to chat history with placeholder output (user + assistant)
const { assistantMessage } = buildBashHistoryMessages({
command,
cwd: commandCwd,
toolCallId: id,
output: '...',
})
setMessages((prev) => [...prev, assistantMessage])
}
runTerminalCommand({
command,
process_type: 'SYNC',
cwd: commandCwd,
timeout_seconds: -1,
env: getSystemProcessEnv(),
})
.then(([{ value }]) => {
const stdout = 'stdout' in value ? value.stdout || '' : ''
const stderr = 'stderr' in value ? value.stderr || '' : ''
const exitCode = 'exitCode' in value ? value.exitCode ?? 0 : 0
if (ghost) {
updatePendingBashMessage(id, {
stdout,
stderr,
exitCode,
isRunning: false,
})
} else {
const toolResultOutput = createRunTerminalToolResult({
command,
cwd: commandCwd,
stdout: stdout || null,
stderr: stderr || null,
exitCode,
})
const outputJson = JSON.stringify(toolResultOutput)
setMessages((prev) =>
prev.map((msg) => {
if (!msg.blocks) return msg
let didUpdate = false
const blocks = msg.blocks.map((block) => {
if ('toolCallId' in block && block.toolCallId === id) {
didUpdate = true
return { ...block, output: outputJson }
}
return block
})
return didUpdate ? { ...msg, blocks, isComplete: true } : msg
}),
)
// Also add to pending bash messages so the next user message includes this context for the LLM
// Mark as already added to history to avoid duplicate UI entries
addPendingBashMessage({
id,
command,
stdout,
stderr,
exitCode,
isRunning: false,
cwd: commandCwd,
addedToHistory: true,
})
}
})
.catch((error) => {
const errorMessage =
error instanceof Error ? error.message : String(error)
if (ghost) {
updatePendingBashMessage(id, {
stdout: '',
stderr: errorMessage,
exitCode: 1,
isRunning: false,
})
} else {
const errorToolResultOutput = createRunTerminalToolResult({
command,
cwd: commandCwd,
stdout: null,
stderr: null,
exitCode: 1,
errorMessage,
})
const errorOutputJson = JSON.stringify(errorToolResultOutput)
setMessages((prev) =>
prev.map((msg) => {
if (!msg.blocks) return msg
let didUpdate = false
const blocks = msg.blocks.map((block) => {
if ('toolCallId' in block && block.toolCallId === id) {
didUpdate = true
return { ...block, output: errorOutputJson }
}
return block
})
return didUpdate ? { ...msg, blocks, isComplete: true } : msg
}),
)
// Also add to pending bash messages so the next user message includes this context for the LLM
// Mark as already added to history to avoid duplicate UI entries
addPendingBashMessage({
id,
command,
stdout: '',
stderr: errorMessage,
exitCode: 1,
isRunning: false,
cwd: commandCwd,
addedToHistory: true,
})
}
})
}
/**
* Add a completed bash command result to the chat message history.
* Note: This is UI-only; we no longer send these commands to the AI context.
*/
export function addBashMessageToHistory(params: {
command: string
stdout: string
stderr: string | null
exitCode: number
cwd: string
setMessages: RouterParams['setMessages']
}) {
const { command, stdout, stderr, exitCode, cwd, setMessages } = params
const toolResultOutput = createRunTerminalToolResult({
command,
cwd,
stdout: stdout || null,
stderr: stderr ?? null,
exitCode,
})
const toolCallId = crypto.randomUUID()
const outputJson = JSON.stringify(toolResultOutput)
const { assistantMessage } = buildBashHistoryMessages({
command,
cwd,
toolCallId,
output: outputJson,
isComplete: true,
})
setMessages((prev) => [...prev, assistantMessage])
}
export async function routeUserPrompt(
params: RouterParams,
): Promise<CommandResult> {
const {
agentMode,
inputRef,
inputValue,
isChainInProgressRef,
isStreaming,
streamMessageIdRef,
addToQueue,
saveToHistory,
scrollToLatest,
sendMessage,
setInputFocused,
setInputValue,
setMessages,
} = params
const inputMode = useChatStore.getState().inputMode
const setInputMode = useChatStore.getState().setInputMode
const pendingImages = useChatStore.getState().pendingImages
const trimmed = inputValue.trim()
// Allow empty messages if there are pending images attached
if (!trimmed && pendingImages.length === 0) return
// Handle bash mode commands
if (inputMode === 'bash') {
const commandWithBang = '!' + trimmed
saveToHistory(commandWithBang)
setInputValue({ text: '', cursorPosition: 0, lastEditDueToNav: false })
setInputMode('default')
setInputFocused(true)
inputRef.current?.focus()
runBashCommand(trimmed)
return
}
// Handle bash commands from queue (starts with '!')
if (trimmed.startsWith('!') && trimmed.length > 1) {
const command = trimmed.slice(1)
saveToHistory(trimmed)
setInputValue({ text: '', cursorPosition: 0, lastEditDueToNav: false })
runBashCommand(command)
return
}
// Handle image mode input
if (inputMode === 'image') {
const imagePath = trimmed
const projectRoot = getProjectRoot()
// Validate and add the image (handles path resolution, format check, and processing)
const result = await validateAndAddImage(imagePath, projectRoot)
if (!result.success) {
setMessages((prev) => [
...prev,
getUserMessage(trimmed),
getSystemMessage(`❌ ${result.error}`),
])
}
// Note: No system message added here - the PendingImagesBanner shows attached images
saveToHistory(trimmed)
setInputValue({ text: '', cursorPosition: 0, lastEditDueToNav: false })
setInputMode('default')
return
}
// Handle connect:claude mode input (authorization code)
if (inputMode === 'connect:claude') {
const code = trimmed
if (code) {
const result = await handleClaudeAuthCode(code)
setMessages((prev) => [
...prev,
getUserMessage(trimmed),
getSystemMessage(result.message),
])
}
saveToHistory(trimmed)
setInputValue({ text: '', cursorPosition: 0, lastEditDueToNav: false })
setInputMode('default')
return
}
// Handle referral mode input
if (inputMode === 'referral') {
// Validate the referral code (3-50 alphanumeric chars with optional dashes)
const codePattern = /^[a-zA-Z0-9-]{3,50}$/
// Strip prefix if present for validation (case-insensitive)
const codeWithoutPrefix = trimmed.toLowerCase().startsWith('ref-')
? trimmed.slice(4)
: trimmed
if (!codePattern.test(codeWithoutPrefix)) {
setMessages((prev) => [
...prev,
getUserMessage(trimmed),
getSystemMessage(
'Invalid referral code format. Codes should be 3-50 alphanumeric characters.',
),
])
saveToHistory(trimmed)
setInputValue({ text: '', cursorPosition: 0, lastEditDueToNav: false })
setInputMode('default')
return
}
const referralCode = normalizeReferralCode(trimmed)
try {
const { postUserMessage: referralPostMessage } =
await handleReferralCode(referralCode)
setMessages((prev) => [
...prev,
getUserMessage(trimmed),
...referralPostMessage([]),
])
} catch (error) {
const errorMessage =
error instanceof Error ? error.message : 'Unknown error'
setMessages((prev) => [
...prev,
getUserMessage(trimmed),
getSystemMessage(`Error redeeming referral code: ${errorMessage}`),
])
}
saveToHistory(trimmed)
setInputValue({ text: '', cursorPosition: 0, lastEditDueToNav: false })
setInputMode('default')
return
}
// Handle referral codes (ref-XXXX format)
// Works with or without leading slash: "ref-123" or "/ref-123"
if (isReferralCode(trimmed)) {
const referralCode = extractReferralCode(trimmed)
const { postUserMessage: referralPostMessage } =
await handleReferralCode(referralCode)
setMessages((prev) => [
...prev,
getUserMessage(trimmed),
...referralPostMessage([]),
])
saveToHistory(trimmed)
setInputValue({ text: '', cursorPosition: 0, lastEditDueToNav: false })
return
}
// Only process slash commands if input starts with '/'
if (isSlashCommand(trimmed)) {
const cmd = parseCommand(trimmed)
const args = trimmed.slice(1 + cmd.length).trim()
// Look up command in registry
const commandDef = findCommand(cmd)
if (commandDef) {
// The command handler (via defineCommand/defineCommandWithArgs factories)
// is responsible for validating and handling args
return await commandDef.handler(params, args)
}
}
// Regular message or unknown slash command - send to agent
// Block sending if images are still processing
if (hasProcessingImages()) {
showClipboardMessage('processing images...', {
durationMs: 2000,
})
return
}
saveToHistory(trimmed)
setInputValue({ text: '', cursorPosition: 0, lastEditDueToNav: false })
if (
isStreaming ||
streamMessageIdRef.current ||
isChainInProgressRef.current
) {
const pendingImagesForQueue = capturePendingImages()
// Pass a copy of pending images to the queue
addToQueue(trimmed, pendingImagesForQueue)
setInputFocused(true)
inputRef.current?.focus()
return
}
// Unknown slash command - show error
if (isSlashCommand(trimmed)) {
setMessages((prev) => [
...prev,
getUserMessage(trimmed),
getSystemMessage(`Command not found: ${JSON.stringify(trimmed)}`),
])
return
}
sendMessage({ content: trimmed, agentMode })
setTimeout(() => {
scrollToLatest()
}, 0)
return
}