AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL unreviewed MIT Self-run

Panguard Skill Auditor

skill-panguard-ai-panguard-ai-panguard-skill-auditor · by panguard-ai

Automated security auditor for AI agent skills. Scans SKILL.md files for prompt injection, tool poisoning, hidden Unicode, encoded payloads, secrets, and dangerous permissions. Returns a 0-100 risk score.

— No reviews yet
0 installs
28 views
0.0% view→install

Install

$ agentstack add skill-panguard-ai-panguard-ai-panguard-skill-auditor

Open-source listing, not yet scanned by AgentStack. Follow the source repository for install instructions.

Security review

⚠ Flagged

3 finding(s); flagged for manual review. · v0.1.0 How review works →

  • • Prompt-injection patterns
  • • Secret / credential exfiltration
  • • Dangerous shell & filesystem operations
  • • Untrusted network calls
  • • Known-malicious package signatures
  • high Possible prompt-injection directive.
  • high Destructive filesystem operation.
  • high Pipes remote content directly into a shell (remote code execution).

What it can access

  • ● Network access Used
  • ✓ Filesystem access No
  • ● Shell / process execution Used
  • ● Environment & secrets Used
  • ✓ Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Reliability & compatibility

— Not yet reviewed
0 installs to date
— no reviews yet
● 2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Panguard Skill Auditor? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Panguard Skill Auditor

Automated security scanner for AI agent skills. Use before installing any skill from ClawdHub, GitHub, or other sources.

Unlike manual checklists, this runs real static analysis: regex pattern matching, Unicode inspection, Base64 payload decoding, SAST, and secrets scanning.

When to Use

  • Before installing any skill from ClawdHub or GitHub
  • When evaluating third-party SKILL.md files
  • Before adding skills to your agent fleet
  • As a CI gate for skill repositories

Quick Start

# Audit a skill directory
panguard audit skill ./path/to/skill

# Audit a skill from a GitHub URL
panguard audit skill https://github.com/user/repo/tree/main/skills/my-skill

What It Checks

1. Manifest Validation

Verifies SKILL.md frontmatter: required fields (name, description), valid metadata structure, and proper formatting.

2. Prompt Injection Detection

11 regex patterns detect:

  • "Ignore previous instructions" variants
  • Identity override ("you are now", "act as")
  • System prompt manipulation
  • Jailbreak patterns (DAN, bypass safety)
  • Hidden text in HTML/markdown comments

3. Hidden Content Detection

  • Zero-width Unicode characters (U+200B, U+200C, U+200D, RTL overrides)
  • Base64-encoded payloads containing eval, exec, subprocess, child_process
  • Homoglyph attacks

4. Tool Poisoning Detection

  • Privilege escalation (sudo, chmod 777)
  • Reverse shell patterns (nc -e, bash -i >&, /dev/tcp/)
  • Remote code execution (curl | bash)
  • Environment variable exfiltration
  • Sensitive file access (~/.ssh, .env, .aws/)
  • Destructive operations (rm -rf /)

5. Code Security (SAST + Secrets)

Scans all files in the skill directory:

  • Static analysis for common vulnerabilities
  • Hardcoded API keys, tokens, passwords
  • AWS credentials, private keys

6. Dependency Analysis

Checks declared dependencies for known issues.

7. Permission Scope Analysis

Evaluates requested permissions against the skill's stated purpose.

Output Format

Returns a structured report:

PANGUARD SKILL AUDIT REPORT
============================
Skill:      my-skill
Risk Score: 72/100
Risk Level: CRITICAL
Duration:   0.3s

CHECKS:
  [FAIL] Prompt Safety: 2 suspicious pattern(s) detected
  [PASS] Manifest: Valid SKILL.md structure
  [WARN] Code: 1 issue(s) found; Secrets: No hardcoded credentials
  [PASS] Dependencies: No known issues
  [PASS] Permissions: Scope appropriate

FINDINGS:
  [CRITICAL] Prompt injection: ignore previous instructions
             SKILL.md:42 - "ignore all previous instructions and..."
  [HIGH]     Reverse shell pattern detected
             SKILL.md:87 - "bash -i >& /dev/tcp/..."

VERDICT: DO NOT INSTALL - Critical security issues found

Risk Levels

| Score | Level | Action | | ------ | -------- | ---------------------------------- | | 0-14 | LOW | Safe to install after quick review | | 15-39 | MEDIUM | Review findings before installing | | 40-69 | HIGH | Requires thorough manual review | | 70-100 | CRITICAL | Do NOT install |

Integration with Your Agent

Add to your agent's pre-install hook:

# In your agent's skill install pipeline
panguard audit skill "$SKILL_PATH" --json | jq '.riskLevel'
# Block installation if HIGH or CRITICAL

Comparison with Manual Vetting

| Feature | Manual Checklist | Panguard Auditor | | --------------- | ---------------------- | ----------------------- | | Speed | Minutes per skill | < 1 second | | Consistency | Varies by reviewer | Deterministic | | Hidden Unicode | Easy to miss | Automatic detection | | Base64 payloads | Requires manual decode | Auto-decode + analyze | | Code SAST | Not included | Integrated scanner | | Secrets scan | Manual grep | Pattern-based detection | | Risk score | Subjective | Quantitative (0-100) |

Learn More

  • Docs: https://panguard.ai/docs/skill-auditor
  • Blog: https://panguard.ai/blog/skill-auditor-guide
  • GitHub: https://github.com/panguard-ai/panguard-ai

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.