AgentSkillsCN

MetasoSearch

秘塔 AI 搜索集成——中文智能搜索、学术搜索、思维导图生成。适用于秘塔搜索、metaso search、中文搜索、学术搜索、智能问答等场景。

SKILL.md
--- frontmatter
name: MetasoSearch
description: 秘塔AI搜索集成 - 中文智能搜索、学术搜索、思维导图生成. USE WHEN 秘塔搜索, metaso search, 中文搜索, 学术搜索, 智能问答.

Customization

Before executing, check for user customizations in the following order:

  1. Environment variables (highest priority):

    • METASO_API_KEY - API密钥
    • METASO_CONFIG_PATH - 自定义配置文件路径
  2. Project-level configuration:

    • ./.metaso-search/config.yaml
    • ./.metaso
  3. User configuration (recommended):

    • ~/.config/metaso-search/config.yaml
  4. Traditional Unix style:

    • ~/.metasorc
  5. PAI compatibility path (deprecated, still supported):

    • ~/.claude/skills/PAI/USER/SKILLCUSTOMIZATIONS/MetasoSearch/PREFERENCES.md

Load the first available configuration and apply settings. For migration from old format, see ConfigMigration.md.

🚨 MANDATORY: Voice Notification (REQUIRED BEFORE ANY ACTION)

You MUST send this notification BEFORE doing anything else when this skill is invoked.

  1. Send voice notification:

    bash
    curl -s -X POST http://localhost:8888/notify \
      -H "Content-Type: application/json" \
      -d '{"message": "Running the WORKFLOW workflow in the MetasoSearch skill to ACTION"}' \
      > /dev/null 2>&1 &
    
  2. Output text notification:

    code
    Running the **WorkflowName** workflow in the **MetasoSearch** skill to ACTION...
    

This is not optional. Execute this curl command immediately upon skill invocation.

Workflow Routing

TriggerWorkflowPurpose
"秘塔搜索", "metaso search", "智能搜索", "用秘塔搜索"Workflows/IntelligentSearch.md全网智能搜索
"学术搜索", "论文搜索", "academic search", "搜论文"Workflows/AcademicSearch.md学术文献搜索
"深度研究", "研究报告", "deep research", "用秘塔研究"Workflows/DeepResearch.md深度研究报告生成
"思维导图", "生成大纲", "mind map"Workflows/IntelligentSearch.md带思维导图的搜索

Quick Reference

核心能力:

  • 🔍 全网智能搜索(中文优化)
  • 📚 学术论文搜索
  • 🧠 思维导图自动生成
  • 📊 研究报告生成
  • 💡 智能问答

使用前提: 需要配置秘塔API密钥(详见:SkillSearch('metasosearch configuration')

配置API密钥:

  1. 访问 https://metaso.cn/search-api/api-keys
  2. 创建API密钥
  3. 配置到:~/.config/metaso-search/config.yaml(推荐)

搜索模式对比:

模式适用场景输出特点耗时
简洁模式快速问答精简答案~5秒
深入模式深度了解详细分析~15秒
研究模式研究报告完整报告+思维导图~60秒

Full Documentation:

  • 配置指南: SkillSearch('metasosearch configuration') → Configuration.md
  • 搜索模式: SkillSearch('metasosearch modes') → SearchModes.md
  • 使用示例: SkillSearch('metasosearch examples') → Examples.md