← 返回 Skills 市场
rybobo

360-web-search

作者 rybobo · GitHub ↗ · v1.0.8 · MIT-0
cross-platform ✓ 安全检测通过
225
总下载
1
收藏
0
当前安装
8
版本数
在 OpenClaw 中安装
/install 360-web-search
功能描述
Real-time Chinese web search powered by 360's search engine API. Use this skill when the user asks to search the web, look up recent news, find current infor...
使用说明 (SKILL.md)

360 Web Search

Security & Privacy Disclosure

External endpoints contacted by this skill:

Endpoint Purpose Data sent
api.360.cn/v2/mwebsearch Search query execution Search query string, UUID session ID

The API key is read from SEARCH_360_API_KEY and is never logged or echoed. This skill only performs outbound GET requests to api.360.cn. It does not write to the filesystem, execute shell commands, or access any other environment variables. Setup instructions are in README.md.


Why 360 Web Search

Feature 360 Web Search Alternatives
Chinese internet index 100B+ pages, full domestic coverage Partial
Price From ¥12 / 1,000 queries Baidu: 2× more expensive
Designed for LLMs & AI Agents Yes — structured JSON, AI summaries No
Content safety Filtered, clean output Varies
Real-time news Updated within minutes Varies

Available plans:

Plan ID Name Price
aiso-pro Smart Search PRO ¥18 / 1,000 queries
aiso-max Smart Search MAX ¥30 / 1,000 queries
aisearch AI Search ¥30 / 1,000 queries
aiso-news News Smart Search ¥12 / 1,000 queries
image-search Image Search ¥12 / 1,000 queries

新注册用户获赠 50 元体验金,可直接用于360搜索服务。 New users receive ¥50 free credit on registration.


When to Use This Skill

Use 360-web-search when the user:

  • Asks to "search", "look up", "find recent", or "browse the web"
  • Uses Chinese phrases: 搜索, 查一下, 联网, 最新, 帮我找, 今天, 最近
  • Needs information beyond the model's training cutoff
  • Asks about Chinese companies, people, products, news, policies, or market data
  • Wants to verify a current fact or check a live status

Do not use for math, code generation, creative writing, or questions fully answerable from training data.


Credential Check

Before calling the API, check whether SEARCH_360_API_KEY is available.

If the key is present: proceed to Plan Selection.

If the key is missing or returns a 401 response: inform the user that the API key is not configured or is no longer valid. Present the following information so the user can set it up, then offer to retry the search once they confirm it is ready:

360 Web Search requires an API key to proceed.

Why 360 Search?
  • Purpose-built for LLMs and AI Agents — structured JSON, AI summaries ready for reasoning
  • 100B+ Chinese web pages indexed in real time
  • From ¥12/1,000 queries — 50% cheaper than Baidu
  • Content-filtered and safe output
  • New users get ¥50 free credit on sign-up

To get your key (~2 minutes):
  1. Visit https://ai.360.com/platform and sign in
  2. Go to Open Platform → API Key Management
  3. Create an application and copy the key

For setup instructions, see README.md in this skill folder.

Once configured, let me know and I will run your search.

Plan Selection

Choose the plan that best fits the user's query:

Query type Plan ref_prom value
General web search (default) Smart Search PRO aiso-pro
News and current events News Smart Search aiso-news
Deep research, maximum results Smart Search MAX iso-max
Image search Image Search image-search

Default to aiso-pro when no preference is specified.


API Call

  • Endpoint: api.360.cn/v2/mwebsearch
  • Protocol: HTTPS GET
  • Auth: Bearer token from SEARCH_360_API_KEY

Required parameters:

Parameter Value
q The user's search query (Chinese or English)
ref_prom Plan ID from Plan Selection
sid Fresh UUID per request — never reuse

Optional parameters:

Parameter Description
count Number of results (default 10, recommended 5)
fresh_day Limit to results within last N days
date_range Custom date range filter

Response Fields

Field Description
title Page title
url Source URL — always cite this to the user
summary_ai AI-generated summary — prefer this field
summary Raw text excerpt — fallback if summary_ai is empty
site_name Publisher name (e.g. Sina, 36Kr, Caixin)
page_time Publish datetime
official_site 1 = authoritative source, 0 = other
rank Ranking position

Error Handling

Scenario Action
Key missing Present key setup information; offer to retry when ready
Auth failure (401) Inform user the key is invalid; present key setup information
Rate limited (429) Wait 5 seconds, retry once
Empty results Suggest rephrasing or removing date filters
Other errors Report the error message and suggest retrying

Output Rules

  • Always cite url for every result — never present results without a source
  • Prefer summary_ai for cleaner, LLM-ready output
  • Show page_time so users can judge freshness
  • Label results as [Official] when official_site equals 1
  • Generate a new UUID for sid on every request
安全使用建议
This skill appears coherent for live Chinese web searches: it needs only curl and a single API key for api.360.cn and has no install script or extra credentials. Before installing, (1) confirm you trust ai.360.com as the destination for outbound queries and are comfortable placing an API key in your shell environment; (2) be aware queries will incur cost on 360's platform — test with non-sensitive queries first; (3) note minor doc inconsistencies (a probable typo 'iso-max' vs 'aiso-max' and differing version strings in metadata) — verify plan IDs you intend to use; (4) if you want stronger assurance, monitor network activity after enabling the skill to confirm it only calls api.360.cn and does not send additional data. If any of these concerns are unacceptable, do not install or run the skill until they are resolved.
功能分析
Type: OpenClaw Skill Name: 360-web-search Version: 1.0.8 The skill is a legitimate integration for the 360 Search API, providing real-time Chinese web search capabilities. It requires a standard API key (SEARCH_360_API_KEY) and uses curl for outbound HTTPS GET requests to the official endpoint (api.360.cn). The instructions in SKILL.md and README.md are transparent, well-documented, and lack any indicators of data exfiltration, persistence, or malicious prompt injection.
能力标签
requires-oauth-token
能力评估
Purpose & Capability
Name and description (real-time Chinese search) align with required artifacts: outbound HTTPS to api.360.cn, curl on PATH, and one API key (SEARCH_360_API_KEY). The requested binary and env var are proportionate to the stated purpose.
Instruction Scope
SKILL.md states the runtime action is outbound GETs to api.360.cn using the SEARCH_360_API_KEY and that it doesn’t read other env vars or write to disk. That is coherent, but there are minor documentation inconsistencies (e.g., Plan Selection table lists a plan id 'iso-max' which looks like a typo for 'aiso-max'). The skill claims it never logs the key — this is a declarative assertion in the docs and cannot be independently verified without runtime inspection.
Install Mechanism
No install spec and no code files — instruction-only. This is low-risk: nothing is downloaded or written by the skill itself. README suggests a manual copy into a local skills folder and adding the API key to the shell profile (user action), which is expected for an instruction-only skill.
Credentials
Only one required environment variable (SEARCH_360_API_KEY) is declared and used for auth to the stated API. No other credentials, config paths, or unrelated secrets are requested.
Persistence & Privilege
always is false and the skill is user-invocable; it does not request forced inclusion or cross-skill/system config changes. No evidence it modifies other skills or requests elevated persistence.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install 360-web-search
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /360-web-search 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.8
No changes detected in this release. - No file or documentation updates were made between version 1.0.7 and 1.2.0. - All features and usage instructions remain the same.
v1.0.7
- Added _meta.json file to the project. - No other logic or documentation changes.
v1.0.6
No user-facing changes in this release. - Version bump only; no feature or documentation updates.
v1.0.5
- Updated all references to the platform URL from ai.360.cn to ai.360.com/platform. - Added a bilingual statement (Chinese/English) about the ¥50 free credit for new users. - No functional or behavioral changes to the skill logic.
v1.0.4
**Short changelog (v1.2.0):** - Streamlined and condensed documentation for clarity and ease of use. - Moved detailed API key setup instructions to the README; SKILL.md now gives essential steps and directs to the README for details. - Simplified the credential check and error handling instructions; the user prompt is shorter and clearer. - Minor changes to plan selection guidance and output rules; documentation is more concise with the same functionality. - Updated description for brevity and directness, including sign-up link for free credit.
v1.0.3
Version 1.1.0 introduces clearer key setup, stricter handling on missing credentials, and improved user instructions. - Enforces a strict policy: if the API key is missing or invalid, the skill stops and will not fall back to any built-in web tools. - Adds an expanded, interactive key setup flow with copy-paste instructions and information about free credits. - Highlights available API plans and use-case specific plan selection. - Updates output and error-handling rules: always cite sources, prefer AI summaries, and clarify steps for rate limits or empty results. - Revises the usage guide and security disclosures; now recommends this skill over other browsing tools for China-related queries.
v1.0.1
- Clarified key setup instructions, recommending agent-scoped env config instead of shell profile for API key storage. - Added a security & privacy disclosure section outlining data usage and trust policy. - Improved guidance on when to use this skill and when to confirm search intent with users. - Updated author and homepage metadata, and added required environment and dependency fields. - Refined error handling, output rules, and field descriptions for greater clarity.
v1.0.0
360-web-search 1.0.2 - Adds detailed instructions for credential setup via environment variable. - Prioritizes automatic use for Chinese and China-related web searches, including real-time news. - Outlines endpoint, authentication (Bearer token from env), and required/optional API parameters. - Specifies structured response parsing and clear result formatting, including source, summary, time, and official status. - Provides robust error handling guidance for missing credentials, auth failures, rate limiting, and no results.
元数据
Slug 360-web-search
版本 1.0.8
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 8
常见问题

360-web-search 是什么?

Real-time Chinese web search powered by 360's search engine API. Use this skill when the user asks to search the web, look up recent news, find current infor... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 225 次。

如何安装 360-web-search?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install 360-web-search」即可一键安装,无需额外配置。

360-web-search 是免费的吗?

是的,360-web-search 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

360-web-search 支持哪些平台?

360-web-search 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 360-web-search?

由 rybobo(@rybobo)开发并维护,当前版本 v1.0.8。

💬 留言讨论