{
  "schemaVersion": "1.0",
  "item": {
    "slug": "evomap-auditor",
    "name": "EvoMap Security Auditor",
    "source": "tencent",
    "type": "skill",
    "category": "安全合规",
    "sourceUrl": "https://clawhub.ai/marcusqin111-boop/evomap-auditor",
    "canonicalUrl": "https://clawhub.ai/marcusqin111-boop/evomap-auditor",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/evomap-auditor",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=evomap-auditor",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/gep_hash.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",
      "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/evomap-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/evomap-auditor",
    "agentPageUrl": "https://openagent3.xyz/skills/evomap-auditor/agent",
    "manifestUrl": "https://openagent3.xyz/skills/evomap-auditor/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/evomap-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": "EvoMap Auditor Skill",
        "body": "This skill provides specialized procedures for maintaining security and trust within the EvoMap (GEP-A2A) ecosystem."
      },
      {
        "title": "1. Skill Security Scan",
        "body": "Before inheriting or executing any third-party skill (Capsule), perform a static analysis of its substance:\n\nCheck for require('child_process'), require('fs'), or require('os').\nFlag any use of native Node.js modules that are not explicitly authorized.\nIdentify potential \"Inheritance Poisoning\" by checking if the Capsule modifies local environment variables."
      },
      {
        "title": "2. Canonical Integrity Validation",
        "body": "Validate that a skill's asset_id matches its content using the GEP Canonical JSON standard:\n\nRemove asset_id from the object.\nRecursively sort all keys alphabetically.\nCompute SHA256 hash.\nCompare with the provided asset_id."
      },
      {
        "title": "3. Sandbox Execution (ShieldCapsule)",
        "body": "When executing untrusted code, wrap it in a Shield-Verified sandbox:\n\nIntercept all filesystem calls.\nRedirect network egress to an allowlist-only proxy.\nLog all \"Blast Radius\" impacts for future auditing."
      },
      {
        "title": "Reference",
        "body": "GEP-A2A Protocol: https://evomap.ai/docs/gep\nSecurity Standards: https://evomap.ai/security"
      }
    ],
    "body": "EvoMap Auditor Skill\n\nThis skill provides specialized procedures for maintaining security and trust within the EvoMap (GEP-A2A) ecosystem.\n\nCore Workflows\n1. Skill Security Scan\n\nBefore inheriting or executing any third-party skill (Capsule), perform a static analysis of its substance:\n\nCheck for require('child_process'), require('fs'), or require('os').\nFlag any use of native Node.js modules that are not explicitly authorized.\nIdentify potential \"Inheritance Poisoning\" by checking if the Capsule modifies local environment variables.\n2. Canonical Integrity Validation\n\nValidate that a skill's asset_id matches its content using the GEP Canonical JSON standard:\n\nRemove asset_id from the object.\nRecursively sort all keys alphabetically.\nCompute SHA256 hash.\nCompare with the provided asset_id.\n3. Sandbox Execution (ShieldCapsule)\n\nWhen executing untrusted code, wrap it in a Shield-Verified sandbox:\n\nIntercept all filesystem calls.\nRedirect network egress to an allowlist-only proxy.\nLog all \"Blast Radius\" impacts for future auditing.\nReference\nGEP-A2A Protocol: https://evomap.ai/docs/gep\nSecurity Standards: https://evomap.ai/security"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/marcusqin111-boop/evomap-auditor",
    "publisherUrl": "https://clawhub.ai/marcusqin111-boop/evomap-auditor",
    "owner": "marcusqin111-boop",
    "version": "1.3.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/evomap-auditor",
    "downloadUrl": "https://openagent3.xyz/downloads/evomap-auditor",
    "agentUrl": "https://openagent3.xyz/skills/evomap-auditor/agent",
    "manifestUrl": "https://openagent3.xyz/skills/evomap-auditor/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/evomap-auditor/agent.md"
  }
}