โ† All skills
Tencent SkillHub ยท Content Creation

ai notes of video

Generate AI-powered notes from videos (document, outline, or graphic-text formats)

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Generate AI-powered notes from videos (document, outline, or graphic-text formats)

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Known item issue.

This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.

Quick setup
  1. Open the source page and confirm the package flow manually.
  2. Review SKILL.md if you can obtain the files.
  3. Treat this source as manual setup until the download is verified.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Manual review
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/ai_notes_poll.py, scripts/ai_notes_task_create.py, scripts/ai_notes_task_query.py

Validation

  • Open the source listing and confirm there is a real package or setup artifact available.
  • Review SKILL.md before asking your agent to continue.
  • Treat this source as manual setup until the upstream download flow is fixed.

Install with your agent

Agent handoff

Use the source page and any available docs to guide the install because the item currently does not return a direct package file.

  1. Open the source page via Open source listing.
  2. If you can obtain the package, extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the source page and extracted files.
New install

I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required.

Upgrade existing

I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 9 sections Open source page

AI Video Notes

Generate structured notes from video URLs using Baidu AI. Supports three note formats.

Workflow

Create Task: Submit video URL โ†’ get task ID Poll Status: Query task every 3-5 seconds until completion Get Results: Retrieve generated notes when status = 10002

Status Codes

CodeStatusAction10000In ProgressContinue polling10002CompletedReturn resultsOtherFailedShow error

Note Types

TypeDescription1Document notes2Outline notes3Graphic-text notes

Create Task

Endpoint: POST /v2/tools/ai_note/task_create Parameters: video_url (required): Public video URL Example: python3 scripts/ai_notes_task_create.py 'https://example.com/video.mp4' Response: { "task_id": "uuid-string" }

Query Task

Endpoint: GET /v2/tools/ai_note/query Parameters: task_id (required): Task ID from create endpoint Example: python3 scripts/ai_notes_task_query.py "task-id-here" Response (Completed): { "status": 10002, "notes": [ { "tpl_no": "1", "contents: ["Note content..."] } ] }

Option 1: Manual Polling

Create task โ†’ store task_id Query every 3-5 seconds: python3 scripts/ai_notes_task_query.py <task_id> Show progress updates: Status 10000: Processing... Status 10002: Completed Stop after 30-60 seconds (video length dependent)

Option 2: Auto Polling (Recommended)

Use the polling script for automatic status updates: python3 scripts/ai_notes_poll.py <task_id> [max_attempts] [interval_seconds] Examples: # Default: 20 attempts, 3-second intervals python3 scripts/ai_notes_poll.py "task-id-here" # Custom: 30 attempts, 5-second intervals python3 scripts/ai_notes_poll.py "task-id-here" 30 5 Output: Shows real-time progress: [1/20] Processing... 25% Auto-stops when complete Returns formatted notes with type labels

Error Handling

Invalid URL: "Video URL not accessible" Processing error: "Failed to parse video" Timeout: "Video too long, try again later"

Category context

Writing, remixing, publishing, visual generation, and marketing content production.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Scripts1 Docs
  • SKILL.md Primary doc
  • scripts/ai_notes_poll.py Scripts
  • scripts/ai_notes_task_create.py Scripts
  • scripts/ai_notes_task_query.py Scripts