{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawned",
    "name": "Clawned - Protect your OpenClaw Instance and Scan Skills",
    "source": "tencent",
    "type": "skill",
    "category": "安全合规",
    "sourceUrl": "https://clawhub.ai/jenish-sojitra/clawned",
    "canonicalUrl": "https://clawhub.ai/jenish-sojitra/clawned",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/clawned",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawned",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/agent.py",
      "references/detection-patterns.md",
      "references/threat-model.md"
    ],
    "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/clawned"
    },
    "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/clawned",
    "agentPageUrl": "https://openagent3.xyz/skills/clawned/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawned/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawned/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": "Clawned — Security Agent for OpenClaw",
        "body": "Automatically discovers all installed skills, analyzes them for security threats, and syncs results to your Clawned dashboard."
      },
      {
        "title": "Setup",
        "body": "Configure your API key in openclaw.json:\n\n{\n  \"skills\": {\n    \"entries\": {\n      \"clawned\": {\n        \"enabled\": true,\n        \"env\": {\n          \"CLAWNED_API_KEY\": \"cg_your_api_key_here\",\n          \"CLAWNED_SERVER\": \"https://api.clawned.io\"\n        }\n      }\n    }\n  }\n}"
      },
      {
        "title": "Sync all installed skills to dashboard",
        "body": "python3 {baseDir}/scripts/agent.py sync"
      },
      {
        "title": "Scan a single skill locally",
        "body": "python3 {baseDir}/scripts/agent.py scan --path <skill-directory>"
      },
      {
        "title": "List all discovered skills",
        "body": "python3 {baseDir}/scripts/agent.py inventory"
      },
      {
        "title": "Check agent status",
        "body": "python3 {baseDir}/scripts/agent.py status"
      },
      {
        "title": "Data & Privacy",
        "body": "During sync (default operation):\n\nSends only skill metadata: name, owner, slug, version\nNo file contents are uploaded\nNo .env files or secrets are ever read\n\nDuring scan --path (explicit user action only):\n\nReads source files (.md, .py, .js, etc.) from the specified skill directory for analysis\n.env files are excluded from scanning\nFile contents are sent to the Clawned server for security analysis\n\nLocal config access:\n\nReads ~/.openclaw/openclaw.json only to locate skill directories (extraDirs paths)\nNo credentials or secrets are read from config files"
      },
      {
        "title": "Automatic Sync",
        "body": "Schedule every 6 hours via OpenClaw cron:\n\n{\n  \"jobs\": [\n    {\n      \"schedule\": \"0 */6 * * *\",\n      \"command\": \"Run clawned sync to check all installed skills\",\n      \"description\": \"Security scan every 6 hours\"\n    }\n  ]\n}"
      }
    ],
    "body": "Clawned — Security Agent for OpenClaw\n\nAutomatically discovers all installed skills, analyzes them for security threats, and syncs results to your Clawned dashboard.\n\nSetup\n\nConfigure your API key in openclaw.json:\n\n{\n  \"skills\": {\n    \"entries\": {\n      \"clawned\": {\n        \"enabled\": true,\n        \"env\": {\n          \"CLAWNED_API_KEY\": \"cg_your_api_key_here\",\n          \"CLAWNED_SERVER\": \"https://api.clawned.io\"\n        }\n      }\n    }\n  }\n}\n\nCommands\nSync all installed skills to dashboard\npython3 {baseDir}/scripts/agent.py sync\n\nScan a single skill locally\npython3 {baseDir}/scripts/agent.py scan --path <skill-directory>\n\nList all discovered skills\npython3 {baseDir}/scripts/agent.py inventory\n\nCheck agent status\npython3 {baseDir}/scripts/agent.py status\n\nData & Privacy\n\nDuring sync (default operation):\n\nSends only skill metadata: name, owner, slug, version\nNo file contents are uploaded\nNo .env files or secrets are ever read\n\nDuring scan --path (explicit user action only):\n\nReads source files (.md, .py, .js, etc.) from the specified skill directory for analysis\n.env files are excluded from scanning\nFile contents are sent to the Clawned server for security analysis\n\nLocal config access:\n\nReads ~/.openclaw/openclaw.json only to locate skill directories (extraDirs paths)\nNo credentials or secrets are read from config files\nAutomatic Sync\n\nSchedule every 6 hours via OpenClaw cron:\n\n{\n  \"jobs\": [\n    {\n      \"schedule\": \"0 */6 * * *\",\n      \"command\": \"Run clawned sync to check all installed skills\",\n      \"description\": \"Security scan every 6 hours\"\n    }\n  ]\n}"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/jenish-sojitra/clawned",
    "publisherUrl": "https://clawhub.ai/jenish-sojitra/clawned",
    "owner": "jenish-sojitra",
    "version": "1.3.5",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/clawned",
    "downloadUrl": "https://openagent3.xyz/downloads/clawned",
    "agentUrl": "https://openagent3.xyz/skills/clawned/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawned/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawned/agent.md"
  }
}