Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

web-search-minimax

v1.0.0

网络搜索技能,使用 Minimax Coding Plan Search API 进行网络搜索

2· 944·4 current·4 all-time
by深柒@xbos1314

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for xbos1314/web-search-minimax.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "web-search-minimax" (xbos1314/web-search-minimax) from ClawHub.
Skill page: https://clawhub.ai/xbos1314/web-search-minimax
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: node
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install web-search-minimax

ClawHub CLI

Package manager switcher

npx clawhub@latest install web-search-minimax
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
!
Purpose & Capability
The skill name/description match the included script: it performs web searches via a Minimax Coding Plan Search API. However, registry metadata lists no required environment variables while both SKILL.md and scripts/search.cjs require MINIMAX_API_KEY. That metadata omission is an incoherence the user should notice.
Instruction Scope
SKILL.md instructs the agent to run the included Node script with a query and documents that the API key is read from MINIMAX_API_KEY and that requests are sent to https://api.minimaxi.com/v1/coding_plan/search. The runtime instructions and the script are consistent with each other and confined to calling that external API and printing results; they do not access other files or secrets. The main scope issue is the undocumented API key in the registry metadata.
Install Mechanism
No install spec (instruction-only plus one script). No downloads or archive extraction. Only requirement is the node binary, which is proportionate for a .cjs script.
!
Credentials
The code requires a single credential MINIMAX_API_KEY (read from environment) but the registry metadata claims none. Requiring an API key is expected for an external search API, but the metadata omission is misleading. Also the skill will send whatever query text to an external host (api.minimaxi.com), so users should avoid sending sensitive data unless they trust that provider.
Persistence & Privilege
The skill does not request always:true, does not modify other skills or system config, and only executes on explicit invocation (or autonomous invocation per platform defaults). No elevated persistence is requested.
What to consider before installing
This skill appears to simply POST search queries to https://api.minimaxi.com and return formatted results, which is consistent with its description and script. However: (1) the registry metadata incorrectly lists no required env vars while the script and SKILL.md require MINIMAX_API_KEY — treat that as a red flag for sloppy or incomplete packaging; (2) the publisher and homepage are missing, so you have no provenance for the API provider (verify the domain and the provider's reputation before supplying a real API key); (3) queries are sent to an external service, so avoid sending PII, secrets, or confidential queries. If you decide to use it, create or use a limited-scope API key (rotate/delete it after testing) and verify that the API host is legitimate and its privacy/terms meet your needs.
scripts/search.cjs:17
Environment variable access combined with network send.
Patterns worth reviewing
These patterns may indicate risky behavior. Check the VirusTotal and OpenClaw results above for context-aware analysis before installing.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🔍 Clawdis
Binsnode
latestvk97ba62aemjk1b72ta751j4xa982remx
944downloads
2stars
1versions
Updated 10h ago
v1.0.0
MIT-0

Web Search

使用 Minimax Coding Plan Search API 进行网络搜索,返回搜索结果和相关搜索建议。

使用方法

node {baseDir}/scripts/search.cjs "搜索关键词"

示例

# 基本搜索
node {baseDir}/scripts/search.cjs "今天天气怎么样"

# 搜索编程问题
node {baseDir}/scripts/search.cjs "Python 教程"

# 搜索最新新闻
node {baseDir}/scripts/search.cjs "AI 发展动态"

数据来源

API Key 从环境变量读取:

  • 环境变量:MINIMAX_API_KEY
  • API Host:固定为 https://api.minimaxi.com
  • API 端点:/v1/coding_plan/search
  • 请求参数:q (查询词)

返回结果格式

  • organic: 搜索结果列表,每条包含 title、link、snippet、date
  • related_searches: 相关搜索建议列表

使用场景

  • 查询实时信息
  • 查找技术文档
  • 获取新闻资讯
  • 搜索教程资源

Comments

Loading comments...