Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

calendly-automation日历自动化

Agent Skill

calendly-automation 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

45,459

周安装

1,857

GitHub Stars

1

下载量

14,707
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:calendly-automation(日历自动化)
来源仓库:https://github.com/sohamganatra/calendly-automation
安装命令:
openclaw skills install calendly-automation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install calendly-automation

简介

通过 Rube MCP (Composio) 自动执行 Calendly 日程安排、事件管理、受邀者跟踪、可用性检查和组织管理。始终首先在工具中搜索当前模式。

SKILL.md

name
calendly-automation
description
Automate Calendly scheduling, event management, invitee tracking, availability checks, and organization administration via Rube MCP (Composio). Always search tools first for current schemas.
requires
mcp
[rube]

Calendly Automation via Rube MCP

Automate Calendly operations including event listing, invitee management, scheduling link creation, availability queries, and organization administration through Composio's Calendly toolkit.

Prerequisites

  • Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
  • Active Calendly connection via RUBE_MANAGE_CONNECTIONS with toolkit calendly
  • Always call RUBE_SEARCH_TOOLS first to get current tool schemas
  • Many operations require the user's Calendly URI, obtained via CALENDLY_GET_CURRENT_USER

Setup

Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.

  1. Verify Rube MCP is available by confirming RUBE_SEARCH_TOOLS responds
  2. Call RUBE_MANAGE_CONNECTIONS with toolkit calendly
  3. If connection is not ACTIVE, follow the returned auth link to complete Calendly OAuth
  4. Confirm connection status shows ACTIVE before running any workflows

Core Workflows

1. List and View Scheduled Events

When to use: User wants to see their upcoming, past, or filtered Calendly events

Tool sequence:

  1. CALENDLY_GET_CURRENT_USER - Get authenticated user URI and organization URI [Prerequisite]
  2. CALENDLY_LIST_EVENTS - List events scoped by user, organization, or group [Required]
  3. CALENDLY_GET_EVENT - Get detailed info for a specific event by UUID [Optional]

Key parameters:

  • user: Full Calendly API URI (e.g., https://api.calendly.com/users/{uuid}) - NOT "me"
  • organization: Full organization URI for org-scoped queries
  • status: "active" or "canceled"
  • min_start_time / max_start_time: UTC timestamps (e.g., 2024-01-01T00:00:00.000000Z)
  • invitee_email: Filter events by invitee email (filter only, not a scope)
  • sort: "start_time:asc" or "start_time:desc"
  • count: Results per page (default 20)
  • page_token: Pagination token from previous response

Pitfalls:

  • Exactly ONE of user, organization, or group must be provided - omitting or combining scopes fails
  • The user parameter requires the full API URI, not "me" - use CALENDLY_GET_CURRENT_USER first
  • invitee_email is a filter, not a scope; you still need one of user/organization/group
  • Pagination uses count + page_token; loop until page_token is absent for complete results
  • Admin rights may be needed for organization or group scope queries

2. Manage Event Invitees

When to use: User wants to see who is booked for events or get invitee details

Tool sequence:

  1. CALENDLY_LIST_EVENTS - Find the target event(s) [Prerequisite]
  2. CALENDLY_LIST_EVENT_INVITEES - List all invitees for a specific event [Required]
  3. CALENDLY_GET_EVENT_INVITEE - Get detailed info for a single invitee [Optional]

Key parameters:

  • uuid: Event UUID (for LIST_EVENT_INVITEES)
  • event_uuid + invitee_uuid: Both required for GET_EVENT_INVITEE
  • email: Filter invitees by email address
  • status: "active" or "canceled"
  • sort: "created_at:asc" or "created_at:desc"
  • count: Results per page (default 20)

Pitfalls:

  • The uuid parameter for CALENDLY_LIST_EVENT_INVITEES is the event UUID, not the invitee UUID
  • Paginate using page_token until absent for complete invitee lists
  • Canceled invitees are excluded by default; use status: "canceled" to see them

3. Create Scheduling Links and Check Availability

When to use: User wants to generate a booking link or check available time slots

Tool sequence:

  1. CALENDLY_GET_CURRENT_USER - Get user URI [Prerequisite]
  2. CALENDLY_LIST_USER_S_EVENT_TYPES - List available event types [Required]
  3. CALENDLY_LIST_EVENT_TYPE_AVAILABLE_TIMES - Check available slots for an event type [Optional]
  4. CALENDLY_CREATE_SCHEDULING_LINK - Generate a single-use scheduling link [Required]
  5. CALENDLY_LIST_USER_AVAILABILITY_SCHEDULES - View user's availability schedules [Optional]

Key parameters:

  • owner: Event type URI (e.g., https://api.calendly.com/event_types/{uuid})
  • owner_type: "EventType" (default)
  • max_event_count: Must be exactly 1 for single-use links
  • start_time / end_time: UTC timestamps for availability queries (max 7-day range)
  • active: Boolean to filter active/inactive event types
  • user: User URI for event type listing

Pitfalls:

  • CALENDLY_CREATE_SCHEDULING_LINK can return 403 if token lacks rights or owner URI is invalid
  • CALENDLY_LIST_EVENT_TYPE_AVAILABLE_TIMES requires UTC timestamps and max 7-day range; split longer searches
  • Available times results are NOT paginated - all results returned in one response
  • Event type URIs must be full API URIs (e.g., https://api.calendly.com/event_types/...)

4. Cancel Events

When to use: User wants to cancel a scheduled Calendly event

Tool sequence:

  1. CALENDLY_LIST_EVENTS - Find the event to cancel [Prerequisite]
  2. CALENDLY_GET_EVENT - Confirm event details before cancellation [Prerequisite]
  3. CALENDLY_LIST_EVENT_INVITEES - Check who will be affected [Optional]
  4. CALENDLY_CANCEL_EVENT - Cancel the event [Required]

Key parameters:

  • uuid: Event UUID to cancel
  • reason: Optional cancellation reason (may be included in notification to invitees)

Pitfalls:

  • Cancellation is IRREVERSIBLE - always confirm with the user before calling
  • Cancellation may trigger notifications to invitees
  • Only active events can be canceled; already-canceled events return errors
  • Get explicit user confirmation before executing CALENDLY_CANCEL_EVENT

5. Manage Organization and Invitations

When to use: User wants to invite members, manage organization, or handle org invitations

Tool sequence:

  1. CALENDLY_GET_CURRENT_USER - Get user and organization context [Prerequisite]
  2. CALENDLY_GET_ORGANIZATION - Get organization details [Optional]
  3. CALENDLY_LIST_ORGANIZATION_INVITATIONS - Check existing invitations [Optional]
  4. CALENDLY_CREATE_ORGANIZATION_INVITATION - Send an org invitation [Required]
  5. CALENDLY_REVOKE_USER_S_ORGANIZATION_INVITATION - Revoke a pending invitation [Optional]
  6. CALENDLY_REMOVE_USER_FROM_ORGANIZATION - Remove a member [Optional]

Key parameters:

  • uuid: Organization UUID
  • email: Email address of user to invite
  • status: Filter invitations by "pending", "accepted", or "declined"

Pitfalls:

  • Only org owners/admins can manage invitations and removals; others get authorization errors
  • Duplicate active invitations for the same email are rejected - check existing invitations first
  • Organization owners cannot be removed via CALENDLY_REMOVE_USER_FROM_ORGANIZATION
  • Invitation statuses include pending, accepted, declined, and revoked - handle each appropriately

Common Patterns

ID Resolution

Calendly uses full API URIs as identifiers, not simple IDs:

  • Current user URI: CALENDLY_GET_CURRENT_USER returns resource.uri (e.g., https://api.calendly.com/users/{uuid})
  • Organization URI: Found in current user response at resource.current_organization
  • Event UUID: Extract from event URI or list responses
  • Event type URI: From CALENDLY_LIST_USER_S_EVENT_TYPES response

Important: Never use "me" as a user parameter in list/filter endpoints. Always resolve to the full URI first.

Pagination

Most Calendly list endpoints use token-based pagination:

  • Set count for page size (default 20)
  • Follow page_token from pagination.next_page_token until absent
  • Sort with field:direction format (e.g., start_time:asc, created_at:desc)

Time Handling

  • All timestamps must be in UTC format: yyyy-MM-ddTHH:mm:ss.ffffffZ
  • Use min_start_time / max_start_time for date range filtering on events
  • Available times queries have a maximum 7-day range; split longer searches into multiple calls

Known Pitfalls

URI Formats

  • All entity references use full Calendly API URIs (e.g., https://api.calendly.com/users/{uuid})
  • Never pass bare UUIDs where URIs are expected, and never pass "me" to list endpoints
  • Extract UUIDs from URIs when tools expect UUID parameters (e.g., CALENDLY_GET_EVENT)

Scope Requirements

  • CALENDLY_LIST_EVENTS requires exactly one scope (user, organization, or group) - no more, no less
  • Organization/group scoped queries may require admin privileges
  • Token scope determines which operations are available; 403 errors indicate insufficient permissions

Data Relationships

  • Events have invitees (attendees who booked)
  • Event types define scheduling pages (duration, availability rules)
  • Organizations contain users and groups
  • Scheduling links are tied to event types, not directly to events

Rate Limits

  • Calendly API has rate limits; avoid tight loops over large datasets
  • Paginate responsibly and add delays for batch operations

Quick Reference

TaskTool SlugKey Params
Get current userCALENDLY_GET_CURRENT_USER(none)
Get user by UUIDCALENDLY_GET_USERuuid
List eventsCALENDLY_LIST_EVENTSuser, status, min_start_time
Get event detailsCALENDLY_GET_EVENTuuid
Cancel eventCALENDLY_CANCEL_EVENTuuid, reason
List inviteesCALENDLY_LIST_EVENT_INVITEESuuid, status, email
Get inviteeCALENDLY_GET_EVENT_INVITEEevent_uuid, invitee_uuid
List event typesCALENDLY_LIST_USER_S_EVENT_TYPESuser, active
Get event typeCALENDLY_GET_EVENT_TYPEuuid
Check availabilityCALENDLY_LIST_EVENT_TYPE_AVAILABLE_TIMESevent type URI, start_time, end_time
Create scheduling linkCALENDLY_CREATE_SCHEDULING_LINKowner, max_event_count
List availability schedulesCALENDLY_LIST_USER_AVAILABILITY_SCHEDULESuser URI
Get organizationCALENDLY_GET_ORGANIZATIONuuid
Invite to orgCALENDLY_CREATE_ORGANIZATION_INVITATIONuuid, email
List org invitationsCALENDLY_LIST_ORGANIZATION_INVITATIONSuuid, status
Revoke org invitationCALENDLY_REVOKE_USER_S_ORGANIZATION_INVITATIONorg UUID, invitation UUID
Remove from orgCALENDLY_REMOVE_USER_FROM_ORGANIZATIONmembership UUID

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

84.61%
按下载量换算12,444

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills