(target: "cursor" | "claude" | "claude-cli" | "codex")
| 262 | } |
| 263 | |
| 264 | function formatTarget(target: "cursor" | "claude" | "claude-cli" | "codex"): string { |
| 265 | if (target === "cursor") return "Cursor"; |
| 266 | if (target === "claude") return "Claude"; |
| 267 | if (target === "claude-cli") return "Claude CLI"; |
| 268 | return "Codex"; |
| 269 | } |
no outgoing calls
no test coverage detected