(input: string)
| 31 | * @returns The full prompt to send to the agent |
| 32 | */ |
| 33 | export function buildInterviewPrompt(input: string): string { |
| 34 | const trimmedInput = input.trim() |
| 35 | if (!trimmedInput) { |
| 36 | return INTERVIEW_BASE_PROMPT |
| 37 | } |
| 38 | return `${INTERVIEW_BASE_PROMPT}\n\n${trimmedInput}` |
| 39 | } |
| 40 | |
| 41 | /** |
| 42 | * Review scope presets for the review screen. |
no outgoing calls
no test coverage detected