← 返回 Skills 市场
shadoprizm

VideoLens.io

作者 shadoprizm · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ 安全检测通过
33
总下载
1
收藏
1
当前安装
2
版本数
在 OpenClaw 中安装
/install videolens
功能描述
Turn any video into timestamped AI feedback, summaries, bug reports, and creator QA. Open-source VideoLens wrapper for OpenClaw with BYOK cloud option at Vid...
使用说明 (SKILL.md)

🎥 VideoLens.io

AI video reviews from any prompt. VideoLens watches your video and returns timestamped feedback: what works, what drags, what is unclear, what needs proof, and what to fix before publishing.

It is open source, works inside OpenClaw, and has a hosted VideoLens.io cloud version with BYOK for teams that want managed processing.

VideoLens dashboard preview


What VideoLens does

Give VideoLens a video plus a review prompt. It returns a Markdown report and structured JSON your agents can use.

Use it for:

  • Creator video reviews: hook, pacing, retention, clarity, narrative, CTA, title/thumbnail alignment.
  • Course and tutorial reviews: whether a beginner can follow, where steps are missing, what needs a visual callout.
  • Sales/demo video reviews: whether the viewer understands the promise, proof, and next action.
  • AI video pipeline QA: catch weak openings, unreadable mobile text, abrupt endings, bad transitions, and missing proof before publishing.
  • Custom prompt reviews: ask it to judge the video however your workflow needs.

Timestamped feedback preview


Why agents need this

Agents can write scripts, generate voice, render clips, and assemble videos. But before VideoLens, somebody still had to watch the draft.

VideoLens makes video review programmable:

  1. Your agent renders a draft.
  2. VideoLens reviews the actual video.
  3. The report identifies timestamped issues.
  4. OpenClaw can turn the feedback into fixes, gates, or a human review package.

If your agent can create video, it needs a second agent that can judge the video.


OpenClaw integration

Install name: videolens

This package includes a manual-only OCC/OpenClaw local skill wrapper:

  • config.yaml — local skill runner config
  • skill.py — task runner entrypoint
  • SKILL.md — OpenClaw/ClawHub instructions
  • assets/*.svg — preview screenshots for ClawHub

OpenClaw task payloads live in pre_instructions as JSON or YAML. The skill supports:

  • preflight — checks git, ffmpeg, ffprobe, runtime state, and keys
  • bootstrap — clones the open-source VideoLens CLI and installs runtime
  • analyze — runs video review and writes report artifacts

Guardrail: analysis requires allow_credit_spend: true so agents do not spend model credits by accident.

OpenClaw workflow preview


Install

clawhub install videolens

Or from OpenClaw:

openclaw skills install videolens

Quick start

1. Preflight

{"action":"preflight"}

2. Bootstrap the open-source runtime

{"action":"bootstrap"}

3. Review a video

{
  "action": "analyze",
  "allow_credit_spend": true,
  "source": "https://youtu.be/YOUR_VIDEO_ID",
  "mode": "general",
  "prompt": "Review this video as a ruthless but constructive editor. Focus on hook, pacing, retention, clarity, proof, mobile readability, CTA, and top fixes before publishing.",
  "max_frames": 60,
  "frame_interval": 5.0
}

Outputs are written under the OCC data directory, typically:

occ/data/videolens-video-intelligence/runs/\x3Crun-id>/report.md
occ/data/videolens-video-intelligence/runs/\x3Crun-id>/analysis.json

Prompt examples

YouTube / creator review

Review this video like a ruthless but constructive YouTube editor. Focus on hook clarity, viewer promise, pacing, retention risks, mobile readability, jargon, proof, CTA, and whether the viewer knows what to do next.

Tutorial review

Review this tutorial for beginner clarity. Identify missing context, skipped steps, confusing visuals, points where the viewer may get lost, and concrete edits that would make the workflow easier to copy.

Sales/demo review

Review this demo as a conversion asset. Does it show the problem, proof, outcome, differentiation, and next step clearly? Give timestamped fixes ranked by likely conversion impact.

AI pipeline QA

Review this AI-generated video draft before publishing. Flag weak hooks, unreadable frames, abrupt transitions, bad endings, missing proof, confusing claims, and places where the script says something the visuals do not support.

Open source + cloud

VideoLens is designed as both an open-source agent skill and a cloud product:

  • Open source: run it yourself, inspect the workflow, wire it into OpenClaw, customize prompts, keep artifacts local.
  • Cloud BYOK: use VideoLens.io when you want managed infrastructure, hosted reports, team workflows, and bring-your-own-key control.
  • Agent-native: built for pipelines where Hermes/OpenClaw/Codex/Claude produce videos and need review before humans waste time or credits.

Cloud: https://videolens.io

Source: https://github.com/shadoprizm/videolens


Requirements

  • OPENAI_API_KEY for local/open-source analysis
  • git
  • ffmpeg
  • ffprobe
  • uv preferred, python3 fallback
  • optional VIDEOLENS_CLOUD_API_KEY for hosted VideoLens.io workflows

Safety and privacy

  • Local mode stores artifacts on your machine/OCC data directory.
  • Cloud mode is optional and BYOK-oriented.
  • The OpenClaw wrapper is manual-only by default.
  • Credit-spending analysis requires explicit allow_credit_spend: true.
  • Reports are Markdown/JSON so agents can audit and reuse them.

License

MIT-0 on ClawHub. Build with it. Fork it. Wire it into your agents. Make better videos.

安全使用建议
Install this if you are comfortable providing an OpenAI API key and letting the skill clone and run the VideoLens CLI locally. Prefer the default OCC data paths, review the upstream repository if handling sensitive videos, and only set allow_credit_spend when you intentionally want model/API usage.
能力标签
cryptorequires-sensitive-credentials
能力评估
Purpose & Capability
The stated purpose is AI video review with timestamped reports, and the implementation matches that purpose through preflight, bootstrap, and analyze actions.
Instruction Scope
Actions are allowlisted and analyze requires allow_credit_spend, but advanced task fields such as repo_dir, state_dir, runs_dir, output_dir, branch, and update_repo are accepted by code without being fully documented in the user-facing instructions.
Install Mechanism
Bootstrap clones a fixed GitHub repository URL and installs it with uv or pip; this is disclosed and purpose-aligned, but users are trusting code fetched at runtime rather than only the packaged skill files.
Credentials
The requested OPENAI_API_KEY, git, ffmpeg, ffprobe, and Python tooling are proportionate for local video analysis; the subprocess receives the environment as expected for a BYOK CLI workflow.
Persistence & Privilege
The skill creates a persistent local repo, runtime, and report artifacts under the OCC data directory by default, with user-controllable path overrides; there is no evidence of background persistence or privilege escalation.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install videolens
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /videolens 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
Tighten positioning around AI video reviews from prompts; remove product-demo QA as a primary category; fix install naming and cleaner ClawHub copy.
v1.0.0
Initial release: OpenClaw-ready VideoLens.io skill with BYOK local analysis, cloud positioning, timestamped video QA prompts, OCC local skill runner config, and SVG screenshots. Published under the clean videolens slug.
元数据
Slug videolens
版本 1.0.1
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 2
常见问题

VideoLens.io 是什么?

Turn any video into timestamped AI feedback, summaries, bug reports, and creator QA. Open-source VideoLens wrapper for OpenClaw with BYOK cloud option at Vid... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 33 次。

如何安装 VideoLens.io?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install videolens」即可一键安装,无需额外配置。

VideoLens.io 是免费的吗?

是的,VideoLens.io 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

VideoLens.io 支持哪些平台?

VideoLens.io 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 VideoLens.io?

由 shadoprizm(@shadoprizm)开发并维护,当前版本 v1.0.1。

💬 留言讨论