skills/calcom/SKILL.md
Cal.com scheduling and booking management. Use to check Garrett's calendar, create bookings, view availability, and manage appointments for all three businesses (DJ, Real Estate, Cana).
npx skillsauth add garrettroi/open-manus calcomInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Manages Garrett's calendar and bookings via the self-hosted Cal.com instance.
Instance URL: https://calcom-web-app-production-5fdf.up.railway.app
vault_client.py set CALCOM_API_KEY <key>python3 /app/skills/calcom/calcom_client.py list-bookings --status upcoming
python3 /app/skills/calcom/calcom_client.py list-event-types
python3 /app/skills/calcom/calcom_client.py create-booking \
--event-type-id 1 \
--name "John Smith" \
--email "[email protected]" \
--start "2026-04-20T14:00:00Z"
python3 /app/skills/calcom/calcom_client.py get-availability \
--event-type-id 1 \
--date-from "2026-04-15" \
--date-to "2026-04-20"
python3 /app/skills/calcom/calcom_client.py cancel-booking \
--id 123 \
--reason "Client request"
After logging in, create these event types:
| Event Type | Duration | Business | Description | |------------|----------|----------|-------------| | DJ Consultation | 30 min | Vows & Vinyl | Initial DJ booking inquiry | | Real Estate Consultation | 45 min | McGarry Homes | First-time buyer consultation | | Homebuyer Webinar | 60 min | McGarry Homes | Group webinar for engaged couples | | Cana Vendor Inquiry | 20 min | Cana Collective | Vendor onboarding call | | Photo Booth Inquiry | 20 min | Vows & Vinyl | Photo booth add-on discussion |
development
# Voice Sanitizer This skill cleans up text before it is sent to the Text-to-Speech (TTS) engine. It removes technical jargon, code blocks, and long URLs to ensure the agent sounds natural and conversational in voice chat. ## Usage To sanitize text for speech, run the following command in the terminal: ```bash python3 /app/skills/voice_sanitizer/sanitizer.py "Your long, technical text with `code` and https://links.com/long-url" ``` ### Example Output ```text Your long, technical text with a
tools
Professional AI video production workflow. Use when creating videos, short films, commercials, or any video content using AI generation tools.
tools
Secure API key access from the centralized vault. Fetch keys on-demand without storing them in environment variables.
testing
# Task Board — Persistent Task Tracking for Open Manus This skill provides a shared task board backed by Redis. Harmony uses it to track delegated work across all agents, and agents use it to report progress and completion. ## When to Use - **Harmony**: Use this whenever you delegate a task to an agent. Add the task to the board, then check the board periodically to follow up. - **Worker Agents**: Use this to update your task status or mark tasks as complete. ## Commands ### Add a new task