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 correct command structure for scheduling delayed agent invocations on Scala-based Golem agents without trial and error.
Core Features & Use Cases
- Scheduled Invocation: Uses
golem agent invoke --trigger --schedule-at to enqueue an agent method call for a future ISO 8601 / RFC 3339 datetime.
- Idempotency Support: Accepts an idempotency key so scheduled invocations are not executed more than once even if the command is retried.
- Scala Value Syntax: Passes agent IDs and arguments using Scala syntax such as
Some(value), records, variants, and tuples.
- Use Case: Schedule a
ReportAgent to run generateDaily at 10:30 UTC tomorrow with a deduplication key, directly from the command line.
Quick Start
Ask the AI to schedule a Scala Golem agent method invocation at a specific future time using golem agent invoke with the --trigger and --schedule-at flags.