readEntrypoint method
Read MEMORY.md entrypoint content.
Implementation
Future<String?> readEntrypoint() async {
final entrypoint = getAutoMemEntrypoint(projectRoot: projectRoot);
final file = File(entrypoint);
if (!await file.exists()) return null;
return file.readAsString();
}