AI Notes of Video

Generate document, outline, and image-text AI notes by providing a video URL, using Baidu's video analysis and note extraction APIs.

Installieren
$clawhub install ai-notes-of-video

AI PPT Generation

This skill allows OpenClaw agents to generate AI notes, Based solely on the video address provided by the user.

Setup

  1. API Key: Ensure the BAIDU_API_KEY environment variable is set with your valid API key.

  2. Environment: The API key should be available in the runtime environment.

API table

name path description
AINotesTaskCreate /v2/tools/ai_note/task_create Create AI notes task based on the video address provided by the user
AINotesTaskQuery /v2/tools/ai_note/query Query AI notes task result based on task id

Workflow

  1. The AINotesTaskCreate API executes the Python script located at scripts/ai_notes_task_create.py

  2. The AINotesTaskQuery API executes the Python script located at scripts/ai_notes_task_query.py

  3. The first step ,call the AINotesTaskCreate API to create a task and get the task ID, must give a video address.

  4. The second step ,call the AINotesTaskQuery API to query the task result based on the task ID.

  5. Repeat the second step until the task status is completed.The task success identifier is status=10002. status=10000 indicates that the task is in progress. All other status codes are failures

  6. Each item in the note list is a note content. For each item in the list: the tpl_no field represents the type of stored notes, 1 - manuscript notes, 2 - outline notes, 3 - graphic and text notes. The "detail" field is for note details. In "detail", "status" represents the note status, with 10002 indicating success,with status=10000 indicating progressing and other status codes indicating failure. "content" indicates the note result. The mind map is located at the top of the outline note and is marked by the "Mind" tag

APIS

AINotesTaskCreate API

Parameters

  • video_url: the url of the video (required)

Example Usage

BAIDU_API_KEY=xxx python3 scripts/ai_notes_task_create.py 'https://xxxxx.bj.bcebos.com/1%E5%88%86%E9%92%9F_%E6%9C%89%E5%AD%97%E5%B9%95.mp4'

PPTOutlineGenerate API

Parameters

  • task_id: task id from AINotesTaskCreate API return(required)

Example Usage

BAIDU_API_KEY=xxx python3 scripts/ai_notes_task_query.py "26943ed4-f5a9-4306-a05b-b087665433a0"

Details

Version
v1.0.0
Downloads
2,919

Beliebte Skills

diagram-generator
生成和编辑各种类型的图表(drawio、mermaid、excalidraw)。支持流程图、时序图、类图、ER图、思维导图、架构图、网络拓扑图等常见图表类型。能够根据自然语言描述创建新图表,也能读取并修改已有的 drawio/mermaid/excalidraw 文件。使用独立的 MCP server (mcp-diagram-generator) 生成图表文件,减少 token 消耗并保证输出一致性。支持自动配置管理,默认输出路径为项目目录下的 diagrams/{format}/,支持自定义路径和自动创建目录。
Agent Orchestrator
Meta-agent skill for orchestrating complex tasks through autonomous sub-agents. Decomposes macro tasks into subtasks, spawns specialized sub-agents with dynamically generated SKILL.md files, coordinates file-based communication, consolidates results, and dissolves agents upon completion. MANDATORY TRIGGERS: orchestrate, multi-agent, decompose task, spawn agents, sub-agents, parallel agents, agent coordination, task breakdown, meta-agent, agent factory, delegate tasks
Clawdbot Security Check
Perform a comprehensive read-only security audit of Clawdbot's own configuration. This is a knowledge-based skill that teaches Clawdbot to identify hardening opportunities across the system. Use when user asks to "run security check", "audit clawdbot", "check security hardening", or "what vulnerabilities does my Clawdbot have". This skill uses Clawdbot's internal capabilities and file system access to inspect configuration, detect misconfigurations, and recommend remediations. It is designed to be extensible - new checks can be added by updating this skill's knowledge.