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 conventions for scheduling MoonBit agent invocations without trial and error.
Core Features & Use Cases
- Scheduled Invocation: Uses
golem agent invoke --trigger --schedule-at <DATETIME> to enqueue agent method calls for future execution.
- MoonBit Naming Conventions: Documents that method names use
snake_case and agent type names use PascalCase matching the MoonBit source.
- Idempotency and Environments: Supports idempotency keys for deduplication and environment-prefixed agent IDs.
- Use Case: Schedule a
ReportAgent to run generate_daily at 2026-03-15T10:30:00Z with an idempotency key so the report is generated exactly once at the specified time.
Quick Start
Ask the AI to schedule a MoonBit Golem agent method, for example: schedule MyAgent's run_daily_report method to execute at 2026-03-15T10:30:00Z using the golem CLI.