Token导航 LogoToken导航TokenDH.com
研究检索敏感数据unknown未标认证来源可访问许可证需确认审计未展示

cloudsways-search云道搜索

Agent Skill

cloudsways-search 用于查找、检索和筛选相关信息,适合在 Local Agent 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

188

周安装

8

下载量

66
Local Agent

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cloudsways-search(云道搜索)
来源仓库:https://skills.volces.com
仓库路径:cloudsways-search
安装命令:
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

cloudsways-search 用于网页搜索并提取内容片段,增强 LLM 上下文信息。

  • 适合在 Local Agent 中需要实时检索网络资料或补充知识库时使用。
  • 依赖 Access Key 和端点配置,需提前设置环境变量 CLOUDSWAYS_AK、ENDPOINT 等。
  • 注意接口调用频率限制和数据隐私合规要求,避免泄露敏感信息。
  • 适用宿主包括 Local Agent,接入前应确认版本、权限和运行环境要求。

SKILL.md

Cloudsways SmartSearch Skill

Search the web and extract intelligent fragments or full-text content directly into the LLM context.

Authentication

[cite_start]Authentication is handled via the URL endpoint and an Access Key[cite: 3, 5]. You must set the following environment variables before using the script:

export CLOUDSWAYS_BASE_PATH="your-base-path"
export CLOUDSWAYS_ENDPOINT="your-endpoint"
export CLOUDSWAYS_AK="your-access-key"

Quick Start

Using the Script

If you have configured the script locally, you can call it by passing a JSON object:

./scripts/search.sh '<json>'

Examples:

# Basic search
./scripts/search.sh '{"q": "python async patterns"}'

# Search with time filter and pagination
./scripts/search.sh '{"q": "Apple earnings", "freshness": "Week", "count": 20}'

# Deep research (extracts full content and dynamic key fragments)
./scripts/search.sh '{"q": "Agentic AI architecture", "enableContent": true, "mainText": true}'

Basic Search (cURL)

curl -i --location --request GET 'https://{BasePath}/search/{Endpoint}/smart?q=latest+developments+in+quantum+computing&count=5' \
  --header 'Authorization: Bearer {AK}' \
  --header 'pragma: no-cache'

Advanced Search with Full Content (cURL)

curl -i --location --request GET 'https://{BasePath}/search/{Endpoint}/smart?q=machine+learning+best+practices&count=10&enableContent=true&mainText=true' \
  --header 'Authorization: Bearer {AK}' \
  --header 'pragma: no-cache'

API Reference

Endpoint

GET https://{BasePath}/search/{Endpoint}/smart

Headers

HeaderTypeValueDescription
AuthorizationStringBearer {AK}Input value uses your assigned AccessKey.
pragmaStringno-cacheEntering no-cache returns results without caching, making each request independent; omitting this caches results for the same query term for 10 minutes.

Request Parameters

ParameterRequiredTypeDefaultDescription
qYString-User search query term; cannot be empty.
countNShort10Number of search results included. Enum values: 10, 20, 30, 40, 50.
freshnessNStringnullFilter search results by time periods: Day (Past 24 hours), Week, Month.
offsetNShort0Zero-based offset indicating the number of search results to skip. Use with count to paginate.
enableContentNboolfalseControls whether full text (content) extraction is enabled: true or false.
contentTypeNStringTEXTFull text return format. Optional values: HTML, MARKDOWN, TEXT.
contentTimeoutNFloat3.0Full text read timeout. Maximum supported is 10 seconds. For low latency, set to 0.1.
mainTextNboolfalseUsed to return dynamic summary key fragments. Takes effect only when enableContent is true.

Response Format

{
  "queryContext": {
    "originalQuery": "open ai recent news"
  },
  "webPages": {
    "value": [
      {
        "name": "OpenAI just launched ChatGPT-5.1 Pro...",
        "url": "https://www.example.com/page",
        "datePublished": "2025-07-14T01:15:00.0000000Z",
        "snippet": "ChatGPT is looking to compete with Gemini...",
        "mainText": "Now GPT-5.1 Pro takes a lot of these improvements and makes them smarter...",
        "content": "Full extracted body text goes here...",
        "score": 0.8521444
      }
    ]
  }
}

Content Strategy

Understanding which text field to request is critical for token optimization:

FieldLatencyRelevanceDescription
snippetLowestGoodA short text summary describing the webpage content. Best for general queries and fast browsing.
mainTextMediumHighestDynamic summary fragments most relevant to the query term extracted from the body text. Smarter than the snippet.
contentHigherHighWebpage full text information. Best for deep research, but consumes significant context tokens.

Tips:

  • For standard answers, rely on the default snippet.
  • When you need precise, detailed answers without reading the whole page, use enableContent=true and mainText=true.
  • Always set pragma: no-cache if you are querying real-time news or stock updates.

MCP Client Integration (Alternative)

For environments supporting the Model Context Protocol (MCP), configure your MCP Client using streamable_http:

{
  "mcpServers": {
    "smartsearch": {
      "transport": "streamable_http",
      "url": "https://searchmcp.cloudsway.net/search/{YOUR_SMARTSEARCH_ENDPOINT}/smart",
      "headers": {
        "Authorization": "Bearer {YOUR_SMARTSEARCH_AK}"
      }
    }
  }
}

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Local Agent

83.95%
按下载量换算55

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills