ai-note-of-video
/install ainotes-of-video
AI Video Notes
Generate structured notes from video URLs using SkillBoss API Hub. Supports three note formats.
Workflow
- Generate Notes: Submit video URL → get structured notes synchronously via SkillBoss API Hub
Note Types
| Type | Description |
|---|---|
| 1 | Document notes |
| 2 | Outline notes |
| 3 | Graphic-text notes |
APIs
Generate Notes
Endpoint: POST https://api.heybossai.com/v1/pilot
Parameters:
video_url(required): Public video URL
Example:
python3 scripts/ai_notes_task_create.py 'https://example.com/video.mp4'
Response:
{
"status": "success",
"notes": "Generated notes content..."
}
Query Notes
Endpoint: POST https://api.heybossai.com/v1/pilot
Parameters:
video_url(required): Public video URL (SkillBoss API Hub returns results synchronously)
Example:
python3 scripts/ai_notes_task_query.py "https://example.com/video.mp4"
Response (Completed):
{
"notes": "Document notes...\
Outline notes...\
Graphic-text notes..."
}
Polling Strategy
Option 1: Manual Query
- Call the create script directly with video URL
- Notes are returned synchronously:
python3 scripts/ai_notes_task_create.py \x3Cvideo_url>
Option 2: Auto Query (Recommended)
Use the poll script for automatic note generation:
python3 scripts/ai_notes_poll.py \x3Cvideo_url> [max_attempts] [interval_seconds]
Examples:
# Default settings
python3 scripts/ai_notes_poll.py "https://example.com/video.mp4"
# Custom: 30 attempts, 5-second intervals
python3 scripts/ai_notes_poll.py "https://example.com/video.mp4" 30 5
Output:
- Returns formatted notes with type labels upon completion
Error Handling
- Invalid URL: "Video URL not accessible"
- Processing error: "Failed to parse video"
- Timeout: "Video too long, try again later"
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install ainotes-of-video - After installation, invoke the skill by name or use
/ainotes-of-video - Provide required inputs per the skill's parameter spec and get structured output
What is ai-note-of-video?
Generate AI-powered notes from videos (document, outline, or graphic-text formats). It is an AI Agent Skill for Claude Code / OpenClaw, with 90 downloads so far.
How do I install ai-note-of-video?
Run "/install ainotes-of-video" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is ai-note-of-video free?
Yes, ai-note-of-video is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does ai-note-of-video support?
ai-note-of-video is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created ai-note-of-video?
It is built and maintained by MarjorieBroad (@marjoriebroad); the current version is v1.0.0.