skills$openclaw/perplexity
ericsantos1.6k

by ericsantos

perplexity – OpenClaw Skill

perplexity is an OpenClaw Skills integration for research workflows. Deep search via Perplexity API. Three modes: search (quick facts), reason (complex analysis), research (in-depth reports). Returns AI-grounded answers with citations.

1.6k stars7.1k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026research

Skill Snapshot

nameperplexity
descriptionDeep search via Perplexity API. Three modes: search (quick facts), reason (complex analysis), research (in-depth reports). Returns AI-grounded answers with citations. OpenClaw Skills integration.
ownerericsantos
repositoryericsantos/perplexity-deep-search
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @ericsantos/perplexity-deep-search
last updatedFeb 7, 2026

Maintainer

ericsantos

ericsantos

Maintains perplexity in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
scripts
search.sh
3.1 KB
_meta.json
300 B
SKILL.md
2.4 KB
SKILL.md

Perplexity Deep Search

AI-powered web search with three modes for different depth levels.

Quick Start

# Quick search (sonar) - facts, summaries, current events
{baseDir}/scripts/search.sh "latest AI news"

# Reasoning (sonar-reasoning-pro) - complex analysis, multi-step
{baseDir}/scripts/search.sh --mode reason "compare React vs Vue for enterprise apps"

# Deep Research (sonar-deep-research) - full reports, exhaustive analysis
{baseDir}/scripts/search.sh --mode research "market analysis of AI in healthcare 2025"

Modes

ModeModelBest ForCost
search (default)sonar-proQuick facts, summaries, current eventsLow
reasonsonar-reasoning-proComplex analysis, comparisons, problem-solvingMedium
researchsonar-deep-researchIn-depth reports, market analysis, literature reviewsHigh

Options

FlagDescriptionDefault
--modesearch, reason, researchsearch
--recencyhour, day, week, month
--domainsComma-separated domain filter
--langLanguage code (pt, en, es, etc.)
--jsonRaw JSON outputoff

Examples

# Search with recency filter
{baseDir}/scripts/search.sh --recency week "OpenAI latest announcements"

# Search restricted to specific domains
{baseDir}/scripts/search.sh --domains "arxiv.org,nature.com" "transformer architecture advances"

# Search in Portuguese
{baseDir}/scripts/search.sh --lang pt "inteligência artificial no Brasil"

# Deep research with JSON output
{baseDir}/scripts/search.sh --mode research --json "enterprise AI adoption trends"

API Key

Set PERPLEXITY_API_KEY env var:

export PERPLEXITY_API_KEY="pplx-..."

Pricing Reference

  • Search (sonar-pro): ~$0.01/query
  • Reasoning (sonar-reasoning-pro): ~$0.02/query
  • Deep Research (sonar-deep-research): ~$0.40/query (uses many searches + reasoning)

Use search for everyday queries. Reserve research for when you truly need exhaustive analysis.

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install perplexity?

Run openclaw add @ericsantos/perplexity-deep-search in your terminal. This installs perplexity into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/ericsantos/perplexity-deep-search. Review commits and README documentation before installing.