{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/ai-notes-ofvideo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ai-notes-ofvideo",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/ai_notes_poll.py",
      "scripts/ai_notes_task_create.py",
      "scripts/ai_notes_task_query.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/ai-notes-ofvideo",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "AI Video Notes",
        "body": "Generate structured notes from video URLs using Baidu AI. Supports three note formats."
      },
      {
        "title": "Workflow",
        "body": "Create Task: Submit video URL → get task ID\nPoll Status: Query task every 3-5 seconds until completion\nGet Results: Retrieve generated notes when status = 10002"
      },
      {
        "title": "Status Codes",
        "body": "CodeStatusAction10000In ProgressContinue polling10002CompletedReturn resultsOtherFailedShow error"
      },
      {
        "title": "Note Types",
        "body": "TypeDescription1Document notes2Outline notes3Graphic-text notes"
      },
      {
        "title": "Create Task",
        "body": "Endpoint: POST /v2/tools/ai_note/task_create\n\nParameters:\n\nvideo_url (required): Public video URL\n\nExample:\n\npython3 scripts/ai_notes_task_create.py 'https://example.com/video.mp4'\n\nResponse:\n\n{\n  \"task_id\": \"uuid-string\"\n}"
      },
      {
        "title": "Query Task",
        "body": "Endpoint: GET /v2/tools/ai_note/query\n\nParameters:\n\ntask_id (required): Task ID from create endpoint\n\nExample:\n\npython3 scripts/ai_notes_task_query.py \"task-id-here\"\n\nResponse (Completed):\n\n{\n  \"status\": 10002,\n  \"notes\": [\n    {\n      \"tpl_no\": \"1\",\n      \"contents: [\"Note content...\"]\n    }\n  ]\n}"
      },
      {
        "title": "Option 1: Manual Polling",
        "body": "Create task → store task_id\nQuery every 3-5 seconds:\npython3 scripts/ai_notes_task_query.py <task_id>\n\n\nShow progress updates:\n\nStatus 10000: Processing...\nStatus 10002: Completed\n\n\nStop after 30-60 seconds (video length dependent)"
      },
      {
        "title": "Option 2: Auto Polling (Recommended)",
        "body": "Use the polling script for automatic status updates:\n\npython3 scripts/ai_notes_poll.py <task_id> [max_attempts] [interval_seconds]\n\nExamples:\n\n# Default: 20 attempts, 3-second intervals\npython3 scripts/ai_notes_poll.py \"task-id-here\"\n\n# Custom: 30 attempts, 5-second intervals\npython3 scripts/ai_notes_poll.py \"task-id-here\" 30 5\n\nOutput:\n\nShows real-time progress: [1/20] Processing... 25%\nAuto-stops when complete\nReturns formatted notes with type labels"
      },
      {
        "title": "Error Handling",
        "body": "Invalid URL: \"Video URL not accessible\"\nProcessing error: \"Failed to parse video\"\nTimeout: \"Video too long, try again later\""
      }
    ],
    "body": "AI Video Notes\n\nGenerate structured notes from video URLs using Baidu AI. Supports three note formats.\n\nWorkflow\nCreate Task: Submit video URL → get task ID\nPoll Status: Query task every 3-5 seconds until completion\nGet Results: Retrieve generated notes when status = 10002\nStatus Codes\nCode\tStatus\tAction\n10000\tIn Progress\tContinue polling\n10002\tCompleted\tReturn results\nOther\tFailed\tShow error\nNote Types\nType\tDescription\n1\tDocument notes\n2\tOutline notes\n3\tGraphic-text notes\nAPIs\nCreate Task\n\nEndpoint: POST /v2/tools/ai_note/task_create\n\nParameters:\n\nvideo_url (required): Public video URL\n\nExample:\n\npython3 scripts/ai_notes_task_create.py 'https://example.com/video.mp4'\n\n\nResponse:\n\n{\n  \"task_id\": \"uuid-string\"\n}\n\nQuery Task\n\nEndpoint: GET /v2/tools/ai_note/query\n\nParameters:\n\ntask_id (required): Task ID from create endpoint\n\nExample:\n\npython3 scripts/ai_notes_task_query.py \"task-id-here\"\n\n\nResponse (Completed):\n\n{\n  \"status\": 10002,\n  \"notes\": [\n    {\n      \"tpl_no\": \"1\",\n      \"contents: [\"Note content...\"]\n    }\n  ]\n}\n\nPolling Strategy\nOption 1: Manual Polling\nCreate task → store task_id\nQuery every 3-5 seconds:\npython3 scripts/ai_notes_task_query.py <task_id>\n\nShow progress updates:\nStatus 10000: Processing...\nStatus 10002: Completed\nStop after 30-60 seconds (video length dependent)\nOption 2: Auto Polling (Recommended)\n\nUse the polling script for automatic status updates:\n\npython3 scripts/ai_notes_poll.py <task_id> [max_attempts] [interval_seconds]\n\n\nExamples:\n\n# Default: 20 attempts, 3-second intervals\npython3 scripts/ai_notes_poll.py \"task-id-here\"\n\n# Custom: 30 attempts, 5-second intervals\npython3 scripts/ai_notes_poll.py \"task-id-here\" 30 5\n\n\nOutput:\n\nShows real-time progress: [1/20] Processing... 25%\nAuto-stops when complete\nReturns formatted notes with type labels\nError Handling\nInvalid URL: \"Video URL not accessible\"\nProcessing error: \"Failed to parse video\"\nTimeout: \"Video too long, try again later\""
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ide-rea/ai-notes-ofvideo",
    "publisherUrl": "https://clawhub.ai/ide-rea/ai-notes-ofvideo",
    "owner": "ide-rea",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}