!
Purpose & Capability
The skill claims to be prompt-only and to work from pasted text; it does not need to access the local filesystem. Yet handler.py calls _load_skill_meta which opens /Users/jianghaidong/.openclaw/skills/{skill_name}/SKILL.md — a hard-coded user-home path. Reading arbitrary local files is not justified by the scam-screening purpose and is disproportionate.
!
Instruction Scope
SKILL.md describes a prompt-only workflow and does not instruct reading local files. The handler code contradicts that by attempting to read a SKILL.md from a specific local path. That is scope creep: the runtime behavior (file I/O) is not documented in the skill instructions.
✓
Install Mechanism
There is no install spec and no downloads or external installers. No additional packages or network installs are requested, so the install mechanism itself is low-risk.
!
Credentials
The skill declares no required env vars or credentials (appropriate), but the code accesses a hard-coded filesystem path in the user's home. Access to local files was not declared and is not proportional to the stated purpose.
✓
Persistence & Privilege
The skill is not always-enabled and does not request persistent privileges or modify other skills. Autonomous invocation is allowed by default (normal), and there is no evidence it writes system-wide config.
What to consider before installing
This skill's description and SKILL.md look appropriate for scam screening, but handler.py contains a hard-coded local file read of /Users/jianghaidong/.openclaw/skills/{skill_name}/SKILL.md which is unnecessary and inconsistent. Before installing or enabling autonomous invocation: (1) ask the author why the handler reads that path and request removal or replacement with a safe, relative/resource-based read, (2) review or run the handler.py in a sandbox to confirm it doesn't exfiltrate or read unexpected files, and (3) avoid installing it on systems with sensitive local data until the file-access behavior is corrected. If the author cannot justify or fix the hard-coded path, treat the skill as untrusted.