/install gh-skillscan
SkillScan
Check if a SKILL.md is safe before you install it.
Start the server
uvicorn skillscan.app:app --port 8001
Scan a SKILL.md file
curl -s -X POST http://localhost:8001/v1/scan-skill \
-H "Content-Type: application/json" \
-d "{\"skill_content\": $(cat path/to/SKILL.md | jq -Rs)}" | jq
Returns safety_score (1.0 = safe, 0.0 = dangerous), findings (list of threat names), verdict (SAFE/CAUTION/DANGEROUS), and skill_name.
What it detects
credential_harvesting— accessing $API_KEY, $TOKEN, $SECRET, $PASSWORDdata_exfiltration— curl/wget sending data to external URLsobfuscated_command— base64 decode piped to bash, eval, execpermission_overreach— accessing /etc/shadow, .ssh/, reverse shells
Example: scan before install
clawdhub inspect some-skill > /tmp/skill.md
VERDICT=$(curl -s -X POST http://localhost:8001/v1/scan-skill \
-H "Content-Type: application/json" \
-d "{\"skill_content\": $(cat /tmp/skill.md | jq -Rs)}" | jq -r '.verdict')
echo "Verdict: $VERDICT"
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install gh-skillscan - After installation, invoke the skill by name or use
/gh-skillscan - Provide required inputs per the skill's parameter spec and get structured output
What is Skillscan?
Scan an OpenClaw SKILL.md file for security threats before installing it. Posts the raw SKILL.md content and gets back a safety score (0-1), detected threat... It is an AI Agent Skill for Claude Code / OpenClaw, with 113 downloads so far.
How do I install Skillscan?
Run "/install gh-skillscan" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Skillscan free?
Yes, Skillscan is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Skillscan support?
Skillscan is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Skillscan?
It is built and maintained by mirni (@mirni); the current version is v1.0.0.