writeEntrypoint method
Update the MEMORY.md entrypoint index.
Implementation
Future<void> writeEntrypoint(String content) async {
await initialize();
final entrypoint = getAutoMemEntrypoint(projectRoot: projectRoot);
await File(entrypoint).writeAsString(content);
}