skill-security-auditor

Scan AI agent skill directories and repositories for security risks and produce PASS/WARN/FAIL audit reports.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/wjlmrzd/OpenClaw-Wren --skill skill-security-auditor-wjlmrzd
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skill-security-auditor
Source: https://github.com/wjlmrzd/OpenClaw-Wren/tree/main/skills/cs-skill-security-auditor
Command: npx skills add https://github.com/wjlmrzd/OpenClaw-Wren --skill skill-security-auditor-wjlmrzd

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill scans AI agent skill packages and repositories to find security risks and unsafe patterns before installation, reducing the chance of executing malicious code or installing compromised dependencies.

Core Features & Use Cases

  • Static code scanning: Identifies dangerous constructs such as eval/exec, shell injections, subprocess with shell=True, and obfuscated payloads.
  • Prompt injection detection: Detects instructions in SKILL.md and reference docs that attempt to override agent behavior, bypass safety, or exfiltrate files.
  • Dependency and filesystem checks: Flags typosquatting, unpinned packages, hidden files, binaries, and reads to credential locations.
  • Use Case: Integrate into pre-install CI to automatically reject skill PRs with critical findings or run manual audits on third-party skill repositories.

Quick Start

Run the security auditor on a skill directory or git repo URL to receive a PASS/WARN/FAIL verdict with findings and remediation advice.

Frequently Asked Questions about skill-security-auditor

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I scan AI agent skills for security risks before installing them?

To scan AI agent skills for security risks, you can run a security auditor on a local skill directory or git repository URL. It identifies static patterns for command execution, prompt injection, and credential access, producing a structured PASS, WARN, or FAIL report with remediation guidance.

What is prompt injection detection in AI skill repositories?

Prompt injection detection in AI skill repositories identifies malicious instructions in SKILL.md and reference docs that attempt to override agent behavior, bypass safety protocols, or exfiltrate files. It flags these dangerous textual patterns before you install the skill.

Can I use a security scanner as a pre-install CI gate for Claude Code plugins?

Yes, you can integrate this security scanner into pre-install CI pipelines to automatically reject skill PRs with critical findings. It supports manual audits and automated CI pre-install gates for Claude Code plugins, OpenClaw skills, and Codex skills.

How do I detect dependency typosquatting and unpinned packages in AI skills?

To detect dependency typosquatting and unpinned packages in AI skills, the scanner performs dependency and filesystem checks. It flags typosquatted package names, unpinned dependencies, hidden files, binaries, and reads to credential locations.

What static code patterns are flagged during an AI skill security audit?

During an AI skill security audit, the static code scanning feature flags dangerous constructs such as eval and exec usage, shell injections, subprocess calls with shell=True, and obfuscated payloads that pose security risks.

What are the limitations of static analysis for AI skill vulnerability scanning?

Static analysis for AI skill vulnerability scanning detects predefined dangerous patterns and filesystem anomalies but may miss dynamic runtime behaviors or novel zero-day exploits not present in its static pattern definitions.