{
  "schemaVersion": "1.0",
  "item": {
    "slug": "security-audit",
    "name": "Security Audit",
    "source": "tencent",
    "type": "skill",
    "category": "其他",
    "sourceUrl": "https://clawhub.ai/chandrasekar-r/security-audit",
    "canonicalUrl": "https://clawhub.ai/chandrasekar-r/security-audit",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/security-audit",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=security-audit",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/audit.cjs"
    ],
    "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-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/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/security-audit",
    "agentPageUrl": "https://openagent3.xyz/skills/security-audit/agent",
    "manifestUrl": "https://openagent3.xyz/skills/security-audit/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/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": "When to use",
        "body": "Run a security audit to identify vulnerabilities in your Clawdbot setup before deployment or on a schedule. Use auto-fix to remediate common issues automatically."
      },
      {
        "title": "Setup",
        "body": "No external dependencies required. Uses native system tools where available."
      },
      {
        "title": "Quick audit (common issues)",
        "body": "node skills/security-audit/scripts/audit.cjs"
      },
      {
        "title": "Full audit (comprehensive scan)",
        "body": "node skills/security-audit/scripts/audit.cjs --full"
      },
      {
        "title": "Auto-fix common issues",
        "body": "node skills/security-audit/scripts/audit.cjs --fix"
      },
      {
        "title": "Audit specific areas",
        "body": "node skills/security-audit/scripts/audit.cjs --credentials      # Check for exposed API keys\nnode skills/security-audit/scripts/audit.cjs --ports            # Scan for open ports\nnode skills/security-audit/scripts/audit.cjs --configs          # Validate configuration\nnode skills/security-audit/scripts/audit.cjs --permissions      # Check file permissions\nnode skills/security-audit/scripts/audit.cjs --docker           # Docker security checks"
      },
      {
        "title": "Generate report",
        "body": "node skills/security-audit/scripts/audit.cjs --full --json > audit-report.json"
      },
      {
        "title": "Output",
        "body": "The audit produces a report with:\n\nLevelDescription🔴 CRITICALImmediate action required (exposed credentials)🟠 HIGHSignificant risk, fix soon🟡 MEDIUMModerate concern🟢 INFOFYI, no action needed"
      },
      {
        "title": "Credentials",
        "body": "API keys in environment files\nTokens in command history\nHardcoded secrets in code\nWeak password patterns"
      },
      {
        "title": "Ports",
        "body": "Unexpected open ports\nServices exposed to internet\nMissing firewall rules"
      },
      {
        "title": "Configs",
        "body": "Missing rate limiting\nDisabled authentication\nDefault credentials\nOpen CORS policies"
      },
      {
        "title": "Files",
        "body": "World-readable files\nExecutable by anyone\nSensitive files in public dirs"
      },
      {
        "title": "Docker",
        "body": "Privileged containers\nMissing resource limits\nRoot user in container"
      },
      {
        "title": "Auto-Fix",
        "body": "The --fix option automatically:\n\nSets restrictive file permissions (600 on .env)\nSecures sensitive configuration files\nCreates .gitignore if missing\nEnables basic security headers"
      },
      {
        "title": "Related skills",
        "body": "security-monitor - Real-time monitoring (available separately)"
      }
    ],
    "body": "Security Audit Skill\nWhen to use\n\nRun a security audit to identify vulnerabilities in your Clawdbot setup before deployment or on a schedule. Use auto-fix to remediate common issues automatically.\n\nSetup\n\nNo external dependencies required. Uses native system tools where available.\n\nHow to\nQuick audit (common issues)\nnode skills/security-audit/scripts/audit.cjs\n\nFull audit (comprehensive scan)\nnode skills/security-audit/scripts/audit.cjs --full\n\nAuto-fix common issues\nnode skills/security-audit/scripts/audit.cjs --fix\n\nAudit specific areas\nnode skills/security-audit/scripts/audit.cjs --credentials      # Check for exposed API keys\nnode skills/security-audit/scripts/audit.cjs --ports            # Scan for open ports\nnode skills/security-audit/scripts/audit.cjs --configs          # Validate configuration\nnode skills/security-audit/scripts/audit.cjs --permissions      # Check file permissions\nnode skills/security-audit/scripts/audit.cjs --docker           # Docker security checks\n\nGenerate report\nnode skills/security-audit/scripts/audit.cjs --full --json > audit-report.json\n\nOutput\n\nThe audit produces a report with:\n\nLevel\tDescription\n🔴 CRITICAL\tImmediate action required (exposed credentials)\n🟠 HIGH\tSignificant risk, fix soon\n🟡 MEDIUM\tModerate concern\n🟢 INFO\tFYI, no action needed\nChecks Performed\nCredentials\nAPI keys in environment files\nTokens in command history\nHardcoded secrets in code\nWeak password patterns\nPorts\nUnexpected open ports\nServices exposed to internet\nMissing firewall rules\nConfigs\nMissing rate limiting\nDisabled authentication\nDefault credentials\nOpen CORS policies\nFiles\nWorld-readable files\nExecutable by anyone\nSensitive files in public dirs\nDocker\nPrivileged containers\nMissing resource limits\nRoot user in container\nAuto-Fix\n\nThe --fix option automatically:\n\nSets restrictive file permissions (600 on .env)\nSecures sensitive configuration files\nCreates .gitignore if missing\nEnables basic security headers\nRelated skills\nsecurity-monitor - Real-time monitoring (available separately)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/chandrasekar-r/security-audit",
    "publisherUrl": "https://clawhub.ai/chandrasekar-r/security-audit",
    "owner": "chandrasekar-r",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/security-audit",
    "downloadUrl": "https://openagent3.xyz/downloads/security-audit",
    "agentUrl": "https://openagent3.xyz/skills/security-audit/agent",
    "manifestUrl": "https://openagent3.xyz/skills/security-audit/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/security-audit/agent.md"
  }
}