← Back to Skills Marketplace
marjoriebroad

ai-note-of-video

by MarjorieBroad · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
90
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install ainotes-of-video
Description
Generate AI-powered notes from videos (document, outline, or graphic-text formats)
README (SKILL.md)

AI Video Notes

Generate structured notes from video URLs using SkillBoss API Hub. Supports three note formats.

Workflow

  1. 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

  1. Call the create script directly with video URL
  2. 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"
Usage Guidance
This package looks incomplete: the README expects Python scripts under a scripts/ directory but none are bundled. Before installing or providing your SKILLBOSS_API_KEY, ask the publisher for the missing scripts or for the HTTP request examples that show how the API key is sent (authorization header, bearer token, etc.). Verify the external domain (api.heybossai.com) and its privacy policy—ensure you're comfortable uploading video URLs/content to that service. Do not provide unrelated credentials. If you receive the scripts later, review them to ensure they only call the declared API endpoint, do not read local files or other environment variables, and handle secrets safely (only use the declared SKILLBOSS_API_KEY).
Capability Analysis
Type: OpenClaw Skill Name: ainotes-of-video Version: 1.0.0 The skill bundle contains metadata and documentation for a video summarization tool that interacts with the SkillBoss API (api.heybossai.com). The SKILL.md file outlines a standard workflow for submitting video URLs and retrieving notes via Python scripts. There are no indications of malicious intent, prompt injection, or unauthorized data access in the provided files, and the requested environment variable (SKILLBOSS_API_KEY) is consistent with the stated purpose.
Capability Assessment
Purpose & Capability
Name/description (generate notes from videos) aligns with requiring python3 and an API key for a third‑party service (SkillBoss). Requesting SKILLBOSS_API_KEY as the primary credential is proportionate to calling a remote API.
Instruction Scope
SKILL.md instructs the agent to run python scripts (scripts/ai_notes_task_create.py, scripts/ai_notes_poll.py, etc.) and to POST to https://api.heybossai.com/v1/pilot, but no code files are bundled. The instructions do not show how the SKILLBOSS_API_KEY is included in requests (headers, env var usage), and leave the implementation details to unspecified scripts—this is incomplete and grants broad implicit discretion to any scripts that might be supplied later.
Install Mechanism
No install spec is provided (instruction-only), so nothing is written to disk by the skill installer. This is lower-risk, but since the runtime relies on external scripts that are not included, the package is effectively unusable as-is.
Credentials
Only SKILLBOSS_API_KEY is required and marked primary, which is appropriate for a remote-API integration. However, the SKILL.md doesn't demonstrate how the key is used or what scopes/permissions the API key requires—users should confirm the key's intended scope and ensure no additional unrelated credentials are requested.
Persistence & Privilege
The skill is not marked always:true and does not request system-wide config paths or persistent modification. Autonomous invocation is allowed (platform default) but not combined with other high-privilege flags.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install ainotes-of-video
  3. After installation, invoke the skill by name or use /ainotes-of-video
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release—generate AI-powered notes from video URLs in multiple structured formats. - Supports three note types: document, outline, and graphic-text notes. - Uses SkillBoss API Hub for synchronous note generation from public video URLs. - Provides scripts for manual or automatic polling of note generation. - Includes clear error messages for invalid URLs, processing errors, and timeouts.
Metadata
Slug ainotes-of-video
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

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.

💬 Comments