-
Notifications
You must be signed in to change notification settings - Fork 0
security
Moataz Mohamed edited this page Jun 24, 2026
·
1 revision
Research shows 26.1% of AI skills contain vulnerabilities and 5.2% show likely malicious intent. Omni Skills integrates with NVIDIA SkillSpector to scan your skills before you install them.
SkillSpector detects 64 vulnerability patterns across 16 categories:
- Prompt injection, data exfiltration, privilege escalation
- Supply chain attacks, malware, credential harvesting
- Excessive agency, tool misuse, system prompt leakage
# Check SkillSpector status
omni-skills security
# Scan all skills in your canonical store
omni-skills security scan
# Scan without LLM (faster, static analysis only)
omni-skills security scan --no-llm
# Scan a specific skill directory
omni-skills security scan ~/my-skills-private/clean-codegit clone https://github.com/NVIDIA/skillspector.git
cd skillspector
python3 -m venv .venv && source .venv/bin/activate
pip install -e .Or use Docker:
docker run --rm -v "$PWD:/scan" ghcr.io/nvidia/skillspector scan /scan