You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update Calendly skill to always fetch invitees for event details
The event `name` field only shows the event type name (e.g. "Meeting"),
not who booked it or what it's about. Added explicit instructions to
always fetch the invitees sub-resource for meaningful event details.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: skills/calendly/SKILL.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,12 +98,22 @@ Response fields per event type in `collection[]`:
98
98
-`duration` — duration in minutes
99
99
-`active` — whether this event type is active
100
100
101
+
## IMPORTANT: Always fetch invitees
102
+
103
+
The `name` field on scheduled events is just the event type name (e.g. "Meeting") and is the SAME for every event. It does NOT tell you what the meeting is about or who it's with. You MUST always fetch invitees (Step 3) for each event to get meaningful details:
104
+
105
+
- The invitee `name` field tells you who the meeting is with (e.g. "RunAnywhere Celebration", "Ajay Negi")
106
+
- The `questions_and_answers` field contains notes about the meeting purpose
107
+
- Without invitee data, you cannot accurately describe any event to the user
108
+
101
109
## Common workflows
102
110
103
-
**Fetch today's meetings:**
111
+
**Fetch today's meetings (ALWAYS use this full flow):**
0 commit comments