MCPcopy Create free account
hub / github.com/AnukarOP/claude-code-leaked / isAutoMemFile

Function isAutoMemFile

source code/utils/memoryFileDetection.ts:89–94  ·  view source on GitHub ↗
(filePath: string)

Source from the content-addressed store, hash-verified

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

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