golem-schedule-agent-ts

Schedule TypeScript Golem agent method invocations with time-based triggers.

Updated May 17, 2026
One-click install
npx skills add https://github.com/Rust-soham/golem-claw --skill golem-schedule-agent-ts-rust-soham
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: golem-schedule-agent-ts
Source: https://github.com/Rust-soham/golem-claw/tree/main/packages/golem/.agents/skills/golem-schedule-agent-ts
Command: npx skills add https://github.com/Rust-soham/golem-claw --skill golem-schedule-agent-ts-rust-soham

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It solves the problem of triggering a Golem agent method at a specific future time without keeping a process running or manually coordinating delays.

Core Features & Use Cases

  • Time-based scheduling: Schedules an agent invocation to execute at a given ISO 8601 / RFC 3339 timestamp with timezone.
  • Fire-and-forget triggering: Requires the trigger flag so the CLI enqueues the job and immediately returns.
  • Safe deduplication: Supports idempotency keys so retries don’t cause duplicate scheduled executions.
  • TypeScript value syntax support: Lets you pass agent IDs and arguments using TypeScript-like syntax for structured inputs.

Quick Start

Ask your AI assistant to schedule a TypeScript Golem agent method to run at a specific RFC 3339 time using golem agent invoke with --trigger and --schedule-at, including any required arguments and optionally an idempotency key.

Frequently Asked Questions about golem-schedule-agent-ts

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I schedule a TypeScript Golem agent invocation for a future time?

To schedule a Golem agent invocation, use the CLI with the --trigger flag and --schedule-at parameter, providing a future timestamp in ISO 8601 or RFC 3339 format that includes the timezone.

What is the fire-and-forget mechanism for future Golem agent jobs?

The fire-and-forget mechanism enqueues a scheduled agent execution via the --trigger flag, allowing the CLI to immediately return without keeping a process running or manually coordinating delays.

How can I prevent duplicate scheduled executions when retrying Golem agent calls?

You can prevent duplicate scheduled executions by applying an optional idempotency key, which enforces deduplication so that retries do not trigger redundant future invocations of the same agent method.

Does scheduling a Golem agent call require a specific timestamp format?

Yes, scheduling a Golem agent call requires the --schedule-at parameter in ISO 8601 or RFC 3339 format, which must include the timezone to accurately trigger the future job.

Can I pass structured arguments when scheduling a TypeScript Golem agent method?

Yes, you can pass structured inputs such as agent IDs and arguments using TypeScript-like syntax when enqueuing the scheduled invocation from the CLI.