bing-image-search

Extract and validate direct image URLs from Bing image search results.

1|Updated Jan 9, 2026
One-click install
npx skills add https://github.com/talesofai/bot-agent --skill bing-image-search
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: bing-image-search
Source: https://github.com/talesofai/bot-agent/tree/main/configs/skills/bing-image-search
Command: npx skills add https://github.com/talesofai/bot-agent --skill bing-image-search

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires url-access-check, and includes scripts (resource) components.

What problem does it solve?

This skill extracts direct image URLs (murl) from Bing image search results and validates their accessibility and minimum resolution before output. It is designed for scenarios where direct image links are required for embedding in chats, documents, or content pipelines, but sources may block or misreport images.

Core Features & Use Cases

  • Retrieve direct image URLs (murl) from Bing image search results and deduplicate them.
  • Validate each candidate with a URL-access checker to ensure accessibility and meet a minimum short-side dimension.
  • Output ready-to-use Markdown image links for easy embedding in documents or conversations.
  • Use Case: Share reliable image embeds in a chat or knowledge base when primary image sources are restricted.

Quick Start

Use the Bing image search skill to fetch verified image links. Example: bash .claude/skills/bing-image-search/scripts/search_images.sh "forest" --limit 2

Frequently Asked Questions about bing-image-search

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I get direct image URLs from Bing search results for embedding in markdown?

Direct image URLs from Bing search results are extracted and validated for accessibility and minimum resolution before being output as ready-to-use markdown image links for embedding in documents or chats.

Why do image links from search engines break when I embed them in my documents?

Image links break when primary sources block direct access or misreport images. This skill validates each candidate URL with an access checker to filter non-http(s) URLs and guard against unsafe redirects before generating markdown embeds.

Can I use this image search skill when my primary image sources are restricted or blocked?

This skill is specifically designed for scenarios where primary image sources are restricted. It retrieves direct image URLs from Bing, deduplicates them, and validates accessibility to ensure reliable embedding in content pipelines.

How do I validate image resolution and prevent SSRF when fetching image URLs?

To validate image resolution and prevent SSRF when fetching image URLs, the skill uses a url-access-check dependency to guard against SSRF, filter unsafe redirects, and verify that images meet a minimum short-side dimension requirement.

Does the bing-image-search skill filter out non-http or non-https image links?

Yes, the bing-image-search skill filters out non-http(s) URLs during the extraction process. It validates each candidate URL to ensure it is an accessible http or https link before outputting the markdown image embed.