SKILLEMALL.ai

FD skill-vetter

Security-first skill vetting for AI agents. Use BEFORE installing any skill from ClawHub, GitHub, or other sources. Checks for red flags, dangerous patterns, permission scope, and suspicious code. Protects the agent and user from malicious skills.

Not recommendedcritical or high security findings · low grade F
ClawHub Agent Skills author: MissCrx v1.0.0 4 files body ≈ 2 372 tokens Open the sourceclawhub.ai analyzed 3 d ago

As a process D 47/100 · Unfinished process — weak spots: when it triggers, inputs and preconditions, failures and branches

AnalyzerGitHubAI and agentsSoftware developmentInfrastructuretype and topics are labelled automatically from the skill text
JSON
Technical rating
F
34/100
safety, quality, tests
Safety 60%
0
Quality 40%
84
Run on models
none yet
Process rating
D
47/100
Unfinished process
Inputs and preconditions w 11
0
Failures and branches w 10
0
Progress reporting w 2
0
the three weakest of ten parameters · all ten

What is at stake

The skill contains fragments that, in the wrong hands, cost money or data. Below: what the installer risks and what the author should do.

Dangerous commands
If you install

The skill contains commands that delete files, rewrite disks or execute code fetched from the network. The agent may run them without asking if it believes the instructions require it.

For the author

Replace destructive commands with safe equivalents that ask for confirmation, scope them to one folder, and stop piping curl into a shell: pin a version and a checksum.

Exfiltration medium severity

Below is the worst case for this category. The finding here is medium: the guard saw a sign, not a proof.

If you install

The instructions or scripts send data out: environment variables, keys, file contents, chat history. You may never notice, because the agent performs the upload as "part of the task".

For the author

If the upload is not needed for the task, remove it: catalogs flag such skills and delist them. If it is needed, name the destination explicitly, say what leaves the machine, and give the user a switch.

How to improve

  1. Address the high-severity findings: each costs 18 safety points. If one is a false positive, add the rule id to guard.allow in spec.yaml.
For the model run — optional
  • Your own cases (evals/evals.json, 4–6 real requests with expected answers): the full check would then run those instead of a model-drafted suite.
  • A spec.yaml with trigger phrases and assertions — a behaviour contract for CI; `skilltest init` writes a template.

Guard findings · 24

  • high Dangerous commands cmd-destructive-fs SKILL.md:56
    Destructive filesystem command (wipes root/home/drive) (documentation of a security skill)
    rm -rf /                 # Delete everything
    security skill
  • high Dangerous commands cmd-destructive-fs SKILL.md:57
    Destructive filesystem command (wipes root/home/drive) (documentation of a security skill)
    rm -rf ~                 # Delete home directory
    security skill
  • high Dangerous commands cmd-destructive-fs SKILL.md:58
    Destructive filesystem command (wipes root/home/drive) (documentation of a security skill)
    rm -rf /*                # Delete all files
    security skill
  • high Dangerous commands cmd-destructive-fs SKILL.md:59
    Destructive filesystem command (wipes root/home/drive) (documentation of a security skill)
    :(){ :|:& };:           # Fork bomb
    security skill
Medium and low: 20
  • medium Exfiltration exfil-read-secret-files references/patterns.md:151
    Reads credential / secret files (documentation of a security skill)
    open('~/.ssh/id_rsa', 'r')
    security skill
  • medium Dangerous commands cmd-pipe-to-shell SKILL.md:32
    Downloads and executes remote code from an unrecognised host (pipe to shell) (documentation of a security skill)
    curl ... | bash        # Remote code execution
    security skill
  • medium Dangerous commands cmd-pipe-to-shell SKILL.md:33
    Downloads and executes remote code from an unrecognised host (pipe to shell) (documentation of a security skill)
    curl ... | sh          # Remote code execution
    security skill
  • medium Dangerous commands cmd-pipe-to-shell SKILL.md:34
    Downloads and executes remote code from an unrecognised host (pipe to shell) (documentation of a security skill)
    wget ... -O - | sh     # Remote code execution
    security skill
  • medium Exfiltration exfil-read-secret-files SKILL.md:69
    Reads credential / secret files (documentation of a security skill)
    cat ~/.ssh/id_rsa       # SSH key access
    security skill
  • low Risky intent intent-offensive-security references/patterns.md:35
    Offensive-security / dual-use content (legitimate for authorised testing; review intended use)
    ### 2. Privilege Escalation
  • low Dangerous commands cmd-privilege references/patterns.md:43
    Privilege escalation / world-writable permissions (documentation of a security skill)
    sudo rm -rf /var/log/*
    security skill
  • low Dangerous commands cmd-privilege references/patterns.md:46
    Privilege escalation / world-writable permissions (documentation of a security skill)
    chmod 777 /etc/passwd
    security skill
  • low Dangerous commands cmd-eval-dynamic references/patterns.md:90
    Dynamic code execution from decoded/untrusted input (documentation of a security skill)
    exec(base…ode("aW1w…nKQ=="))
    security skill
  • low Dangerous commands cmd-eval-dynamic references/patterns.md:91
    Dynamic code execution from decoded/untrusted input (documentation of a security skill)
    eval(compile(open('hidden.py').read(), 'hidden.py', 'exec'))
    security skill
  • low Dangerous commands cmd-pipe-to-shell scripts/vet_skill.py:77
    Downloads and executes remote code from an unrecognised host (pipe to shell) (detector / deny-list definition; string literal in code, not executed)
    (r'curl\s+.*\|\s*sh', "Remote code execution via curl | sh"),
    detectorcode literal
  • low Dangerous commands cmd-destructive-fs-scoped scripts/vet_skill.py:97
    Destructive command on a partition / current directory (normal in admin docs; verify the target) (detector / deny-list definition; string literal in code, not executed)
    (r'rm\s+-rf\s+\*', "Dangerous rm -rf * pattern"),
    detectorcode literal
  • low Risky intent intent-offensive-security SKILL.md:39
    Offensive-security / dual-use content (legitimate for authorised testing; review intended use)
    **Privilege Escalation:**
  • low Dangerous commands cmd-privilege SKILL.md:42
    Privilege escalation / world-writable permissions (documentation of a security skill)
    chmod 777 ...          # Overly permissive
    security skill
  • low Risky intent intent-offensive-security SKILL.md:51
    Offensive-security / dual-use content (legitimate for authorised testing; review intended use)
    nc -e /bin/sh ...                   # Reverse shell
  • low Dangerous commands cmd-shell-rc SKILL.md:70
    Writes to a shell startup file (documentation of a security skill)
    cat ~/.bashrc           # Shell config access
    security skill
  • low Dangerous commands cmd-eval-dynamic SKILL.md:96
    Dynamic code execution from decoded/untrusted input (documentation of a security skill)
    exec(base…ode(...)) # Executing hidden code
    security skill

A further 3 matches are quotations in this security skill's documentation and are not counted as findings.

Files scanned: 4. Evidence is masked. Grey chips explain why severity was lowered.

Against the Agent Skills spec

✓ No remarks against the Agent Skills spec

Process rating: all ten parameters 47/100

  • 0Inputs and preconditions. Does not say what the process needs to start
  • 0Failures and branches. Linear process with no failure handling
  • 0Progress reporting. Says nothing while it works
  • 20When it triggers. No condition that starts the skill
  • 30Running it twice. 3 mutating operations with no state check
  • 40Consistency. Frontmatter name (skill-vetter) differs from the folder (vivi-skill-vetter)
  • 60Tools and files. Uses tools (web, git, python) that frontmatter does not declare
  • 60Result and completion. Output format stated, no completion criterion
  • 100Steps. 51 steps
  • 100Execution cost. Instruction body is 2372 tokens
  • medium Safety rules and hard prohibitions inside a skill: they belong in the system prompt, here they protect nothing

Everything here is measured from the skill text rather than judged by a model, so the numbers are checkable. A parameter weighs more when it is a more common reason for the process to stall.

Quality signals

  • +5Description has no quoted example phrases that should trigger the skill
  • +4Description does not say when NOT to use the skill (false activations)
  • -213 emoji in the instructions: noise for the model
  • -41 reference files, but SKILL.md never points to them: the model will not open them
  • +1No license
  • +2Single-language instructions
  • +3Description length 247: enough signal without eating the budget
  • +4Structure: 26 headings
  • +3Step-by-step instructions: 51 items
  • +3Output format is stated explicitly
  • +4Has examples (18 code blocks)
  • +3All 1 scripts are documented

Quality base 70; lint remarks subtract, signals add up to 100. Result: 84.

External checks

ClawHub: clean
This skill is a disclosed local security vetting helper, with no evidence of hidden network access, credential theft, persistence, or destructive behavior.
LLM: benign (high) · VirusTotal: · 29 May 2026