What problem does it solve?
Running a Golem agent method at a specific future time requires knowing the exact CLI flags, datetime format, and fire-and-forget semantics. This Skill provides the precise commands and rules for scheduling delayed agent invocations without trial and error.
Core Features & Use Cases
- Scheduled Invocation: Uses
golem agent invoke --trigger --schedule-at <DATETIME> to enqueue a method call for a future time in ISO 8601 / RFC 3339 format.
- Idempotency Support: Accepts an idempotency key via
-i so scheduled invocations are not executed more than once even if the command is retried.
- Rust Value Syntax: Passes agent IDs and arguments using Rust syntax such as records, enums, options, and tuples.
- Use Case: Schedule a
ReportAgent to run generate_daily at 2026-03-15T10:30:00Z with a fixed idempotency key so the report is generated exactly once at the planned time.
Quick Start
Ask the AI to schedule a Golem agent method invocation at a specific future time using golem agent invoke with the --trigger and --schedule-at flags.