Skip to content

Schedule one prompt for later

A scheduled check-in delivers one future instruction to one exact existing session. It is a continuity primitive for known work—not a general reminder service and not a replacement for Routines.

Schedule a continuation, not a hidden reminder

Section titled “Schedule a continuation, not a hidden reminder”

Use a check-in to inspect a long-running operation later, wake a coordinator after child work, retry a bounded external wait, or return to a known state without opening a new thread.

Future instructions remain attached above the exact Axis composer, with their delivery time and Send now action.

The destination is the durable session identity, not merely the newest conversation in the same project.

  1. Exact continuity. The future prompt lands in the session that already owns the context.
  2. Less reminder translation. The instruction can name the state to inspect and next action.
  3. Bounded follow-up. Long waits can be rechecked without launching duplicate work.
  1. Confirm the next action belongs to this exact session.
  2. Write the success, still-running, failure, and human-blocker branches.
  3. Choose the future delivery time or completion condition.
  4. Verify the pending instruction appears on the owning session.
  5. Stop rescheduling when the work completes, transfers, fails, or needs a person.

Use a Routine for repeatable project work with run history. A scheduled prompt should not become an invisible infinite poller. If the exact session cannot be resolved, fail closed rather than delivering into a similar or newer conversation. The installed build is authoritative for which user-facing scheduling controls are available.

Put this to work: Compare a one-off check-in with a repeatable Routine before scheduling.