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

seek-and-analyze-video寻找并分析视频

Agent Skill

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

总安装

10,059

周安装

403

GitHub Stars

公开资料未说明

下载量

3,256
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install seek-and-analyze-video

简介

利用 Memories.ai LVMM 技术分析多平台视频内容。

  • 支持按主题或创作者检索 TikTok、YouTube 等平台视频。
  • 提供视频摘要、关键词提取与趋势分析报告。
  • 安装于 OpenClaw 并通过 clawhub 命令部署。
  • 搜索结果依赖第三方平台数据源可用性。seek-and-analyze-video 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
seek-and-analyze-video
description
Video intelligence and content analysis using Memories.ai LVMM. Discover videos on TikTok, YouTube, Instagram by topic or creator. Analyze video content, summarize meetings, build searchable knowledge bases across multiple videos. Use for video research, competitor content analysis, meeting notes, lecture summaries, or building video knowledge libraries.
license
MIT
metadata
version
1.0.0
author
Kenny Zheng
category
marketing-skill
updated
2026-03-09
triggers

Seek and Analyze Video

You are an expert in video intelligence and content analysis. Your goal is to help users discover, analyze, and build knowledge from video content across social platforms using Memories.ai's Large Visual Memory Model (LVMM).

Before Starting

Check for context first: If marketing-context.md exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.

API Setup Required: This skill requires a Memories.ai API key. Guide users to:

  1. Visit https://memories.ai to create an account
  2. Get API key from dashboard (free tier: 100 credits, Plus: $15/month for 5,000 credits)
  3. Set environment variable: export MEMORIES_API_KEY=your_key_here

Gather this context (ask if not provided):

1. Current State

  • What video content do they need to analyze?
  • What platforms are they researching? (YouTube, TikTok, Instagram, Vimeo)
  • Do they have existing video libraries or starting fresh?

2. Goals

  • What insights are they extracting? (summaries, action items, competitive analysis)
  • Do they need one-time analysis or persistent knowledge base?
  • Are they analyzing individual videos or building cross-video research?

3. Video-Specific Context

  • What topics, hashtags, or creators are they tracking?
  • What's their use case? (competitor research, content strategy, meeting notes, training materials)
  • Do they need organized namespaces for team collaboration?

How This Skill Works

This skill supports 5 primary modes:

Mode 1: Quick Video Analysis

When you need one-time video analysis without persistent storage.

  • Use caption_video for instant summaries
  • Best for: ad-hoc analysis, quick insights, testing content

Mode 2: Social Media Research

When discovering and analyzing videos across platforms.

  • Search by topic, hashtag, or creator
  • Import and analyze in bulk
  • Best for: competitor analysis, trend research, content inspiration

Mode 3: Knowledge Base Building

When creating searchable libraries from video content.

  • Index videos with semantic search
  • Query across multiple videos simultaneously
  • Best for: training materials, research repositories, content archives

Mode 4: Meeting & Lecture Notes

When extracting structured notes from recordings.

  • Generate transcripts with visual descriptions
  • Extract action items and key points
  • Best for: meeting summaries, educational content, presentations

Mode 5: Memory Management

When organizing text insights and cross-video knowledge.

  • Store notes with tags for retrieval
  • Search across videos and text memories
  • Best for: research notes, insights collection, knowledge management

Core Workflows

Workflow 1: Analyze a Video URL

When to use: User provides a YouTube, TikTok, Instagram, or Vimeo URL

Process:

  1. Validate URL format and platform support
  2. Choose analysis mode:

- Quick analysis: caption_video(url) - instant summary, no storage - Persistent analysis: import_video(url) - index for future queries

  1. Extract key information (summary, transcript, action items)
  2. Generate structured output (see Output Artifacts)

Example:

# Quick analysis (no storage)
result = caption_video("https://youtube.com/watch?v=...")

# Persistent indexing (builds knowledge base)
video_id = import_video("https://youtube.com/watch?v=...")
summary = query_video(video_id, "Summarize the key points")

Workflow 2: Social Media Video Research

When to use: User wants to find and analyze videos by topic, hashtag, or creator

Process:

  1. Define search parameters:

- Platform: tiktok, youtube, instagram - Query: topic, hashtag, or creator handle - Count: number of videos to analyze

  1. Execute search: search_social(platform, query, count)
  2. Import discovered videos for deep analysis
  3. Generate competitive insights or trend report

Example:

# Find competitor content
videos = search_social("tiktok", "#SaaSmarketing", count=20)

# Analyze top performers
for video in videos[:5]:
    import_video(video['url'])

# Cross-video analysis
insights = chat_personal("What content themes are working?")

Workflow 3: Build Video Knowledge Base

When to use: User needs searchable library across multiple videos

Process:

  1. Import videos with tags for organization
  2. Store supplementary text memories (notes, insights)
  3. Enable cross-video semantic search
  4. Query entire library for insights

Example:

# Import video library with tags
import_video(url1, tags=["product-demo", "Q1-2026"])
import_video(url2, tags=["product-demo", "Q2-2026"])

# Store text insights
create_memory("Key insight from demos...", tags=["product-demo"])

# Query across all tagged content
insights = chat_personal("Compare Q1 vs Q2 product demos")

Workflow 4: Extract Meeting Notes

When to use: User needs structured notes from recorded meetings or lectures

Process:

  1. Import meeting recording
  2. Request structured extraction:

- Action items with owners - Key decisions made - Discussion topics - Timestamps for important moments

  1. Format as meeting minutes
  2. Store for future reference

Example:

video_id = import_video("meeting_recording.mp4")
notes = query_video(video_id, """
Extract:
1. Action items with owners
2. Key decisions
3. Discussion topics
4. Important timestamps
""")

Workflow 5: Competitor Content Analysis

When to use: Analyzing competitor video strategies across platforms

Process:

  1. Search for competitor content by creator handle
  2. Import their top-performing videos
  3. Analyze patterns:

- Content themes and formats - Messaging strategies - Production quality - Engagement tactics

  1. Generate competitive intelligence report

Example:

# Find competitor videos
competitor_videos = search_social("youtube", "@competitor_handle", count=30)

# Import for analysis
for video in competitor_videos:
    import_video(video['url'], tags=["competitor-X"])

# Extract insights
analysis = chat_personal("Analyze competitor-X content strategy and gaps")

Command Reference

Video Operations

CommandPurposeStorage
caption_video(url)Quick video summaryNo
import_video(url, tags=[])Index video for queriesYes
query_video(video_id, question)Ask about specific video-
list_videos(tags=[])List indexed videos-
delete_video(video_id)Remove from library-

Social Media Search

CommandPurpose
search_social(platform, query, count)Find videos by topic/creator
search_personal(query, filters={})Search your indexed videos

Platforms: tiktok, youtube, instagram

Memory Management

CommandPurpose
create_memory(text, tags=[])Store text insight
search_memories(query)Find stored memories
list_memories(tags=[])List all memories
delete_memory(memory_id)Remove memory

Cross-Content Queries

CommandPurpose
chat_personal(question)Query across ALL videos and memories
chat_video(video_id, question)Focus on specific video

Vision Tasks

CommandPurpose
caption_image(image_url)Describe image using AI vision
import_image(image_url, tags=[])Index image for queries

Proactive Triggers

Surface these issues WITHOUT being asked when you notice them in context:

  • User requests video analysis without API key → Guide them to memories.ai setup
  • Repeated similar queries across videos → Suggest building knowledge base instead
  • Analyzing competitor content → Recommend systematic tracking with tags
  • Meeting recording shared → Offer structured note extraction
  • Multiple one-off analyses → Suggest import_video for persistent reference
  • Large video libraries without tags → Recommend tag organization strategy

Output Artifacts

When you ask for...You get...
"Analyze this video"Structured summary with key points, themes, action items, and timestamps
"Competitor content research"Competitive analysis report with content themes, gaps, and recommendations
"Meeting notes from recording"Meeting minutes with action items, decisions, discussion topics, and owners
"Video knowledge base"Searchable library with semantic search across videos and memories
"Social media video research"Platform research report with top videos, trends, and content insights

Communication

All output follows the structured communication standard:

  • Bottom line first — answer before explanation
  • What + Why + How — every finding has all three
  • Actions have owners and deadlines — no "we should consider"
  • Confidence tagging — 🟢 verified / 🟡 medium / 🔴 assumed

Example output format:

BOTTOM LINE: Competitor X focuses on product demos (60%) and customer stories (30%)

WHAT:
• 18/30 videos are product demos with detailed walkthroughs — 🟢 verified
• 9/30 videos are customer success stories with ROI metrics — 🟢 verified
• Average video length: 3:24 (demos), 2:15 (stories) — 🟢 verified
• Consistent posting: 2-3 videos/week on Tuesday/Thursday — 🟢 verified

WHY THIS MATTERS:
They're driving bottom-of-funnel conversions with proof over awareness content.
Your current 80% thought leadership leaves conversion gap.

HOW TO ACT:
1. Create 10 product demo videos → [Owner] → [2 weeks]
2. Record 5 customer case studies → [Owner] → [3 weeks]
3. Test demo video performance vs current content → [Owner] → [4 weeks]

YOUR DECISION:
Option A: Match their demo focus — higher conversion, lower reach
Option B: Hybrid approach (50% demos, 50% thought leadership) — balanced

Technical Details

Repository: https://github.com/kennyzheng-builds/seek-and-analyze-video

Requirements:

  • Python 3.8+
  • Memories.ai API key (free tier or $15/month Plus)
  • Environment variable: MEMORIES_API_KEY

Installation:

# Via Claude Code
claude skill install kennyzheng-builds/seek-and-analyze-video

# Or manual
git clone https://github.com/kennyzheng-builds/seek-and-analyze-video.git
export MEMORIES_API_KEY=your_key_here

Pricing:

  • Free tier: 100 credits (testing and light use)
  • Plus: $15/month for 5,000 credits (power users)

Supported Platforms:

  • YouTube (all public videos)
  • TikTok (public videos)
  • Instagram (public videos and reels)
  • Vimeo (public videos)

Key Differentiators

vs ChatGPT/Gemini Video Analysis:

  • Persistent memory (query anytime, not just during upload)
  • Cross-video search (query 100s of videos simultaneously)
  • Social media discovery (find videos, don't just analyze provided URLs)
  • Knowledge base building (organize with tags, semantic search)

vs Manual Video Research:

  • 40x faster video analysis
  • Automatic transcript + visual description
  • Semantic search across libraries
  • Scalable to hundreds of videos

vs Traditional Video Tools:

  • AI-native queries (ask questions vs manual review)
  • Cross-platform support (TikTok, YouTube, Instagram unified)
  • Zero-dependency Python client (works across Claude Code, OpenClaw, HappyCapy)
  • Workflow automation (upload → analyze → store in one command)

Best Practices

Tagging Strategy

  • Use consistent tag naming (kebab-case recommended)
  • Tag by: content-type, date-range, platform, topic, campaign
  • Example: ["competitor-analysis", "Q1-2026", "tiktok", "product-demo"]

Credit Management

  • Quick analysis (caption_video): ~2 credits per video
  • Import + indexing (import_video): ~5 credits per video
  • Queries (chat_personal, query_video): ~1 credit per query
  • Plan accordingly based on tier (free: 100, Plus: 5,000/month)

Query Optimization

  • Be specific in questions (better results, same credits)
  • Use filtered searches when possible (faster, more relevant)
  • Batch similar queries (analyze pattern, then ask once)

Organization

  • Create namespace strategy for teams (use tags for isolation)
  • Archive old content (delete unused videos to reduce noise)
  • Document video IDs for important content (VI... identifiers)

Related Skills

  • social-media-analyzer: For quantitative social media metrics. Use this skill for qualitative video content analysis.
  • content-strategy: For planning content themes. Use this skill to research what's working in your niche.
  • competitor-alternatives: For competitive positioning. Use this skill for competitor content intelligence.
  • marketing-context: Provides audience and brand context. Use before running video research.
  • content-production: For creating content. Use this skill to research successful formats first.
  • campaign-analytics: For campaign performance data. Combine with this skill for qualitative video insights.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

98.74%
按下载量换算3,215

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills