{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/calcom",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=calcom",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/authentication.md",
      "references/slots-availability.md",
      "references/schedules.md",
      "references/calendars.md",
      "references/webhooks.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/calcom",
    "agentPageUrl": "https://openagent3.xyz/skills/calcom/agent",
    "manifestUrl": "https://openagent3.xyz/skills/calcom/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/calcom/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Cal.com API v2",
        "body": "This skill provides guidance for AI agents to interact with the Cal.com API v2, enabling scheduling automation, booking management, and calendar integrations."
      },
      {
        "title": "Base URL",
        "body": "All API requests should be made to:\n\nhttps://api.cal.com/v2"
      },
      {
        "title": "Authentication",
        "body": "All API requests require authentication via Bearer token in the Authorization header:\n\nAuthorization: Bearer cal_<your_api_key>\n\nAPI keys must be prefixed with cal_. You can generate API keys from your Cal.com dashboard under Settings > Developer > API Keys."
      },
      {
        "title": "Event Types",
        "body": "Event types define bookable meeting configurations (duration, location, availability rules). Each event type has a unique slug used in booking URLs."
      },
      {
        "title": "Bookings",
        "body": "Bookings are confirmed appointments created when someone books an event type. Each booking has a unique UID for identification."
      },
      {
        "title": "Schedules",
        "body": "Schedules define when a user is available for bookings. Users can have multiple schedules with different working hours."
      },
      {
        "title": "Slots",
        "body": "Slots represent available time windows that can be booked based on event type configuration and user availability."
      },
      {
        "title": "Check Available Slots",
        "body": "Before creating a booking, check available time slots:\n\nGET /v2/slots?startTime=2024-01-15T00:00:00Z&endTime=2024-01-22T00:00:00Z&eventTypeId=123&eventTypeSlug=30min\n\nQuery parameters:\n\nstartTime (required): ISO 8601 start of range\nendTime (required): ISO 8601 end of range\neventTypeId or eventTypeSlug: Identify the event type\ntimeZone: Timezone for slot display (default: UTC)\n\nResponse contains available slots grouped by date."
      },
      {
        "title": "Create a Booking",
        "body": "POST /v2/bookings\nContent-Type: application/json\n\n{\n  \"start\": \"2024-01-15T10:00:00Z\",\n  \"eventTypeId\": 123,\n  \"attendee\": {\n    \"name\": \"John Doe\",\n    \"email\": \"john@example.com\",\n    \"timeZone\": \"America/New_York\"\n  },\n  \"meetingUrl\": \"https://cal.com/team/meeting\",\n  \"metadata\": {}\n}\n\nRequired fields:\n\nstart: ISO 8601 booking start time\neventTypeId: ID of the event type to book\nattendee.name: Attendee's full name\nattendee.email: Attendee's email address\nattendee.timeZone: Attendee's timezone"
      },
      {
        "title": "Get Bookings",
        "body": "List bookings with optional filters:\n\nGET /v2/bookings?status=upcoming&take=10\n\nQuery parameters:\n\nstatus: Filter by status (upcoming, recurring, past, cancelled, unconfirmed)\nattendeeEmail: Filter by attendee email\neventTypeId: Filter by event type\ntake: Number of results (max 250)\nskip: Pagination offset"
      },
      {
        "title": "Get a Single Booking",
        "body": "GET /v2/bookings/{bookingUid}"
      },
      {
        "title": "Cancel a Booking",
        "body": "POST /v2/bookings/{bookingUid}/cancel\nContent-Type: application/json\n\n{\n  \"cancellationReason\": \"Schedule conflict\"\n}"
      },
      {
        "title": "Reschedule a Booking",
        "body": "POST /v2/bookings/{bookingUid}/reschedule\nContent-Type: application/json\n\n{\n  \"start\": \"2024-01-16T14:00:00Z\",\n  \"reschedulingReason\": \"Conflict with another meeting\"\n}"
      },
      {
        "title": "List Event Types",
        "body": "GET /v2/event-types\n\nReturns all event types for the authenticated user."
      },
      {
        "title": "Get a Single Event Type",
        "body": "GET /v2/event-types/{eventTypeId}"
      },
      {
        "title": "Create an Event Type",
        "body": "POST /v2/event-types\nContent-Type: application/json\n\n{\n  \"title\": \"30 Minute Meeting\",\n  \"slug\": \"30min\",\n  \"lengthInMinutes\": 30,\n  \"locations\": [\n    {\n      \"type\": \"integration\",\n      \"integration\": \"cal-video\"\n    }\n  ]\n}"
      },
      {
        "title": "List Schedules",
        "body": "GET /v2/schedules"
      },
      {
        "title": "Get Default Schedule",
        "body": "GET /v2/schedules/default"
      },
      {
        "title": "Create a Schedule",
        "body": "POST /v2/schedules\nContent-Type: application/json\n\n{\n  \"name\": \"Working Hours\",\n  \"timeZone\": \"America/New_York\",\n  \"isDefault\": true,\n  \"availability\": [\n    {\n      \"days\": [1, 2, 3, 4, 5],\n      \"startTime\": \"09:00\",\n      \"endTime\": \"17:00\"\n    }\n  ]\n}\n\nDays are 0-indexed (0 = Sunday, 1 = Monday, etc.)."
      },
      {
        "title": "Get Current User",
        "body": "GET /v2/me\n\nReturns the authenticated user's profile information."
      },
      {
        "title": "Team and Organization Endpoints",
        "body": "For team bookings and organization management, use the organization-scoped endpoints:"
      },
      {
        "title": "List Organization Teams",
        "body": "GET /v2/organizations/{orgId}/teams"
      },
      {
        "title": "Get Team Event Types",
        "body": "GET /v2/organizations/{orgId}/teams/{teamId}/event-types"
      },
      {
        "title": "Create Team Booking",
        "body": "Team event types support different scheduling modes:\n\nCOLLECTIVE: All team members must attend\nROUND_ROBIN: Distributes bookings among team members"
      },
      {
        "title": "Webhooks",
        "body": "Configure webhooks to receive real-time notifications:"
      },
      {
        "title": "List Webhooks",
        "body": "GET /v2/webhooks"
      },
      {
        "title": "Create a Webhook",
        "body": "POST /v2/webhooks\nContent-Type: application/json\n\n{\n  \"subscriberUrl\": \"https://your-app.com/webhook\",\n  \"triggers\": [\"BOOKING_CREATED\", \"BOOKING_CANCELLED\"],\n  \"active\": true\n}\n\nAvailable triggers:\n\nBOOKING_CREATED\nBOOKING_CANCELLED\nBOOKING_RESCHEDULED\nBOOKING_CONFIRMED\nMEETING_STARTED\nMEETING_ENDED"
      },
      {
        "title": "List Connected Calendars",
        "body": "GET /v2/calendars"
      },
      {
        "title": "Check Busy Times",
        "body": "GET /v2/calendars/busy-times?startTime=2024-01-15T00:00:00Z&endTime=2024-01-22T00:00:00Z"
      },
      {
        "title": "Error Handling",
        "body": "The API returns standard HTTP status codes:\n\n200: Success\n201: Created\n400: Bad Request (invalid parameters)\n401: Unauthorized (invalid or missing API key)\n403: Forbidden (insufficient permissions)\n404: Not Found\n422: Unprocessable Entity (validation error)\n500: Internal Server Error\n\nError responses include a message field:\n\n{\n  \"status\": \"error\",\n  \"message\": \"Booking not found\"\n}"
      },
      {
        "title": "Rate Limiting",
        "body": "The API implements rate limiting. If you exceed the limit, you'll receive a 429 Too Many Requests response. Implement exponential backoff for retries."
      },
      {
        "title": "Pagination",
        "body": "List endpoints support pagination via take and skip parameters:\n\ntake: Number of items to return (default: 10, max: 250)\nskip: Number of items to skip"
      },
      {
        "title": "Best Practices",
        "body": "Always check slot availability before creating bookings\nStore booking UIDs for future reference (cancel, reschedule)\nHandle timezone conversions carefully - always use ISO 8601 format\nImplement webhook handlers for real-time booking updates\nCache event type data to reduce API calls\nUse appropriate error handling for all API calls"
      },
      {
        "title": "Additional Resources",
        "body": "Full API Reference\nOpenAPI Specification"
      }
    ],
    "body": "Cal.com API v2\n\nThis skill provides guidance for AI agents to interact with the Cal.com API v2, enabling scheduling automation, booking management, and calendar integrations.\n\nBase URL\n\nAll API requests should be made to:\n\nhttps://api.cal.com/v2\n\nAuthentication\n\nAll API requests require authentication via Bearer token in the Authorization header:\n\nAuthorization: Bearer cal_<your_api_key>\n\n\nAPI keys must be prefixed with cal_. You can generate API keys from your Cal.com dashboard under Settings > Developer > API Keys.\n\nCore Concepts\nEvent Types\n\nEvent types define bookable meeting configurations (duration, location, availability rules). Each event type has a unique slug used in booking URLs.\n\nBookings\n\nBookings are confirmed appointments created when someone books an event type. Each booking has a unique UID for identification.\n\nSchedules\n\nSchedules define when a user is available for bookings. Users can have multiple schedules with different working hours.\n\nSlots\n\nSlots represent available time windows that can be booked based on event type configuration and user availability.\n\nCommon Operations\nCheck Available Slots\n\nBefore creating a booking, check available time slots:\n\nGET /v2/slots?startTime=2024-01-15T00:00:00Z&endTime=2024-01-22T00:00:00Z&eventTypeId=123&eventTypeSlug=30min\n\n\nQuery parameters:\n\nstartTime (required): ISO 8601 start of range\nendTime (required): ISO 8601 end of range\neventTypeId or eventTypeSlug: Identify the event type\ntimeZone: Timezone for slot display (default: UTC)\n\nResponse contains available slots grouped by date.\n\nCreate a Booking\nPOST /v2/bookings\nContent-Type: application/json\n\n{\n  \"start\": \"2024-01-15T10:00:00Z\",\n  \"eventTypeId\": 123,\n  \"attendee\": {\n    \"name\": \"John Doe\",\n    \"email\": \"john@example.com\",\n    \"timeZone\": \"America/New_York\"\n  },\n  \"meetingUrl\": \"https://cal.com/team/meeting\",\n  \"metadata\": {}\n}\n\n\nRequired fields:\n\nstart: ISO 8601 booking start time\neventTypeId: ID of the event type to book\nattendee.name: Attendee's full name\nattendee.email: Attendee's email address\nattendee.timeZone: Attendee's timezone\nGet Bookings\n\nList bookings with optional filters:\n\nGET /v2/bookings?status=upcoming&take=10\n\n\nQuery parameters:\n\nstatus: Filter by status (upcoming, recurring, past, cancelled, unconfirmed)\nattendeeEmail: Filter by attendee email\neventTypeId: Filter by event type\ntake: Number of results (max 250)\nskip: Pagination offset\nGet a Single Booking\nGET /v2/bookings/{bookingUid}\n\nCancel a Booking\nPOST /v2/bookings/{bookingUid}/cancel\nContent-Type: application/json\n\n{\n  \"cancellationReason\": \"Schedule conflict\"\n}\n\nReschedule a Booking\nPOST /v2/bookings/{bookingUid}/reschedule\nContent-Type: application/json\n\n{\n  \"start\": \"2024-01-16T14:00:00Z\",\n  \"reschedulingReason\": \"Conflict with another meeting\"\n}\n\nList Event Types\nGET /v2/event-types\n\n\nReturns all event types for the authenticated user.\n\nGet a Single Event Type\nGET /v2/event-types/{eventTypeId}\n\nCreate an Event Type\nPOST /v2/event-types\nContent-Type: application/json\n\n{\n  \"title\": \"30 Minute Meeting\",\n  \"slug\": \"30min\",\n  \"lengthInMinutes\": 30,\n  \"locations\": [\n    {\n      \"type\": \"integration\",\n      \"integration\": \"cal-video\"\n    }\n  ]\n}\n\nList Schedules\nGET /v2/schedules\n\nGet Default Schedule\nGET /v2/schedules/default\n\nCreate a Schedule\nPOST /v2/schedules\nContent-Type: application/json\n\n{\n  \"name\": \"Working Hours\",\n  \"timeZone\": \"America/New_York\",\n  \"isDefault\": true,\n  \"availability\": [\n    {\n      \"days\": [1, 2, 3, 4, 5],\n      \"startTime\": \"09:00\",\n      \"endTime\": \"17:00\"\n    }\n  ]\n}\n\n\nDays are 0-indexed (0 = Sunday, 1 = Monday, etc.).\n\nGet Current User\nGET /v2/me\n\n\nReturns the authenticated user's profile information.\n\nTeam and Organization Endpoints\n\nFor team bookings and organization management, use the organization-scoped endpoints:\n\nList Organization Teams\nGET /v2/organizations/{orgId}/teams\n\nGet Team Event Types\nGET /v2/organizations/{orgId}/teams/{teamId}/event-types\n\nCreate Team Booking\n\nTeam event types support different scheduling modes:\n\nCOLLECTIVE: All team members must attend\nROUND_ROBIN: Distributes bookings among team members\nWebhooks\n\nConfigure webhooks to receive real-time notifications:\n\nList Webhooks\nGET /v2/webhooks\n\nCreate a Webhook\nPOST /v2/webhooks\nContent-Type: application/json\n\n{\n  \"subscriberUrl\": \"https://your-app.com/webhook\",\n  \"triggers\": [\"BOOKING_CREATED\", \"BOOKING_CANCELLED\"],\n  \"active\": true\n}\n\n\nAvailable triggers:\n\nBOOKING_CREATED\nBOOKING_CANCELLED\nBOOKING_RESCHEDULED\nBOOKING_CONFIRMED\nMEETING_STARTED\nMEETING_ENDED\nCalendar Integration\nList Connected Calendars\nGET /v2/calendars\n\nCheck Busy Times\nGET /v2/calendars/busy-times?startTime=2024-01-15T00:00:00Z&endTime=2024-01-22T00:00:00Z\n\nError Handling\n\nThe API returns standard HTTP status codes:\n\n200: Success\n201: Created\n400: Bad Request (invalid parameters)\n401: Unauthorized (invalid or missing API key)\n403: Forbidden (insufficient permissions)\n404: Not Found\n422: Unprocessable Entity (validation error)\n500: Internal Server Error\n\nError responses include a message field:\n\n{\n  \"status\": \"error\",\n  \"message\": \"Booking not found\"\n}\n\nRate Limiting\n\nThe API implements rate limiting. If you exceed the limit, you'll receive a 429 Too Many Requests response. Implement exponential backoff for retries.\n\nPagination\n\nList endpoints support pagination via take and skip parameters:\n\ntake: Number of items to return (default: 10, max: 250)\nskip: Number of items to skip\nBest Practices\nAlways check slot availability before creating bookings\nStore booking UIDs for future reference (cancel, reschedule)\nHandle timezone conversions carefully - always use ISO 8601 format\nImplement webhook handlers for real-time booking updates\nCache event type data to reduce API calls\nUse appropriate error handling for all API calls\nAdditional Resources\nFull API Reference\nOpenAPI Specification"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/PeerRich/calcom",
    "publisherUrl": "https://clawhub.ai/PeerRich/calcom",
    "owner": "PeerRich",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}