Chat: "Run later" - send a prompt, but schedule it for execution, instead of running immediately - #313
Merged
Conversation
Adds a kebab menu next to Send with a "Run later" submenu (30 mins / 1 hour / 24 hours / Just accept it). Any option mints a NEW session, persists the composer text + attachments as its pending user message and a synthetic assistant acknowledgment, with zero LLM/token spend. Timed options schedule a one-shot wakeup that fires engine.run after the delay; "Just accept it" schedules nothing. - Deferred message persists ALL uploaded attachments (images and ordinary files), resolving file_ids to file/image blocks server-side. - Timed run-later wakeups dispatch with source="cron" (reason="run-later"), mirroring cron/plan_service dispatch; model ScheduleWakeup rows stay source="wakeup". - Tests cover attachment persistence and the source="cron" dispatch path. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
pufit
approved these changes
Aug 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problems to be solved:
Sometimes you want to queue a follow-up prompt for an actively running session, but you don't want to disturb it - this new feature allows you to send this new prompt for a new or an existing session (it'll be reliably registered and stored), but its actual execution will be scheduled for some later time.
Changes:
🤖 Generated with Claude Code