我的世界JAVA版本MOD搜索整合Skill

PassAudited by ClawScan on May 4, 2026.

Overview

The visible artifacts fit a Minecraft mod-search helper; users should mainly notice the external search calls, optional CurseForge API key, and optional local Python script.

This appears safe to use for Minecraft Java mod searching. Before installing or enabling the script, be aware that it may contact Modrinth, CurseForge, and mcmod.cn, and that CurseForge support requires an API key. Keep that key out of shared files or source control, and run the optional Python script only in an environment you trust.

Findings (3)

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

If you use CurseForge support, the agent or script may access your CurseForge API key for search requests.

Why it was flagged

The skill can use a CurseForge API key and suggests storing it in a local file or environment variable; this is purpose-aligned but still credential handling.

Skill content
CurseForge 若有 API Key 则并行搜索...;编辑 `references/curseforge_api.md`,在文件末尾添加:`CF_API_KEY=你的key`
Recommendation

Prefer an environment variable or secret manager, do not commit or share files containing the key, and revoke the key if it is exposed.

What this means

Minecraft mod search terms, versions, loaders, and optional CurseForge-authenticated requests may be visible to those external services.

Why it was flagged

The search script sends user search queries and filters to external mod-search services, which is expected for the skill but means query data leaves the local machine.

Skill content
MODRINTH_BASE = "https://api.modrinth.com/v2"
CURSEFORGE_BASE = "https://api.curseforge.com/v1"
MCMOD_SEARCH_URL = "https://www.mcmod.cn/s?key={query}&mold=1&version={version}"
Recommendation

Avoid putting private or sensitive information into mod search queries, and use the CurseForge key only for this intended search purpose.

What this means

Using the script means allowing a local Python program and its dependency to run for mod searches.

Why it was flagged

The skill documents optional local Python execution and an optional package install; this is central to the search function and user-directed, not hidden or automatically privileged.

Skill content
The core search logic lives in `scripts/search_mods.py`. Any agent can call it as a subprocess... `pip install aiohttp`
Recommendation

Review the script and dependencies before enabling subprocess execution, and install packages from trusted sources in a controlled Python environment.