Install
openclaw skills install oo-calendlyCalendly (calendly.com). Use this skill for ANY Calendly request — reading, creating, updating, and deleting data. Whenever a task involves Calendly, use this skill instead of calling the API directly.
openclaw skills install oo-calendlyOperate Calendly through your OOMOL-connected account. This skill calls the calendly connector with the oo CLI; OOMOL injects credentials server-side, so you never handle raw tokens.
Category: Productivity. Exposes 37 action(s).
Assume the user has already installed the oo CLI, signed in, and connected Calendly. Do not run oo auth login or open the connection URL proactively — just run the action. Fall back to First-time setup only when a command actually fails with an auth or connection error.
1. Inspect the contract to get the authoritative input/output schema before building a payload:
oo connector schema "calendly" --action "<action_name>"
2. Run the action with a JSON payload that matches the input schema:
oo connector run "calendly" --action "<action_name>" --data '<json>' --json
--data takes a JSON object string or @path/to/file.json; omit it to send {}.{ "data": ..., "meta": { "executionId": "..." } }; the execution id lives under meta.executionId.Each action below links to a reference file with its purpose and exact commands. Read the linked file, then fetch the live schema with oo connector schema before constructing --data.
cancel_scheduled_event — Cancel one Calendly scheduled event by scheduled-event URI.create_event_invitee — Create one Calendly invitee booking for a confirmed available start time.create_invitee_no_show — Mark one Calendly invitee as a no-show by invitee URI.create_organization_invitation — Create one organization invitation for a Calendly organization.create_share — Create one customized single-use share from an existing Calendly event type.create_single_use_scheduling_link — Create one single-use scheduling link from an existing Calendly event type without customization.create_webhook_subscription — Create one Calendly webhook subscription for an organization or one user.delete_invitee_no_show — Delete one Calendly invitee no-show by no-show URI.delete_organization_membership — Delete one Calendly organization membership by membership URI.delete_webhook_subscription — Delete one Calendly webhook subscription by URI.get_current_user — Retrieve the authenticated Calendly user for the connected personal access token.get_event_invitee — Retrieve one Calendly invitee by invitee URI.get_event_type — Retrieve one Calendly event type by event type URI.get_invitee_no_show — Retrieve one Calendly invitee no-show by no-show URI.get_organization — Retrieve one Calendly organization by organization URI.get_organization_membership — Retrieve one Calendly organization membership by membership URI.get_routing_form — Retrieve one Calendly routing form by routing-form URI.get_routing_form_submission — Retrieve one Calendly routing form submission by submission URI.get_scheduled_event — Retrieve one Calendly scheduled event by scheduled-event URI.get_user — Retrieve one Calendly user by user URI.get_user_availability_schedule — Retrieve one Calendly user availability schedule by schedule URI.get_webhook_subscription — Retrieve one Calendly webhook subscription by URI.list_event_invitees — List invitees for one Calendly scheduled event.list_event_type_availability_schedules — List the official Calendly availability schedules attached to one event type.list_event_type_available_times — List available time slots for one Calendly event type within a 7-day window.list_event_types — List Calendly event types for exactly one user or one organization, including scheduling URLs.list_organization_invitations — List organization invitations for one Calendly organization.list_organization_memberships — List Calendly organization memberships for one organization or one user.list_routing_form_submissions — List Calendly routing form submissions for one routing form.list_routing_forms — List Calendly routing forms for one organization.list_scheduled_events — List Calendly scheduled events for exactly one user or one organization.list_user_availability_schedules — List user availability schedules for one Calendly user.list_user_busy_times — List busy time slots for one Calendly user within a 7-day window.list_user_meeting_locations — List the configured meeting locations for one Calendly user.list_webhook_subscriptions — List Calendly webhook subscriptions for an organization or one user.revoke_organization_invitation — Revoke one organization invitation from a Calendly organization.update_event_type_availability_schedule — Update the official Calendly availability schedule for one event type.These are one-time steps — do not repeat them on every call. Run a step only when a command fails for the matching reason.
oo: command not found — install the oo CLI (other platforms: https://cli.oomol.com/install-guide.md):
curl -fsSL https://cli.oomol.com/install.sh | bash # macOS / Linux
irm https://cli.oomol.com/install.ps1 | iex # Windows PowerShell
Not signed in / authentication error — sign in to your OOMOL account once:
oo auth login
scope_missing / credential_expired / app_not_ready / app_not_found — Calendly is not connected, or the connection expired or lacks a scope. Connect once (auth type: OAuth2, API key) at:
https://console.oomol.com/app-connections?provider=calendly
HTTP 402 / OOMOL_INSUFFICIENT_CREDIT — billing stop. Recharge at https://console.oomol.com/billing/token-recharge before retrying.