Overview
- Skill Key
- dgriffin831/skill-scan
- Author
- dgriffin831
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/dgriffin831/skill-scan
- Latest Commit SHA
- 3b6b1f72e5f27a0a3c1b34a704c406ffb37a8a4d
Security scanner for OpenClaw skill packages. Scans skills for malicious code, evasion techniques, prompt injection, and misaligned behavior BEFORE installation. Use to audit any skill from ClawHub or local directories.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 skill-scan 技能。 若已安装,则直接安装 skill-scan 技能。
# Skill-Scan — Security Auditor for Agent Skills Multi-layered security scanner for OpenClaw skill packages. Detects malicious code, evasion techniques, prompt injection, and misaligned behavior through static analysis and optional LLM-powered deep inspection. Run this BEFORE installing or enabling any untrusted skill. ## Features - **6 analysis layers** — pattern matching, AST/evasion, prompt injection, LLM deep analysis, alignment verification, meta-analysis - **60+ detection rules** — execution threats, credential theft, data exfiltration, obfuscation, behavioral signatures - **Context-aware scoring** — reduces false positives for legitimate API skills - **ClawHub integration** — scan skills directly from the registry by slug - **Multiple output modes** — text report (default), `--json`, `--compact`, `--quiet` - **Exit codes** — 0 for safe, 1 for risky (easy scripting integration) ## When to Use **MANDATORY** before installing or enabling: - Skills from ClawHub (any skill not authored by you) - Skills shared by other users or teams - Skills from public repositories - Any skill package you haven't personally reviewed **RECOMMENDED** for periodic audits of already-installed skills. ## Quick Start ```bash # Scan a local skill directory skill-scan scan /path/to/skill # Scan a skill from ClawHub before installing it skill-scan scan-hub some-skill-slug # Batch scan all installed skills skill-scan batch /path/to/skills-directory # JSON output for programmatic use skill-scan scan-hub some-skill-slug --json # Quiet mode (just score + verdict) skill-scan scan-hub some-skill-slug --quiet ``` ## Risk Scoring | Risk | Score | Action | |------|-------|--------| | LOW | 80-100 | Safe to install | | MEDIUM | 50-79 | Review findings before installing | | HIGH | 20-49 | Do NOT install — serious threats detected | | CRITICAL | 0-19 | Do NOT install — multiple critical threats | ## Exit Codes - `0` — LOW risk (safe to proceed) - `1` — MEDIUM or higher (block installa...
# Skill-Scan - OpenClaw Skill Security Auditor Multi-layered security scanner for OpenClaw agent skill packages. Detects malicious code, evasion techniques, prompt injection, and misaligned behavior through static analysis and optional LLM-powered deep inspection. ## Prerequisites - **Python 3.10+** — check with `python3 --version` - **pip** — check with `pip3 --version` or `python3 -m pip --version` If pip is not installed: ```bash # Option 1: System package manager (requires sudo) sudo apt-get install python3-pip # Debian/Ubuntu brew install python3 # macOS (includes pip) # Option 2: Bootstrap pip without sudo python3 -m ensurepip --upgrade ``` ## Quick Start ```bash pip install -e . skill-scan scan /path/to/skill ``` ### Alerting (OpenClaw) Send alert on MEDIUM+ risk using configured OpenClaw channel: ```bash OPENCLAW_ALERT_CHANNEL=slack skill-scan scan /path/to/skill --alert ``` Optional target for channels that require a recipient: ```bash OPENCLAW_ALERT_CHANNEL=slack OPENCLAW_ALERT_TO=@security skill-scan scan /path/to/skill --alert ``` Alert only on HIGH/CRITICAL: ```bash OPENCLAW_ALERT_CHANNEL=slack skill-scan scan /path/to/skill --alert --alert-threshold HIGH ``` ### Scan from ClawHub ```bash skill-scan scan-hub some-skill-slug ``` ### Check Arbitrary Text ```bash skill-scan check "some suspicious text" ``` ### Batch Scan ```bash skill-scan batch /path/to/skills-directory ``` ## Analysis Layers | Layer | Module | Purpose | When | |-------|--------|---------|------| | 1 | Pattern matching | Fast regex-based detection | Always | | 2 | AST/evasion analysis | Catches obfuscation tricks | Always | | 3 | Prompt injection | Detects social engineering in SKILL.md | Always | | 4 | LLM deep analysis | Semantic threat understanding | `--llm` | | 5a | Alignment verification | Code vs description matching | `--llm` | | 5b | Meta-analysis | Finding review and correlation | `--llm` | ## Risk Scoring - **LOW (80-100)** - Safe...
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
capt-marbles
Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.
carlulsoe
Local speech-to-text with NVIDIA Parakeet TDT 0.6B v3 (ONNX on CPU). 30x faster than Whisper, 25 languages, auto-detection, OpenAI-compatible API. Use when transcribing audio files, converting speech to text, or processing voice recordings locally without cloud APIs.
carlzhao007
飞书消息自动处理与进度反馈技能。安装后后台运行,监听飞书任务消息并自动创建独立进程处理。 在处理前后发送实时进度反馈(任务确认、进度百分比、完成通知)。 支持任务类型识别、智能解析、错误重试、并发控制、状态持久化。 使用场景:飞书自动化工作流、任务进度追踪、批量任务处理、需要实时反馈的场景。
cartoonitunes
BottyFans agent skill for autonomous creator monetization. Lets AI agents register, build a profile, publish posts (public, subscriber-only, or pay-to-unlock), upload media, accept USDC subscriptions and tips on Base, send and receive DMs, track earnings, and appear on the creator leaderboard. Use this skill when an agent needs to monetize content, interact with fans, manage a creator profile, handle payments in USDC, or operate as an autonomous creator on the BottyFans platform.
camopel
Local arXiv paper manager with semantic search. Crawls arXiv categories, downloads PDFs, chunks content, and indexes with FAISS + Ollama embeddings. No cloud API keys required — everything runs locally.