Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

videodb-monitoring视频数据库监控

Agent Skill

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。它适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。使用时需要确认分辨率、时长、素材路径和导出格式;涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。

总安装

7,026

周安装

287

GitHub Stars

公开资料未说明

下载量

2,250
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install videodb-monitoring

简介

提供屏幕录制与流媒体 URL 生成功能,支持录音检索。

  • 适用于远程协助、培训录制等需要实时监控的场景。
  • 启动录制后可通过搜索获取历史记录与文字稿。
  • 注意存储空间管理与隐私信息脱敏处理。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • videodb-monitoring 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
videodb-monitoring
description
Screen recording capabilities. Generate stream URLs, search recordings, get transcripts.
metadata
{ "openclaw": { "emoji": "📹", "skillKey": "videodb-monitoring", "primaryEnv": "VIDEODB_API_KEY" } }

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 <start_timestamp> <end_timestamp>
cd {baseDir} && npx tsx videodb.ts stream <start_timestamp> <end_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:

  1. Capture start time:
   cd {baseDir} && npx tsx videodb.ts now

Store this as start_time.

  1. Do the work (browser actions, file editing, etc.)
  1. Capture end time:
   cd {baseDir} && npx tsx videodb.ts now
  1. Generate stream URL:
   cd {baseDir} && npx tsx videodb.ts stream <start_time> <end_time>

Optional player metadata:

   cd {baseDir} && npx tsx videodb.ts stream <start_time> <end_time> --title "Task recording" --description "Captured during OpenClaw task execution"
  1. 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 RequestCommand
"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":

  1. Check if monitor is running: openclaw config get skills.entries.videodb-monitoring.env.VIDEODB_IS_RUNNING
  2. If not, start it (see Prerequisites above)
  3. If it shows running but still fails, restart the monitor

If summary/search/transcript say no index or no transcript:

  1. Start indexing with cd {baseDir} && npx tsx videodb.ts start-indexing
  2. Wait briefly for data to accumulate
  3. Retry the command
  4. Stop indexing with cd {baseDir} && npx tsx videodb.ts stop-indexing when done

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.13%
按下载量换算1,758

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills