openclaw-search
Facilitates intelligent multi-source search for agents, combining web and academic data with confidence scoring for enhanced research capabilities.
Install this skill
or
50/100
Security score
The openclaw-search skill was audited on Jul 28, 2026 and we found 10 security issues across 1 threat category. Review the findings below before installing.
Categories Tested
Security Issues
medium line 111
Curl to non-GitHub URL
SourceSKILL.md
| 109 | ```bash |
| 110 | # Basic web search |
| 111 | curl -X POST "https://api.aisa.one/apis/v1/scholar/search/web?query=AI+frameworks&max_num_results=10" \ |
| 112 | -H "Authorization: Bearer $AISA_API_KEY" |
| 113 |
medium line 115
Curl to non-GitHub URL
SourceSKILL.md
| 113 | |
| 114 | # Full text search (with page content) |
| 115 | curl -X POST "https://api.aisa.one/apis/v1/search/full?query=latest+AI+news&max_num_results=10" \ |
| 116 | -H "Authorization: Bearer $AISA_API_KEY" |
| 117 | ``` |
medium line 123
Curl to non-GitHub URL
SourceSKILL.md
| 121 | ```bash |
| 122 | # Search academic papers |
| 123 | curl -X POST "https://api.aisa.one/apis/v1/scholar/search/scholar?query=transformer+models&max_num_results=10" \ |
| 124 | -H "Authorization: Bearer $AISA_API_KEY" |
| 125 |
medium line 127
Curl to non-GitHub URL
SourceSKILL.md
| 125 | |
| 126 | # With year filter |
| 127 | curl -X POST "https://api.aisa.one/apis/v1/scholar/search/scholar?query=LLM&max_num_results=10&as_ylo=2024&as_yhi=2025" \ |
| 128 | -H "Authorization: Bearer $AISA_API_KEY" |
| 129 | ``` |
medium line 135
Curl to non-GitHub URL
SourceSKILL.md
| 133 | ```bash |
| 134 | # Intelligent hybrid search |
| 135 | curl -X POST "https://api.aisa.one/apis/v1/scholar/search/smart?query=machine+learning+optimization&max_num_results=10" \ |
| 136 | -H "Authorization: Bearer $AISA_API_KEY" |
| 137 | ``` |
medium line 143
Curl to non-GitHub URL
SourceSKILL.md
| 141 | ```bash |
| 142 | # Tavily search |
| 143 | curl -X POST "https://api.aisa.one/apis/v1/tavily/search" \ |
| 144 | -H "Authorization: Bearer $AISA_API_KEY" \ |
| 145 | -H "Content-Type: application/json" \ |
medium line 149
Curl to non-GitHub URL
SourceSKILL.md
| 147 | |
| 148 | # Extract content from URLs |
| 149 | curl -X POST "https://api.aisa.one/apis/v1/tavily/extract" \ |
| 150 | -H "Authorization: Bearer $AISA_API_KEY" \ |
| 151 | -H "Content-Type: application/json" \ |
medium line 155
Curl to non-GitHub URL
SourceSKILL.md
| 153 | |
| 154 | # Crawl web pages |
| 155 | curl -X POST "https://api.aisa.one/apis/v1/tavily/crawl" \ |
| 156 | -H "Authorization: Bearer $AISA_API_KEY" \ |
| 157 | -H "Content-Type: application/json" \ |
medium line 161
Curl to non-GitHub URL
SourceSKILL.md
| 159 | |
| 160 | # Site map |
| 161 | curl -X POST "https://api.aisa.one/apis/v1/tavily/map" \ |
| 162 | -H "Authorization: Bearer $AISA_API_KEY" \ |
| 163 | -H "Content-Type: application/json" \ |
medium line 171
Curl to non-GitHub URL
SourceSKILL.md
| 169 | ```bash |
| 170 | # Generate explanations with confidence scoring |
| 171 | curl -X POST "https://api.aisa.one/apis/v1/scholar/explain" \ |
| 172 | -H "Authorization: Bearer $AISA_API_KEY" \ |
| 173 | -H "Content-Type: application/json" \ |
Scanned on Jul 28, 2026
View Security DashboardRate this skill
Categoryeducation research
UpdatedAugust 9, 2026
claudeclaude-codehermesfrontenddesigndocxgitapitestingbackendresearchermarketing-analystdata-analystproduct-managercontent-marketereducation researchmarketingdata analyticsproduct
baofeng-tech/agent-skills