zonghui1968

calendly

0
0
# Install this skill:
npx skills add zonghui1968/clawd-skills --skill "calendly"

Install specific skill from multi-skill repository

# Description

Manage Calendly scheduling - list events, bookings, and availability. Create scheduling links programmatically.

# SKILL.md


name: calendly
description: Manage Calendly scheduling - list events, bookings, and availability. Create scheduling links programmatically.
metadata: {"clawdbot":{"emoji":"๐Ÿ“…","requires":{"env":["CALENDLY_API_TOKEN"]}}}


Calendly

Scheduling automation.

Environment

export CALENDLY_API_TOKEN="xxxxxxxxxx"

Get Current User

curl "https://api.calendly.com/users/me" \
  -H "Authorization: Bearer $CALENDLY_API_TOKEN"

List Event Types

curl "https://api.calendly.com/event_types?user=https://api.calendly.com/users/USERID" \
  -H "Authorization: Bearer $CALENDLY_API_TOKEN"

List Scheduled Events

curl "https://api.calendly.com/scheduled_events?user=https://api.calendly.com/users/USERID&status=active" \
  -H "Authorization: Bearer $CALENDLY_API_TOKEN"

Get Event Details

curl "https://api.calendly.com/scheduled_events/{uuid}" \
  -H "Authorization: Bearer $CALENDLY_API_TOKEN"

List Invitees

curl "https://api.calendly.com/scheduled_events/{event_uuid}/invitees" \
  -H "Authorization: Bearer $CALENDLY_API_TOKEN"

Cancel Event

curl -X POST "https://api.calendly.com/scheduled_events/{uuid}/cancellation" \
  -H "Authorization: Bearer $CALENDLY_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"reason": "Scheduling conflict"}'
  • Dashboard: https://calendly.com/app/home
  • Docs: https://developer.calendly.com

# Supported AI Coding Agents

This skill is compatible with the SKILL.md standard and works with all major AI coding agents:

Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.