Install
openclaw skills install @marjoriebroad/ainotes-of-videoGenerate AI-powered notes from videos (document, outline, or graphic-text formats)
openclaw skills install @marjoriebroad/ainotes-of-videoGenerate structured notes from video URLs using SkillBoss API Hub. Supports three note formats.
| Type | Description |
|---|---|
| 1 | Document notes |
| 2 | Outline notes |
| 3 | Graphic-text notes |
Endpoint: POST https://api.heybossai.com/v1/pilot
Parameters:
video_url (required): Public video URLExample:
python3 scripts/ai_notes_task_create.py 'https://example.com/video.mp4'
Response:
{
"status": "success",
"notes": "Generated notes content..."
}
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...\nOutline notes...\nGraphic-text notes..."
}
python3 scripts/ai_notes_task_create.py <video_url>
Use the poll script for automatic note generation:
python3 scripts/ai_notes_poll.py <video_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: