# Send Cal.com to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "calcom",
    "name": "Cal.com",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/PeerRich/calcom",
    "canonicalUrl": "https://clawhub.ai/PeerRich/calcom",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/calcom",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=calcom",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/authentication.md",
      "references/slots-availability.md",
      "references/schedules.md",
      "references/calendars.md",
      "references/webhooks.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "calcom",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T07:25:48.601Z",
      "expiresAt": "2026-05-06T07:25:48.601Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=calcom",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=calcom",
        "contentDisposition": "attachment; filename=\"calcom-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "calcom"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/calcom"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/calcom",
    "downloadUrl": "https://openagent3.xyz/downloads/calcom",
    "agentUrl": "https://openagent3.xyz/skills/calcom/agent",
    "manifestUrl": "https://openagent3.xyz/skills/calcom/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/calcom/agent.md"
  }
}
```
## Documentation

### Cal.com API v2

This skill provides guidance for AI agents to interact with the Cal.com API v2, enabling scheduling automation, booking management, and calendar integrations.

### Base URL

All API requests should be made to:

https://api.cal.com/v2

### Authentication

All API requests require authentication via Bearer token in the Authorization header:

Authorization: Bearer cal_<your_api_key>

API keys must be prefixed with cal_. You can generate API keys from your Cal.com dashboard under Settings > Developer > API Keys.

### Event Types

Event types define bookable meeting configurations (duration, location, availability rules). Each event type has a unique slug used in booking URLs.

### Bookings

Bookings are confirmed appointments created when someone books an event type. Each booking has a unique UID for identification.

### Schedules

Schedules define when a user is available for bookings. Users can have multiple schedules with different working hours.

### Slots

Slots represent available time windows that can be booked based on event type configuration and user availability.

### Check Available Slots

Before creating a booking, check available time slots:

GET /v2/slots?startTime=2024-01-15T00:00:00Z&endTime=2024-01-22T00:00:00Z&eventTypeId=123&eventTypeSlug=30min

Query parameters:

startTime (required): ISO 8601 start of range
endTime (required): ISO 8601 end of range
eventTypeId or eventTypeSlug: Identify the event type
timeZone: Timezone for slot display (default: UTC)

Response contains available slots grouped by date.

### Create a Booking

POST /v2/bookings
Content-Type: application/json

{
  "start": "2024-01-15T10:00:00Z",
  "eventTypeId": 123,
  "attendee": {
    "name": "John Doe",
    "email": "john@example.com",
    "timeZone": "America/New_York"
  },
  "meetingUrl": "https://cal.com/team/meeting",
  "metadata": {}
}

Required fields:

start: ISO 8601 booking start time
eventTypeId: ID of the event type to book
attendee.name: Attendee's full name
attendee.email: Attendee's email address
attendee.timeZone: Attendee's timezone

### Get Bookings

List bookings with optional filters:

GET /v2/bookings?status=upcoming&take=10

Query parameters:

status: Filter by status (upcoming, recurring, past, cancelled, unconfirmed)
attendeeEmail: Filter by attendee email
eventTypeId: Filter by event type
take: Number of results (max 250)
skip: Pagination offset

### Get a Single Booking

GET /v2/bookings/{bookingUid}

### Cancel a Booking

POST /v2/bookings/{bookingUid}/cancel
Content-Type: application/json

{
  "cancellationReason": "Schedule conflict"
}

### Reschedule a Booking

POST /v2/bookings/{bookingUid}/reschedule
Content-Type: application/json

{
  "start": "2024-01-16T14:00:00Z",
  "reschedulingReason": "Conflict with another meeting"
}

### List Event Types

GET /v2/event-types

Returns all event types for the authenticated user.

### Get a Single Event Type

GET /v2/event-types/{eventTypeId}

### Create an Event Type

POST /v2/event-types
Content-Type: application/json

{
  "title": "30 Minute Meeting",
  "slug": "30min",
  "lengthInMinutes": 30,
  "locations": [
    {
      "type": "integration",
      "integration": "cal-video"
    }
  ]
}

### List Schedules

GET /v2/schedules

### Get Default Schedule

GET /v2/schedules/default

### Create a Schedule

POST /v2/schedules
Content-Type: application/json

{
  "name": "Working Hours",
  "timeZone": "America/New_York",
  "isDefault": true,
  "availability": [
    {
      "days": [1, 2, 3, 4, 5],
      "startTime": "09:00",
      "endTime": "17:00"
    }
  ]
}

Days are 0-indexed (0 = Sunday, 1 = Monday, etc.).

### Get Current User

GET /v2/me

Returns the authenticated user's profile information.

### Team and Organization Endpoints

For team bookings and organization management, use the organization-scoped endpoints:

### List Organization Teams

GET /v2/organizations/{orgId}/teams

### Get Team Event Types

GET /v2/organizations/{orgId}/teams/{teamId}/event-types

### Create Team Booking

Team event types support different scheduling modes:

COLLECTIVE: All team members must attend
ROUND_ROBIN: Distributes bookings among team members

### Webhooks

Configure webhooks to receive real-time notifications:

### List Webhooks

GET /v2/webhooks

### Create a Webhook

POST /v2/webhooks
Content-Type: application/json

{
  "subscriberUrl": "https://your-app.com/webhook",
  "triggers": ["BOOKING_CREATED", "BOOKING_CANCELLED"],
  "active": true
}

Available triggers:

BOOKING_CREATED
BOOKING_CANCELLED
BOOKING_RESCHEDULED
BOOKING_CONFIRMED
MEETING_STARTED
MEETING_ENDED

### List Connected Calendars

GET /v2/calendars

### Check Busy Times

GET /v2/calendars/busy-times?startTime=2024-01-15T00:00:00Z&endTime=2024-01-22T00:00:00Z

### Error Handling

The API returns standard HTTP status codes:

200: Success
201: Created
400: Bad Request (invalid parameters)
401: Unauthorized (invalid or missing API key)
403: Forbidden (insufficient permissions)
404: Not Found
422: Unprocessable Entity (validation error)
500: Internal Server Error

Error responses include a message field:

{
  "status": "error",
  "message": "Booking not found"
}

### Rate Limiting

The API implements rate limiting. If you exceed the limit, you'll receive a 429 Too Many Requests response. Implement exponential backoff for retries.

### Pagination

List endpoints support pagination via take and skip parameters:

take: Number of items to return (default: 10, max: 250)
skip: Number of items to skip

### Best Practices

Always check slot availability before creating bookings
Store booking UIDs for future reference (cancel, reschedule)
Handle timezone conversions carefully - always use ISO 8601 format
Implement webhook handlers for real-time booking updates
Cache event type data to reduce API calls
Use appropriate error handling for all API calls

### Additional Resources

Full API Reference
OpenAPI Specification
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: PeerRich
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T07:25:48.601Z
- Expires at: 2026-05-06T07:25:48.601Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/calcom)
- [Send to Agent page](https://openagent3.xyz/skills/calcom/agent)
- [JSON manifest](https://openagent3.xyz/skills/calcom/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/calcom/agent.md)
- [Download page](https://openagent3.xyz/downloads/calcom)