/install cloudsway-smartsearch
\r \r
AI Search Skill (Web Search for AI Agents)\r
\r This skill enables AI agents and LLM systems to perform web search and retrieve real-time information from the internet.\r \r It works similarly to modern search engines such as:\r \r
- Google\r
- Bing\r
- Perplexity\r
- Brave Search\r
- Tavily\r \r The skill allows AI systems to access up-to-date information, including:\r \r
- news\r
- websites\r
- research articles\r
- documentation\r
- trending topics\r \r ---\r \r
When Should This Skill Be Used\r
\r Use this skill when the user asks about:\r \r • searching the internet \r • latest news or current events \r • information from websites \r • online research topics \r • finding articles or documentation \r • verifying facts \r • gathering information from multiple sources \r \r Example queries:\r \r
- "latest AI news"\r
- "search the web for vector database benchmarks"\r
- "find information about GPT models"\r
- "what happened in AI this week"\r
- "latest updates from OpenAI"\r
- "research agentic AI architecture"\r \r ---\r \r
Example Use Cases\r
\r
Web Search\r
\r Search the internet for general information.\r \r Example:\r \r
\r
search the web for latest AI developments\r
\r
```\r
\r
---\r
\r
## News Search\r
\r
Retrieve recent news or trending events.\r
\r
Example:\r
\r
```\r
\r
latest AI news this week\r
\r
```\r
\r
---\r
\r
## Research Tasks\r
\r
AI agents gathering information from multiple sources.\r
\r
Example:\r
\r
```\r
\r
research agentic AI architecture\r
\r
```\r
\r
---\r
\r
## Fact Checking\r
\r
Verify claims using multiple web sources.\r
\r
Example:\r
\r
```\r
\r
check if GPT-5 has been released\r
\r
````\r
\r
---\r
\r
# Quick Setup\r
\r
1. **Get your API Key**\r
\r
Sign up at:\r
\r
https://cloudsway.ai\r
\r
2. **Set environment variable**\r
\r
```bash\r
export CLOUDSWAYS_AK="your-api-key"\r
````\r
\r
That's it. The skill is ready to use.\r
\r
---\r
\r
# Quick Start\r
\r
## Method 1: Using the Script\r
\r
```bash\r
cd ~/scripts/search\r
./scripts/search.sh '{"q": "your search query"}'\r
```\r
\r
### Examples\r
\r
```bash\r
# Basic search\r
./scripts/search.sh '{"q": "latest AI developments"}'\r
\r
# Search with time filter\r
./scripts/search.sh '{"q": "OpenAI news", "freshness": "Week", "count": 20}'\r
\r
# Deep research\r
./scripts/search.sh '{"q": "Agentic AI architecture", "enableContent": true, "mainText": true}'\r
```\r
\r
---\r
\r
## Method 2: Direct API Call\r
\r
```bash\r
curl -s -G \\r
--url "https://aisearchapi.cloudsway.net/api/search/smart" \\r
--header "Authorization: ${CLOUDSWAYS_AK}" \\r
--data-urlencode "q=your search query" \\r
--data-urlencode "count=20" \\r
--data-urlencode "freshness=Week"\r
```\r
\r
### Real-world Example\r
\r
```bash\r
curl -s -G \\r
--url "https://aisearchapi.cloudsway.net/api/search/smart" \\r
--header "Authorization: ${CLOUDSWAYS_AK}" \\r
--data-urlencode "q=latest AI news February 2026" \\r
--data-urlencode "count=20" \\r
--data-urlencode "freshness=Week" \\r
--data-urlencode "enableContent=true" \\r
--data-urlencode "mainText=true"\r
```\r
\r
---\r
\r
# API Reference\r
\r
## Endpoint\r
\r
```\r
GET https://aisearchapi.cloudsway.net/api/search/smart\r
```\r
\r
---\r
\r
## Headers\r
\r
| Header | Type | Value | Description |\r
| ------------- | ------ | ----------- | --------------------- |\r
| Authorization | String | `{YOUR_AK}` | Your assigned API Key |\r
\r
---\r
\r
## Request Parameters\r
\r
| Parameter | Required | Type | Default | Description |\r
| -------------- | -------- | ------- | ------- | ------------------------------ |\r
| q | Yes | String | - | Search query |\r
| count | No | Integer | 10 | Must be 10 / 20 / 30 / 40 / 50 |\r
| freshness | No | String | null | Day / Week / Month |\r
| offset | No | Integer | 0 | Pagination offset |\r
| enableContent | No | Boolean | false | Extract full text |\r
| contentType | No | String | TEXT | HTML / MARKDOWN / TEXT |\r
| contentTimeout | No | Float | 3.0 | Extraction timeout |\r
| mainText | No | Boolean | false | Smart summary fragments |\r
\r
---\r
\r
# Response Format\r
\r
```json\r
{\r
"queryContext": {\r
"originalQuery": "your search query"\r
},\r
"webPages": {\r
"value": [\r
{\r
"name": "Article Title",\r
"url": "https://example.com/article",\r
"datePublished": "2026-02-27T15:46:11.0000000",\r
"snippet": "Short summary...",\r
"mainText": "Relevant excerpts...",\r
"content": "Full webpage text...",\r
"score": 0.85\r
}\r
]\r
}\r
}\r
```\r
\r
---\r
\r
# Content Strategy\r
\r
Choose the right field based on your needs:\r
\r
| Field | Latency | Token Cost | Use Case |\r
| -------- | ------- | ---------- | ---------------- |\r
| snippet | Fast | Low | Quick browsing |\r
| mainText | Medium | Medium | Focused research |\r
| content | Slower | High | Deep analysis |\r
\r
---\r
\r
# Recommended Settings\r
\r
### Quick Research\r
\r
```json\r
{"q": "topic", "count": 10}\r
```\r
\r
---\r
\r
### Focused Research\r
\r
```json\r
{"q": "topic", "count": 20, "freshness": "Week", "enableContent": true, "mainText": true}\r
```\r
\r
---\r
\r
### Deep Research\r
\r
```json\r
{"q": "topic", "count": 20, "enableContent": true, "contentType": "MARKDOWN"}\r
```\r
\r
---\r
\r
# Troubleshooting\r
\r
### Invalid JSON\r
\r
Use curl directly if the script fails.\r
\r
### Count Parameter Error\r
\r
Valid values:\r
\r
```\r
10 / 20 / 30 / 40 / 50\r
```\r
\r
### Environment Variable Missing\r
\r
Check configuration:\r
\r
```bash\r
echo $CLOUDSWAYS_AK\r
```\r
\r
---\r
\r
# Keywords\r
\r
web search\r
AI search\r
internet search\r
online search\r
search engine\r
Google search\r
Bing search\r
Perplexity search\r
Brave search\r
Tavily search\r
AI research tool\r
LLM web search\r
AI agent search\r
internet information retrieval\r
\r
---\r
\r
Last Updated: 2026-03-09\r
\r
```\r
\r
---\r
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install cloudsway-smartsearch - After installation, invoke the skill by name or use
/cloudsway-smartsearch - Provide required inputs per the skill's parameter spec and get structured output
What is smartsearch?
Performs real-time web searches to retrieve up-to-date online information, news, research data, and fact-checking results. It is an AI Agent Skill for Claude Code / OpenClaw, with 121 downloads so far.
How do I install smartsearch?
Run "/install cloudsway-smartsearch" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is smartsearch free?
Yes, smartsearch is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does smartsearch support?
smartsearch is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created smartsearch?
It is built and maintained by nodunjj (@prismheart); the current version is v1.0.6.