fix: plan mode flexibility (#517)

Co-authored-by: Letta <noreply@letta.com>
This commit is contained in:
Charles Packer
2026-01-11 17:35:51 -08:00
committed by GitHub
parent 2e26bfdc1b
commit 88fa10f0d3
3 changed files with 37 additions and 7 deletions

View File

@@ -9,6 +9,10 @@ export async function exit_plan_mode(): Promise<{ message: string }> {
// The UI layer checks if the plan file exists and auto-rejects if not
return {
message:
"User has approved your plan. You can now start coding.\nStart with updating your todo list if applicable",
"User has approved your plan. You can now start coding.\n" +
"Start with updating your todo list if applicable.\n\n" +
"Tip: If this plan will be referenced in the future by your future-self, " +
"other agents, or humans, consider renaming the plan file to something easily " +
"identifiable with a timestamp (e.g., `2026-01-auth-refactor.md`) rather than the random name.",
};
}