skills$openclaw/calendly
mrgoodb6.8k

by mrgoodb

calendly – OpenClaw Skill

calendly is an OpenClaw Skills integration for data analytics workflows. Manage Calendly scheduling - list events, bookings, and availability. Create scheduling links programmatically.

6.8k stars8.8k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

namecalendly
descriptionManage Calendly scheduling - list events, bookings, and availability. Create scheduling links programmatically. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/calendly
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/calendly
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains calendly in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
269 B
SKILL.md
1.4 KB
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"
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"}'
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install calendly?

Run openclaw add @mrgoodb/calendly in your terminal. This installs calendly into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/calendly. Review commits and README documentation before installing.