# Send Video Chat With Me to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "videochat-withme",
    "name": "Video Chat With Me",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/sxu75374/videochat-withme",
    "canonicalUrl": "https://clawhub.ai/sxu75374/videochat-withme",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/videochat-withme",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=videochat-withme",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "assets/index.html",
      "scripts/call.sh",
      "scripts/server.py",
      "scripts/setup.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/videochat-withme"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/videochat-withme",
    "downloadUrl": "https://openagent3.xyz/downloads/videochat-withme",
    "agentUrl": "https://openagent3.xyz/skills/videochat-withme/agent",
    "manifestUrl": "https://openagent3.xyz/skills/videochat-withme/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/videochat-withme/agent.md"
  }
}
```
## Documentation

### videochat-withme

Real-time video call with your OpenClaw agent — full personality, memory, and vision.

### First-Time Setup

New users run once after installing the skill:

bash skills/videochat-withme/scripts/setup.sh

This handles everything: dependencies, Groq API key, SSL certs, launchd service.

### Prerequisites

macOS (launchd required)
Python 3.10+, ffmpeg
OpenClaw gateway running with chatCompletions enabled

### Groq API Key (required for voice recognition)

Get a free key at: https://console.groq.com/keys
Save it:
mkdir -p ~/.openclaw/secrets
echo "your-key-here" > ~/.openclaw/secrets/groq_api_key.txt

Or set env var: export GROQ_API_KEY="your-key-here"

### Enable chatCompletions

Add to ~/.openclaw/openclaw.json:

{
  "gateway": {
    "http": {
      "endpoints": {
        "chatCompletions": { "enabled": true }
      }
    }
  }
}

Then restart OpenClaw.

### How to Use (Agent Instructions)

When the user requests a video/voice call:

Step 1: Check if service is running:

curl -sk https://localhost:8766/api/config 2>/dev/null || curl -s http://localhost:8766/api/config 2>/dev/null

Step 2: If no response, setup needed:

Check Groq key: cat ~/.openclaw/secrets/groq_api_key.txt 2>/dev/null

If missing, ask user to get one at https://console.groq.com/keys
Save it: echo "key" > ~/.openclaw/secrets/groq_api_key.txt


Ask user: "What name should I display for you in the video call?"
Run setup:
bash skills/videochat-withme/scripts/setup.sh --auto --agent-name "YourName" --user-name "TheirName"

Step 3: Initiate the call based on context:

Determine how the user is connecting and pick the best method:

User is at the computer (message from webchat/desktop):
bash skills/videochat-withme/scripts/call.sh

This pops up a macOS incoming call notification → user clicks Accept → browser opens.


User is on mobile/remote (message from Telegram/phone):
Pick the right URL automatically:
# Prefer Tailscale IP (works from any network)
TS_IP=$(tailscale ip -4 2>/dev/null)
# Fallback to local IP (same WiFi only)
LOCAL_IP=$(python3 -c "import socket; s=socket.socket(socket.AF_INET,socket.SOCK_DGRAM); s.connect(('8.8.8.8',80)); print(s.getsockname()[0]); s.close()" 2>/dev/null)


If Tailscale is available → send https://<tailscale-ip>:8766 (works everywhere)
Otherwise → send https://<local-ip>:8766 (same WiFi only)
Note: first visit requires tapping "Advanced → Continue" (self-signed cert)

### Architecture

🎤 Voice → Groq Whisper (STT)
📷 Camera → base64 frame
    ↓
OpenClaw /v1/chat/completions → Your Agent
    ↓
edge-tts (TTS) → 🔊 Audio playback

### Scripts

Agent runs these automatically:

ScriptWhensetup.sh --autoFirst use (service not running)call.shEvery call request

User can run manually if needed:

ScriptPurposesetup.shInteractive setup (without --auto)start.shStart servicestop.shStop service

### Configuration

VariableDefaultDescriptionGROQ_API_KEY(secrets file)Groq API key for Whisper STTPORT8766Server portAGENT_NAMEAI AssistantDisplay name for the agentUSER_NAMEUserDisplay name for the userSSL_CERT(auto-detect)Path to SSL certificateSSL_KEY(auto-detect)Path to SSL private key
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: sxu75374
- Version: 1.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/videochat-withme)
- [Send to Agent page](https://openagent3.xyz/skills/videochat-withme/agent)
- [JSON manifest](https://openagent3.xyz/skills/videochat-withme/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/videochat-withme/agent.md)
- [Download page](https://openagent3.xyz/downloads/videochat-withme)