Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

byted-airesearch-videoevalbyted airsearch 视频评估

Agent Skill

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。它适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。使用时需要确认分辨率、时长、素材路径和导出格式;涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。

总安装

416

周安装

17

GitHub Stars

325

下载量

135
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:byted-airesearch-videoeval(byted airsearch 视频评估)
来源仓库:https://github.com/bytedance/agentkit-samples
仓库路径:skills/byted-airesearch-videoeval
安装命令:
npx skills add https://github.com/bytedance/agentkit-samples --skill byted-airesearch-videoeval
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/bytedance/agentkit-samples --skill byted-airesearch-videoeval

简介

byted-airesearch-videoeval 用于提交与查询长时视频材料评估任务。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中的视频质量评测。
  • 需批量验证输入后上传文件,获取 attachment_id 再创建评估任务。
  • 通过 github 安装并使用 npx 命令添加技能。
  • 支持异步任务状态查询与最终结果获取,适合耗时较长的评估流程。

SKILL.md

Byted Airesearch Videoeval

Use this skill to submit and query long-running material evaluation tasks.

When to use

Use this skill when the user wants to:

  • evaluate a video material or creative asset
  • submit a material evaluation task and get back a task identifier
  • check the status of an existing evaluation task later
  • fetch the final detail/result of a previously created evaluation task

Do not use this skill for generic video upload requests.

Current workflow

  1. Validate the full input batch before any upload starts.
  2. Upload the local video files and capture the returned attachment_id values.
  3. Create a task with the uploaded attachment IDs.
  4. Return success immediately after the task is created.
  5. Ask the user to query task list or task detail later if they want progress or results.

This workflow is intentionally non-blocking. Do not poll automatically after task creation.

Mandatory behavior

  • Do not expose the upload API as a standalone user-facing capability.
  • Do not trigger this skill for generic requests such as “upload this video”, “store this file”, or “send this video”.
  • Only call the upload API when the user explicitly intends to create a new material evaluation task.
  • For new task creation, prefer scripts/submit_evaluation_task.py so validation, upload, and task creation stay in one controlled flow.
  • Treat scripts/upload_video.py as an internal helper used by the orchestration flow, not as the primary user entrypoint. The script itself rejects direct use unless it is called with the internal orchestration marker.

For multi-file submissions, use the orchestration entrypoint so the whole batch is validated before the first upload starts.

Submission limits

  • A single task can include at most 10 videos.
  • Non-enabled users have a rolling free quota of at most 10 submitted videos within the last 24 hours.
  • The new task's video count is added to the number of videos already submitted in the last 24 hours. If the total exceeds 10, the service rejects the task and asks the user to contact Volcengine sales to enable access.
  • Enabled users are not restricted by this rolling 24-hour free quota.
  • Quota accounting is based on the actual number of videos submitted per task, with no deduplication.
  • Any task created within the last 24 hours counts toward the rolling quota, including running tasks.
  • Login-based access and API key access share the same quota pool.
  • The skill enforces the per-task limit locally before upload starts. The rolling 24-hour quota is enforced by the service, and the skill should surface the service rejection with a clear explanation.

Authentication

The current APIs use API key authentication.

All API requests sent by this skill must include the header:

  • x-product-version: 20
  • Authorization: bearer {API_KEY}

Preferred input methods:

  • --api-key "<api-key>"
  • BYTED_AIRESEARCH_VIDEOEVAL_API_KEY

If no API key is available, ask the user to create or view one at:

  • https://console.volcengine.com/datatester/ai-research/audience/list?tab=apikey

Then ask the user to provide the API key before calling the API.

If the API key is missing, the scripts must fail immediately with a clear error that points the user to the API key page above.

Known API coverage

Upload attachment

  • Endpoint: POST https://console.volcengine.com/datatester/compass/api/v3/survey/attachment
  • Request: multipart/form-data
  • File field: file
  • Upload constraints:

- each upload request contains exactly one video file - each video must be 50MB or smaller - file format must be mp4 - MIME type must be video/mp4

  • Output mapping:

- preserve the raw attachment payload - map the attachment object's id field to attachment_id

The upload_video.py script is an internal helper for the create-task workflow. It is not the primary user-facing entrypoint.

Create task

  • Endpoint: POST https://console.volcengine.com/datatester/compass/api/v3/survey/task
  • Fixed request fields:

- form_id: 0 - agent_id: 125 - audience_id: 3664529

  • Optional request fields currently exposed:

- prompt - language - is_typical_user_enabled - typical_user_count - typical_user_selection_mode - is_report_enabled - attachment_ids

  • Create constraints:

- one task submission can include at most 10 videos - attachment_ids must contain at most 10 items per request

The create step should send the uploaded attachment_id as a one-element attachment_ids array unless multiple attachment IDs are explicitly provided.

List and detail

Task detail is wired and can query an existing task directly:

  • Endpoint: GET https://console.volcengine.com/datatester/compass/api/v3/survey/task/{id}
  • Current auth: API key bearer token
  • Output mapping:

- map the task object's id field to task_id - map the task object's status field to task_status - parse task.detail - keep only items where key == video_structured_result and sub_tab!= null - expose a compact summary block for downstream agent use

Task list is wired and can query existing tasks directly:

  • Endpoint: GET https://console.volcengine.com/datatester/compass/api/v3/survey/task
  • Current auth: API key bearer token
  • Current fixed query params:

- page=1 - page_size=100 - agent_id=125

  • Output mapping:

- map each task item to task_id, name, status, created_at, updated_at - preserve pagination info in data.page

Commands

# Validate a whole batch before upload, then upload all files and create the task
python scripts/submit_evaluation_task.py \
  --file /path/to/video-1.mp4 \
  --file /path/to/video-2.mp4 \
  --api-key "<api-key>"

# Single-video create flow
python scripts/submit_evaluation_task.py \
  --file /path/to/video.mp4 \
  --prompt "Evaluate this material for audience fit and content quality." \
  --api-key "<api-key>"

# Query task list later
python scripts/list_evaluation_tasks.py

# Query task detail later
python scripts/get_evaluation_task_detail.py --task-id 12345

Response handling

All scripts emit JSON to stdout with the same top-level envelope:

  • status
  • message
  • request_id
  • data
  • error

Important normalized fields:

  • submit task: data.task_id, data.task_status, data.submitted_video_count
  • list: data.items
  • detail: data.detail, data.summary

Final answer rules

  • Use the structured JSON returned by the detail endpoint as the internal source of truth.
  • Present the final answer in human-readable natural language.
  • When the task is finished, prefer a concise report-style answer rather than a raw data dump.
  • Do not dump raw JSON to the user.
  • Do not expose internal field names such as video_eval, video_user_report, distribution, field_desc, or similar implementation-oriented keys.
  • Apply the same rule to task list responses: use the list result as internal source data, but present the outcome as a natural-language summary rather than raw fields.
  • For task list answers, it is acceptable to include the task ID, task name, status, created time, and updated time in human-readable prose, because those fields help the user choose a task for follow-up detail queries.
  • When multiple videos are present, summarize them separately.
  • For finished task detail results, prefer a readable report flow such as: task conclusion first, then one short section per video, then overall recommendations if the source data supports them.
  • If the task is not finished yet, do not fabricate a report. Clearly state the current status and ask the user to check again later.
  • Only provide raw structured data if the user explicitly asks for the raw result.

Practical guidance

  • For new submissions, use the orchestration flow rather than exposing upload as a standalone step to the user.
  • Validate the local file before upload. Reject non-MP4 files, files with non-video/mp4 MIME types, or files larger than 50MB with a direct and actionable error message.
  • Validate the task creation input before calling the API. Reject any request that contains more than 10 attachment IDs with a direct and actionable error message.
  • For a multi-video submit flow, validate the full batch size before any upload starts. If the batch contains more than 10 files, fail immediately and do not upload anything.
  • If the service rejects task creation because the rolling 24-hour free quota was exceeded, use this standard Chinese wording for the user-facing message: 免费版用户每24小时最多提交10个评估视频,如需购买请联系火山引擎销售人员
  • After create succeeds, tell the user the task has been submitted successfully and can be checked later.
  • Use task list when the user wants to browse or find historical tasks.
  • Use task detail when the user already knows the task ID and wants the final result.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.9%
按下载量换算48

Claude

32.81%
按下载量换算44

Cursor

16.86%
按下载量换算23

Gemini CLI

9.73%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills