{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agent-security-auditor",
    "name": "Agent Security Auditor",
    "source": "tencent",
    "type": "skill",
    "category": "金融交易",
    "sourceUrl": "https://clawhub.ai/aviclaw/agent-security-auditor",
    "canonicalUrl": "https://clawhub.ai/aviclaw/agent-security-auditor",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/agent-security-auditor",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-security-auditor",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "package.json",
      "references/ERC-8004.md",
      "registration.json",
      "scripts/audit.js"
    ],
    "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",
      "slug": "agent-security-auditor",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-25T23:13:42.098Z",
      "expiresAt": "2026-05-02T23:13:42.098Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-security-auditor",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-security-auditor",
        "contentDisposition": "attachment; filename=\"agent-security-auditor-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "agent-security-auditor"
      },
      "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/agent-security-auditor"
    },
    "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/agent-security-auditor",
    "agentPageUrl": "https://openagent3.xyz/skills/agent-security-auditor/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-security-auditor/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-security-auditor/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": "Agent Security Auditor",
        "body": "Scans ERC-8004 agents for security vulnerabilities and generates comprehensive security reports."
      },
      {
        "title": "Overview",
        "body": "This skill audits ERC-8004 Trustless Agents by querying the Identity Registry and analyzing agent metadata for common security issues. It helps identify potentially malicious or misconfigured agents before interacting with them."
      },
      {
        "title": "Features",
        "body": "Identity Registry Query: Fetches agent metadata from the ERC-8004 Identity Registry\nMetadata Validation: Checks for missing, empty, or suspicious metadata\nEndpoint Security: Analyzes service endpoints for red flags\nx402 Payment Analysis: Validates payment configuration\nReputation Check: Queries the Reputation Registry for feedback signals\nVerification Status: Checks if endpoints are verified via domain control"
      },
      {
        "title": "Usage",
        "body": "# Run the audit script directly with Node.js\nnode scripts/audit.js <agent-address> [options]\n\n# Options:\n#   --rpc <url>        RPC endpoint URL (default: https://eth.llamarpc.com)\n#   --chain <id>       Chain ID (default: 1)\n#   --output <file>    Output file for JSON report\n#   --verbose          Enable verbose logging"
      },
      {
        "title": "Example",
        "body": "# Audit an agent on Ethereum mainnet\nnode scripts/audit.js 0x742d35Cc6634C0532925a3b844Bc9e7595f8bE21\n\n# Audit with custom RPC\nnode scripts/audit.js 0x742d35Cc6634C0532925a3b844Bc9e7595f8bE21 --rpc https://mainnet.infura.io/v3/YOUR_KEY\n\n# Save report to file\nnode scripts/audit.js 0x742d35Cc6634C0532925a3b844Bc9e7595f8bE21 --output report.json"
      },
      {
        "title": "Critical Issues",
        "body": "Missing or empty metadata (no name, description)\nNo registered services/endpoints\nInvalid or unreachable agent URI\nNo agent wallet configured"
      },
      {
        "title": "High Severity Issues",
        "body": "Unverified endpoints (no domain control proof)\nSuspicious endpoint patterns (localhost, IP addresses, unusual ports)\nNo x402 payment support warning\nNo reputation signals"
      },
      {
        "title": "Medium Severity Issues",
        "body": "No validation registrations\nMissing supportedTrust indicators\nInactive agent status"
      },
      {
        "title": "Info",
        "body": "Reputation score summary\nValidation count\nService endpoint count"
      },
      {
        "title": "Architecture",
        "body": "agent-security-auditor/\n├── SKILL.md           # This file\n├── scripts/\n│   └── audit.js       # Main audit logic\n└── references/\n    └── ERC-8004.md    # ERC-8004 specification reference"
      },
      {
        "title": "Dependencies",
        "body": "ethers.js ^6.x - Ethereum blockchain interaction\nnode-fetch or built-in fetch - HTTP requests for off-chain metadata"
      },
      {
        "title": "Exit Codes",
        "body": "0 - Audit completed successfully\n1 - Invalid agent address\n2 - Blockchain connection error\n3 - Critical error during audit"
      },
      {
        "title": "Notes",
        "body": "Requires internet connection for RPC calls and metadata fetching\nSome checks require off-chain metadata fetching which may be slow\nReputation and validation registries are optional deployments"
      }
    ],
    "body": "Agent Security Auditor\n\nScans ERC-8004 agents for security vulnerabilities and generates comprehensive security reports.\n\nOverview\n\nThis skill audits ERC-8004 Trustless Agents by querying the Identity Registry and analyzing agent metadata for common security issues. It helps identify potentially malicious or misconfigured agents before interacting with them.\n\nFeatures\nIdentity Registry Query: Fetches agent metadata from the ERC-8004 Identity Registry\nMetadata Validation: Checks for missing, empty, or suspicious metadata\nEndpoint Security: Analyzes service endpoints for red flags\nx402 Payment Analysis: Validates payment configuration\nReputation Check: Queries the Reputation Registry for feedback signals\nVerification Status: Checks if endpoints are verified via domain control\nUsage\n# Run the audit script directly with Node.js\nnode scripts/audit.js <agent-address> [options]\n\n# Options:\n#   --rpc <url>        RPC endpoint URL (default: https://eth.llamarpc.com)\n#   --chain <id>       Chain ID (default: 1)\n#   --output <file>    Output file for JSON report\n#   --verbose          Enable verbose logging\n\nExample\n# Audit an agent on Ethereum mainnet\nnode scripts/audit.js 0x742d35Cc6634C0532925a3b844Bc9e7595f8bE21\n\n# Audit with custom RPC\nnode scripts/audit.js 0x742d35Cc6634C0532925a3b844Bc9e7595f8bE21 --rpc https://mainnet.infura.io/v3/YOUR_KEY\n\n# Save report to file\nnode scripts/audit.js 0x742d35Cc6634C0532925a3b844Bc9e7595f8bE21 --output report.json\n\nWhat Gets Scanned\nCritical Issues\nMissing or empty metadata (no name, description)\nNo registered services/endpoints\nInvalid or unreachable agent URI\nNo agent wallet configured\nHigh Severity Issues\nUnverified endpoints (no domain control proof)\nSuspicious endpoint patterns (localhost, IP addresses, unusual ports)\nNo x402 payment support warning\nNo reputation signals\nMedium Severity Issues\nNo validation registrations\nMissing supportedTrust indicators\nInactive agent status\nInfo\nReputation score summary\nValidation count\nService endpoint count\nArchitecture\nagent-security-auditor/\n├── SKILL.md           # This file\n├── scripts/\n│   └── audit.js       # Main audit logic\n└── references/\n    └── ERC-8004.md    # ERC-8004 specification reference\n\nDependencies\nethers.js ^6.x - Ethereum blockchain interaction\nnode-fetch or built-in fetch - HTTP requests for off-chain metadata\nExit Codes\n0 - Audit completed successfully\n1 - Invalid agent address\n2 - Blockchain connection error\n3 - Critical error during audit\nNotes\nRequires internet connection for RPC calls and metadata fetching\nSome checks require off-chain metadata fetching which may be slow\nReputation and validation registries are optional deployments"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/aviclaw/agent-security-auditor",
    "publisherUrl": "https://clawhub.ai/aviclaw/agent-security-auditor",
    "owner": "aviclaw",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/agent-security-auditor",
    "downloadUrl": "https://openagent3.xyz/downloads/agent-security-auditor",
    "agentUrl": "https://openagent3.xyz/skills/agent-security-auditor/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-security-auditor/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-security-auditor/agent.md"
  }
}