← Back to Skills Marketplace
dataify-server

Dataify Bing Videos

by dataify-server · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
42
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install dataify-bing-videos
Description
Use when a user run a Bing video search
README (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
Usage Guidance
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install dataify-bing-videos
  3. After installation, invoke the skill by name or use /dataify-bing-videos
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug dataify-bing-videos
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Dataify Bing Videos?

Use when a user run a Bing video search. It is an AI Agent Skill for Claude Code / OpenClaw, with 42 downloads so far.

How do I install Dataify Bing Videos?

Run "/install dataify-bing-videos" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Dataify Bing Videos free?

Yes, Dataify Bing Videos is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Dataify Bing Videos support?

Dataify Bing Videos is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Dataify Bing Videos?

It is built and maintained by dataify-server (@dataify-server); the current version is v1.0.0.

💬 Comments