MCPcopy Create free account
hub / github.com/codeaashu/claude-code / isInstructionsMemoryType

Function isInstructionsMemoryType

src/utils/claudemd.ts:1077–1086  ·  view source on GitHub ↗
(
  type: MemoryType,
)

Source from the content-addressed store, hash-verified

1075)
1076
1077function isInstructionsMemoryType(
1078 type: MemoryType,
1079): type is InstructionsMemoryType {
1080 return (
1081 type === 'User' ||
1082 type === 'Project' ||
1083 type === 'Local' ||
1084 type === 'Managed'
1085 )
1086}
1087
1088// Load reason to report for top-level (non-included) files on the next eager
1089// getMemoryFiles() pass. Set to 'compact' by resetGetMemoryFilesCache when

Callers 1

claudemd.tsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected