# Send Skill Audit by Raini 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": "raini-skill-audit",
    "name": "Skill Audit by Raini",
    "source": "tencent",
    "type": "skill",
    "category": "安全合规",
    "sourceUrl": "https://clawhub.ai/0xRaini/raini-skill-audit",
    "canonicalUrl": "https://clawhub.ai/0xRaini/raini-skill-audit",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/raini-skill-audit",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=raini-skill-audit",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "package.json",
      "src/audit.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "raini-skill-audit",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T15:43:52.041Z",
      "expiresAt": "2026-05-06T15:43:52.041Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=raini-skill-audit",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=raini-skill-audit",
        "contentDisposition": "attachment; filename=\"raini-skill-audit-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "raini-skill-audit"
      },
      "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/raini-skill-audit"
    },
    "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/raini-skill-audit",
    "downloadUrl": "https://openagent3.xyz/downloads/raini-skill-audit",
    "agentUrl": "https://openagent3.xyz/skills/raini-skill-audit/agent",
    "manifestUrl": "https://openagent3.xyz/skills/raini-skill-audit/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/raini-skill-audit/agent.md"
  }
}
```
## Documentation

### Skill Audit 🔍

扫描 OpenClaw skills 中的安全风险，防止供应链攻击。

### /skill-audit scan [skill-name]

扫描已安装的 skill，检测可疑代码模式。

# 扫描所有已安装 skill
skill-audit scan

# 扫描指定 skill
skill-audit scan moltdash

# 扫描本地目录
skill-audit scan ./my-skill

### /skill-audit check <clawhub-slug>

安装前检查 ClawHub 上的 skill。

skill-audit check some-skill

### 🔴 高风险 (Critical)

读取凭证文件: ~/.ssh/, ~/.env, credentials.json
外发数据: fetch(), curl, webhook, POST 到未知 URL
代码执行: eval(), exec(), child_process
读取环境变量中的密钥: process.env.API_KEY

### 🟠 中风险 (Warning)

网络请求到非知名域名
文件系统遍历: fs.readdir(), glob
动态 require/import
Base64 编码的字符串 (可能是混淆)

### 🟡 低风险 (Info)

使用 shell 命令
读写用户目录外的文件
大量依赖包

### 输出示例

🔍 Skill Audit Report: suspicious-weather
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Risk Score: 85/100 🔴 HIGH RISK

┌─────────────┬──────────┬─────────────────────────────────┐
│ File        │ Severity │ Finding                         │
├─────────────┼──────────┼─────────────────────────────────┤
│ index.ts    │ CRITICAL │ Reads ~/.openclaw/credentials/  │
│ index.ts    │ CRITICAL │ POST to webhook.site            │
│ utils.ts    │ WARNING  │ Uses eval()                     │
└─────────────┴──────────┴─────────────────────────────────┘

⚠️  DO NOT INSTALL - This skill may steal your credentials!

### 运行方式

该 skill 附带一个 CLI 脚本，agent 可直接调用：

node {baseDir}/src/audit.js scan ~/.openclaw/workspace/skills/moltdash
node {baseDir}/src/audit.js scan --all

### 参考

OWASP LLM Top 10
Moltbook Security Discussion
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: 0xRaini
- 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-29T15:43:52.041Z
- Expires at: 2026-05-06T15:43:52.041Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/raini-skill-audit)
- [Send to Agent page](https://openagent3.xyz/skills/raini-skill-audit/agent)
- [JSON manifest](https://openagent3.xyz/skills/raini-skill-audit/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/raini-skill-audit/agent.md)
- [Download page](https://openagent3.xyz/downloads/raini-skill-audit)