Back to skill
Skillv2.0.0

ClawScan security

Coaching · ClawHub's context-aware review of the artifact, metadata, and declared behavior.

Scanner verdict

SuspiciousMar 10, 2026, 6:10 AM
Verdict
suspicious
Confidence
medium
Model
gpt-5-mini
Summary
The skill's stated coaching capabilities mostly match the single included script, but the SKILL.md references many missing scripts/files and some vague behaviors (e.g., 'send between-session support') — this mismatch should be resolved before trusting it with confidential client data.
Guidance
Do not install or use this skill for confidential client data until the missing pieces are resolved. Specifically: - Ask the publisher for the missing scripts and reference docs listed in SKILL.md and confirm their behavior (generate_questions.py, track_progress.py, between_sessions.py, etc.). - Verify whether any of the missing scripts send messages or access network endpoints (the phrase 'Send between-session support' could imply external communication). If they do, confirm what credentials/endpoints they use and whether you approve. - Confirm where the skill will store data on your system (the code uses ~/.openclaw/workspace/memory/coaching). Ensure that path and file permissions meet your confidentiality requirements. - If you proceed, run the skill in a sandbox or inspect the full code for all scripts to ensure there is no hidden network activity or unexpected file access. Consider backing up any existing data before first use. If the publisher provides the full source and it matches the local-only claims, the skill would be reasonable to use for coaching tasks; until then, the discrepancy is a red flag.

Review Dimensions

Purpose & Capability
concernThe description promises session prep, question generation, progress tracking, goal setting, and between-session messaging. Only one script (scripts/prep_session.py) is included. SKILL.md lists many other scripts and reference docs that are not present, so the package does not deliver the advertised capabilities.
Instruction Scope
concernRuntime instructions direct the agent to run many scripts (generate_questions.py, track_progress.py, set_goal.py, between_sessions.py, etc.) and reference multiple docs, but those files are missing. The SKILL.md claims 'Send between-session support' which could imply outbound messaging, but no code for outbound communication exists in the provided files. The included script operates only on local files and prints output — it does not exfiltrate data.
Install Mechanism
okNo install spec (instruction-only plus one script). Nothing is downloaded or written by an installer; lowest risk from installation mechanism.
Credentials
okNo environment variables, credentials, or external endpoints are requested. The included script reads per-client JSON files under ~/.openclaw/workspace/memory/coaching, which aligns with the declared local-only storage policy.
Persistence & Privilege
okSkill is not always-enabled and does not request elevated privileges. It does not modify other skills or global agent settings. The script reads local files only and does not autonomously invoke network access in its current form.