# Send ai notes of video to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ai-notes-ofvideo",
    "name": "ai notes of video",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/ide-rea/ai-notes-ofvideo",
    "canonicalUrl": "https://clawhub.ai/ide-rea/ai-notes-ofvideo",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/ai-notes-ofvideo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ai-notes-ofvideo",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/ai_notes_poll.py",
      "scripts/ai_notes_task_create.py",
      "scripts/ai_notes_task_query.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ai-notes-ofvideo"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ai-notes-ofvideo",
    "downloadUrl": "https://openagent3.xyz/downloads/ai-notes-ofvideo",
    "agentUrl": "https://openagent3.xyz/skills/ai-notes-ofvideo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ai-notes-ofvideo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ai-notes-ofvideo/agent.md"
  }
}
```
## Documentation

### 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"
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ide-rea
- Version: 1.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/ai-notes-ofvideo)
- [Send to Agent page](https://openagent3.xyz/skills/ai-notes-ofvideo/agent)
- [JSON manifest](https://openagent3.xyz/skills/ai-notes-ofvideo/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/ai-notes-ofvideo/agent.md)
- [Download page](https://openagent3.xyz/downloads/ai-notes-ofvideo)