通义万相 2.5D 横幅插画

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: wenxiang-2d5-banner Version: 1.0.0 The bundle appears to be a full workspace dump rather than a focused skill, containing a massive amount of sensitive data including hardcoded API keys for Aliyun, Feishu, and other services in files such as 'openclaw.json', 'fetch_feishu_docs.py', and various test scripts. It includes high-privilege logic like the 'feishu-multi-agent-manager', which can modify the core 'openclaw.json' configuration, and 'autonomous-thinking.js', which allows the agent to rewrite its own memory and logs. While these features align with the stated goal of a 'self-improving' agent, the presence of leaked credentials and the ability to perform broad system and configuration modifications pose a significant security risk.

Findings (0)

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

Installing the skill could place many unrelated files and scripts into the user’s skill environment, making it hard to understand what code or instructions the agent may see or run.

Why it was flagged

A simple image-generation skill should not include a large unrelated workspace with memory stores, hooks, multi-agent code, and automation scripts.

Skill content
615 file(s): ... memory/... hooks/... scripts/autonomous-thinking.js ... skills/feishu-multi-agent-manager/dist/index.js ...
Recommendation

Repackage the skill to include only SKILL.md, the image-generation script, and minimal declared dependencies; remove unrelated workspace files before publishing.

ConcernHigh Confidence
ASI01: Agent Goal Hijack
What this means

The agent could treat unrelated workspace instructions as authoritative and perform broad context loading or actions before handling the user’s actual image request.

Why it was flagged

This root instruction file attempts to change the agent’s default workflow and authority beyond the image-generation skill.

Skill content
Before doing anything else: ... Read `SOUL.md` ... Read `USER.md` ... Read `memory/YYYY-MM-DD.md` ... Don't ask permission. Just do it.
Recommendation

Remove AGENTS.md from the skill package, or clearly isolate it so it cannot influence the user’s agent runtime.

What this means

Exposed credentials could allow unintended access to third-party services or local gateway functions, and may create billing or account-security risk.

Why it was flagged

The artifact includes hardcoded API keys, app secrets, and gateway tokens unrelated to the image-generation purpose.

Skill content
"SERPER_API_KEY": "…", "DASHSCOPE_API_KEY": "…", "appSecret": "…", "gateway": { "auth": { "token": "…" } }
Recommendation

Remove all secrets from the package, rotate the exposed credentials, and declare only the minimum required credential such as GEMINI_API_KEY.

What this means

Private context could be pulled into unrelated image-generation tasks or reused across sessions without clear user approval.

Why it was flagged

The bundled instructions tell the agent to load and modify persistent memory files, while the manifest includes many personal memory/profile/work files.

Skill content
Read `memory/YYYY-MM-DD.md` ... Also read `MEMORY.md` ... You can read, edit, and update MEMORY.md freely in main sessions
Recommendation

Do not bundle personal memory files or memory-management instructions in an image skill; require explicit user selection for any input image or context.

ConcernHigh Confidence
ASI05: Unexpected Code Execution
What this means

If invoked, unrelated scripts could run system commands such as copying directories or launching other processes outside the user’s image request.

Why it was flagged

The package contains shell-executing code unrelated to generating or editing images.

Skill content
execSync(`robocopy "${config.path}" "${backupPath}" /E /COPYALL /R:0`);
Recommendation

Remove unrelated executable hooks and scripts from the skill package, and declare/review any command execution that remains necessary.

ConcernMedium Confidence
ASI10: Rogue Agents
What this means

A user may not expect an image skill bundle to contain materials for scheduled background work, indexing, or cloud sync.

Why it was flagged

Included documentation describes recurring autonomous tasks and synchronization behavior unrelated to the stated image-generation skill.

Skill content
Cron 任务: ... 每小时知识库索引更新 ... 每天 23:00 晚安记忆同步(OneDrive)
Recommendation

Exclude cron, heartbeat, sync, and autonomous-agent materials unless they are explicitly part of the skill and require clear user opt-in.