()
| 21 | const MANAGED_COMMENT_HEADER = "### Comment Memory"; |
| 22 | |
| 23 | function renderManagedCommentDisclosureNote() { |
| 24 | const promptsDir = process.env.GH_AW_PROMPTS_DIR || `${process.env.RUNNER_TEMP}/gh-aw/prompts`; |
| 25 | const templatePath = `${promptsDir}/comment_memory_disclosure_note.md`; |
| 26 | return renderTemplateFromFile(templatePath, {}); |
| 27 | } |
| 28 | |
| 29 | function sanitizeMemoryID(memoryID) { |
| 30 | const normalized = String(memoryID || "default").trim(); |
no test coverage detected