multi-source-search

Confidence-scored multi-source retrieval across web, scholar, Tavily, and Perplexity-backed research. Use when: the user needs cross-source verification, consensus checks, or one report that compares multiple search surfaces. Supports parallel retrieval, confidence scoring, and synthesis-ready outputs.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "multi-source-search" with this command: npx skills add baofeng-tech/multi-source-search

Multi-Source Search Verification Engine

Compare multiple search surfaces in one pass and score how confident the result set looks before you synthesize it.

When to use

  • The user wants the same topic checked across multiple search surfaces instead of one provider.
  • The user needs confidence scoring, cross-source verification, or a consensus-style research output.
  • The user wants a growth-variant search lane focused on validation, not just lookup.

When NOT to use

  • The user only needs one flagship search entry for lookup, cited answers, or deep research; use search.
  • The task is provider-specific and fits scholar-search, tavily-search, or perplexity-search.
  • The workflow must avoid relay-based calls to api.aisa.one.

Capabilities

  • Parallel retrieval across structured web, scholar, smart search, Tavily, and Perplexity-backed flows.
  • Confidence scoring that highlights source coverage, diversity, and result quality.
  • Synthesis-ready outputs for research comparison, verification, and decision support.

One API key gives you:

  • Structured web search
  • Scholar search
  • Hybrid scholar search
  • Tavily search and extraction tools
  • Perplexity Sonar answer-generation endpoints with citations

Compatibility

Works with any agentskills.io-compatible harness, including:

  • Claude Code and Claude (Anthropic)
  • OpenAI Codex
  • Cursor
  • Gemini CLI (Google)
  • OpenCode, Goose, OpenClaw, Hermes
  • and any other harness that implements the Agent Skills specification

Requires Python 3, a POSIX shell, and AISA_API_KEY (get one at aisa.one).

What This Skill Is Best For

Fast web lookup

Search the latest AI infrastructure launches and summarize the top sources.

Scholar-backed research

Find recent papers on multimodal reasoning from 2024 onward.

Citation-rich answers

Use Sonar Pro to answer which open-source agent frameworks are gaining traction and cite sources.

Deep research reports

Use Sonar Deep Research to produce a thorough market map of AI browser agents.

Quick Start

export AISA_API_KEY="your-key"

Example Requests

  • Compare how three search surfaces describe the latest browser-use agent products.
  • Verify whether a market claim shows up in web search, scholar search, and cited answer results.
  • Run a confidence-scored research pass on multi-agent IDEs before writing a recommendation.

Search APIs

Web Search

curl -X POST "https://api.aisa.one/apis/v1/scholar/search/web?query=AI+frameworks&max_num_results=10" \
  -H "Authorization: Bearer $AISA_API_KEY"

Scholar Search

curl -X POST "https://api.aisa.one/apis/v1/scholar/search/scholar?query=transformer+models&max_num_results=10" \
  -H "Authorization: Bearer $AISA_API_KEY"

curl -X POST "https://api.aisa.one/apis/v1/scholar/search/scholar?query=LLM&max_num_results=10&as_ylo=2024&as_yhi=2025" \
  -H "Authorization: Bearer $AISA_API_KEY"

Hybrid Scholar Search

curl -X POST "https://api.aisa.one/apis/v1/scholar/search/smart?query=machine+learning+optimization&max_num_results=10" \
  -H "Authorization: Bearer $AISA_API_KEY"

Perplexity Sonar APIs

The deprecated /search/full and /search/smart nodes have been removed from this skill.

The replacement flow is the Perplexity API family:

EndpointUse case
/perplexity/sonarLightweight, cost-effective search answers with citations
/perplexity/sonar-proBetter for complex queries and multi-step follow-ups
/perplexity/sonar-reasoning-proStronger analytical reasoning with web search
/perplexity/sonar-deep-researchExhaustive research and long-form reports

These descriptions are based on the AIsa docs:

Sonar

curl -X POST "https://api.aisa.one/apis/v1/perplexity/sonar" \
  -H "Authorization: Bearer $AISA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "sonar",
    "messages": [
      {"role": "user", "content": "What changed in the AI agent ecosystem this week?"}
    ]
  }'

Sonar Pro

curl -X POST "https://api.aisa.one/apis/v1/perplexity/sonar-pro" \
  -H "Authorization: Bearer $AISA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "sonar-pro",
    "messages": [
      {"role": "user", "content": "Compare the top browser-use agent frameworks and cite the key differences."}
    ]
  }'

Sonar Reasoning Pro

curl -X POST "https://api.aisa.one/apis/v1/perplexity/sonar-reasoning-pro" \
  -H "Authorization: Bearer $AISA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "sonar-reasoning-pro",
    "messages": [
      {"role": "user", "content": "Analyze whether small vertical AI agents can defend against general-purpose copilots."}
    ]
  }'

Sonar Deep Research

curl -X POST "https://api.aisa.one/apis/v1/perplexity/sonar-deep-research" \
  -H "Authorization: Bearer $AISA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "sonar-deep-research",
    "messages": [
      {"role": "user", "content": "Create a deep research report on AI coding agents in 2026, including product categories, pricing, and risks."}
    ]
  }'

Tavily APIs

curl -X POST "https://api.aisa.one/apis/v1/tavily/search" \
  -H "Authorization: Bearer $AISA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"latest AI developments"}'

curl -X POST "https://api.aisa.one/apis/v1/tavily/extract" \
  -H "Authorization: Bearer $AISA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"urls":["https://example.com/article"]}'

curl -X POST "https://api.aisa.one/apis/v1/tavily/crawl" \
  -H "Authorization: Bearer $AISA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://example.com","max_depth":2}'

curl -X POST "https://api.aisa.one/apis/v1/tavily/map" \
  -H "Authorization: Bearer $AISA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://example.com"}'

Python Client

# Structured search
python3 scripts/search_client.py web --query "latest AI news" --count 10
python3 scripts/search_client.py scholar --query "transformer architecture" --count 10
python3 scripts/search_client.py smart --query "autonomous agents" --count 10

# Perplexity Sonar family
python3 scripts/search_client.py sonar --query "Summarize this week's AI launches"
python3 scripts/search_client.py sonar-pro --query "Compare AI agent frameworks with citations"
python3 scripts/search_client.py sonar-reasoning-pro --query "Analyze the defensibility of AI copilots"
python3 scripts/search_client.py sonar-deep-research --query "Write a deep research report on AI browser agents"

# Optional system instruction
python3 scripts/search_client.py sonar-pro \
  --query "Map the top coding agent products" \
  --system "Respond in markdown with a short executive summary first."

# Tavily utilities
python3 scripts/search_client.py tavily-search --query "AI developments"
python3 scripts/search_client.py tavily-extract --urls "https://example.com/article"

# Multi-source retrieval
python3 scripts/search_client.py verity --query "Is quantum computing ready for enterprise?"

API Reference

EndpointMethodDescription
/scholar/search/webPOSTWeb search with structured results
/scholar/search/scholarPOSTAcademic paper search
/scholar/search/smartPOSTHybrid scholar search
/scholar/explainPOSTGenerate result explanations
/perplexity/sonarPOSTLightweight search answers with citations
/perplexity/sonar-proPOSTAdvanced search answers for complex tasks
/perplexity/sonar-reasoning-proPOSTAnalytical reasoning with web search
/perplexity/sonar-deep-researchPOSTExhaustive research reports
/tavily/searchPOSTTavily search integration
/tavily/extractPOSTExtract content from URLs
/tavily/crawlPOSTCrawl web pages
/tavily/mapPOSTGenerate site maps

Parameters

Scholar search query parameters

ParameterTypeDescription
querystringSearch query
max_num_resultsintegerMax results (default 10)
as_ylointegerYear lower bound
as_yhiintegerYear upper bound

Perplexity request body

This skill sends a minimal OpenAI-style payload:

{
  "model": "sonar-pro",
  "messages": [
    {"role": "system", "content": "Optional system instruction"},
    {"role": "user", "content": "Your question"}
  ]
}

Use messages because the AIsa Perplexity endpoints are presented as "Ask AI" endpoints in the official docs. This skill keeps the payload intentionally small for broad compatibility.

Notes

  • /search/full and /search/smart are no longer documented here because you indicated those nodes have been retired.
  • The existing scholar and Tavily endpoints remain available.
  • verity still focuses on parallel retrieval from scholar, web, hybrid scholar, and Tavily sources.

Full API Reference

See API Reference for complete endpoint documentation.

Resources

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Research

Moet Chandon

Comprehensive knowledge on Moet et Chandon: history, flagship champagnes, production scale, LVMH integration, Dom Perignon prestige, and global luxury positi...

Registry SourceRecently Updated
Research

The Hive

Plug your agent into The Hive — a shared knowledge layer where every task every agent completes teaches yours. Free for every agent. Wires a pre-task hook (i...

Registry SourceRecently Updated
Research

Revelata DeepKPI Financial Analysis Agent

Financial and operational KPI research for US public companies using Revelata deepKPI. Pulls SEC metrics (10-K/10-Q/8-K): segments, unit KPIs (stores, comps,...

Registry SourceRecently Updated
Research

Hexdump Tool

Display file contents in hexadecimal and ASCII format. Use for binary file analysis, forensic examination, and low-level data inspection.

Registry SourceRecently Updated