锋哥 Bing 搜索

PassAudited by ClawScan on Feb 18, 2026.

Overview

The skill implements an HTML-scraping Bing search tool that matches its description; it has no unexpected credential or install demands, but it will send queries to cn.bing.com and requires the Python requests library to be present.

This skill scrapes Bing search results by making HTTPS requests to cn.bing.com and printing parsed results—no API key or secrets are required. Before installing, consider: (1) privacy: your search queries will be transmitted to Bing (the operator of the skill does not request or store credentials, but the network call goes to Bing); (2) terms-of-service: HTML scraping can violate a provider's TOS; (3) dependency: the script requires the Python requests package (the manifest incorrectly lists 'requests' as a binary), so install requests in your Python environment (pip install requests) before running; (4) fragility: HTML scraping is brittle and may break if Bing changes its markup. If you are comfortable with these trade-offs, the skill appears internally consistent with its stated purpose.