feat: confirm memory index completion

This commit is contained in:
Peter Steinberger
2026-01-17 20:35:11 +00:00
parent 361a17415f
commit f5d5ef6857

View File

@@ -91,6 +91,10 @@ export function registerMemoryCli(program: Command) {
);
return;
}
if (opts.index) {
const line = indexError ? `Memory index failed: ${indexError}` : "Memory index complete.";
defaultRuntime.log(line);
}
const rich = isRich();
const heading = (text: string) => colorize(rich, theme.heading, text);
const muted = (text: string) => colorize(rich, theme.muted, text);