Checks if a path is a team memory file.
bool isTeamMemFile(String path) { // Team memory files live under .neomage/teams/<team>/memory/ return path.contains('.neomage/teams/') && path.contains('/memory/'); }