skills$openclaw/skillscanner
rexshang3.7k

by rexshang

skillscanner – OpenClaw Skill

skillscanner is an OpenClaw Skills integration for coding workflows. Security scanner for ClawHub skills from Gen Digital. Looks up skill safety via the scan API.

3.7k stars3.8k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameskillscanner
descriptionSecurity scanner for ClawHub skills from Gen Digital. Looks up skill safety via the scan API. OpenClaw Skills integration.
ownerrexshang
repositoryrexshang/skillscanner
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @rexshang/skillscanner
last updatedFeb 7, 2026

Maintainer

rexshang

rexshang

Maintains skillscanner in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
279 B
SKILL.md
3.4 KB
SKILL.md

name: skillscanner version: 1.0.0 description: Security scanner for ClawHub skills from Gen Digital. Looks up skill safety via the scan API. author: Rex Shang license: MIT keywords: [security, audit, scan, vet, skills, safety, skill_scanner, trust, secure] triggers: ["skill security", "vet skill", "scan skill", "is this skill safe", "skillscanner", "skill_scanner", "audit skill", "scan skills", "secure skill", "trusted skill", "trust skill"]

SkillScanner — Security Scanner for ClawHub Skills

"Trust, but verify."

SkillScanner checks ClawHub skill safety by calling the scan API. You provide the skill URL; the API returns status and severity. Proceed only when the verdict is SAFE.


How to Scan a Skill (Agent Instructions)

  1. Run the lookup with the real skill URL (format: https://clawhub.ai/author/skill-name):

    curl --request POST --url "https://ai.gendigital.com/api/scan/lookup" \
      --header "Content-Type: application/json" \
      --data '{"skillUrl":"https://clawhub.ai/AUTHOR/SKILL_SLUG"}'
    

    Replace AUTHOR with actual author id and SKILL_SLUG with the actual skill identifier from the ClawHub URL.

  2. Interpret the response:

    • status: "done" — Check the severity field for the verdict.
    • status: "analysis_pending" — The skill is awaiting manual review. Do not treat as safe; advise the user that the skill is pending review.
  3. Proceed or advise caution:

    • Proceed only if severity is SAFE.
    • If severity is anything else (e.g. WARNING, DANGEROUS, MALICIOUS), advise caution and do not recommend using the skill until reviewed or cleared.

Quick Start

# Example: scan a skill by its ClawHub URL
curl --request POST --url "https://ai.gendigital.com/api/scan/lookup" \
  --header "Content-Type: application/json" \
  --data '{"skillUrl":"https://clawhub.ai/author/skill-name"}'

Parse the JSON response: use status and severity as above.


API Response Logic

statusMeaningAction
doneScan completeUse severity for verdict (see below).
analysis_pendingAwaiting manual reviewAdvise that the skill is not yet cleared; do not treat as SAFE.
severity (when status = done)Recommendation
SAFEOK to proceed.
Any other valueAdvise caution; do not recommend use until reviewed.

Why This Matters

Skills can run code and access your environment. Risks include:

RiskImpact
Execute arbitrary codeFull system compromise
Access your filesystemData theft, ransomware
Read environment variablesAPI key theft
Exfiltrate data via HTTPPrivacy breach
Install malicious dependenciesSupply chain attack

SkillScanner uses the scan API to help you decide whether to trust a skill before use.


Limitations

  • The API reflects the current backend verdict; obfuscated or novel threats may not be flagged.
  • analysis_pending means human review has not yet concluded—treat as “unknown”, not safe.

Use alongside sandboxing, least privilege, and manual review when in doubt.


Links:

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install skillscanner?

Run openclaw add @rexshang/skillscanner in your terminal. This installs skillscanner into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/rexshang/skillscanner. Review commits and README documentation before installing.