This skill allows OpenClaw agents to generate AI notes, Based solely on the video address provided by the user.
Setup
API Key: Ensure the BAIDU_API_KEY environment variable is set with your valid API key.
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
The AINotesTaskCreate API executes the Python script located at scripts/ai_notes_task_create.py
The AINotesTaskQuery API executes the Python script located at scripts/ai_notes_task_query.py
The first step ,call the AINotesTaskCreate API to create a task and get the task ID, must give a video address.
The second step ,call the AINotesTaskQuery API to query the task result based on the task ID.
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
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
1---2name: ai-notes-video3description: AI PPT Generation4---56# AI PPT Generation78This skill allows OpenClaw agents to generate AI notes, Based solely on the video address provided by the user.910## Setup11121. **API Key:** Ensure the BAIDU_API_KEY environment variable is set with your valid API key.132. **Environment:** The API key should be available in the runtime environment.1415## API table16| name | path | description |17|------------|---------------------------------|---------------------------------------|18|AINotesTaskCreate|/v2/tools/ai_note/task_create|Create AI notes task based on the video address provided by the user|19|AINotesTaskQuery| /v2/tools/ai_note/query |Query AI notes task result based on task id|202122## Workflow23241. The AINotesTaskCreate API executes the Python script located at `scripts/ai_notes_task_create.py`252. The AINotesTaskQuery API executes the Python script located at `scripts/ai_notes_task_query.py`263. The first step ,call the AINotesTaskCreate API to create a task and get the task ID, must give a video address.274. The second step ,call the AINotesTaskQuery API to query the task result based on the task ID.285. 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 failures296. 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" tag3031## APIS3233### AINotesTaskCreate API 3435#### Parameters3637- `video_url`: the url of the video (required)3839#### Example Usage40```bash41BAIDU_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'42```4344### PPTOutlineGenerate API 4546#### Parameters4748- `task_id`: task id from AINotesTaskCreate API return(required)495051#### Example Usage52```bash53BAIDU_API_KEY=xxx python3 scripts/ai_notes_task_query.py "26943ed4-f5a9-4306-a05b-b087665433a0"54```
Run npx skillmds@latest add javimosch/ai-notes-video in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
AI PPT Generation It is listed under Coding & Dev Tools on SkillMD.
This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
javimosch (@javimosch) published this skill. Their other Agent Skills are listed on their SkillMD profile.