* Strip the marker-delimited CodeGraph block from GEMINI.md if a prior * install wrote one. Used by both install (self-heal on upgrade) and * uninstall — see issue #529.
(loc: Location)
| 154 | * uninstall — see issue #529. |
| 155 | */ |
| 156 | function removeInstructionsEntry(loc: Location): WriteResult['files'][number] { |
| 157 | const file = instructionsPath(loc); |
| 158 | const action = removeMarkedSection(file, CODEGRAPH_SECTION_START, CODEGRAPH_SECTION_END); |
| 159 | return { path: file, action }; |
| 160 | } |
| 161 | |
| 162 | export const geminiTarget: AgentTarget = new GeminiTarget(); |
no test coverage detected