โ† All skills
Tencent SkillHub ยท Developer Tools

cloudsway-search-tob

Search the web using Cloudsways SmartSearch API. Returns highly relevant results with dynamic summaries, snippets, and optional full-text content. Use when y...

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

Search the web using Cloudsways SmartSearch API. Returns highly relevant results with dynamic summaries, snippets, and optional full-text content. Use when y...

โฌ‡ 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.sh

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

Documentation

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

Cloudsways SmartSearch Skill

Search the web and extract intelligent fragments or full-text content directly into the LLM context.

Authentication

[cite_start]Authentication is handled via the URL endpoint and an Access Key[cite: 3, 5]. You must set the following environment variables before using the script: export CLOUDSWAYS_BASE_PATH="your-base-path" export CLOUDSWAYS_ENDPOINT="your-endpoint" export CLOUDSWAYS_AK="your-access-key"

Using the Script

If you have configured the script locally, you can call it by passing a JSON object: ./scripts/search.sh '<json>' Examples: # Basic search ./scripts/search.sh '{"q": "python async patterns"}' # Search with time filter and pagination ./scripts/search.sh '{"q": "Apple earnings", "freshness": "Week", "count": 20}' # Deep research (extracts full content and dynamic key fragments) ./scripts/search.sh '{"q": "Agentic AI architecture", "enableContent": true, "mainText": true}'

Basic Search (cURL)

curl -i --location --request GET 'https://{BasePath}/search/{Endpoint}/smart?q=latest+developments+in+quantum+computing&count=5' \ --header 'Authorization: Bearer {AK}' \ --header 'pragma: no-cache'

Advanced Search with Full Content (cURL)

curl -i --location --request GET 'https://{BasePath}/search/{Endpoint}/smart?q=machine+learning+best+practices&count=10&enableContent=true&mainText=true' \ --header 'Authorization: Bearer {AK}' \ --header 'pragma: no-cache'

Endpoint

GET https://{BasePath}/search/{Endpoint}/smart

Headers

HeaderTypeValueDescriptionAuthorizationStringBearer {AK}Input value uses your assigned AccessKey.pragmaStringno-cacheEntering no-cache returns results without caching, making each request independent; omitting this caches results for the same query term for 10 minutes.

Request Parameters

ParameterRequiredTypeDefaultDescriptionqYString-User search query term; cannot be empty.countNShort10Number of search results included. Enum values: 10, 20, 30, 40, 50.freshnessNStringnullFilter search results by time periods: Day (Past 24 hours), Week, Month.offsetNShort0Zero-based offset indicating the number of search results to skip. Use with count to paginate.enableContentNboolfalseControls whether full text (content) extraction is enabled: true or false.contentTypeNStringTEXTFull text return format. Optional values: HTML, MARKDOWN, TEXT.contentTimeoutNFloat3.0Full text read timeout. Maximum supported is 10 seconds. For low latency, set to 0.1.mainTextNboolfalseUsed to return dynamic summary key fragments. Takes effect only when enableContent is true.

Response Format

{ "queryContext": { "originalQuery": "open ai recent news" }, "webPages": { "value": [ { "name": "OpenAI just launched ChatGPT-5.1 Pro...", "url": "https://www.example.com/page", "datePublished": "2025-07-14T01:15:00.0000000Z", "snippet": "ChatGPT is looking to compete with Gemini...", "mainText": "Now GPT-5.1 Pro takes a lot of these improvements and makes them smarter...", "content": "Full extracted body text goes here...", "score": 0.8521444 } ] } }

Content Strategy

Understanding which text field to request is critical for token optimization: FieldLatencyRelevanceDescriptionsnippetLowestGoodA short text summary describing the webpage content. Best for general queries and fast browsing.mainTextMediumHighestDynamic summary fragments most relevant to the query term extracted from the body text. Smarter than the snippet.contentHigherHighWebpage full text information. Best for deep research, but consumes significant context tokens. Tips: For standard answers, rely on the default snippet. When you need precise, detailed answers without reading the whole page, use enableContent=true and mainText=true. Always set pragma: no-cache if you are querying real-time news or stock updates.

MCP Client Integration (Alternative)

For environments supporting the Model Context Protocol (MCP), configure your MCP Client using streamable_http: { "mcpServers": { "smartsearch": { "transport": "streamable_http", "url": "https://searchmcp.cloudsway.net/search/{YOUR_SMARTSEARCH_ENDPOINT}/smart", "headers": { "Authorization": "Bearer {YOUR_SMARTSEARCH_AK}" } } } }

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.sh Scripts