Install
openclaw skills install skill-vexaSend bots to Zoom, Google Meet, and Microsoft Teams meetings. Get live transcripts, recordings, and reports. Self-hosted or cloud — no external API needed.
openclaw skills install skill-vexaSpeak directly to the user as in a natural chat. Do not output internal reasoning, plan summaries, or procedural notes ("I need to...", "According to the skill...", "I will inform..."). Reply with only what you would say to the user — conversational, warm, and to the point.
When sending messages to meeting chat (Google Meet, Teams, etc.), always use plain text — no markdown. These chat surfaces do not render markdown, so asterisks, hash headers, backticks, and bullet dashes appear as ugly raw characters. Use line breaks and spacing for structure instead.
Use the bundled CLI:
node skills/vexa/scripts/vexa.mjs ...node skills/vexa/scripts/onboard.mjs ...node skills/vexa/scripts/ingest.mjs ...node skills/vexa/scripts/audit.mjsSet for the OpenClaw process (or shell):
VEXA_API_KEY (required)VEXA_BASE_URL (optional env override — takes priority over endpoint config)The CLI supports named endpoints stored in secrets/vexa-endpoints.json. Default endpoints: prod (https://api.cloud.vexa.ai) and local (http://localhost:8000).
node skills/vexa/scripts/vexa.mjs env:listnode skills/vexa/scripts/vexa.mjs env:use localnode skills/vexa/scripts/vexa.mjs env:use prodnode skills/vexa/scripts/vexa.mjs env:set staging --url https://staging.vexa.ainode skills/vexa/scripts/vexa.mjs env:remove stagingPriority: VEXA_BASE_URL env var > vexa-endpoints.json active endpoint > default prod URL.
Always check first: node skills/vexa/scripts/onboard.mjs --check-secrets
{"secrets_ok": true} → secrets exist. Skip onboarding. Use normal flows.{"secrets_ok": false} → run onboarding. Load references/onboarding-flow.md.Webhook — proactive setup: Whenever secrets exist and you're working with Vexa, run node skills/vexa/scripts/onboard.mjs --check-webhook. If webhook_configured is false, advise adding the vexa mapping (see references/webhook-setup.md). For onboarding-only details (webhook requirements, pipeline validation, mock webhook), load references/onboarding-flow.md.
When secrets are missing: Ask them to get their key from https://vexa.ai/dashboard/api-keys and paste it in chat — you write it to skills/vexa/secrets/vexa.env. Alternatively, share the path and format so they can add it manually (better for security if they prefer not to paste the key).
Secrets location: skills/vexa/secrets/ holds env files and vexa-state.json. This dir is gitignored. When publishing the skill to ClawHub, ensure secrets/ is excluded.
Per-endpoint API keys: The CLI supports separate env files per endpoint: vexa-prod.env, vexa-local.env, etc. When switching endpoints with env:use, the matching vexa-<name>.env is loaded automatically. Falls back to vexa.env if no endpoint-specific file exists.
Non-interactive (for scripting): onboard.mjs --api_key <key> --persist yes --meeting_url "<url>" --language en --wait_seconds 60 --poll_every_seconds 10
--check-webhook. If not configured, offer to set it up so finished meetings auto-trigger reports.node skills/vexa/scripts/vexa.mjs parse:meeting-url --meeting_url "https://meet.google.com/abc-defg-hij"node skills/vexa/scripts/vexa.mjs bots:start --meeting_url "https://meet.google.com/abc-defg-hij" --bot_name "Claw" --language ennode skills/vexa/scripts/vexa.mjs bots:start --meeting_url "https://teams.live.com/meet/9387167464734?p=qxJanYOcdjN4d6UlGa" --bot_name "Claw" --language enIf a calendar tool/skill is available (for example gog):
bots:start --meeting_url ....meetings:update --name "<calendar title>" --notes "source: calendar"node skills/vexa/scripts/vexa.mjs transcripts:get --platform google_meet --native_meeting_id abc-defg-hijreferences/user-api-guide-notes.md for endpoints and notes).node skills/vexa/scripts/vexa.mjs bots:stop --meeting_url "<url>"After stopping the bot (or once the meeting has ended and transcript is finalized), create a basic meeting report:
node skills/vexa/scripts/vexa.mjs report --meeting_url "https://meet.google.com/abc-defg-hij"node skills/vexa/scripts/ingest.mjs --meeting_url "<url>"Writes to memory/meetings/YYYY-MM-DD-<slug>.md with: meeting info, summary placeholders, key decisions, action items, and full transcript.
The voice agent system prompt controls how the Vexa bot behaves in meetings (personality, language, what it does when triggered). It is stored per-user and applied when the next bot starts.
node skills/vexa/scripts/vexa.mjs voice-agent:config:getnode skills/vexa/scripts/vexa.mjs voice-agent:config:set --prompt "You are Vexa, a concise meeting assistant..."node skills/vexa/scripts/vexa.mjs voice-agent:config:resetNote: The updated prompt takes effect on the next bot started — it does not affect bots already in a meeting.
node skills/vexa/scripts/vexa.mjs bots:statusnode skills/vexa/scripts/vexa.mjs bots:start --platform google_meet --native_meeting_id abc-defg-hij --bot_name "Claw" --language ennode skills/vexa/scripts/vexa.mjs bots:config:update --platform google_meet --native_meeting_id abc-defg-hij --language esnode skills/vexa/scripts/vexa.mjs meetings:listnode skills/vexa/scripts/vexa.mjs meetings:update --platform google_meet --native_meeting_id abc-defg-hij --name "Weekly Product Sync" --participants "Alice,Bob" --languages "en" --notes "Action items captured"node skills/vexa/scripts/vexa.mjs transcripts:share --platform google_meet --native_meeting_id abc-defg-hij --ttl_seconds 3600node skills/vexa/scripts/vexa.mjs user:webhook:set --webhook_url https://your-public-url/hooks/vexanode skills/vexa/scripts/vexa.mjs recordings:list [--limit 50] [--offset 0] [--meeting_id <db_id>]node skills/vexa/scripts/vexa.mjs recordings:get <recording_id>node skills/vexa/scripts/vexa.mjs recordings:delete <recording_id> --confirm DELETEnode skills/vexa/scripts/vexa.mjs recordings:download <recording_id> <media_file_id>node skills/vexa/scripts/vexa.mjs recordings:config:getnode skills/vexa/scripts/vexa.mjs recordings:config:update --enabled true --capture_modes audio,videoGet everything about a meeting in one call — transcript, recordings, share link:
node skills/vexa/scripts/vexa.mjs meetings:bundle --meeting_url "https://meet.google.com/abc-defg-hij"node skills/vexa/scripts/vexa.mjs meetings:bundle --platform zoom --native_meeting_id 1234567890Options:
--segments — include transcript segments (omitted by default to keep output small)--no-share — skip creating a share link--no-recordings — skip recordings metadata--download-urls — resolve download URLs for each recording media file--ttl_seconds 3600 — share link TTLWhen Vexa sends a "meeting finished" webhook, the transform (scripts/vexa-transform.mjs) instructs the agent to create a report. See references/webhook-setup.md for hooks mapping config. Requires hooks.transformsDir = workspace root and transform.module = skills/vexa/scripts/vexa-transform.mjs.
node skills/vexa/scripts/vexa.mjs report --meeting_url "<url>"node skills/vexa/scripts/ingest.mjs --meeting_url "<url>" (or --platform + --native_meeting_id)node skills/vexa/scripts/audit.mjsgoogle_meet, teams, zoomnative_meeting_id must be numeric ID only.?p= in Teams URL).native_meeting_id is 10-11 digit numeric ID. Passcode (?pwd=) is optional.DELETE /meetings/{platform}/{native_meeting_id} purges transcripts and anonymizes data.
Rules:
platform + native_meeting_id first.meetings:update) whenever possible.node skills/vexa/scripts/vexa.mjs meetings:delete --platform google_meet --native_meeting_id abc-defg-hij --confirm DELETE