TopRank Skills

Home / Claw Skills / Recherche / openclaw-search
Official OpenClaw rules 54%

openclaw-search

Intelligent search for agents. Multi-source retrieval with confidence scoring - web, academic, and Tavily in one unified API.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 openclaw-search 技能。 若已安装,则直接安装 openclaw-search 技能。

Overview

Skill Key
chaimengphp/openclaw-aisa-search
Author
chaimengphp
Source Repo
openclaw/skills
Version
-
Source Path
skills/chaimengphp/openclaw-aisa-search
Latest Commit SHA
680ea1db80be79cdb3235a6e8d5ef75c65ddfb11

Extracted Content

SKILL.md excerpt

# OpenClaw Search 🔍

**Intelligent search for autonomous agents. Powered by AIsa.**

One API key. Multi-source retrieval. Confidence-scored answers.

> Inspired by [AIsa Verity](https://github.com/AIsa-team/verity) - A next-generation search agent with trust-scored answers.

## 🔥 What Can You Do?

### Research Assistant
```
"Search for the latest papers on transformer architectures from 2024-2025"
```

### Market Research
```
"Find all web articles about AI startup funding in Q4 2025"
```

### Competitive Analysis
```
"Search for reviews and comparisons of RAG frameworks"
```

### News Aggregation
```
"Get the latest news about quantum computing breakthroughs"
```

### Deep Dive Research
```
"Smart search combining web and academic sources on 'autonomous agents'"
```

## Quick Start

```bash
export AISA_API_KEY="your-key"
```

---

## 🏗️ Architecture: Multi-Stage Orchestration

OpenClaw Search employs a **Two-Phase Retrieval Strategy** for comprehensive results:

### Phase 1: Discovery (Parallel Retrieval)

Query 4 distinct search streams simultaneously:
- **Scholar**: Deep academic retrieval
- **Web**: Structured web search
- **Smart**: Intelligent mixed-mode search
- **Tavily**: External validation signal

### Phase 2: Reasoning (Meta-Analysis)

Use **AIsa Explain** to perform meta-analysis on search results, generating:
- Confidence scores (0-100)
- Source agreement analysis
- Synthesized answers

```
┌─────────────────────────────────────────────────────────────┐
│                      User Query                              │
└─────────────────────────────────────────────────────────────┘
                              │
              ┌───────────────┼───────────────┐
              ▼               ▼               ▼
        ┌─────────┐     ┌─────────┐     ┌─────────┐
        │ Scholar │     │   Web   │     │  Smart  │
        └─────────┘     └─────────┘     └─────────┘
              │...

README excerpt

# OpenClaw Search 🔍

Intelligent search for autonomous agents with confidence scoring.

Inspired by [AIsa Verity](https://github.com/AIsa-team/verity) - A next-generation search agent with trust-scored answers.

## Features

- **Web Search**: Structured web results
- **Scholar Search**: Academic paper retrieval
- **Smart Search**: Intelligent hybrid search
- **Tavily Integration**: External validation
- **Verity Mode**: Multi-source search with confidence scoring

## Quick Start

```bash
export AISA_API_KEY="your-key"

# Single source search
python scripts/search_client.py web --query "AI frameworks"
python scripts/search_client.py scholar --query "transformer models"

# Multi-source with confidence scoring
python scripts/search_client.py verity --query "Is quantum computing enterprise-ready?"
```

## Confidence Scoring

The Verity-style search returns a deterministic confidence score (0-100):

| Score | Level | Meaning |
|-------|-------|---------|
| 90-100 | Very High | Strong consensus |
| 70-89 | High | Good agreement |
| 50-69 | Medium | Mixed signals |
| 30-49 | Low | Conflicting sources |
| 0-29 | Very Low | Insufficient data |

## Documentation

See [SKILL.md](SKILL.md) for complete API documentation.

Related Claw Skills