Request Body
| Field | Type | Required | Description |
|---|---|---|---|
schedule | string | Yes | Cron expression (e.g., 0 9 * * * for daily at 9 AM UTC) |
prompt | string | Yes | Prompt sent to the CEO on each firing |
name | string | No | Human-readable job name |
skill | string | No | Specific skill to invoke (e.g., naive-social, naive-email) |
skills | array | No | Multiple skills (alternative to single skill) |
profileName | string | No | Hermes profile to use (default: ceo) |
Behavior
Each firing sends the prompt to the CEO, which creates tasks and dispatches them to employees. If askill is specified, the worker uses that skill’s toolset.
Common Schedules
| Expression | Meaning |
|---|---|
0 9 * * * | Every day at 9:00 AM UTC |
0 */6 * * * | Every 6 hours |
0 9 * * 1 | Every Monday at 9:00 AM UTC |
0 0 1 * * | First of every month at midnight |
*/30 * * * * | Every 30 minutes |