2.5k
GitHub Stars
3
Bundled Files
2 months ago
Catalog Refreshed
4 months ago
First Indexed
Readme & install
Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.
Installation
Preview and clipboard use veilstrat where the catalogue uses aiagentskills.
npx veilstrat add skill openclaw/skills --skill bing-search- _meta.json275 B
- skill.json69 B
- SKILL.md260 B
Overview
This skill provides a simple Bing web search interface that requires no API key. It runs as a lightweight Python script and returns search results from Bing for any user query. It is designed for quick ad-hoc lookups and integration into lightweight automation.
How this skill works
The skill executes a Bing search using a Python script that scrapes or queries publicly available Bing results without needing an API credential. You call the script with a text query and it returns the top results, URLs, and snippets suitable for display or further processing. It is intended as a minimal wrapper around web search output for fast retrieval and archival use.
When to use it
- Quickly fetch web search results without configuring API keys
- Integrate lightweight web search into automation or bots
- Perform one-off lookups from command line or scripts
- Archive or back up search output for research or audit purposes
- Prototype features that need search results before committing to a paid API
Best practices
- Validate and sanitize user queries before passing them to the search to avoid injection-style issues
- Respect robots.txt and terms of use when scraping or storing search results
- Implement rate limiting when issuing repeated searches to avoid blocking
- Cache common queries to reduce repeated load and speed up responses
- Parse and normalize results (title, snippet, URL, timestamp) for consistent downstream use
Example use cases
- Command-line lookup: run the script to get top results for a research question
- Bot integration: call the skill from a chat agent to provide web-backed answers
- Data collection: collect and archive result snippets and URLs for later analysis
- Prototype search features in an app without configuring paid search credentials
- Generate curated link lists for reports or newsletters using batch queries
FAQ
No. The skill is designed to work without an API key by using publicly available Bing search output.
How do I run a query from the command line?
Execute the Python script with your query, for example: python3 skills/bing_search/scripts/search.py "your query".