GetEditPrompt returns the PRD editor prompt with the PRD directory substituted.
(prdDir string)
| 41 | |
| 42 | // GetEditPrompt returns the PRD editor prompt with the PRD directory substituted. |
| 43 | func GetEditPrompt(prdDir string) string { |
| 44 | return strings.ReplaceAll(editPromptTemplate, "{{PRD_DIR}}", prdDir) |
| 45 | } |
| 46 | |
| 47 | // GetDetectSetupPrompt returns the prompt for detecting project setup commands. |
| 48 | func GetDetectSetupPrompt() string { |
no outgoing calls