{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawshield",
    "name": "ClawShield",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Poolguy24/clawshield",
    "canonicalUrl": "https://clawhub.ai/Poolguy24/clawshield",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/clawshield",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawshield",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "references/threats.md",
      "scripts/audit.sh",
      "SKILL.md",
      "assets/panel.html"
    ],
    "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-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/clawshield"
    },
    "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/clawshield",
    "agentPageUrl": "https://openagent3.xyz/skills/clawshield/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawshield/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawshield/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": "Purpose",
        "body": "Audit a local OpenClaw install for security posture and common prompt-injection indicators. Produces a JSON report for review and alerting."
      },
      {
        "title": "Workflow",
        "body": "Canvas present: Launch the panel server and present the UI.\nUser config: Update config.yaml (scan frequency, alerts, sensitivity).\nCron setup: Schedule scripts/audit.sh at the chosen cadence.\nReport/Alert: Review JSON output and alert if prompt-injection hits or unexpected open ports are found."
      },
      {
        "title": "Panel (recommended)",
        "body": "node scripts/panel-server.js\n\nThen present the UI:\n\ncanvas.present → http://localhost:8133 (Scan / Settings / Logs)"
      },
      {
        "title": "Config (CLI)",
        "body": "node scripts/config.js get\nnode scripts/config.js set Scan_freq daily alerts telegram sensitivity high"
      },
      {
        "title": "Audit (CLI)",
        "body": "bash scripts/audit.sh > report.json"
      },
      {
        "title": "Notes",
        "body": "Local-only scans; no network calls outside localhost.\nPanel server is local and stores the last report at logs/last-report.json.\nconfig.yaml defaults: Scan_freq=daily, alerts=telegram, sensitivity=high.\nSafe for routine security checks and “frenzy-proofing”.\n\nContact: Jeffrey Coleman | smallbizailab79@gmail.com | Custom audits/enterprise."
      }
    ],
    "body": "ClawShield\nPurpose\n\nAudit a local OpenClaw install for security posture and common prompt-injection indicators. Produces a JSON report for review and alerting.\n\nWorkflow\nCanvas present: Launch the panel server and present the UI.\nUser config: Update config.yaml (scan frequency, alerts, sensitivity).\nCron setup: Schedule scripts/audit.sh at the chosen cadence.\nReport/Alert: Review JSON output and alert if prompt-injection hits or unexpected open ports are found.\nUsage\nPanel (recommended)\nnode scripts/panel-server.js\n\n\nThen present the UI:\n\ncanvas.present → http://localhost:8133 (Scan / Settings / Logs)\nConfig (CLI)\nnode scripts/config.js get\nnode scripts/config.js set Scan_freq daily alerts telegram sensitivity high\n\nAudit (CLI)\nbash scripts/audit.sh > report.json\n\nNotes\nLocal-only scans; no network calls outside localhost.\nPanel server is local and stores the last report at logs/last-report.json.\nconfig.yaml defaults: Scan_freq=daily, alerts=telegram, sensitivity=high.\nSafe for routine security checks and “frenzy-proofing”.\n\nContact: Jeffrey Coleman | smallbizailab79@gmail.com | Custom audits/enterprise."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Poolguy24/clawshield",
    "publisherUrl": "https://clawhub.ai/Poolguy24/clawshield",
    "owner": "Poolguy24",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/clawshield",
    "downloadUrl": "https://openagent3.xyz/downloads/clawshield",
    "agentUrl": "https://openagent3.xyz/skills/clawshield/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawshield/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawshield/agent.md"
  }
}