โ† All skills
Tencent SkillHub ยท Developer Tools

Querit Web Search

Advanced web search using the Querit API with support for site filtering, time ranges, geolocation, and language targeting.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Advanced web search using the Querit API with support for site filtering, time ranges, geolocation, and language targeting.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/search.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 4 sections Open source page

Querit Advanced Search Skill

This skill provides OpenClaw with real-time web search capabilities. It supports complex filtering to retrieve highly accurate information. Notes: Needs QUERIT_API_KEY from https://querit.ai Each account receives 1,000 free search queries to experience the content and capabilities.

Trigger Conditions

When the user asks for real-time news, specific facts, or up-to-date data. When the search requires constraints like specific dates, languages, countries, or particular websites.

Supported Parameters

You can construct a JSON payload to use this tool. The payload supports the following fields: query (string, Required): The search query term. count (integer, Optional): The maximum number of search results to return. filters (object, Optional): Filter conditions to refine results. sites (object): Specify which websites to include or exclude. include (array of strings): Only fetch data from these domains (e.g., ["wikipedia.org", "nytimes.com"]). exclude (array of strings): Do not fetch data from these domains. timeRange (object): date (string): Options include: d[number]: Past X days (e.g., d7 for past 7 days). w[number]: Past X weeks (e.g., w2). m[number]: Past X months (e.g., m6). y[number]: Past X years (e.g., y1). YYYY-MM-DDtoYYYY-MM-DD: Specific date range (e.g., 2023-01-01to2023-12-31). geo (object): countries -> include (array of strings): E.g., ["united states", "japan", "germany"]. languages (object): include (array of strings): E.g., ["english", "japanese", "german", "french", "spanish"].

Execution Instructions

Execute the included search.py script by passing a strict JSON string as the argument. Wrap the JSON string in single quotes. Example 1: Simple Search python skills/querit-web-search/scripts/search.py 'quantum computing breakthroughs' Example 2: Advanced Filtered Search python skills/querit-web-search/scripts/search.py '{ "query": "artificial intelligence regulations", "count": 10, "filters": { "sites": { "include": ["techcrunch.com", "mondaq.com","europa.eu"] }, "timeRange": { "date": "m3" }, "geo": { "countries": { "include": ["united states", "united kingdom"] } }, "languages": { "include": ["english"] } } }'

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/search.py Scripts