Seekit Search(No API Key Required)

v0.1.0

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 prov...

1· 165·1 current·1 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for lexiforest/seekit-search.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Seekit Search(No API Key Required)" (lexiforest/seekit-search) from ClawHub.
Skill page: https://clawhub.ai/lexiforest/seekit-search
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install seekit-search

ClawHub CLI

Package manager switcher

npx clawhub@latest install seekit-search
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
Name/description claim live web search; SKILL.md only asks to install and use the 'seekit' package and shows CLI/Python usage. No unrelated credentials, binaries, or config paths are requested — capability aligns with purpose.
Instruction Scope
Runtime instructions are limited to installing and invoking 'seekit' via CLI or Python and parsing JSON results. The instructions do not direct the agent to read unrelated files, environment variables, or transmit data to unexpected endpoints beyond the search providers implied by 'seekit'.
Install Mechanism
There is no formal install spec in the registry, but SKILL.md instructs users/agents to run 'pip install seekit'. Installing a third‑party PyPI package executes unreviewed code on the host — moderate risk. The package source and trustworthiness are not provided (no homepage/source link).
Credentials
No environment variables, credentials, or config paths are requested; this is proportionate for a search helper that claims 'no API key required'.
Persistence & Privilege
Skill is not always-enabled and does not request modification of other skills or system settings. Autonomous invocation is allowed by default but not combined with other privilege escalations here.
Assessment
This skill is coherent: it tells agents to install and call the third‑party 'seekit' package to perform live searches. Before installing or enabling it, verify the package's provenance (PyPI project page, source repo, author, recent activity, and reviews). Prefer installing in a sandbox or virtualenv, avoid global installs, and pin a specific version. Consider whether you trust a package that scrapes/searches providers (legal/terms-of-service implications). If you need stronger assurance, ask the skill author for the package repo URL or a signed release before use.

Like a lobster shell, security has layers — review code before you run it.

latestvk97bv6p4s8xsncp79739ecfjh1835vma
165downloads
1stars
1versions
Updated 1mo ago
v0.1.0
MIT-0

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.

Comments

Loading comments...