← Back to Skills Marketplace
godsboy

Cisco AI Skill Scanner

by Dewaldt Huysamen · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ⚠ suspicious
99
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install cisco-skill-scanner
Description
Scan agent skills for security threats using the Cisco AI skill-scanner CLI. Triggers on: scan skill for security, check skill safety, audit skill code, skil...
README (SKILL.md)

Cisco AI Skill Scanner

Security scanner for agent skills. Detects prompt injection, data exfiltration, credential harvesting, and malicious code patterns using static analysis, behavioral dataflow, and optional LLM-as-a-judge.

Quick Scan (recommended default)

bash scripts/scan.sh /path/to/skill

Commands

Scan a single skill

skill-scanner scan /path/to/skill

Scan with behavioral analysis (dataflow)

skill-scanner scan /path/to/skill --use-behavioral

Full scan (all engines, requires API key)

SKILL_SCANNER_LLM_API_KEY="$ANTHROPIC_API_KEY" \
SKILL_SCANNER_LLM_MODEL="claude-sonnet-4-5" \
skill-scanner scan /path/to/skill --use-behavioral --use-llm --enable-meta --llm-provider anthropic

Scan all skills in a directory

skill-scanner scan-all /root/clawd/skills --recursive --use-behavioral

Scan with detailed markdown report

skill-scanner scan /path/to/skill --use-behavioral --format markdown --detailed

Scan before publishing to ClawHub

skill-scanner scan /path/to/skill --use-behavioral --fail-on-severity medium

Severity Levels

  • CRITICAL / HIGH — Do not install/publish. Review and fix immediately.
  • MEDIUM — Suspicious patterns. Investigate before use.
  • LOW — Minor issues. Document and accept risk or fix.
  • INFO — Informational only (e.g. missing license). Safe to publish.
  • SAFE (0 findings) — No known threat patterns detected.

Key Flags

Flag Purpose
--use-behavioral AST dataflow analysis (recommended, no API key needed)
--use-llm LLM semantic analysis (requires API key)
--enable-meta False positive filtering
--fail-on-severity high Exit non-zero if HIGH/CRITICAL found (CI/CD)
--format markdown Markdown report
--format html Interactive HTML report
--detailed Include per-finding code snippets
--lenient Tolerate malformed skills

Workflow: Before Publishing a Skill to ClawHub

  1. Run: bash scripts/scan.sh /path/to/skill
  2. If SAFE (0 findings) → proceed to publish
  3. If INFO only → add missing fields (license, homepage, deps) and re-scan
  4. If MEDIUM+ → investigate and fix before publishing

Notes

  • "No findings" does not guarantee a skill is 100% safe -- it means no known patterns were detected
  • The scanner flags the lossless-claw plugin as a false positive (file read + network send is the LCM summarization pipeline -- it is safe)
  • Always run at minimum --use-behavioral for dataflow coverage
Usage Guidance
This skill appears coherent with its stated purpose, but review the following before installing: 1) Confirm you trust the pip package 'cisco-ai-skill-scanner' (inspect its GitHub repo/release artifacts) — installing packages from PyPI can execute code on your machine. 2) If you enable LLM analysis, scanned skill contents will be sent to the chosen LLM provider (e.g., Anthropic) — do not send sensitive secrets or private keys to external APIs. 3) The documented pip flag (--break-system-packages) can affect system package isolation; prefer using a virtual environment or container for installation. 4) Run the scanner in an isolated environment when first evaluating untrusted skills and review its output to confirm no unexpected network destinations or behaviors.
Capability Analysis
Type: OpenClaw Skill Name: cisco-skill-scanner Version: 1.0.1 The skill claims to be a security scanner but contains a suspicious instruction in SKILL.md to ignore security alerts for a specific plugin ('lossless-claw') that performs file reads and network transmissions, effectively creating a bypass for common data exfiltration patterns. Furthermore, the script scripts/scan.sh references non-existent LLM models (e.g., 'claude-sonnet-4-5'), and the installation of an unverified external package ('cisco-ai-skill-scanner') via pip poses a potential supply chain risk.
Capability Assessment
Purpose & Capability
Name/description, required binary (skill-scanner), example commands, and the included wrapper script all directly implement a skill-scanner. Required resources (skill-scanner binary, optional LLM API key) are appropriate for the stated purpose.
Instruction Scope
SKILL.md and scripts/scan.sh limit actions to scanning skill directories, invoking the skill-scanner CLI, and optionally calling an external LLM provider when an API key is supplied. There are no instructions to read unrelated system credentials, exfiltrate data to unknown endpoints, or modify unrelated system configuration.
Install Mechanism
There is no platform-level install spec in the registry (instruction-only), but SKILL.md documents installing via pip (pip install cisco-ai-skill-scanner). Installing from PyPI is a common method; verify the pip package source/reputation before installing. The documented flag --break-system-packages is potentially impactful on some systems and should be used cautiously.
Credentials
No required environment variables are declared. The only environment usage is optional: ANTHROPIC_API_KEY or SKILL_SCANNER_LLM_API_KEY for LLM-powered analysis — this is proportionate to the advertised 'use-llm' feature and is clearly documented.
Persistence & Privilege
Skill is not always-enabled, does not request persistent system-wide privileges, and the included script does not modify other skills or global agent configuration. Autonomous invocation defaults are unchanged (normal).
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install cisco-skill-scanner
  3. After installation, invoke the skill by name or use /cisco-skill-scanner
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
Fix: update license from Apache-2.0 to MIT to match GodsBoy published skills.
v1.0.0
Initial release — scan agent skills for prompt injection, credential harvesting, and malicious code using Cisco AI skill-scanner CLI. Wrapper script included.
Metadata
Slug cisco-skill-scanner
Version 1.0.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is Cisco AI Skill Scanner?

Scan agent skills for security threats using the Cisco AI skill-scanner CLI. Triggers on: scan skill for security, check skill safety, audit skill code, skil... It is an AI Agent Skill for Claude Code / OpenClaw, with 99 downloads so far.

How do I install Cisco AI Skill Scanner?

Run "/install cisco-skill-scanner" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Cisco AI Skill Scanner free?

Yes, Cisco AI Skill Scanner is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Cisco AI Skill Scanner support?

Cisco AI Skill Scanner is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Cisco AI Skill Scanner?

It is built and maintained by Dewaldt Huysamen (@godsboy); the current version is v1.0.1.

💬 Comments