{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/zero2ai-security-audit",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=zero2ai-security-audit",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/audit.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/zero2ai-security-audit",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Security Audit",
        "body": "Run scripts/audit.py before every commit, push, or skill publish. No exceptions."
      },
      {
        "title": "When to run",
        "body": "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>\n\n{skill_dir} = /home/aladdin/.openclaw/workspace/skills/skill-security-audit"
      },
      {
        "title": "Exit codes",
        "body": "0 = clean\n1 = HIGH or MEDIUM findings (block publish/push)\n2 = usage error"
      },
      {
        "title": "What it detects",
        "body": "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"
      },
      {
        "title": "Rules",
        "body": "HIGH findings = hard block. Never commit or publish with HIGH findings. Rotate any exposed secret immediately.\nMEDIUM findings = fix before publish. Replace absolute paths with relative or env-var defaults. Remove node_modules/.\nLOW findings = review. Not blocking but investigate.\nFalse 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."
      },
      {
        "title": "After finding a real secret",
        "body": "Do NOT push the commit. If already pushed: rotate the secret immediately, then rewrite history or delete the file from git.\nRotate in the provider portal (TikTok Dev, AWS IAM, WooCommerce, etc.)\nMove to env var: process.env.SECRET_NAME or read from a local config file outside the repo.\nAdd the config file path to .gitignore.\nReport to Aladdin immediately with severity and what was exposed."
      },
      {
        "title": "Skill publish checklist",
        "body": "Before clawhub publish:\n\naudit.py <skill_path> returns 0 (clean)\n node_modules/ not present in skill folder\n No absolute paths to user home directories\n No hardcoded business-specific IDs or credentials\n package.json name matches skill folder name\n SKILL.md description updated if renamed"
      }
    ],
    "body": "Security Audit\n\nRun scripts/audit.py before every commit, push, or skill publish. No exceptions.\n\nWhen to run\nTrigger\tCommand\nBefore git commit\tpython3 {skill_dir}/scripts/audit.py --staged\nBefore git push\tpython3 {skill_dir}/scripts/audit.py --last-commit\nBefore clawhub publish <path>\tpython3 {skill_dir}/scripts/audit.py <skill_path>\nAd-hoc scan any path\tpython3 {skill_dir}/scripts/audit.py <path>\n\n{skill_dir} = /home/aladdin/.openclaw/workspace/skills/skill-security-audit\n\nExit codes\n0 = clean\n1 = HIGH or MEDIUM findings (block publish/push)\n2 = usage error\nWhat it detects\nSeverity\tPattern\n🔴 HIGH\tAPI keys, secrets, passwords, JWT tokens, WooCommerce keys, AWS keys, private key blocks, bearer tokens, .env files\n🟡 MEDIUM\tAbsolute /home/<user>/ paths, /root/ paths, refresh tokens, node_modules/ committed\n🔵 LOW\tHardcoded IPs, long base64 strings\nRules\nHIGH findings = hard block. Never commit or publish with HIGH findings. Rotate any exposed secret immediately.\nMEDIUM findings = fix before publish. Replace absolute paths with relative or env-var defaults. Remove node_modules/.\nLOW findings = review. Not blocking but investigate.\nFalse 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.\nAfter finding a real secret\nDo NOT push the commit. If already pushed: rotate the secret immediately, then rewrite history or delete the file from git.\nRotate in the provider portal (TikTok Dev, AWS IAM, WooCommerce, etc.)\nMove to env var: process.env.SECRET_NAME or read from a local config file outside the repo.\nAdd the config file path to .gitignore.\nReport to Aladdin immediately with severity and what was exposed.\nSkill publish checklist\n\nBefore clawhub publish:\n\n audit.py <skill_path> returns 0 (clean)\n node_modules/ not present in skill folder\n No absolute paths to user home directories\n No hardcoded business-specific IDs or credentials\n package.json name matches skill folder name\n SKILL.md description updated if renamed"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Zero2Ai-hub/zero2ai-security-audit",
    "publisherUrl": "https://clawhub.ai/Zero2Ai-hub/zero2ai-security-audit",
    "owner": "Zero2Ai-hub",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}