# Send Zero2ai Security Audit 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": "zero2ai-security-audit",
    "name": "Zero2ai Security Audit",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Zero2Ai-hub/zero2ai-security-audit",
    "canonicalUrl": "https://clawhub.ai/Zero2Ai-hub/zero2ai-security-audit",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/zero2ai-security-audit",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=zero2ai-security-audit",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/audit.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "zero2ai-security-audit",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-11T12:20:05.371Z",
      "expiresAt": "2026-05-18T12:20:05.371Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=zero2ai-security-audit",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=zero2ai-security-audit",
        "contentDisposition": "attachment; filename=\"zero2ai-security-audit-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "zero2ai-security-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/zero2ai-security-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/zero2ai-security-audit",
    "downloadUrl": "https://openagent3.xyz/downloads/zero2ai-security-audit",
    "agentUrl": "https://openagent3.xyz/skills/zero2ai-security-audit/agent",
    "manifestUrl": "https://openagent3.xyz/skills/zero2ai-security-audit/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/zero2ai-security-audit/agent.md"
  }
}
```
## Documentation

### Security Audit

Run scripts/audit.py before every commit, push, or skill publish. No exceptions.

### When to run

TriggerCommandBefore git commitpython3 {skill_dir}/scripts/audit.py --stagedBefore git pushpython3 {skill_dir}/scripts/audit.py --last-commitBefore clawhub publish <path>python3 {skill_dir}/scripts/audit.py <skill_path>Ad-hoc scan any pathpython3 {skill_dir}/scripts/audit.py <path>

{skill_dir} = /home/aladdin/.openclaw/workspace/skills/skill-security-audit

### Exit codes

0 = clean
1 = HIGH or MEDIUM findings (block publish/push)
2 = usage error

### What it detects

SeverityPattern🔴 HIGHAPI keys, secrets, passwords, JWT tokens, WooCommerce keys, AWS keys, private key blocks, bearer tokens, .env files🟡 MEDIUMAbsolute /home/<user>/ paths, /root/ paths, refresh tokens, node_modules/ committed🔵 LOWHardcoded IPs, long base64 strings

### Rules

HIGH findings = hard block. Never commit or publish with HIGH findings. Rotate any exposed secret immediately.
MEDIUM findings = fix before publish. Replace absolute paths with relative or env-var defaults. Remove node_modules/.
LOW findings = review. Not blocking but investigate.
False positives: If a match is a variable name or safe placeholder (not an actual value), document why it's safe in a comment and re-run.

### After finding a real secret

Do NOT push the commit. If already pushed: rotate the secret immediately, then rewrite history or delete the file from git.
Rotate in the provider portal (TikTok Dev, AWS IAM, WooCommerce, etc.)
Move to env var: process.env.SECRET_NAME or read from a local config file outside the repo.
Add the config file path to .gitignore.
Report to Aladdin immediately with severity and what was exposed.

### Skill publish checklist

Before clawhub publish:

audit.py <skill_path> returns 0 (clean)
 node_modules/ not present in skill folder
 No absolute paths to user home directories
 No hardcoded business-specific IDs or credentials
 package.json name matches skill folder name
 SKILL.md description updated if renamed
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Zero2Ai-hub
- 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-05-11T12:20:05.371Z
- Expires at: 2026-05-18T12:20:05.371Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/zero2ai-security-audit)
- [Send to Agent page](https://openagent3.xyz/skills/zero2ai-security-audit/agent)
- [JSON manifest](https://openagent3.xyz/skills/zero2ai-security-audit/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/zero2ai-security-audit/agent.md)
- [Download page](https://openagent3.xyz/downloads/zero2ai-security-audit)