(loc: Location)
| 479 | * the report so a fresh install stays quiet. |
| 480 | */ |
| 481 | export function removeInstructionsEntry(loc: Location): WriteResult['files'][number] { |
| 482 | const file = instructionsPath(loc); |
| 483 | const action = removeMarkedSection(file, CODEGRAPH_SECTION_START, CODEGRAPH_SECTION_END); |
| 484 | return { path: file, action }; |
| 485 | } |
| 486 | |
| 487 | export const claudeTarget: AgentTarget = new ClaudeCodeTarget(); |
no test coverage detected