- name
- seekit-search
- description
- Use this skill when an agent needs fresh web results. No API key required. Supports multiple platforms (web, video, social). It explains how to choose a provider, call
seekitfor live network fetches, and consume the json data from search engines.
Seekit Live Search
Use this skill for live web search through seekit.
Install
pip install seekitWorkflow
Prefer the command line over the Python API — it is simpler and produces structured output directly.
CLI (preferred)
seekit <query> --engine <provider> --format json --limit 10Examples:
seekit "latest OpenAI reasoning model" --engine bing --format json
seekit "python asyncio tutorial" --engine google --format markdown
seekit "cat videos" --engine youtube --format json --limit 5Python API
import seekit
results = seekit.search(query, provider="bing")Each result is a SerpItem with fields: provider, title, excerpt, url, optional author, optional cover_url.
JSON output example
[
{
"provider": "bing",
"title": "OpenAI announces new reasoning model",
"excerpt": "OpenAI has released its latest reasoning model...",
"url": "https://example.com/article",
"author": "John Doe",
"cover_url": null,
"time": "2026-03-15"
}
]Choosing a provider
bing,brave,duckduckgo,so,sogou,toutiaofor webyoutube,bilibilifor videoreddit,threads,weibofor social
If one provider looks thin or noisy, retry with a second provider instead of overfitting the parser output.