# Send Calendly Quick Book 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "calendly-quick-book",
    "name": "Calendly Quick Book",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/Dompi123/calendly-quick-book",
    "canonicalUrl": "https://clawhub.ai/Dompi123/calendly-quick-book",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/calendly-quick-book",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=calendly-quick-book",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "calendly-quick-book",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T10:13:10.573Z",
      "expiresAt": "2026-05-06T10:13:10.573Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=calendly-quick-book",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=calendly-quick-book",
        "contentDisposition": "attachment; filename=\"calendly-quick-book-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "calendly-quick-book"
      },
      "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/calendly-quick-book"
    },
    "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/calendly-quick-book",
    "downloadUrl": "https://openagent3.xyz/downloads/calendly-quick-book",
    "agentUrl": "https://openagent3.xyz/skills/calendly-quick-book/agent",
    "manifestUrl": "https://openagent3.xyz/skills/calendly-quick-book/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/calendly-quick-book/agent.md"
  }
}
```
## Documentation

### Calendly Quick Book

Book Calendly meetings via natural language. No tab switching, no link sending.

### Default Configuration

SettingValueDefault Calendly Linkhttps://calendly.com/YOUR_USERNAMECalendly UsernameYOUR_USERNAME

Note: Update the values above with your own Calendly username after installation.

### Commands

InputActionbook [name] [email] [timezone] [time]Book a meetingcalendly book [name] [email] [timezone] [time]Book a meeting

### Input Fields

FieldRequiredExampleNameYesJohn SmithEmailYesjohn@acme.comTimezoneYesEST, PST, UTCTimeYestomorrow 2pm

### Timezone Mapping

InputIANA FormatEST/EDTAmerica/New_YorkCST/CDTAmerica/ChicagoMST/MDTAmerica/DenverPST/PDTAmerica/Los_AngelesGMT/UTCUTC

### Step 1: Get Current User

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

### Step 2: Get Event Types

curl -s "https://api.calendly.com/event_types?user={USER_URI}" \\
  -H "Authorization: Bearer $CALENDLY_API_TOKEN"

### Step 3: Get Available Times

curl -s "https://api.calendly.com/event_type_available_times?event_type={EVENT_TYPE_URI}&start_time={START_UTC}&end_time={END_UTC}" \\
  -H "Authorization: Bearer $CALENDLY_API_TOKEN"

### Step 4: Create Booking

curl -s -X POST "https://api.calendly.com/invitees" \\
  -H "Authorization: Bearer $CALENDLY_API_TOKEN" \\
  -H "Content-Type: application/json" \\
  -d '{
    "event_type": "{EVENT_TYPE_URI}",
    "start_time": "{TIME_UTC}",
    "invitee": {
      "name": "{NAME}",
      "email": "{EMAIL}",
      "timezone": "{TIMEZONE_IANA}"
    }
  }'

### Success

✅ Meeting Booked!

📅 [Date]
⏰ [Time] [Timezone]
👤 [Name] ([Email])
📍 Calendar invite sent automatically

### No Availability

⚠️ No availability at [time]

Nearest slots:
1. [Option 1]
2. [Option 2]
3. [Option 3]

### Errors

ErrorResponseInvalid emailAsk to confirm emailToken expiredDirect to Calendly settingsNo event typesDirect to create one in Calendly
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Dompi123
- 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-29T10:13:10.573Z
- Expires at: 2026-05-06T10:13:10.573Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/calendly-quick-book)
- [Send to Agent page](https://openagent3.xyz/skills/calendly-quick-book/agent)
- [JSON manifest](https://openagent3.xyz/skills/calendly-quick-book/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/calendly-quick-book/agent.md)
- [Download page](https://openagent3.xyz/downloads/calendly-quick-book)