/install videodb-monitoring
VideoDB Screen Recording Skill
Screen recording capabilities powered by VideoDB. Use this when the user asks for screen recordings, wants to search past activity, or needs transcripts.
Run commands from {baseDir} using npx tsx videodb.ts.
Prerequisites
1. Check API Key
Before using any commands, verify the API key is configured:
openclaw config get skills.entries.videodb-monitoring.env.VIDEODB_API_KEY
If not set or empty:
- Ask the user for their VideoDB API key
- If they provide it, set it for them:
openclaw config set skills.entries.videodb-monitoring.env.VIDEODB_API_KEY 'sk-xxx' - If they don't have one, direct them to: https://console.videodb.io
2. Check Monitor is Running
openclaw config get skills.entries.videodb-monitoring.env.VIDEODB_IS_RUNNING
If not true, start the monitor:
cd {baseDir} && nohup npx tsx monitor.ts > ~/.videodb/logs/monitor.log 2>&1 & disown && sleep 3
Verify it started:
openclaw config get skills.entries.videodb-monitoring.env.VIDEODB_CAPTURE_SESSION_ID
If you get a session ID (e.g., cap-xxxxxxxx-...), the monitor is ready.
Commands
Get Current Timestamp
cd {baseDir} && npx tsx videodb.ts now
Returns current Unix timestamp (seconds since epoch).
Generate Stream URL
cd {baseDir} && npx tsx videodb.ts stream \x3Cstart_timestamp> \x3Cend_timestamp>
cd {baseDir} && npx tsx videodb.ts stream \x3Cstart_timestamp> \x3Cend_timestamp> --title "Checkout flow" --description "OpenClaw browser run"
Creates a playable recording URL for the time range.
If --title or --description is provided, the generated player share page uses that metadata.
Start Indexing
Start indexing only when the user asks for search, summaries, or transcripts:
cd {baseDir} && npx tsx videodb.ts start-indexing
This starts:
- transcript capture for system audio
- audio indexing
- visual indexing
You can also control them individually:
cd {baseDir} && npx tsx videodb.ts start-visual-index
cd {baseDir} && npx tsx videodb.ts start-transcript
cd {baseDir} && npx tsx videodb.ts start-audio-index
Stop Indexing
Stop indexing as soon as it is no longer needed to save cost:
cd {baseDir} && npx tsx videodb.ts stop-indexing
Individual stop commands:
cd {baseDir} && npx tsx videodb.ts stop-visual-index
cd {baseDir} && npx tsx videodb.ts stop-transcript
cd {baseDir} && npx tsx videodb.ts stop-audio-index
Search Recordings
cd {baseDir} && npx tsx videodb.ts search "user opened Amazon"
Searches indexed screen activity for matching events. If no visual index exists yet, start indexing first.
Activity Summary
cd {baseDir} && npx tsx videodb.ts summary # last 30 minutes
cd {baseDir} && npx tsx videodb.ts summary --hours 2 # last 2 hours
Audio Transcripts
cd {baseDir} && npx tsx videodb.ts transcript # last 30 minutes
cd {baseDir} && npx tsx videodb.ts transcript --hours 1 # last hour
Recording Workflow
When user requests screen recording of a task:
-
Capture start time:
cd {baseDir} && npx tsx videodb.ts nowStore this as
start_time. -
Do the work (browser actions, file editing, etc.)
-
Capture end time:
cd {baseDir} && npx tsx videodb.ts now -
Generate stream URL:
cd {baseDir} && npx tsx videodb.ts stream \x3Cstart_time> \x3Cend_time>Optional player metadata:
cd {baseDir} && npx tsx videodb.ts stream \x3Cstart_time> \x3Cend_time> --title "Task recording" --description "Captured during OpenClaw task execution" -
Include URL in response:
Screen recording: https://rt.stream.videodb.io/...If the command prints a player page URL, prefer sharing that URL with the user.
Indexing is not started automatically by the monitor. If the user also wants search, summaries, or transcripts, start indexing explicitly before those commands and stop it afterwards.
Example
User: "Open example.com and send me the recording"
# Check prerequisites
openclaw config get skills.entries.videodb-monitoring.env.VIDEODB_IS_RUNNING
# true
# Start time
cd {baseDir} && npx tsx videodb.ts now
# 1709740800
# Do the work (open browser, navigate)
# ...
# End time
cd {baseDir} && npx tsx videodb.ts now
# 1709740830
# Generate URL
cd {baseDir} && npx tsx videodb.ts stream 1709740800 1709740830 --title "example.com walkthrough" --description "OpenClaw browser automation"
# 📹 Screen recording (30s): https://rt.stream.videodb.io/abc123
# Player page: https://player.videodb.io/watch?v=example-slug
Response:
Done! I opened example.com.
Screen recording: https://rt.stream.videodb.io/abc123
When to Use
| User Request | Command |
|---|---|
| "Record my screen while you do X" | Use workflow above |
| "What did I do in the last hour?" | start-indexing, then summary --hours 1, then stop-indexing |
| "Find when I opened the spreadsheet" | start-indexing, then search "opened spreadsheet" |
| "What was said in that meeting?" | start-indexing, then transcript |
| "Get the recording from 5 mins ago" | stream with timestamps |
| "Record this and set the title/description" | stream with --title and --description |
Troubleshooting
If commands fail with "No capture session":
- Check if monitor is running:
openclaw config get skills.entries.videodb-monitoring.env.VIDEODB_IS_RUNNING - If not, start it (see Prerequisites above)
- If it shows running but still fails, restart the monitor
If summary/search/transcript say no index or no transcript:
- Start indexing with
cd {baseDir} && npx tsx videodb.ts start-indexing - Wait briefly for data to accumulate
- Retry the command
- Stop indexing with
cd {baseDir} && npx tsx videodb.ts stop-indexingwhen done
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install videodb-monitoring - 安装完成后,直接呼叫该 Skill 的名称或使用
/videodb-monitoring触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
VideoDB Monitoring 是什么?
Screen recording capabilities. Generate stream URLs, search recordings, get transcripts. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 222 次。
如何安装 VideoDB Monitoring?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install videodb-monitoring」即可一键安装,无需额外配置。
VideoDB Monitoring 是免费的吗?
是的,VideoDB Monitoring 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
VideoDB Monitoring 支持哪些平台?
VideoDB Monitoring 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 VideoDB Monitoring?
由 omgate234(@omgate234)开发并维护,当前版本 v1.0.1。