AI Game - 游戏×AI 资讯

PassAudited by ClawScan on May 12, 2026.

Overview

This appears to be a purpose-aligned game-AI news aggregation skill, but it runs a local fetch script and sends search terms to public news/API sources.

Install if you are comfortable with a news skill that runs its bundled Python fetcher, contacts public RSS/API sources, and stores local JSON caches. Do not include confidential search terms, and verify important news through the provided original links.

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

Using the skill can execute local helper code and make external news/API requests to generate results.

Why it was flagged

The skill instructs the agent to run a bundled Python script that fetches RSS/API data and writes JSON output. This is expected for a fresh-news skill, but users should know it is not purely static content.

Skill content
cd ${SKILL_DIR}/scripts && python3 fetch_news.py
Recommendation

Use it when you want fresh game-AI news, and review the bundled script/source list if you need strict control over outbound requests.

What this means

If a user includes confidential terms in a search topic, those terms may be sent to the external API provider.

Why it was flagged

The workflow can send the search keyword to an external AI HOT API. This is purpose-aligned for news search, but it creates an external data boundary.

Skill content
curl -sH "User-Agent: $UA" "https://aihot.virxact.com/api/public/items?mode=selected&q=<关键词>&take=20"
Recommendation

Avoid using private project names, unreleased plans, or sensitive internal terms as search keywords unless you are comfortable sending them to the listed external service.

What this means

Outputs may repeat outdated, mistranslated, or source-contaminated news summaries if the cached data or upstream sources are wrong.

Why it was flagged

The agent reuses cached retrieved news items for historical summaries. This is expected, but cached or retrieved content can become stale or reflect errors from external sources.

Skill content
读取 `data/` 目录下对应日期范围的 JSON 文件
2. 合并所有 items,按 URL 去重
Recommendation

Check the included source links for important decisions, and refresh the data when accuracy matters.