blob: 40e76b757185c57ec8c51a772490a0852c38cb46 [file] [log] [blame]
Earl Lee2e463fb2025-04-17 11:22:22 -07001package termui
2
3import (
4 "bytes"
5 "context"
6 "encoding/json"
7 "errors"
8 "fmt"
9 "io"
10 "os"
11 "os/exec"
12 "os/signal"
13 "strings"
14 "sync"
15 "syscall"
16 "text/template"
17 "time"
18
Josh Bleecher Snydera0801ad2025-04-25 19:34:53 +000019 "github.com/dustin/go-humanize"
Earl Lee2e463fb2025-04-17 11:22:22 -070020 "github.com/fatih/color"
21 "golang.org/x/term"
22 "sketch.dev/loop"
23)
24
25var (
26 // toolUseTemplTxt defines how tool invocations appear in the terminal UI.
27 // Keep this template in sync with the tools defined in claudetool package
28 // and registered in loop/agent.go.
29 // Add formatting for new tools as they are created.
30 // TODO: should this be part of tool definition to make it harder to forget to set up?
31 toolUseTemplTxt = `{{if .msg.ToolError}}šŸ™ˆ {{end -}}
32{{if eq .msg.ToolName "think" -}}
33 🧠 {{.input.thoughts -}}
34{{else if eq .msg.ToolName "keyword_search" -}}
35 šŸ” {{ .input.query}}: {{.input.keywords -}}
36{{else if eq .msg.ToolName "bash" -}}
Philip Zeyligerb60f0f22025-04-23 18:19:32 +000037 šŸ–„ļø{{if .input.background}}šŸ”„{{end}} {{ .input.command -}}
Earl Lee2e463fb2025-04-17 11:22:22 -070038{{else if eq .msg.ToolName "patch" -}}
39 āŒØļø {{.input.path -}}
40{{else if eq .msg.ToolName "done" -}}
41{{/* nothing to show here, the agent will write more in its next message */}}
42{{else if eq .msg.ToolName "title" -}}
Josh Bleecher Snyder47b19362025-04-30 01:34:14 +000043šŸ·ļø {{.input.title}}
44🌱 git branch: sketch/{{.input.branch_name}}
Earl Lee2e463fb2025-04-17 11:22:22 -070045{{else if eq .msg.ToolName "str_replace_editor" -}}
46 āœļø {{.input.file_path -}}
47{{else if eq .msg.ToolName "codereview" -}}
48 šŸ› Running automated code review, may be slow
49{{else -}}
Josh Bleecher Snyder47b19362025-04-30 01:34:14 +000050 šŸ› ļø {{ .msg.ToolName}}: {{.msg.ToolInput -}}
Earl Lee2e463fb2025-04-17 11:22:22 -070051{{end -}}
52`
53 toolUseTmpl = template.Must(template.New("tool_use").Parse(toolUseTemplTxt))
54)
55
56type termUI struct {
57 stdin *os.File
58 stdout *os.File
59 stderr *os.File
60
61 agent loop.CodingAgent
62 httpURL string
63
64 trm *term.Terminal
65
66 // the chatMsgCh channel is for "conversation" messages, like responses to user input
67 // from the LLM, or output from executing slash-commands issued by the user.
68 chatMsgCh chan chatMessage
69
70 // the log channel is for secondary messages, like logging, errors, and debug information
71 // from local and remove subproceses.
72 termLogCh chan string
73
74 // protects following
75 mu sync.Mutex
76 oldState *term.State
77 // Tracks branches that were pushed during the session
78 pushedBranches map[string]struct{}
79}
80
81type chatMessage struct {
82 idx int
83 sender string
84 content string
85 thinking bool
86}
87
88func New(agent loop.CodingAgent, httpURL string) *termUI {
89 return &termUI{
90 agent: agent,
91 stdin: os.Stdin,
92 stdout: os.Stdout,
93 stderr: os.Stderr,
94 httpURL: httpURL,
95 chatMsgCh: make(chan chatMessage, 1),
96 termLogCh: make(chan string, 1),
97 pushedBranches: make(map[string]struct{}),
98 }
99}
100
101func (ui *termUI) Run(ctx context.Context) error {
Earl Lee2e463fb2025-04-17 11:22:22 -0700102 fmt.Println(`🌐 ` + ui.httpURL + `/`)
Earl Lee2e463fb2025-04-17 11:22:22 -0700103 fmt.Println(`šŸ’¬ type 'help' for help`)
104 fmt.Println()
105
106 // Start up the main terminal UI:
107 if err := ui.initializeTerminalUI(ctx); err != nil {
108 return err
109 }
110 go ui.receiveMessagesLoop(ctx)
111 if err := ui.inputLoop(ctx); err != nil {
112 return err
113 }
114 return nil
115}
116
117func (ui *termUI) LogToolUse(resp loop.AgentMessage) {
118 inputData := map[string]any{}
119 if err := json.Unmarshal([]byte(resp.ToolInput), &inputData); err != nil {
120 ui.AppendSystemMessage("error: %v", err)
121 return
122 }
123 buf := bytes.Buffer{}
124 if err := toolUseTmpl.Execute(&buf, map[string]any{"msg": resp, "input": inputData, "output": resp.ToolResult}); err != nil {
125 ui.AppendSystemMessage("error: %v", err)
126 return
127 }
128 ui.AppendSystemMessage("%s\n", buf.String())
129}
130
131func (ui *termUI) receiveMessagesLoop(ctx context.Context) {
132 bold := color.New(color.Bold).SprintFunc()
133 for {
134 select {
135 case <-ctx.Done():
136 return
137 default:
138 }
139 resp := ui.agent.WaitForMessage(ctx)
140 // Typically a user message will start the thinking and a (top-level
141 // conversation) end of turn will stop it.
142 thinking := !(resp.EndOfTurn && resp.ParentConversationID == nil)
143
144 switch resp.Type {
145 case loop.AgentMessageType:
Josh Bleecher Snyder2978ab22025-04-30 10:29:32 -0700146 ui.AppendChatMessage(chatMessage{thinking: thinking, idx: resp.Idx, sender: "šŸ•“ļø ", content: resp.Content})
Earl Lee2e463fb2025-04-17 11:22:22 -0700147 case loop.ToolUseMessageType:
148 ui.LogToolUse(resp)
149 case loop.ErrorMessageType:
150 ui.AppendSystemMessage("āŒ %s", resp.Content)
151 case loop.BudgetMessageType:
152 ui.AppendSystemMessage("šŸ’° %s", resp.Content)
153 case loop.AutoMessageType:
154 ui.AppendSystemMessage("🧐 %s", resp.Content)
155 case loop.UserMessageType:
Josh Bleecher Snyderc2d26102025-04-30 06:19:43 -0700156 ui.AppendChatMessage(chatMessage{thinking: thinking, idx: resp.Idx, sender: "🦸", content: resp.Content})
Earl Lee2e463fb2025-04-17 11:22:22 -0700157 case loop.CommitMessageType:
158 // Display each commit in the terminal
159 for _, commit := range resp.Commits {
160 if commit.PushedBranch != "" {
Sean McCullough43664f62025-04-20 16:13:03 -0700161 ui.AppendSystemMessage("šŸ”„ new commit: [%s] %s\npushed to: %s", commit.Hash[:8], commit.Subject, bold(commit.PushedBranch))
Earl Lee2e463fb2025-04-17 11:22:22 -0700162
163 // Track the pushed branch in our map
164 ui.mu.Lock()
165 ui.pushedBranches[commit.PushedBranch] = struct{}{}
166 ui.mu.Unlock()
167 } else {
168 ui.AppendSystemMessage("šŸ”„ new commit: [%s] %s", commit.Hash[:8], commit.Subject)
169 }
170 }
171 default:
172 ui.AppendSystemMessage("āŒ Unexpected Message Type %s %v", resp.Type, resp)
173 }
174 }
175}
176
177func (ui *termUI) inputLoop(ctx context.Context) error {
178 for {
179 line, err := ui.trm.ReadLine()
180 if errors.Is(err, io.EOF) {
181 ui.AppendSystemMessage("\n")
182 line = "exit"
183 } else if err != nil {
184 return err
185 }
186
187 line = strings.TrimSpace(line)
188
189 switch line {
190 case "?", "help":
Josh Bleecher Snyder85068942025-04-30 10:51:27 -0700191 ui.AppendSystemMessage(`General use:
192Use chat to ask sketch to tackle a task or answer a question about this repo.
193
194Special commands:
195- help, ? : Show this help message
196- budget : Show original budget
197- usage, cost : Show current token usage and cost
Earl Lee2e463fb2025-04-17 11:22:22 -0700198- stop, cancel, abort : Cancel the current operation
Josh Bleecher Snyder85068942025-04-30 10:51:27 -0700199- exit, quit, q : Exit sketch
200- ! <command> : Execute a shell command (e.g. !ls -la)`)
Earl Lee2e463fb2025-04-17 11:22:22 -0700201 case "budget":
202 originalBudget := ui.agent.OriginalBudget()
203 ui.AppendSystemMessage("šŸ’° Budget summary:")
204 if originalBudget.MaxResponses > 0 {
205 ui.AppendSystemMessage("- Max responses: %d", originalBudget.MaxResponses)
206 }
207 if originalBudget.MaxWallTime > 0 {
208 ui.AppendSystemMessage("- Max wall time: %v", originalBudget.MaxWallTime)
209 }
210 ui.AppendSystemMessage("- Max total cost: %0.2f", originalBudget.MaxDollars)
211 case "usage", "cost":
212 totalUsage := ui.agent.TotalUsage()
213 ui.AppendSystemMessage("šŸ’° Current usage summary:")
Josh Bleecher Snydera0801ad2025-04-25 19:34:53 +0000214 ui.AppendSystemMessage("- Input tokens: %s", humanize.Comma(int64(totalUsage.TotalInputTokens())))
215 ui.AppendSystemMessage("- Output tokens: %s", humanize.Comma(int64(totalUsage.OutputTokens)))
Earl Lee2e463fb2025-04-17 11:22:22 -0700216 ui.AppendSystemMessage("- Responses: %d", totalUsage.Responses)
217 ui.AppendSystemMessage("- Wall time: %s", totalUsage.WallTime().Round(time.Second))
218 ui.AppendSystemMessage("- Total cost: $%0.2f", totalUsage.TotalCostUSD)
219 case "bye", "exit", "q", "quit":
220 ui.trm.SetPrompt("")
221 // Display final usage stats
222 totalUsage := ui.agent.TotalUsage()
223 ui.AppendSystemMessage("šŸ’° Final usage summary:")
Josh Bleecher Snydera0801ad2025-04-25 19:34:53 +0000224 ui.AppendSystemMessage("- Input tokens: %s", humanize.Comma(int64(totalUsage.TotalInputTokens())))
225 ui.AppendSystemMessage("- Output tokens: %s", humanize.Comma(int64(totalUsage.OutputTokens)))
Earl Lee2e463fb2025-04-17 11:22:22 -0700226 ui.AppendSystemMessage("- Responses: %d", totalUsage.Responses)
227 ui.AppendSystemMessage("- Wall time: %s", totalUsage.WallTime().Round(time.Second))
228 ui.AppendSystemMessage("- Total cost: $%0.2f", totalUsage.TotalCostUSD)
229
230 // Display pushed branches
231 ui.mu.Lock()
232 if len(ui.pushedBranches) > 0 {
233 // Convert map keys to a slice for display
234 branches := make([]string, 0, len(ui.pushedBranches))
235 for branch := range ui.pushedBranches {
236 branches = append(branches, branch)
237 }
238
Josh Bleecher Snyder0137a7f2025-04-30 01:16:35 +0000239 initialCommitRef := getGitRefName(ui.agent.InitialCommit())
Earl Lee2e463fb2025-04-17 11:22:22 -0700240 if len(branches) == 1 {
241 ui.AppendSystemMessage("\nšŸ”„ Branch pushed during session: %s", branches[0])
Josh Bleecher Snyder0137a7f2025-04-30 01:16:35 +0000242 ui.AppendSystemMessage("šŸ’ To add those changes to your branch: git cherry-pick %s..%s", initialCommitRef, branches[0])
Earl Lee2e463fb2025-04-17 11:22:22 -0700243 } else {
244 ui.AppendSystemMessage("\nšŸ”„ Branches pushed during session:")
245 for _, branch := range branches {
246 ui.AppendSystemMessage("- %s", branch)
247 }
248 ui.AppendSystemMessage("\nšŸ’ To add all those changes to your branch:")
249 for _, branch := range branches {
Josh Bleecher Snyder0137a7f2025-04-30 01:16:35 +0000250 ui.AppendSystemMessage("git cherry-pick %s..%s", initialCommitRef, branch)
Earl Lee2e463fb2025-04-17 11:22:22 -0700251 }
252 }
253 }
254 ui.mu.Unlock()
255
256 ui.AppendSystemMessage("\nšŸ‘‹ Goodbye!")
257 return nil
258 case "stop", "cancel", "abort":
Sean McCulloughedc88dc2025-04-30 02:55:01 +0000259 ui.agent.CancelTurn(fmt.Errorf("user canceled the operation"))
Earl Lee2e463fb2025-04-17 11:22:22 -0700260 case "panic":
261 panic("user forced a panic")
262 default:
263 if line == "" {
264 continue
265 }
266 if strings.HasPrefix(line, "!") {
267 // Execute as shell command
268 line = line[1:] // remove the '!' prefix
269 sendToLLM := strings.HasPrefix(line, "!")
270 if sendToLLM {
271 line = line[1:] // remove the second '!'
272 }
273
274 // Create a cmd and run it
275 // TODO: ui.trm contains a mutex inside its write call.
276 // It is potentially safe to attach ui.trm directly to this
277 // cmd object's Stdout/Stderr and stream the output.
278 // That would make a big difference for, e.g. wget.
279 cmd := exec.Command("bash", "-c", line)
280 out, err := cmd.CombinedOutput()
281 ui.AppendSystemMessage("%s", out)
282 if err != nil {
283 ui.AppendSystemMessage("āŒ Command error: %v", err)
284 }
285 if sendToLLM {
286 // Send the command and its output to the agent
287 message := fmt.Sprintf("I ran the command: `%s`\nOutput:\n```\n%s```", line, out)
288 if err != nil {
289 message += fmt.Sprintf("\n\nError: %v", err)
290 }
291 ui.agent.UserMessage(ctx, message)
292 }
293 continue
294 }
295
296 // Send it to the LLM
297 // chatMsg := chatMessage{sender: "you", content: line}
298 // ui.sendChatMessage(chatMsg)
299 ui.agent.UserMessage(ctx, line)
300 }
301 }
302}
303
304func (ui *termUI) updatePrompt(thinking bool) {
305 var t string
306
307 if thinking {
308 // Emoji don't seem to work here? Messes up my terminal.
309 t = "*"
310 }
Josh Bleecher Snyder23b6a2d2025-04-30 04:07:52 +0000311 p := fmt.Sprintf("%s ($%0.2f/%0.2f)%s> ",
312 ui.httpURL, ui.agent.TotalUsage().TotalCostUSD, ui.agent.OriginalBudget().MaxDollars, t)
Earl Lee2e463fb2025-04-17 11:22:22 -0700313 ui.trm.SetPrompt(p)
314}
315
316func (ui *termUI) initializeTerminalUI(ctx context.Context) error {
317 ui.mu.Lock()
318 defer ui.mu.Unlock()
319
320 if !term.IsTerminal(int(ui.stdin.Fd())) {
321 return fmt.Errorf("this command requires terminal I/O")
322 }
323
324 oldState, err := term.MakeRaw(int(ui.stdin.Fd()))
325 if err != nil {
326 return err
327 }
328 ui.oldState = oldState
329 ui.trm = term.NewTerminal(ui.stdin, "")
330 width, height, err := term.GetSize(int(ui.stdin.Fd()))
331 if err != nil {
332 return fmt.Errorf("Error getting terminal size: %v\n", err)
333 }
334 ui.trm.SetSize(width, height)
335 // Handle terminal resizes...
336 sig := make(chan os.Signal, 1)
337 signal.Notify(sig, syscall.SIGWINCH)
338 go func() {
339 for {
340 <-sig
341 newWidth, newHeight, err := term.GetSize(int(ui.stdin.Fd()))
342 if err != nil {
343 continue
344 }
345 if newWidth != width || newHeight != height {
346 width, height = newWidth, newHeight
347 ui.trm.SetSize(width, height)
348 }
349 }
350 }()
351
352 ui.updatePrompt(false)
353
354 // This is the only place where we should call fe.trm.Write:
355 go func() {
356 for {
357 select {
358 case <-ctx.Done():
359 return
360 case msg := <-ui.chatMsgCh:
361 // Sometimes claude doesn't say anything when it runs tools.
362 // No need to output anything in that case.
363 if strings.TrimSpace(msg.content) == "" {
364 break
365 }
Josh Bleecher Snyder2978ab22025-04-30 10:29:32 -0700366 s := fmt.Sprintf("%s %s\n", msg.sender, msg.content)
Earl Lee2e463fb2025-04-17 11:22:22 -0700367 // Update prompt before writing, because otherwise it doesn't redraw the prompt.
368 ui.updatePrompt(msg.thinking)
369 ui.trm.Write([]byte(s))
370 case logLine := <-ui.termLogCh:
371 b := []byte(logLine + "\n")
372 ui.trm.Write(b)
373 }
374 }
375 }()
376
377 return nil
378}
379
380func (ui *termUI) RestoreOldState() error {
381 ui.mu.Lock()
382 defer ui.mu.Unlock()
383 return term.Restore(int(ui.stdin.Fd()), ui.oldState)
384}
385
386// AppendChatMessage is for showing responses the user's request, conversational dialog etc
387func (ui *termUI) AppendChatMessage(msg chatMessage) {
388 ui.chatMsgCh <- msg
389}
390
391// AppendSystemMessage is for debug information, errors and such that are not part of the "conversation" per se,
392// but still need to be shown to the user.
393func (ui *termUI) AppendSystemMessage(fmtString string, args ...any) {
394 ui.termLogCh <- fmt.Sprintf(fmtString, args...)
395}
Josh Bleecher Snyder0137a7f2025-04-30 01:16:35 +0000396
397// getGitRefName returns a readable git ref for sha, falling back to the original sha on error.
398func getGitRefName(sha string) string {
399 // branch or tag name
400 cmd := exec.Command("git", "rev-parse", "--abbrev-ref", sha)
401 branchName, err := cmd.Output()
402 if err == nil {
403 branchStr := strings.TrimSpace(string(branchName))
404 // If we got a branch name that's not HEAD, use it
405 if branchStr != "" && branchStr != "HEAD" {
406 return branchStr
407 }
408 }
409
410 // short SHA
411 cmd = exec.Command("git", "rev-parse", "--short", sha)
412 shortSha, err := cmd.Output()
413 if err == nil {
414 shortStr := strings.TrimSpace(string(shortSha))
415 if shortStr != "" {
416 return shortStr
417 }
418 }
419
420 return sha
421}