Skillscanner
Security scanner for ClawHub skills from Gen Digital. Looks up skill safety via the scan API.
rexshang
@rexshang
What This Skill Does
Security scanner for ClawHub skills from Gen Digital. It takes a skill URL, calls the scan API, and returns a verdict (SAFE, WARNING, DANGEROUS, MALICIOUS) or indicates analysis is pending.
Replaces manual code review and guesswork by providing an automated API-based safety verdict for ClawHub skills before you run them.
When to Use It
- Vet a ClawHub skill before installing or running it
- Check if a skill has been flagged as dangerous or malicious
- Verify that a skill's scan status is 'done' and severity is 'SAFE'
- Advise a user not to use a skill that has a pending analysis or non-SAFE verdict
- Audit a list of skills for trustworthiness in a development pipeline
Install
$ openclaw skills install @rexshang/skillscannerSkillScanner — 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)
-
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
AUTHORwith actual author id andSKILL_SLUGwith the actual skill identifier from the ClawHub URL. -
Interpret the response:
status: "done"— Check theseverityfield 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.
-
Proceed or advise caution:
- Proceed only if
severityisSAFE. - If severity is anything else (e.g.
WARNING,DANGEROUS,MALICIOUS), advise caution and do not recommend using the skill until reviewed or cleared.
- Proceed only if
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
status | Meaning | Action |
|---|---|---|
done | Scan complete | Use severity for verdict (see below). |
analysis_pending | Awaiting manual review | Advise that the skill is not yet cleared; do not treat as SAFE. |
severity (when status = done) | Recommendation |
|---|---|
| SAFE | OK to proceed. |
| Any other value | Advise caution; do not recommend use until reviewed. |
Why This Matters
Skills can run code and access your environment. Risks include:
| Risk | Impact |
|---|---|
| Execute arbitrary code | Full system compromise |
| Access your filesystem | Data theft, ransomware |
| Read environment variables | API key theft |
| Exfiltrate data via HTTP | Privacy breach |
| Install malicious dependencies | Supply 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_pendingmeans human review has not yet concluded—treat as “unknown”, not safe.
Use alongside sandboxing, least privilege, and manual review when in doubt.
Links:
Top skills in this category
Skill Vetter
@spclaudehomeSecurity-first skill vetting for AI agents. Use before installing any skill from ClawdHub, GitHub, or other sources. Checks for red flags, permission scope, and suspicious patterns.
Skill Vetter - Pre-Install Security Review
@donovanpankratz-delSecurity vetting protocol before installing any AI agent skill. Red flag detection for credential theft, obfuscated code, exfiltration. Risk classification L...
Skill Vetter 1.0.0
@fedrov2025Security-first skill vetting for AI agents. Use before installing any skill from ClawdHub, GitHub, or other sources. Checks for red flags, permission scope,...
Clawdhub
@steipeteUse the ClawdHub CLI to search, install, update, and publish agent skills from clawdhub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish new/updated skill folders with the npm-installed clawdhub CLI.
Evolver
@autogame-17A self-evolution engine for AI agents. Analyzes runtime history to identify improvements and applies protocol-constrained evolution. Communicates with EvoMap...