()
| 72 | } |
| 73 | |
| 74 | function formatNoUserMessage(): string { |
| 75 | const lines: string[] = [] |
| 76 | |
| 77 | lines.push("╭───────────────────────────────────────────────────────────╮") |
| 78 | lines.push("│ DCP Sweep │") |
| 79 | lines.push("╰───────────────────────────────────────────────────────────╯") |
| 80 | lines.push("") |
| 81 | lines.push("Nothing swept: no user message found.") |
| 82 | |
| 83 | return lines.join("\n") |
| 84 | } |
| 85 | |
| 86 | function formatSweepMessage( |
| 87 | toolCount: number, |
no outgoing calls
no test coverage detected