Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

vexavexa 效率

Agent Skill

vexa 用于辅助部署、云资源、容器和基础设施运维,适合在 OpenClaw 中需要检查配置、整理部署步骤或排查环境问题时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

40,966

周安装

1,690

GitHub Stars

2

下载量

13,385
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install vexa

简介

支持 Zoom、Teams 等会议自动接入与实时转录。

  • 适合远程协作、会议纪要整理与云资源管理场景。vexa 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 可获取录音、文字记录与参会报告,集成 Vexa Cloud 使用。
  • 安装命令:openclaw skills install vexa。
  • 需授权麦克风与网络访问权限,注意隐私数据保护。

SKILL.md

name
vexa
description
Send bots to Zoom, Google Meet, and Microsoft Teams meetings. Get live transcripts, recordings, and reports. Works with Vexa Cloud or your own self-hosted instance.

Chat-oriented interactions

Speak 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.

Plain text formatting for meeting chat

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.mjs

Environment

Required: VEXA_API_KEY — get yours from https://vexa.ai/dashboard/api-keys

Set VEXA_API_KEY in your environment or create skills/vexa/secrets/vexa.env manually with:

VEXA_API_KEY=your_key_here

Optional: VEXA_BASE_URL (env override — takes priority over endpoint config)

Endpoint switching (prod / local dev)

The CLI supports named endpoints stored in secrets/vexa-endpoints.json. Default endpoints: prod (https://api.cloud.vexa.ai) and local (http://localhost:8000).

  • List endpoints & active env: node skills/vexa/scripts/vexa.mjs env:list
  • Switch to local dev: node skills/vexa/scripts/vexa.mjs env:use local
  • Switch to prod: node skills/vexa/scripts/vexa.mjs env:use prod
  • Add custom endpoint: node skills/vexa/scripts/vexa.mjs env:set staging --url https://staging.vexa.ai
  • Remove endpoint: node skills/vexa/scripts/vexa.mjs env:remove staging

Priority: VEXA_BASE_URL env var > vexa-endpoints.json active endpoint > default prod URL.

Secrets-first check (before any onboarding)

Always check first: node skills/vexa/scripts/onboard.mjs --check-secrets

  • If output is {"secrets_ok": true} → secrets exist. Skip onboarding. Use normal flows.
  • If output is {"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: Direct the user to get their key from https://vexa.ai/dashboard/api-keys and set it up themselves. They should either set VEXA_API_KEY in their environment or create skills/vexa/secrets/vexa.env manually with VEXA_API_KEY=their_key_here. Do not ask users to paste API keys in chat.

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

Quick workflows

1) User drops a meeting link → send bot

  • After successfully sending the bot, proactively run --check-webhook. If not configured, offer to set it up so finished meetings auto-trigger reports.
  • Parse/normalize link (or pass explicit ID):

- node skills/vexa/scripts/vexa.mjs parse:meeting-url --meeting_url "https://meet.google.com/abc-defg-hij"

  • Start bot directly from URL:

- node skills/vexa/scripts/vexa.mjs bots:start --meeting_url "https://meet.google.com/abc-defg-hij" --bot_name "Claw" --language en - node skills/vexa/scripts/vexa.mjs bots:start --meeting_url "https://teams.live.com/meet/9387167464734?p=qxJanYOcdjN4d6UlGa" --bot_name "Claw" --language en

2) Start bot from calendar meeting links

If a calendar tool/skill is available (for example gog):

  1. Fetch upcoming events.
  2. Extract meeting links (Google Meet/Teams).
  3. For each selected event, call bots:start --meeting_url ....
  4. Optionally save event title into Vexa metadata:

- meetings:update --name "<calendar title>" --notes "source: calendar"

3) Read transcript during meeting or after meeting

  • Poll current transcript:

- node skills/vexa/scripts/vexa.mjs transcripts:get --platform google_meet --native_meeting_id abc-defg-hij

  • For near real-time streaming, use Vexa WebSocket API (see references/user-api-guide-notes.md for endpoints and notes).
  • After transcript is available, summarize and store key updates.

4) Stop bot

  • node skills/vexa/scripts/vexa.mjs bots:stop --meeting_url "<url>"

5) Create meeting report (after meeting finished)

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"
  • or 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.

6) Get or update the Ultravox voice agent system prompt

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.

  • Get current prompt (null = using service default):

- node skills/vexa/scripts/vexa.mjs voice-agent:config:get

  • Set a custom prompt:

- node skills/vexa/scripts/vexa.mjs voice-agent:config:set --prompt "You are Vexa, a concise meeting assistant..."

  • Reset to service default:

- node skills/vexa/scripts/vexa.mjs voice-agent:config:reset

Note: The updated prompt takes effect on the next bot started — it does not affect bots already in a meeting.

Core commands

  • Bot status:

- node skills/vexa/scripts/vexa.mjs bots:status

  • Request bot (explicit fields):

- node skills/vexa/scripts/vexa.mjs bots:start --platform google_meet --native_meeting_id abc-defg-hij --bot_name "Claw" --language en

  • Update active bot language:

- node skills/vexa/scripts/vexa.mjs bots:config:update --platform google_meet --native_meeting_id abc-defg-hij --language es

  • List meetings:

- node skills/vexa/scripts/vexa.mjs meetings:list

  • Update metadata (title/participants/languages/notes):

- node 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"

  • Generate share URL:

- node skills/vexa/scripts/vexa.mjs transcripts:share --platform google_meet --native_meeting_id abc-defg-hij --ttl_seconds 3600

  • Set Vexa user webhook URL:

- node skills/vexa/scripts/vexa.mjs user:webhook:set --webhook_url https://your-public-url/hooks/vexa

Recordings

  • List recordings:

- node skills/vexa/scripts/vexa.mjs recordings:list [--limit 50] [--offset 0] [--meeting_id <db_id>]

  • Get a single recording:

- node skills/vexa/scripts/vexa.mjs recordings:get <recording_id>

  • Delete a recording (destructive):

- node skills/vexa/scripts/vexa.mjs recordings:delete <recording_id> --confirm DELETE

  • Get download URL for a media file:

- node skills/vexa/scripts/vexa.mjs recordings:download <recording_id> <media_file_id>

  • Get recording config:

- node skills/vexa/scripts/vexa.mjs recordings:config:get

  • Update recording config:

- node skills/vexa/scripts/vexa.mjs recordings:config:update --enabled true --capture_modes audio,video

Meeting bundle (post-meeting)

Get 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 1234567890

Options:

  • --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 TTL

Webhook (meeting finished → report) — optional

Optionally, Vexa can POST a "meeting finished" webhook to trigger automatic report creation. This requires the user to manually configure their openclaw.json — see references/webhook-setup.md for the hooks mapping config. The skill does NOT modify openclaw.json automatically. Users who want this feature add hooks.transformsDir and the vexa mapping to their config themselves.

OpenClaw ingestion helpers

  • Create basic meeting report (meeting info, transcript, placeholders for summary/decisions/actions):

- node skills/vexa/scripts/vexa.mjs report --meeting_url "<url>" - node skills/vexa/scripts/ingest.mjs --meeting_url "<url>" (or --platform + --native_meeting_id)

  • Audit meetings for likely test calls / cleanup candidates:

- node skills/vexa/scripts/audit.mjs

Platform rules

  • Supported: google_meet, teams, zoom
  • Teams native_meeting_id must be numeric ID only.
  • Teams bot join requires passcode (from ?p= in Teams URL).
  • Zoom native_meeting_id is 10-11 digit numeric ID. Passcode (?pwd=) is optional.

Deletion safety (strict)

DELETE /meetings/{platform}/{native_meeting_id} purges transcripts and anonymizes data.

Rules:

  1. Never call delete without explicit user request for that exact meeting.
  2. Verify platform + native_meeting_id first.
  3. Prefer non-destructive cleanup (meetings:update) whenever possible.
  4. Require guard flag:

- node skills/vexa/scripts/vexa.mjs meetings:delete --platform google_meet --native_meeting_id abc-defg-hij --confirm DELETE

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

89.45%
按下载量换算11,973

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills