feat(cli): add --no-auto-memory flag to disable memory reminder in agent mode

Adds a flag to disable the automatic memory update reminder that runs
at the end of agent mode. Useful when running agents that should not
modify project memory.
This commit is contained in:
Dhanji R. Prasanna
2026-01-17 15:24:16 +05:30
parent 6bb5448d3f
commit b0740b63c2
3 changed files with 8 additions and 2 deletions

View File

@@ -90,6 +90,7 @@ pub async fn run() -> Result<()> {
cli.safari,
cli.chat,
cli.include_prompt.clone(),
cli.no_auto_memory,
)
.await;
}