Kimi Search

Security checks across static analysis, malware telemetry, and agentic risk

Overview

This skill appears to be a straightforward Moonshot Kimi web-search wrapper, but it uses your Moonshot API key, sends queries to Moonshot, and may incur API/search charges.

This looks suitable if you want an OpenClaw skill that searches the web through Moonshot Kimi. Before installing, make sure you trust Moonshot with your search queries, protect the API key, understand the per-search and token costs, and install the Python dependency from a trusted environment.

Static analysis

No static analysis findings were reported for this release.

VirusTotal

VirusTotal findings are pending for this skill version.

View on VirusTotal

Risk analysis

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Use of this skill can consume the user's Moonshot quota or balance through the configured API key.

Why it was flagged

The skill requires a Moonshot API key, which gives the skill delegated access to the user's Moonshot account for API calls.

Skill content
需要配置 MOONSHOT_API_KEY
Recommendation

Use a dedicated Moonshot API key if available, monitor usage, and avoid sharing the configured key.

What this means

Search terms and any sensitive information included in the query are transmitted to Moonshot for processing.

Why it was flagged

The code sends the user's search query to Moonshot's external API endpoint.

Skill content
base_url="https://api.moonshot.cn/v1"
Recommendation

Do not include secrets, private documents, or sensitive personal data in search queries unless you are comfortable sending them to Moonshot.

What this means

A single invocation could involve more than one web-search/tool-call round, potentially increasing latency and API cost.

Why it was flagged

The script continues model-requested tool-call rounds until the model stops, and the skill documentation notes that each search can add cost.

Skill content
while finish_reason is None or finish_reason == "tool_calls":
Recommendation

Use the skill for queries where real-time web search is needed, and monitor Moonshot usage or billing.

What this means

The installed dependency version may vary over time, which can affect behavior or compatibility.

Why it was flagged

The setup instructions require installing the Python openai package without a pinned version.

Skill content
pip3 install openai
Recommendation

Install dependencies from trusted package sources, preferably in a virtual environment, and consider pinning a known-good openai package version.