# Send ClawSkillShield 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawskillshield",
    "name": "ClawSkillShield",
    "source": "tencent",
    "type": "skill",
    "category": "安全合规",
    "sourceUrl": "https://clawhub.ai/AbYousef739/clawskillshield",
    "canonicalUrl": "https://clawhub.ai/AbYousef739/clawskillshield",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clawskillshield",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawskillshield",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      ".gitignore",
      "LICENSE.txt",
      "pyproject.toml",
      "README.md",
      "SKILL.md",
      "clawskillshield/analyzer.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "clawskillshield",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T04:25:37.337Z",
      "expiresAt": "2026-05-06T04:25:37.337Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawskillshield",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawskillshield",
        "contentDisposition": "attachment; filename=\"clawskillshield-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "clawskillshield"
      },
      "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/clawskillshield"
    },
    "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/clawskillshield",
    "downloadUrl": "https://openagent3.xyz/downloads/clawskillshield",
    "agentUrl": "https://openagent3.xyz/skills/clawskillshield/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawskillshield/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawskillshield/agent.md"
  }
}
```
## Documentation

### ClawSkillShield 🛡️

Local-first security scanner for OpenClaw/ClawHub skills.

### What It Does

Static analysis for security risks and malware patterns
Detects:

Hardcoded secrets (API keys, credentials, private keys)
Risky imports (os, subprocess, socket, ctypes)
Dangerous calls (eval(), exec(), open())
Obfuscation (base64 blobs, suspicious encoding)
Hardcoded IPs


Risk scoring (0–10) + detailed threat reports
Quarantine high-risk skills automatically

### Dual-Use Design

CLI for humans: Quick safety checks before installing skills
Agent API: Importable functions for autonomous agents/Moltbots to proactively scan and quarantine risky skills (essential post-ClawHavoc)

### CLI (Humans)

pip install -e .
clawskillshield scan-local /path/to/skill
clawskillshield quarantine /path/to/skill

### Python API (Agents)

from clawskillshield import scan_local, quarantine

threats = scan_local("/path/to/skill")
if risk_score < 4:  # HIGH RISK
    quarantine("/path/to/skill")

### Zero Dependencies

Pure Python. No network calls. Runs entirely locally.

### Why This Matters

ClawHavoc demonstrated how easily malicious skills can slip into the ecosystem. ClawSkillShield provides a trusted, open-source defense layer—audit the code, run offline, stay safe.

GitHub: https://github.com/AbYousef739/clawskillshield
License: MIT
Author: Ab Yousef
Contact: contact@clawskillshield.com
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: AbYousef739
- Version: 1.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:25:37.337Z
- Expires at: 2026-05-06T04:25:37.337Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawskillshield)
- [Send to Agent page](https://openagent3.xyz/skills/clawskillshield/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawskillshield/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawskillshield/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawskillshield)