writeEntrypoint method

Future<void> writeEntrypoint(
  1. String content
)

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);
}