/byted-airesearch-videoeval
Create and check long-running video material evaluation tasks. Use this skill when the user wants to submit videos for evaluation, check an existing video evaluation task list, or fetch the result of a previously created video evaluation task. This skill is not a general-purpose
$ npx -y skills add bytedance/agentkit-samples --skill byted-airesearch-videoeval --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/byted-airesearch-videoeval
Context preview
The summary Claude sees to decide when to auto-load this skill.
Create and check long-running video material evaluation tasks. Use this skill when the user wants to submit videos for evaluation, check an existing video evaluation task list, or fetch the result of a previously created video evaluation task. This skill is not a general-purpose
SKILL.md
byted-airesearch-videoeval.SKILL.mdname: byted-airesearch-videoeval
description: Create and check long-running video material evaluation tasks. Use this skill when the user wants to submit videos for evaluation, check an existing video evaluation task list, or fetch the result of a previously created video evaluation task. This skill is not a general-purpose video upload skill because upload is allowed only as an internal step of task creation. Authentication uses an API key passed as an Authorization bearer token.
license: Complete terms in LICENSE
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`
Read more
name: byted-airesearch-videoeval description: Create and check long-running video material evaluation tasks. Use this skill when the user wants to submit videos for evaluation, check an existing video evaluation task list, or fetch the result of a previously created video evaluation task. This skill is not a general-purpose video upload skill because upload is allowed only as an internal step of task creation. Authentication uses an API key passed as an Authorization bearer token. license: Complete terms in LICENSE
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`
欢迎来到 AgentKit 代码工坊(Samples)仓库! AgentKit 是火山引擎推出的企业级 AI Agent 开发平台,为开发者提供完整的 Agent 构建、部署和运维解决方案。平台通过标准化的开发工具链和云原生基础设施,显著降低复杂智能体应用的开发部署门槛。 本代码库包含了一系列示例和教程,帮助您理解、实现和集成 AgentKit 的各项功能到您的应用中。
Other skills on agentkit-samples.
- /code-optimization
Optimize code performance through iterative improvements (max 2 rounds). Benchmark execution time and memory usage, compare against baseline implementations, and generate detailed optimization reports. Supports C++, Python, Java, Rust, and other languages.
Open skill - /image-video-gen
根据文字描述生成视频,一个生成图片和视频的工作流技能。依赖 skills: byted-web-search, image-generate, video-generate。注意:此 workflow 没有执行脚本,只是一个描述性的文档。
Open skill - /skills-management
Manage AgentKit skills, SkillHub/skillhub, skill centers, and skill spaces. Use this skill whenever the user has a management intent for AgentKit skills, skill中心, skill 空间, skill space, or skill hub, including listing, inspecting, downloading, fetching, uploading, publishing,
Open skill - /tos-file-access
Upload files or directories to TOS-compatible object storage for Volcano Engine or BytePlus and download files from URLs. Use this skill when (1) Upload Agent-generated files or directories for sharing, (2) Download files from URLs before Agent processing.
Open skill - /veadk-go-skills
根据用户的功能需求,完成与 VeADK-Go 相关的功能; 包括:直接根据需求生成 Agent;将Enio Agent转换为VeADK-Go Agent。
Open skill - /veadk-skills
根据用户的功能需求,完成与 VeADK 相关的功能。
Open skill

