seekit-search

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 `seekit` for live network fetches, and consume the json data from search engines.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "seekit-search" with this command: npx skills add lexiforest/seekit-search

Seekit Live Search

Use this skill for live web search through seekit.

Install

pip install seekit

Workflow

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 10

Examples:

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 5

Python 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, toutiao for web
  • youtube, bilibili for video
  • reddit, threads, weibo for social

If one provider looks thin or noisy, retry with a second provider instead of overfitting the parser output.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

Council of LLMs

Real multi-model council deliberation for OpenClaw subagents. Spawns 3 parallel subagents with different LLMs (kimi-k2.6, deepseek-v4-pro, gemma4:31b) and di...

Registry SourceRecently Updated
Automation

Stigmem

Persistent federated memory for OpenClaw agents — boot handshake, handoff, decision, and escalation surfaces backed by a Stigmem node.

Registry SourceRecently Updated
Automation

植物病害识别技能

Accurately identifies plant diseases based on computer vision and deep learning, supports both image and video input, outputs structured diagnostic reports i...

Registry SourceRecently Updated
Automation

Unbrowser

Cheap first-pass web browsing without launching Chrome — fetch SSR pages, follow links, query the DOM, run JS, detect bot-wall challenges. Escalate to OpenCl...

Registry SourceRecently Updated