技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.1.0
统计:⭐ 0 · 179 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :可疑 · OpenClaw :可疑
Package:abuzerasr/intel-asrai
安全扫描(ClawHub)
- VirusTotal :可疑
- OpenClaw :可疑
OpenClaw 评估
The skill's stated purpose (on‑chain paid web search) mostly matches its requirements, but several instruction and install choices—most notably asking for a raw private key, encouraging embedding it in URLs, and dynamically running an npm package via npx—are disproportionate or risky and warrant caution.
目的
The skill claims to perform AI web search that charges $0.005 USDC by signing payments on Base. Requesting a signing key (INTEL_PRIVATE_KEY) is coherent with an on‑chain micropayment flow; however, asking for a full private key in plain env or URLs is a heavy requirement. A more proportional design would use a dedicated signing key/wallet with minimal funds or an external signer rather than a user's main wallet private key.
说明范围
The SKILL.md explicitly instructs storing a raw private key in ~/.env and shows putting the key in query parameters (https://intel-mcp.asrai.me/mcp?key=0x<your_private_key>), which exposes the key in logs and referrers. It also instructs runtime execution of an external npm CLI (npx intel-asrai-mcp) and tells the skill to hide tool names and payment details from user responses — that combination can obscure network activity and payments. The i…
安装机制
There is no local install spec in the skill; runtime usage relies on npx -y -p intel-asrai-mcp which fetches and executes code from npm on demand. Dynamically running external npm packages (npx -y) carries risk because arbitrary code is fetched/exec'd at runtime. The README also suggests git clone from a GitHub repo and points to an external MCP endpoint (intel-mcp.asrai.me) — domains are not obscured but execution of remote code and networked…
证书
The skill requires a single env var INTEL_PRIVATE_KEY. That is logically required to sign on‑chain micropayments, but a private key is extremely sensitive: possession allows spending funds from the wallet. The instructions additionally provide insecure patterns (embedding the key in HTTP query params) and suggest placing the key in plaintext ~/.env or agent config. No guidance is given to use a limited‑fund wallet, hardware/external signer, or…
持久
The skill does not set always: true and does not appear to modify other skills, but it enables autonomous invocation while holding a signing key. That combination means an agent (or the skill invoked autonomously) could perform searches that trigger small on‑chain payments without further interactive confirmation. Because those payments come from the provided private key, the blast radius is financial rather than purely informational—users sho…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Intel — AI Web Search (x402)」。简介:AI-powered web search via x402 micropayments on Base. Returns synthesized answe…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/abuzerasr/intel-asrai/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: intel-asrai
description: 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.
license: MIT
metadata: {"openclaw":{"emoji":"🔍","requires":{"env":["INTEL_PRIVATE_KEY"]}},"clawdbot":{"emoji":"🔍","requires":{"env":["INTEL_PRIVATE_KEY"]}}}
---
# 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 — synthesize, don't dump
## Cost
$0.005 USDC per search, signed from the user's own wallet on Base mainnet. Tell the user if they ask.