← 返回 Skills 市场
dataify-server

Dataify Bing Videos

作者 dataify-server · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
42
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install dataify-bing-videos
功能描述
Use when a user run a Bing video search
使用说明 (SKILL.md)

Bing Videos

Overview

Use this skill to turn a natural-language Bing video search request into Dataify Bing Videos API fields, show the full request-parameter table for confirmation, call the API through scripts/bing_videos.py only after the user confirms, and return the API response directly without summarizing, parsing, reformatting, or post-processing it.

The source API document is summarized in references/api.md. Read it when field behavior, allowed values, or response shape is unclear.

Defaults

Use defaults only when they come from parameter descriptions, not from request examples.

  • engine: default bing_videos.
  • json: default 1.
  • first: default 1.
  • no_cache: default false.
  • q: default pizza from the field description. Prefer the user's requested query whenever provided.
  • mkt, cc, setlang, length, date, resolution, source_site, price: no default.

Treat source-document sample values such as en-US, us, short, lt1440, 360p, dailymotion.com, free, or no_cache=true as examples only. pizza is used only because the q field description states it as the default.

Workflow

  1. Identify the user's video search query and map optional requirements to API fields:
    • q: search keywords. Default pizza when the user provides no query.
    • json: output format. Default 1; use 2 for JSON plus HTML, 3 for HTML.
    • mkt: display language and market, such as en-US or zh-CN.
    • cc: two-letter country or region code, such as us, cn, jp, uk.
    • setlang: two-letter search language, such as en, zh, or ja.
    • first: organic result offset. Default 1.
    • length: video duration filter: short, medium, or long.
    • date: freshness filter: lt1440, lt10080, lt43200, or lt525600.
    • resolution: resolution filter: lowerthan_360p, 360p, 480p, 720p, or 1080p.
    • source_site: source filter, such as vimeo.com, dailymotion.com, or cnn.com.
    • price: free or paid.
    • no_cache: cache behavior. Default false; use true only when requested.
  2. Prefer explicit user-provided field values over inferred values. Never fill fields from API example YAML values.
  3. Before every live API call, run a dry run with --table, show the resulting Markdown table to the user, and ask whether they want to modify parameters. The table must include the complete field list except Authorization, with only these columns: 参数名, 当前值, 默认值, 说明.
python3 scripts/bing_videos.py --prompt "pizza" --dry-run --table
  1. If the user asks to modify parameters, apply their changes and show the full table again.
  2. Call the live API only after the user confirms the displayed parameters.
  3. Ensure authentication before a live call:
    • Read DATAIFY_API_TOKEN from the current environment.
    • If the user provides a token during the task, pass it with --token or set DATAIFY_API_TOKEN for the command before invoking the script.
    • The script adds a Bearer prefix when the token does not already include one.
    • If no token is available, ask the user to input a Dataify API token or register at Dataify Dashboard.
  4. Return the live script output directly to the user. Do not summarize video results, extract fields, reformat JSON, parse embedded JSON strings, or process returned HTML unless the user separately asks for processing.

Script Usage

Preview full parameters before confirmation:

python3 scripts/bing_videos.py \
  --prompt "用必应视频搜索 OpenAI 发布会,过去一周,免费,1080p,返回 JSON 和 HTML" \
  --dry-run \
  --table

Run the live call only after confirmation:

python3 scripts/bing_videos.py \
  --prompt "用必应视频搜索 OpenAI 发布会,过去一周,免费,1080p,返回 JSON 和 HTML"

Useful flags:

  • --q, --json, --mkt, --cc, --setlang, --first, --length, --date, --resolution, --source-site, --price, --no-cache
  • --field key=value for any supported API field
  • --token to provide a token for the current run
  • --body-format form|json, default form
  • --dry-run to print parsed payload JSON and skip network/auth checks
  • --table with --dry-run to print the full confirmation table
安全使用建议
Before installing, be aware that live use sends your search query, filters, and Dataify API token to Dataify's scraper API. Review the displayed parameter table before confirming a call, and only provide a Dataify token you are comfortable using for this service.
能力评估
Purpose & Capability
The stated purpose, reference docs, and Python script all align around converting a user request into Dataify Bing Videos API parameters and returning the API response.
Instruction Scope
Runtime instructions require a dry-run parameter table and user confirmation before any live API call, with no hidden role changes or prompt-injection behavior found.
Install Mechanism
The artifact contains only a skill file, a reference document, and one Python script; metadata shows no package dependencies or install hooks.
Credentials
The script uses network access to post search parameters to Dataify and uses a Dataify API token, which is expected for this API integration and disclosed in the skill.
Persistence & Privilege
No file persistence, background workers, privilege escalation, or broad local data access were found; token handling is limited to an argument or DATAIFY_API_TOKEN for the current process.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install dataify-bing-videos
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /dataify-bing-videos 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of dataify-bing-videos skill. - Converts natural-language Bing video search requests into Dataify Bing Videos API parameters. - Displays a full parameter confirmation table to the user before making any live API call. - Allows users to review and modify parameters prior to execution. - Handles authentication via the DATAIFY_API_TOKEN environment variable or user input. - Returns API responses directly without additional summarization or formatting.
元数据
Slug dataify-bing-videos
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Dataify Bing Videos 是什么?

Use when a user run a Bing video search. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 42 次。

如何安装 Dataify Bing Videos?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install dataify-bing-videos」即可一键安装,无需额外配置。

Dataify Bing Videos 是免费的吗?

是的,Dataify Bing Videos 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Dataify Bing Videos 支持哪些平台?

Dataify Bing Videos 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Dataify Bing Videos?

由 dataify-server(@dataify-server)开发并维护,当前版本 v1.0.0。

💬 留言讨论