Skill Security Scanner
Analysis
The scanner is mostly purpose-aligned, but its reports can preserve unredacted secrets and raw HTML-capable scan data, so it needs review before use on sensitive skills.
Findings (4)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
<title>🔒 Security Scan Report - {skill}</title> ... <span>📦 Skill: {skill}</span>The HTML report template directly interpolates report fields into HTML. If scan result fields contain markup, they may be rendered rather than safely escaped.
ln -s "${CLI_SCRIPT}" "${CLI_PATH}"
chmod +x "${CLI_SCRIPT}"The install script creates a persistent CLI symlink in the user's ~/.local/bin and marks the script executable. This is normal for a CLI skill, but the registry also describes the package as having no install spec.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
"virustotal_api_key": ... "Optional VirusTotal API key for file reputation scanning"
The skill can use a third-party VirusTotal credential. This is disclosed and purpose-aligned, with no artifact evidence of hardcoding or unrelated credential use.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
message="Potential hardcoded secret detected",
snippet=line.strip()[:80]Hardcoded-secret findings include the first 80 characters of the original matching line, which can copy actual API keys, passwords, or tokens into scan output instead of masking them.
