Office Document Editor
专业的 DOCX/PPTX 文档编辑,支持修订追踪、格式保留、高亮、删除线和 Git 版本控制。
Professional DOCX/PPTX document editing with tracked changes, formatting preservation, highlights, strikethrough, and Git version control.
clawhub install office-document-editor实时 AI 视频聊天工具,通过 OpenClaw 代理路由,集成 Groq Whisper 云端语音识别。
Real-time AI video chat that routes through your OpenClaw agent. Uses Groq Whisper (cloud STT),
# 安装 Skill(会下载 SKILL.md 到 .claude/skills/) clawhub install videochat-withme # 之后直接对 Claude 说"用 Video Chat With Me 帮我…"即可
# 同样的安装命令,兼容所有支持 SKILL.md 的 AI 编程工具 clawhub install videochat-withme
此 Skill 兼容 OpenClaw 标准。 安装后自动生成 SKILL.md 文件,任何支持 OpenClaw 协议的 AI Agent(Claude Code、Cursor、Windsurf 等)均可直接调用。
需要 Groq API 密钥和 OpenClaw agent 配置,云端 STT 处理
bash skills/videochat-withme/scripts/setup.sh
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"~/.openclaw/openclaw.json:
{
"gateway": {
"http": {
"endpoints": {
"chatCompletions": { "enabled": true }
}
}
}
}
Then restart OpenClaw.curl -sk https://localhost:8766/api/config 2>/dev/null || curl -s http://localhost:8766/api/config 2>/dev/null
cat ~/.openclaw/secrets/groq_api_key.txt 2>/dev/nullecho "key" > ~/.openclaw/secrets/groq_api_key.txt
bash skills/videochat-withme/scripts/setup.sh --auto --agent-name "YourName" --user-name "TheirName"
bash skills/videochat-withme/scripts/call.sh
This pops up a macOS incoming call notification → user clicks Accept → browser opens. # 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)🎤 Voice → Groq Whisper (STT)
📷 Camera → base64 frame
↓
OpenClaw /v1/chat/completions → Your Agent
↓
edge-tts (TTS) → 🔊 Audio playback
setup.sh --auto | First use (service not running) |
| call.sh | Every call request |setup.sh | Interactive setup (without --auto) |
| start.sh | Start service |
| stop.sh | Stop service |GROQ_API_KEY | (secrets file) | Groq API key for Whisper STT |
| PORT | 8766 | Server port |
| AGENT_NAME | AI Assistant | Display name for the agent |
| USER_NAME | User | Display name for the user |
| SSL_CERT | (auto-detect) | Path to SSL certificate |
| SSL_KEY | (auto-detect) | Path to SSL private key |export GROQ_API_KEY=gsk_xxx && clawhub install videochat-withme && clawhub run videochat-withme专业的 DOCX/PPTX 文档编辑,支持修订追踪、格式保留、高亮、删除线和 Git 版本控制。
Professional DOCX/PPTX document editing with tracked changes, formatting preservation, highlights, strikethrough, and Git version control.
clawhub install office-document-editor