# Send Openclaw Sentinel 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": "openclaw-sentinel",
    "name": "Openclaw Sentinel",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/AtlasPA/openclaw-sentinel",
    "canonicalUrl": "https://clawhub.ai/AtlasPA/openclaw-sentinel",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openclaw-sentinel",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-sentinel",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "scripts/sentinel.py",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "openclaw-sentinel",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T18:42:14.229Z",
      "expiresAt": "2026-05-07T18:42:14.229Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-sentinel",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-sentinel",
        "contentDisposition": "attachment; filename=\"openclaw-sentinel-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "openclaw-sentinel"
      },
      "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/openclaw-sentinel"
    },
    "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/openclaw-sentinel",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-sentinel",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-sentinel/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-sentinel/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-sentinel/agent.md"
  }
}
```
## Documentation

### OpenClaw Sentinel

Supply chain security scanner for agent skills. Detects obfuscated code, known-bad signatures, suspicious install behaviors, dependency confusion, and metadata inconsistencies — before and after installation.

### The Problem

You install skills from the community. Any skill can contain obfuscated payloads, post-install hooks that execute arbitrary code, or supply chain attacks that modify other skills in your workspace. Existing tools verify file integrity after the fact — nothing inspects skills for supply chain risks before they run.

### Scan Installed Skills

Deep scan of all installed skills for supply chain risks. Checks file hashes against a local threat database, detects obfuscated code patterns, suspicious install behaviors, dependency confusion, and metadata inconsistencies. Generates a risk score (0-100) per skill.

python3 {baseDir}/scripts/sentinel.py scan --workspace /path/to/workspace

### Scan a Single Skill

python3 {baseDir}/scripts/sentinel.py scan openclaw-warden --workspace /path/to/workspace

### Pre-Install Inspection

Scan a skill directory BEFORE copying it to your workspace. Outputs a SAFE/REVIEW/REJECT recommendation and shows exactly what binaries, network calls, and file operations the skill will perform.

python3 {baseDir}/scripts/sentinel.py inspect /path/to/skill-directory

### Manage Threat Database

View current threat database statistics.

python3 {baseDir}/scripts/sentinel.py threats --workspace /path/to/workspace

Import a community-shared threat list.

python3 {baseDir}/scripts/sentinel.py threats --update-from threats.json --workspace /path/to/workspace

### Quick Status

Summary of installed skills, scan history, and risk score overview.

python3 {baseDir}/scripts/sentinel.py status --workspace /path/to/workspace

### Workspace Auto-Detection

If --workspace is omitted, the script tries:

OPENCLAW_WORKSPACE environment variable
Current directory (if AGENTS.md exists)
~/.openclaw/workspace (default)

### What It Detects

CategoryPatternsEncoded Executioneval(base64.b64decode(...)), exec(compile(...)), eval/exec with encoded stringsDynamic Imports__import__('os').system(...), dynamic subprocess/ctypes importsShell Injectionsubprocess.Popen with shell=True + string concatenation, os.system()Remote Code Execurllib/requests combined with exec/eval — download-and-run patternsObfuscationLines >1000 chars, high-entropy strings, minified code blocksInstall BehaviorsPost-install hooks, auto-exec in __init__.py, cross-skill file writesHidden FilesNon-standard dotfiles and hidden directoriesDependency ConfusionSkills shadowing popular package names, typosquatting near-matchesMetadata MismatchUndeclared binaries, undeclared env vars, invocable flag inconsistenciesSerializationpickle.loads, marshal.loads — arbitrary code execution via deserializationKnown-Bad HashesFile SHA-256 matches against local threat database

### Risk Scoring

Each skill receives a score from 0-100:

ScoreLabelMeaning0CLEANNo issues detected1-19LOWMinor findings, likely benign20-49MODERATEReview recommended50-74HIGHSignificant risk, review required75-100CRITICALSerious supply chain risk

### Threat Database Format

Community-shared threat lists use this JSON format:

{
  "hashes": {
    "<sha256hex>": {"name": "...", "severity": "...", "description": "..."}
  },
  "patterns": [
    {"name": "...", "regex": "...", "severity": "..."}
  ]
}

### Exit Codes

0 — Clean, no issues
1 — Review needed
2 — Threats detected

### No External Dependencies

Python standard library only. No pip install. No network calls. Everything runs locally.

### Cross-Platform

Works with OpenClaw, Claude Code, Cursor, and any tool using the Agent Skills specification.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: AtlasPA
- Version: 1.0.2
## 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-30T18:42:14.229Z
- Expires at: 2026-05-07T18:42:14.229Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/openclaw-sentinel)
- [Send to Agent page](https://openagent3.xyz/skills/openclaw-sentinel/agent)
- [JSON manifest](https://openagent3.xyz/skills/openclaw-sentinel/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openclaw-sentinel/agent.md)
- [Download page](https://openagent3.xyz/downloads/openclaw-sentinel)