From sundial-org-awesome-openclaw-skills-4
Performs web searches via Perplexity API in three modes: search for quick facts, reason for complex analysis, research for in-depth reports. Delivers AI-grounded answers with citations.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
AI-powered web search with three modes for different depth levels.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
AI-powered web search with three modes for different depth levels.
# 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"
| Mode | Model | Best For | Cost |
|---|---|---|---|
search (default) | sonar-pro | Quick facts, summaries, current events | Low |
reason | sonar-reasoning-pro | Complex analysis, comparisons, problem-solving | Medium |
research | sonar-deep-research | In-depth reports, market analysis, literature reviews | High |
| Flag | Description | Default |
|---|---|---|
--mode | search, reason, research | search |
--recency | hour, day, week, month | — |
--domains | Comma-separated domain filter | — |
--lang | Language code (pt, en, es, etc.) | — |
--json | Raw JSON output | off |
# 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"
Set PERPLEXITY_API_KEY env var:
export PERPLEXITY_API_KEY="pplx-..."
Use search for everyday queries. Reserve research for when you truly need exhaustive analysis.