MCPcopy
hub / github.com/claude-code-best/claude-code / isAutoMemFile

Function isAutoMemFile

src/utils/memoryFileDetection.ts:87–92  ·  view source on GitHub ↗
(filePath: string)

Source from the content-addressed store, hash-verified

85 * Check if a file path is within the memdir directory.
86 */
87export function isAutoMemFile(filePath: string): boolean {
88 if (isAutoMemoryEnabled()) {
89 return isAutoMemPath(filePath)
90 }
91 return false
92}
93
94export type MemoryScope = 'personal' | 'team'
95

Callers 5

callInnerFunction · 0.85
isMemoryFileAccessFunction · 0.85
handleSessionFileAccessFunction · 0.85
memoryScopeForPathFunction · 0.85
isAutoManagedMemoryFileFunction · 0.85

Calls 2

isAutoMemoryEnabledFunction · 0.85
isAutoMemPathFunction · 0.85

Tested by

no test coverage detected