# Send Skill Auditor v2 to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "skill-auditor-v2",
    "name": "Skill Auditor v2",
    "source": "tencent",
    "type": "skill",
    "category": "金融交易",
    "sourceUrl": "https://clawhub.ai/aiwithabidi/skill-auditor-v2",
    "canonicalUrl": "https://clawhub.ai/aiwithabidi/skill-auditor-v2",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/skill-auditor-v2",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skill-auditor-v2",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/ioc-database.json",
      "references/known-patterns.md",
      "references/prompt-injection-patterns.md",
      "scripts/audit_skill.py",
      "scripts/quarantine.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "skill-auditor-v2",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T04:43:40.968Z",
      "expiresAt": "2026-05-06T04:43:40.968Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skill-auditor-v2",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skill-auditor-v2",
        "contentDisposition": "attachment; filename=\"skill-auditor-v2-2.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "skill-auditor-v2"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/skill-auditor-v2"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/skill-auditor-v2",
    "downloadUrl": "https://openagent3.xyz/downloads/skill-auditor-v2",
    "agentUrl": "https://openagent3.xyz/skills/skill-auditor-v2/agent",
    "manifestUrl": "https://openagent3.xyz/skills/skill-auditor-v2/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/skill-auditor-v2/agent.md"
  }
}
```
## Documentation

### Skill Auditor v2.0 🔍🛡️

Comprehensive security scanner for OpenClaw/ClawHub skills. Merges static analysis, deobfuscation, and threat intelligence into a single Python tool.

### When to Use

Before installing any third-party skill from ClawHub
When reviewing skill updates for security regressions
To audit your own skills before publishing
When someone asks: "is this skill safe?", "audit this", "check security"

### Audit a local skill directory

python3 {baseDir}/scripts/audit_skill.py /path/to/skill --human

### Audit a ClawHub skill by slug

python3 {baseDir}/scripts/audit_skill.py --slug skill-name --human

### Quarantine workflow (audit + prompt to install)

bash {baseDir}/scripts/quarantine.sh /path/to/skill
bash {baseDir}/scripts/quarantine.sh --slug skill-name

### JSON output for programmatic use

python3 {baseDir}/scripts/audit_skill.py /path/to/skill --json

### Scoring System

ScoreLevelAction0–20✅ SAFEAuto-install OK21–40🟢 LOW RISKProceed with caution41–60🟡 MEDIUM RISKManual review required61–80🟠 HIGH RISKExpert review needed81–100🔴 CRITICALDo NOT install

Exit codes: 0 = safe (≤20), 1 = review (21–60), 2 = dangerous (>60)

### Layer 1: Static Pattern Analysis

10+ scan categories with regex patterns
Shell execution, network calls, env access, filesystem escape
Prompt injection, data exfiltration, crypto wallet access
Dynamic imports, browser credential theft, fake prerequisites

### Layer 2: Deobfuscation

Base64 string extraction and decode → re-scan decoded content
Hex escape sequence decode → re-scan
Detects hidden commands, C2 IPs in encoded payloads

### Layer 3: Threat Intelligence

IoC database: known malicious IPs, domains
Social engineering detection: urgency, false authority, fear tactics
MITRE ATT&CK ID mapping on every finding
Whitelist system reduces score for safe binaries/domains

### Additional Checks

SHA256 file inventory for integrity verification
Typosquat detection (Levenshtein distance on package names)
Zero-width character detection in SKILL.md
Comment-context severity reduction (findings in comments scored lower)
Permission scope analysis (what tools does the skill request?)

### IoC Database

Structured threat data in references/ioc-database.json. Update when new threats emerge. The scanner auto-loads this file at runtime.

### References

references/ioc-database.json — Structured IoC data (IPs, domains, patterns)
references/known-patterns.md — Human-readable threat documentation
references/prompt-injection-patterns.md — Prompt injection pattern reference

### Credits

Built by M. Abidi | agxntsix.ai
YouTube | GitHub
Part of the AgxntSix Skill Suite for OpenClaw agents.

📅 Need help setting up OpenClaw for your business? Book a free consultation

Fork of skill-auditor-pro by sypsyp97, merged with skill-security-auditor by akm626.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: aiwithabidi
- Version: 2.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T04:43:40.968Z
- Expires at: 2026-05-06T04:43:40.968Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/skill-auditor-v2)
- [Send to Agent page](https://openagent3.xyz/skills/skill-auditor-v2/agent)
- [JSON manifest](https://openagent3.xyz/skills/skill-auditor-v2/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/skill-auditor-v2/agent.md)
- [Download page](https://openagent3.xyz/downloads/skill-auditor-v2)