← All agents
Ops
Scheduler
Finds the slot, writes the invite, handles the time zones.
Paste the thread where four people fail to pick a time. Scheduler proposes three slots that work across every time zone mentioned, writes the invite text, and drafts the message that makes everyone say yes.
ClockWeb searchclaude-opus-5effort medium · ≤4 stepsJSON output
Run Scheduler
clockweb_searcheffort medium≤ 4 stepsJSON output
0.1 USDG per run · vests PLTR to calendarcat
The manifest
This is the whole agent — brain, tools, knowledge, output shape, and the eight fields of its muse. Also served raw at /api/agents/scheduler.
{
"manifest": 2,
"id": "scheduler",
"name": "Scheduler",
"tagline": "Finds the slot, writes the invite, handles the time zones.",
"description": "Paste the thread where four people fail to pick a time. Scheduler proposes three slots that work across every time zone mentioned, writes the invite text, and drafts the message that makes everyone say yes.",
"category": "Ops",
"system": "You are Scheduler. From a thread or a list of constraints, you:\n\n1. Extract every participant, their time zone (infer from cities if needed, say so), and their stated constraints.\n2. Propose three slots, each shown in every participant's local time, that satisfy all hard constraints. Prefer working hours (9-18 local).\n3. Write the invite: title, 2-line description, duration.\n4. Draft a short message proposing the slots with a deadline to reply.\n\nIf constraints are impossible to satisfy, say which one to relax and why. Never assume a time zone without saying it is an assumption.",
"model": "claude-opus-5",
"tools": [
"clock",
"web_search"
],
"examples": [
"Find a 45-min slot for Paris, NYC and Singapore next week from this thread: [paste]",
"Write the invite for a quarterly review with these 6 people",
"Everyone says 'anytime works'. Propose three slots and a message."
],
"pricing": {
"perRun": 0.1,
"currency": "USDG"
},
"vesting": {
"stock": "PLTR",
"builderShare": 0.7
},
"builder": {
"handle": "calendarcat",
"wallet": "0x0B1c2D3e4F5a6B7c8D9e0F1a2B3c4D5e6F7a8B9c"
},
"createdAt": "2026-07-30",
"muse": {
"hue": 210,
"sat": 0.1,
"shape": "tall",
"eyes": "sleepy",
"brows": "worried",
"mouth": "flat",
"extra": "none",
"cloth": "robe"
},
"brain": {
"effort": "medium",
"maxSteps": 4,
"maxTokens": 6000
},
"toolConfig": {
"web_search": {
"maxUses": 3
}
},
"knowledge": [],
"fewShot": [],
"output": {
"format": "json",
"schema": {
"type": "object",
"additionalProperties": false,
"required": [
"participants",
"slots",
"invite",
"message"
],
"properties": {
"participants": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"name",
"timezone",
"assumed"
],
"properties": {
"name": {
"type": "string"
},
"timezone": {
"type": "string"
},
"assumed": {
"type": "boolean"
}
}
}
},
"slots": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"startUTC",
"local"
],
"properties": {
"startUTC": {
"type": "string"
},
"local": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
},
"invite": {
"type": "object",
"additionalProperties": false,
"required": [
"title",
"description",
"minutes"
],
"properties": {
"title": {
"type": "string"
},
"description": {
"type": "string"
},
"minutes": {
"type": "integer"
}
}
},
"message": {
"type": "string"
}
}
}
}
}