MCPcopy Index your code
hub / github.com/CodebuffAI/codebuff / buildInterviewPrompt

Function buildInterviewPrompt

cli/src/commands/prompt-builders.ts:33–39  ·  view source on GitHub ↗
(input: string)

Source from the content-addressed store, hash-verified

31 * @returns The full prompt to send to the agent
32 */
33export 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.

Callers 2

routeUserPromptFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected