# Send 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": "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": {
    "downloadUrl": "/downloads/security-audit",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=security-audit",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/audit.cjs"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "security-audit",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T12:13:28.492Z",
      "expiresAt": "2026-05-06T12:13:28.492Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=security-audit",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=security-audit",
        "contentDisposition": "attachment; filename=\"security-audit-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "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/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/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"
  }
}
```
## Documentation

### When to use

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.

### Setup

No external dependencies required. Uses native system tools where available.

### Quick audit (common issues)

node skills/security-audit/scripts/audit.cjs

### Full audit (comprehensive scan)

node skills/security-audit/scripts/audit.cjs --full

### Auto-fix common issues

node skills/security-audit/scripts/audit.cjs --fix

### Audit specific areas

node skills/security-audit/scripts/audit.cjs --credentials      # Check for exposed API keys
node skills/security-audit/scripts/audit.cjs --ports            # Scan for open ports
node skills/security-audit/scripts/audit.cjs --configs          # Validate configuration
node skills/security-audit/scripts/audit.cjs --permissions      # Check file permissions
node skills/security-audit/scripts/audit.cjs --docker           # Docker security checks

### Generate report

node skills/security-audit/scripts/audit.cjs --full --json > audit-report.json

### Output

The audit produces a report with:

LevelDescription🔴 CRITICALImmediate action required (exposed credentials)🟠 HIGHSignificant risk, fix soon🟡 MEDIUMModerate concern🟢 INFOFYI, no action needed

### Credentials

API keys in environment files
Tokens in command history
Hardcoded secrets in code
Weak password patterns

### Ports

Unexpected open ports
Services exposed to internet
Missing firewall rules

### Configs

Missing rate limiting
Disabled authentication
Default credentials
Open CORS policies

### Files

World-readable files
Executable by anyone
Sensitive files in public dirs

### Docker

Privileged containers
Missing resource limits
Root user in container

### Auto-Fix

The --fix option automatically:

Sets restrictive file permissions (600 on .env)
Secures sensitive configuration files
Creates .gitignore if missing
Enables basic security headers

### Related skills

security-monitor - Real-time monitoring (available separately)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: chandrasekar-r
- 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-29T12:13:28.492Z
- Expires at: 2026-05-06T12:13:28.492Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/security-audit)
- [Send to Agent page](https://openagent3.xyz/skills/security-audit/agent)
- [JSON manifest](https://openagent3.xyz/skills/security-audit/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/security-audit/agent.md)
- [Download page](https://openagent3.xyz/downloads/security-audit)