Awesome-omni-skills calendly-automation
Calendly Automation via Rube MCP workflow skill. Use this skill when the user needs Automate Calendly scheduling, event management, invitee tracking, availability checks, and organization administration via Rube MCP (Composio). Always search tools first for current schemas and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
git clone https://github.com/diegosouzapw/awesome-omni-skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/calendly-automation" ~/.claude/skills/diegosouzapw-awesome-omni-skills-calendly-automation && rm -rf "$T"
skills/calendly-automation/SKILL.mdCalendly Automation via Rube MCP
Overview
This public intake copy packages
plugins/antigravity-awesome-skills-claude/skills/calendly-automation from https://github.com/sickn33/antigravity-awesome-skills into the native Omni Skills editorial shape without hiding its origin.
Use it when the operator needs the upstream workflow, support files, and repository context to stay intact while the public validator and private enhancer continue their normal downstream flow.
This intake keeps the copied upstream files intact and uses
metadata.json plus ORIGIN.md as the provenance anchor for review.
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.
Imported source sections that did not map cleanly to the public headings are still preserved below or in the support files. Notable imported sections: Prerequisites, Common Patterns, Known Pitfalls, Limitations.
When to Use This Skill
Use this section as the trigger filter. It should make the activation boundary explicit before the operator loads files, runs commands, or opens a pull request.
- This skill is applicable to execute the workflow or actions described in the overview.
- Use when the request clearly matches the imported source intent: Automate Calendly scheduling, event management, invitee tracking, availability checks, and organization administration via Rube MCP (Composio). Always search tools first for current schemas.
- Use when the operator should preserve upstream workflow detail instead of rewriting the process from scratch.
- Use when provenance needs to stay visible in the answer, PR, or review packet.
- Use when copied upstream references, examples, or scripts materially improve the answer.
- Use when the workflow should remain reviewable in the public intake repo before the private enhancer takes over.
Operating Table
| Situation | Start here | Why it matters |
|---|---|---|
| First-time use | | Confirms repository, branch, commit, and imported path before touching the copied workflow |
| Provenance review | | Gives reviewers a plain-language audit trail for the imported source |
| Workflow execution | | Starts with the smallest copied file that materially changes execution |
| Supporting context | | Adds the next most relevant copied source file without loading the entire package |
| Handoff decision | | Helps the operator switch to a stronger native skill when the task drifts |
Workflow
This workflow is intentionally editorial and operational at the same time. It keeps the imported source useful to the operator while still satisfying the public intake standards that feed the downstream enhancer flow.
- Verify Rube MCP is available by confirming RUBESEARCHTOOLS responds
- Call RUBEMANAGECONNECTIONS with toolkit calendly
- If connection is not ACTIVE, follow the returned auth link to complete Calendly OAuth
- Confirm connection status shows ACTIVE before running any workflows
- CALENDLYGETCURRENT_USER - Get authenticated user URI and organization URI [Prerequisite]
- CALENDLYLISTEVENTS - List events scoped by user, organization, or group [Required]
- CALENDLYGETEVENT - Get detailed info for a specific event by UUID [Optional]
Imported Workflow Notes
Imported: 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.
- Verify Rube MCP is available by confirming
respondsRUBE_SEARCH_TOOLS - Call
with toolkitRUBE_MANAGE_CONNECTIONScalendly - If connection is not ACTIVE, follow the returned auth link to complete Calendly OAuth
- Confirm connection status shows ACTIVE before running any workflows
Imported: Core Workflows
1. List and View Scheduled Events
When to use: User wants to see their upcoming, past, or filtered Calendly events
Tool sequence:
- Get authenticated user URI and organization URI [Prerequisite]CALENDLY_GET_CURRENT_USER
- List events scoped by user, organization, or group [Required]CALENDLY_LIST_EVENTS
- Get detailed info for a specific event by UUID [Optional]CALENDLY_GET_EVENT
Key parameters:
: Full Calendly API URI (e.g.,user
) - NOThttps://api.calendly.com/users/{uuid}"me"
: Full organization URI for org-scoped queriesorganization
:status
or"active""canceled"
/min_start_time
: UTC timestamps (e.g.,max_start_time
)2024-01-01T00:00:00.000000Z
: Filter events by invitee email (filter only, not a scope)invitee_email
:sort
or"start_time:asc""start_time:desc"
: Results per page (default 20)count
: Pagination token from previous responsepage_token
Pitfalls:
- Exactly ONE of
,user
, ororganization
must be provided - omitting or combining scopes failsgroup - The
parameter requires the full API URI, notuser
- use"me"
firstCALENDLY_GET_CURRENT_USER
is a filter, not a scope; you still need one of user/organization/groupinvitee_email- Pagination uses
+count
; loop untilpage_token
is absent for complete resultspage_token - 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:
- Find the target event(s) [Prerequisite]CALENDLY_LIST_EVENTS
- List all invitees for a specific event [Required]CALENDLY_LIST_EVENT_INVITEES
- Get detailed info for a single invitee [Optional]CALENDLY_GET_EVENT_INVITEE
Key parameters:
: Event UUID (foruuid
)LIST_EVENT_INVITEES
+event_uuid
: Both required forinvitee_uuidGET_EVENT_INVITEE
: Filter invitees by email addressemail
:status
or"active""canceled"
:sort
or"created_at:asc""created_at:desc"
: Results per page (default 20)count
Pitfalls:
- The
parameter foruuid
is the event UUID, not the invitee UUIDCALENDLY_LIST_EVENT_INVITEES - Paginate using
until absent for complete invitee listspage_token - Canceled invitees are excluded by default; use
to see themstatus: "canceled"
3. Create Scheduling Links and Check Availability
When to use: User wants to generate a booking link or check available time slots
Tool sequence:
- Get user URI [Prerequisite]CALENDLY_GET_CURRENT_USER
- List available event types [Required]CALENDLY_LIST_USER_S_EVENT_TYPES
- Check available slots for an event type [Optional]CALENDLY_LIST_EVENT_TYPE_AVAILABLE_TIMES
- Generate a single-use scheduling link [Required]CALENDLY_CREATE_SCHEDULING_LINK
- View user's availability schedules [Optional]CALENDLY_LIST_USER_AVAILABILITY_SCHEDULES
Key parameters:
: Event type URI (e.g.,owner
)https://api.calendly.com/event_types/{uuid}
:owner_type
(default)"EventType"
: Must be exactlymax_event_count
for single-use links1
/start_time
: UTC timestamps for availability queries (max 7-day range)end_time
: Boolean to filter active/inactive event typesactive
: User URI for event type listinguser
Pitfalls:
can return 403 if token lacks rights or owner URI is invalidCALENDLY_CREATE_SCHEDULING_LINK
requires UTC timestamps and max 7-day range; split longer searchesCALENDLY_LIST_EVENT_TYPE_AVAILABLE_TIMES- 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:
- Find the event to cancel [Prerequisite]CALENDLY_LIST_EVENTS
- Confirm event details before cancellation [Prerequisite]CALENDLY_GET_EVENT
- Check who will be affected [Optional]CALENDLY_LIST_EVENT_INVITEES
- Cancel the event [Required]CALENDLY_CANCEL_EVENT
Key parameters:
: Event UUID to canceluuid
: Optional cancellation reason (may be included in notification to invitees)reason
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:
- Get user and organization context [Prerequisite]CALENDLY_GET_CURRENT_USER
- Get organization details [Optional]CALENDLY_GET_ORGANIZATION
- Check existing invitations [Optional]CALENDLY_LIST_ORGANIZATION_INVITATIONS
- Send an org invitation [Required]CALENDLY_CREATE_ORGANIZATION_INVITATION
- Revoke a pending invitation [Optional]CALENDLY_REVOKE_USER_S_ORGANIZATION_INVITATION
- Remove a member [Optional]CALENDLY_REMOVE_USER_FROM_ORGANIZATION
Key parameters:
: Organization UUIDuuid
: Email address of user to inviteemail
: Filter invitations bystatus
,"pending"
, or"accepted""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
Imported: Prerequisites
- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
- Active Calendly connection via
with toolkitRUBE_MANAGE_CONNECTIONScalendly - Always call
first to get current tool schemasRUBE_SEARCH_TOOLS - Many operations require the user's Calendly URI, obtained via
CALENDLY_GET_CURRENT_USER
Examples
Example 1: Ask for the upstream workflow directly
Use @calendly-automation to handle <task>. Start from the copied upstream workflow, load only the files that change the outcome, and keep provenance visible in the answer.
Explanation: This is the safest starting point when the operator needs the imported workflow, but not the entire repository.
Example 2: Ask for a provenance-grounded review
Review @calendly-automation against metadata.json and ORIGIN.md, then explain which copied upstream files you would load first and why.
Explanation: Use this before review or troubleshooting when you need a precise, auditable explanation of origin and file selection.
Example 3: Narrow the copied support files before execution
Use @calendly-automation for <task>. Load only the copied references, examples, or scripts that change the outcome, and name the files explicitly before proceeding.
Explanation: This keeps the skill aligned with progressive disclosure instead of loading the whole copied package by default.
Example 4: Build a reviewer packet
Review @calendly-automation using the copied upstream files plus provenance, then summarize any gaps before merge.
Explanation: This is useful when the PR is waiting for human review and you want a repeatable audit packet.
Best Practices
Treat the generated public skill as a reviewable packaging layer around the upstream repository. The goal is to keep provenance explicit and load only the copied source material that materially improves execution.
- Keep the imported skill grounded in the upstream repository; do not invent steps that the source material cannot support.
- Prefer the smallest useful set of support files so the workflow stays auditable and fast to review.
- Keep provenance, source commit, and imported file paths visible in notes and PR descriptions.
- Point directly at the copied upstream files that justify the workflow instead of relying on generic review boilerplate.
- Treat generated examples as scaffolding; adapt them to the concrete task before execution.
- Route to a stronger native skill when architecture, debugging, design, or security concerns become dominant.
Troubleshooting
Problem: The operator skipped the imported context and answered too generically
Symptoms: The result ignores the upstream workflow in
plugins/antigravity-awesome-skills-claude/skills/calendly-automation, fails to mention provenance, or does not use any copied source files at all.
Solution: Re-open metadata.json, ORIGIN.md, and the most relevant copied upstream files. Load only the files that materially change the answer, then restate the provenance before continuing.
Problem: The imported workflow feels incomplete during review
Symptoms: Reviewers can see the generated
SKILL.md, but they cannot quickly tell which references, examples, or scripts matter for the current task.
Solution: Point at the exact copied references, examples, scripts, or assets that justify the path you took. If the gap is still real, record it in the PR instead of hiding it.
Problem: The task drifted into a different specialization
Symptoms: The imported skill starts in the right place, but the work turns into debugging, architecture, design, security, or release orchestration that a native skill handles better. Solution: Use the related skills section to hand off deliberately. Keep the imported provenance visible so the next skill inherits the right context instead of starting blind.
Related Skills
- Use when the work is better handled by that native specialization after this imported skill establishes context.@burp-suite-testing
- Use when the work is better handled by that native specialization after this imported skill establishes context.@burpsuite-project-parser
- Use when the work is better handled by that native specialization after this imported skill establishes context.@business-analyst
- Use when the work is better handled by that native specialization after this imported skill establishes context.@busybox-on-windows
Additional Resources
Use this support matrix and the linked files below as the operator packet for this imported skill. They should reflect real copied source material, not generic scaffolding.
| Resource family | What it gives the reviewer | Example path |
|---|---|---|
| copied reference notes, guides, or background material from upstream | |
| worked examples or reusable prompts copied from upstream | |
| upstream helper scripts that change execution or validation | |
| routing or delegation notes that are genuinely part of the imported package | |
| supporting assets or schemas copied from the source package | |
Imported Reference Notes
Imported: Quick Reference
| Task | Tool Slug | Key Params |
|---|---|---|
| Get current user | | (none) |
| Get user by UUID | | |
| List events | | , , |
| Get event details | | |
| Cancel event | | , |
| List invitees | | , , |
| Get invitee | | , |
| List event types | | , |
| Get event type | | |
| Check availability | | event type URI, , |
| Create scheduling link | | , |
| List availability schedules | | user URI |
| Get organization | | |
| Invite to org | | , |
| List org invitations | | , |
| Revoke org invitation | | org UUID, invitation UUID |
| Remove from org | | membership UUID |
Imported: Common Patterns
ID Resolution
Calendly uses full API URIs as identifiers, not simple IDs:
- Current user URI:
returnsCALENDLY_GET_CURRENT_USER
(e.g.,resource.uri
)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
responseCALENDLY_LIST_USER_S_EVENT_TYPES
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
for page size (default 20)count - Follow
frompage_token
until absentpagination.next_page_token - Sort with
format (e.g.,field:direction
,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
for date range filtering on eventsmax_start_time - Available times queries have a maximum 7-day range; split longer searches into multiple calls
Imported: 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
to list endpoints"me" - Extract UUIDs from URIs when tools expect UUID parameters (e.g.,
)CALENDLY_GET_EVENT
Scope Requirements
requires exactly one scope (user, organization, or group) - no more, no lessCALENDLY_LIST_EVENTS- 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
Imported: Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.