Schedule a message to be sent to your AI agent at a future time
Schedule messages to be sent to AI agent sessions at future times. Use this to set up automated reminders, follow-ups, or delayed tasks for your coding agents without keeping them running continuously.
/plugin marketplace add standardbeagle/agnt/plugin install agnt@standardbeagle-toolsSchedule a message to be delivered to an AI coding agent session at a specified time.
The user can specify:
If no arguments provided, list available sessions:
session {action: "list"}
If session code provided but no duration/message, show session details:
session {action: "get", code: "<session_code>"}
To schedule a message:
session {action: "schedule", code: "<session_code>", duration: "<duration>", message: "<message>"}
To list pending scheduled tasks:
session {action: "tasks"}
To cancel a scheduled task:
session {action: "cancel", task_id: "<task_id>"}
Schedule a verification reminder:
/schedule claude-1 5m "Please verify the build completed successfully"
Schedule a test check:
/schedule dev 10m "Run the test suite and report any failures"
List all sessions:
/schedule
View pending tasks:
/schedule --tasks
Durations use Go duration syntax:
30s - 30 seconds5m - 5 minutes1h - 1 hour1h30m - 1 hour 30 minutes2h45m30s - 2 hours 45 minutes 30 secondsagnt run <command> (e.g., agnt run claude)