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

Crabwalk

Real-time companion monitor for OpenClaw agents

Registry SourceRecently Updated
2.7K4luccast
Automation

Crabwalk

Real-time companion monitor for OpenClaw agents

Registry SourceRecently Updated
1.9K2luccast
Automation

Homeassistant N8n Agent

Bridge OpenClaw with your n8n instance for Home Assistant automation.

Registry SourceRecently Updated
Automation

Moltext

Compile legacy documentation on internet into agent-native memory context using the Moltext.

Registry SourceRecently Updated