Meta-Cognition Coach

Security checks across malware telemetry and agentic risk

Overview

This appears to be a straightforward local study-coaching tool; the main thing to notice is that it runs a small Python script and saves some reflection or strategy inputs to local log files.

This skill looks benign and purpose-aligned. Before installing or using it, be aware that it runs a local Python script and may leave local reflection or strategy logs containing whatever study details you enter.

VirusTotal

No VirusTotal findings

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.

#
ASI05: Unexpected Code Execution
Info
What this means

Using the skill may execute local code from the artifact, but the code appears limited to printing coaching guidance and writing local logs.

Why it was flagged

The documented usage asks the user to run the included Python helper. This is expected for the skill's CLI-style functionality, and the provided code does not show hidden downloads, shell chaining, or unrelated execution.

Skill content
python3 scripts/main.py reflect --task "数学作业" --approach "直接做题遇到困难"
Recommendation

Run it only if you are comfortable executing the included Python script; no extra privileges or credentials appear necessary.

#
ASI06: Memory and Context Poisoning
Low
What this means

Study tasks, approaches, subjects, or difficulties entered into the tool may remain in local log files after use.

Why it was flagged

The script persistently stores user-provided reflection data locally; the strategy command similarly writes to strategy_log.json. This is purpose-aligned but may retain personal learning details.

Skill content
with open("reflection_log.json", "a", encoding="utf-8") as f:
        f.write(json.dumps(data, ensure_ascii=False) + "\n")
Recommendation

Avoid entering highly sensitive personal information, and delete reflection_log.json or strategy_log.json if you do not want the records retained.