TopRank Skills

Home / Claw Skills / Git / GitHub / intel-asrai
Official OpenClaw rules 36%

intel-asrai

AI-powered web search via x402 micropayments on Base. Returns synthesized answers with cited sources. Each search costs $0.005 USDC from your own wallet. No API keys, no subscriptions — just connect and search.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

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

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

Overview

Skill Key
abuzerasr/intel-asrai
Author
abuzerasr
Source Repo
openclaw/skills
Version
-
Source Path
skills/abuzerasr/intel-asrai
Latest Commit SHA
18938790a44664cca1a01a5246f0e557b898fc49

Extracted Content

SKILL.md excerpt

# Intel — AI Web Search via x402

## Install

```bash
npx -y -p intel-asrai-mcp install-skill
```

Auto-detects OpenClaw, Cursor, Cline, and other agents. Then set your key:

```
INTEL_PRIVATE_KEY=0x<your_private_key>  # add to ~/.env
```

For MCP agents (Cursor, Cline, Claude Desktop) also add to config:

```json
{
  "mcpServers": {
    "intel-search": { "command": "npx", "args": ["-y", "intel-asrai-mcp"] }
  }
}
```

---

Use Intel search when the user asks about current events, recent news, live prices, or anything requiring up-to-date information beyond your training data.

## When to search

- Current events, breaking news, recent developments → search
- Live prices, scores, real-time data → search
- Research needing latest sources → search
- General knowledge you already know well → do NOT search (costs $0.005 USDC each time)

## How to search

### If intel_search tool is available (MCP connected)

```
intel_search(query, mode, sources)
```

### If no MCP tool — use bash (OpenClaw and other agents)

```bash
npx -y -p intel-asrai-mcp intel-search "<query>" <mode> <sources>
```

Examples:
```bash
npx -y -p intel-asrai-mcp intel-search "bitcoin price today" speed web
npx -y -p intel-asrai-mcp intel-search "latest AI research" quality academic
npx -y -p intel-asrai-mcp intel-search "what people think about X" balanced discussions
```

Requires `INTEL_PRIVATE_KEY` set in `~/.env` or environment. Payment ($0.005 USDC) is signed automatically.

## Parameters

- **query** — the search question
- **mode** — `speed` (fast, news), `balanced` (default), `quality` (deep research)
- **sources** — `web` (default), `academic` (papers), `discussions` (Reddit/forums)

## Output rules

- Lead with the synthesized answer — no preamble
- List sources as numbered links after the answer
- For factual questions: direct answer first, then detail
- For news: key developments first, then sources
- Never mention tool names, API calls, or payment details in responses
- Keep it concise — s...

README excerpt

# intel-asrai-skill

Skill for [Intel](https://intel.asrai.me) — AI-powered web search via x402 micropayments on Base.

Works with **OpenClaw**, **Claude Desktop**, **Cursor**, **Cline**, and any MCP-compatible or bash-capable agent.

## Install

### One command — works everywhere

```bash
npx -y -p intel-asrai-mcp install-skill
```

Auto-detects OpenClaw, Cursor, Cline, and other agents. Copies SKILL.md to the right place. Then restart your agent or run "refresh skills".

### Manual — OpenClaw (if auto-detect fails)

```bash
git clone https://github.com/abuzerasr/intel-asrai-skill.git ~/.openclaw/workspace/skills/intel-asrai
```

### Manual — Cursor / Cline / other agents

```bash
npx skills add https://github.com/abuzerasr/intel-asrai-skill -y
```

---

## Setup by platform

### OpenClaw (bash mode — no MCP needed)

1. Set your key in `~/.env`:
```
INTEL_PRIVATE_KEY=0x<your_private_key>
```

2. That's it. The skill uses `npx` automatically — no extra install needed.

The agent runs:
```bash
npx -y -p intel-asrai-mcp intel-search "query"
```

Node.js is required (already installed with OpenClaw).

---

### Claude Desktop (MCP mode)

Add to your Claude Desktop config file:

```json
{
  "mcpServers": {
    "intel-search": {
      "command": "npx",
      "args": ["-y", "intel-asrai-mcp"],
      "env": { "INTEL_PRIVATE_KEY": "0x<your_private_key>" }
    }
  }
}
```

Config file location:
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`
- Linux: `~/.config/Claude/claude_desktop_config.json`

---

### Cursor / Cline / other MCP clients

Add to your MCP config:

```json
{
  "mcpServers": {
    "intel-search": {
      "command": "npx",
      "args": ["-y", "intel-asrai-mcp"],
      "env": { "INTEL_PRIVATE_KEY": "0x<your_private_key>" }
    }
  }
}
```

---

### n8n / remote connections

- HTTP Streamable: `https://intel-mcp.asrai.me/mcp?key=0x<your_private_key>`
- SSE (legacy): `https://inte...

Related Claw Skills