← All skills
Tencent SkillHub · Developer Tools

Metaso Search V2

提供对 Metaso 搜索 API 的直接访问,支持网页搜索、内容读取和智能问答功能

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

提供对 Metaso 搜索 API 的直接访问,支持网页搜索、内容读取和智能问答功能

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
metaso-api.js, package.json, quick-test.js, simple-test.js, SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
2.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 13 sections Open source page

描述

提供对 Metaso 搜索 API 的直接访问,支持网页搜索、内容读取和智能问答功能。

1. 网页搜索 (metaso_web_search)

根据关键词搜索网页、文档、论文、图片、视频、播客等内容。 参数: q: 搜索查询关键词(必填) size: 返回结果数量(必填,1-100) scope: 搜索范围(必填) includeSummary: 是否包含精简的原文匹配信息(必填) includeRawContent: 是否通过网页的摘要信息进行召回增强(必填) conciseSnippet: 是否抓取所有来源网页原文(必填)

2. 网页内容读取 (metaso_web_reader)

读取指定 URL 的网页内容。 参数: url: 要读取的 URL 地址(必填) format: 输出格式(必填,json 或 markdown)

3. 智能问答 (metaso_chat)

基于 RAG 的智能问答服务。 参数: messages: 用户消息数组(必填) model: 使用的模型(必填) scope: 搜索范围(必填) format: 输出格式(必填) stream: 是否开启流式输出(必填) conciseSnippet: 是否返回精简的原文匹配信息(必填)

环境变量配置

必要配置: # Linux/macOS export METASO_API_KEY="您的API密钥" # Windows (PowerShell) $env:METASO_API_KEY="您的API密钥" OpenClaw 配置: 在 OpenClaw 配置文件 openclaw.json 中添加: { "env": { "METASO_API_KEY": "您的API密钥" } }

使用方法

import { metasoSearch, metasoReadPage, metasoChat } from './skills/metaso-search/metaso-api.js'; // 搜索 const searchResult = await metasoSearch('人工智能', 2, 'document', true, false, true); // 读取网页内容 const contentResult = await metasoReadPage('https://example.com', 'json'); // 智能问答 const chatResult = await metasoChat( [{ role: 'user', content: '什么是机器学习?' }], 'fast', 'webpage', 'simple', false, true );

metaso-api.js - API 核心模块

提供所有 API 方法的实现 包含自动配置加载 错误处理和重试机制 使用 Metaso HTTP API 端点

quick-test.js - 快速测试脚本

用于快速验证 API 基本功能的简化测试 包含搜索和聊天功能的基本测试

simple-test.js - 简单功能测试

测试所有 API 功能的详细测试脚本 包含搜索、内容读取和聊天功能的测试

运行测试

cd skills/metaso-search node quick-test.js

API 密钥未配置

Error: METASO_API_KEY 环境变量未设置,请在使用前配置 解决方法:设置 METASO_API_KEY 环境变量

认证失败

Error: API密钥无效 解决方法:检查 API 密钥是否正确

版本信息

当前版本: 2.1.0 移除了硬编码的默认 API 密钥 优化了配置管理 简化了文档结构

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Scripts1 Docs1 Config
  • SKILL.md Primary doc
  • metaso-api.js Scripts
  • quick-test.js Scripts
  • simple-test.js Scripts
  • package.json Config