* Check if a file path is within an agent memory directory.
(filePath: string)
| 117 | * Check if a file path is within an agent memory directory. |
| 118 | */ |
| 119 | function isAgentMemFile(filePath: string): boolean { |
| 120 | if (isAutoMemoryEnabled()) { |
| 121 | return isAgentMemoryPath(filePath) |
| 122 | } |
| 123 | return false |
| 124 | } |
| 125 | |
| 126 | /** |
| 127 | * Check if a file is a Claude-managed memory file (NOT user-managed instruction files). |
no test coverage detected