Back to skills
SkillHub ClubShip Full StackFull Stack
perplexity-web-search
Imported from https://github.com/openclaw/skills.
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Stars
3,131
Hot score
99
Updated
March 20, 2026
Overall rating
C4.5
Composite score
4.5
Best-practice grade
F32.4
Install command
npx @skill-hub/cli install openclaw-skills-perplexity-web-search
Repository
openclaw/skills
Skill path: skills/aligurelli/perplexity-web-search
Imported from https://github.com/openclaw/skills.
Open repositoryBest for
Primary workflow: Ship Full Stack.
Technical facets: Full Stack.
Target audience: everyone.
License: Unknown.
Original source
Catalog source: SkillHub Club.
Repository owner: openclaw.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install perplexity-web-search into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/openclaw/skills before adding perplexity-web-search to shared team environments
- Use perplexity-web-search for development workflows
Works across
Claude CodeCodex CLIGemini CLIOpenCode
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
---
name: web_search
description: Web search and URL fetching via Perplexity (default: sonar, optional: sonar-pro). Use when searching the web, looking up information, fetching URL content, or configuring web search settings. Covers web_search tool (Perplexity direct API) and web_fetch tool (HTML to markdown extraction).
homepage: https://github.com/aligurelli/clawd/tree/main/skills/web_search
metadata: {"clawdbot":{"emoji":"π"}}
---
# Web Search Skill
Web search via Perplexity (default: sonar) and URL content fetching. Sonar-pro is optional for deeper analysis.
## Credentials
This skill uses the Perplexity key configured in your OpenClaw setup. No shared or third-party keys are used.
If your environment is not already configured, set `PERPLEXITY_API_KEY` or configure the key in OpenClaw config.
**Recommended default (cost-effective):**
```json5
{
tools: {
web: {
search: {
provider: "perplexity",
perplexity: {
apiKey: "<your-perplexity-api-key>",
baseUrl: "https://api.perplexity.ai",
model: "sonar"
}
}
}
}
}
```
**Optional deep mode (higher quality, higher cost):**
```json5
{
tools: {
web: {
search: {
perplexity: {
model: "sonar-pro"
}
}
}
}
}
```
Use `sonar-pro` only when you explicitly need deeper analysis.
Get your API key at: https://www.perplexity.ai/settings/api
## Data Handling
- All search queries are sent to Perplexity's API (`https://api.perplexity.ai`)
- `web_fetch` fetched page contents are processed locally by OpenClaw (not sent to Perplexity)
- This instruction-only skill does not persist data by itself; query handling/retention is governed by OpenClaw + Perplexity policies
- Search queries are sent to Perplexity; do not include secrets or private data in queries
- Your own Perplexity API key and account terms apply
## web_search
Search the web. Returns AI-synthesized answers with citations.
Parameters:
- `query` (required) β search query
- `count` (1-10) β number of results
- `country` β 2-letter code: TR, US, DE, ALL
- `search_lang` β result language: tr, en, de, fr
- `freshness` β time filter: pd (day), pw (week), pm (month), py (year)
### Including Social Platform Results
For market research or user feedback queries, add social platform names naturally to the query. This makes Perplexity include results from Reddit, Twitter, Quora etc. alongside normal web results β no filtering, no restriction, just broader coverage.
```
web_search(query="cell tower finder app complaints features users want reddit twitter quora")
```
Perplexity will pull from both regular websites AND social platforms in one search.
For cases where you ONLY want a specific platform, use `site:` operator:
```
web_search(query="site:reddit.com best stud finder app")
```
Examples:
```
web_search(query="latest Flutter updates", freshness="pw")
web_search(query="Δ°stanbul hava durumu", country="TR", search_lang="tr")
web_search(query="AI news", count=5, freshness="pd")
web_search(query="GLP-1 tracker app wish features complaints reddit twitter quora")
```
## web_fetch
Fetch URL content as markdown/text. No JS execution. Content is extracted locally.
Parameters:
- `url` (required) β HTTP/HTTPS URL
- `extractMode` β markdown (default) or text
- `maxChars` β truncation limit
## Perplexity Models (User Choice)
- `sonar` (default) β fast Q&A + web search, cost-effective
- `sonar-pro` β multi-step reasoning + web search (use when deeper analysis is needed)
- `sonar-reasoning-pro` β deep chain-of-thought research (expensive, use sparingly)
Set the model in config based on your budget/quality preference.
---
## Skill Companion Files
> Additional files collected from the skill directory layout.
### _meta.json
```json
{
"owner": "aligurelli",
"slug": "perplexity-web-search",
"displayName": "Perplexity Web Search",
"latest": {
"version": "1.5.0",
"publishedAt": 1771283113906,
"commit": "https://github.com/openclaw/skills/commit/b15c2e0a2a03e222cc423ce01faa859744034f06"
},
"history": [
{
"version": "1.3.1",
"publishedAt": 1771282723376,
"commit": "https://github.com/openclaw/skills/commit/836486cb07b2b088b62c1c4d9ed55a8d3cab64ad"
}
]
}
```