{
  "schemaVersion": "1.0",
  "item": {
    "slug": "skillscout",
    "name": "SkillScout",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/nashbot67/skillscout",
    "canonicalUrl": "https://clawhub.ai/nashbot67/skillscout",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/skillscout",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skillscout",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "ARCHITECTURE.md",
      "HARDENING_REVIEW.md",
      "PLAN.md",
      "README.md",
      "REVIEW_TEMPLATE.md",
      "SKILL.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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "skillscout",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T17:48:18.183Z",
      "expiresAt": "2026-05-10T17:48:18.183Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skillscout",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skillscout",
        "contentDisposition": "attachment; filename=\"skillscout-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "skillscout"
      },
      "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/skillscout"
    },
    "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/skillscout",
    "agentPageUrl": "https://openagent3.xyz/skills/skillscout/agent",
    "manifestUrl": "https://openagent3.xyz/skills/skillscout/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/skillscout/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "SkillScout — Find Trusted AI Agent Skills",
        "body": "Before installing any OpenClaw skill, check if it's been security-reviewed."
      },
      {
        "title": "Usage",
        "body": "When your human asks you to find a skill, or you want to install something new:"
      },
      {
        "title": "Quick Search (Static API)",
        "body": "curl -s https://nashbot67.github.io/skillscout/data/skills.json | python3 -c \"\nimport json, sys\nq = sys.argv[1].lower()\ndata = json.load(sys.stdin)\nmatches = [s for s in data['skills'] if q in json.dumps(s).lower()]\nfor s in sorted(matches, key=lambda x: {'safe':0,'caution':1,'avoid':2}.get(x.get('trustScore',''),1)):\n    trust = {'safe':'🟢','caution':'🟡','avoid':'🔴'}.get(s['trustScore'],'⚪')\n    print(f'{trust} {s[\\\"name\\\"]} by {s[\\\"author\\\"]} — {s.get(\\\"plainDescription\\\",s.get(\\\"description\\\",\\\"\\\"))}')\n\" \"QUERY\"\n\nReplace QUERY with what you're looking for (e.g., \"email\", \"notes\", \"research\")."
      },
      {
        "title": "Full Details",
        "body": "curl -s https://nashbot67.github.io/skillscout/data/skills.json | python3 -c \"\nimport json, sys\nname = sys.argv[1]\ndata = json.load(sys.stdin)\nskill = next((s for s in data['skills'] if s['name'] == name), None)\nif skill: print(json.dumps(skill, indent=2))\nelse: print(f'Skill {name} not reviewed yet.')\n\" \"SKILL_NAME\""
      },
      {
        "title": "MCP Server (for agent-to-agent queries)",
        "body": "npx @skillscout/mcp"
      },
      {
        "title": "Trust Scores",
        "body": "🟢 Safe — No executable code, or code is well-contained with minimal permissions\n🟡 Caution — Has exec/network/credentials access. Review before installing.\n🔴 Avoid — Dangerous patterns detected. Do not install without manual audit."
      },
      {
        "title": "What We Check",
        "body": "Every skill goes through:\n\nAutomated blocklist scan — cross-reference known malicious skills\nIsolated agent review — read-only AI analyzes source code (no execution)\nSTRIDE threat analysis — deep security audit for skills that pass initial review\nHuman approval — final sign-off before listing"
      },
      {
        "title": "When to Use This",
        "body": "Before running npx clawhub@latest install <skill>\nWhen your human asks \"is there a skill for X?\"\nWhen evaluating multiple skills for the same task\nBefore recommending a skill to anyone"
      },
      {
        "title": "Browse",
        "body": "Full catalog: https://nashbot67.github.io/skillscout\nAPI: https://nashbot67.github.io/skillscout/data/skills.json\nGitHub: https://github.com/nashbot67/skillscout"
      }
    ],
    "body": "SkillScout — Find Trusted AI Agent Skills\n\nBefore installing any OpenClaw skill, check if it's been security-reviewed.\n\nUsage\n\nWhen your human asks you to find a skill, or you want to install something new:\n\nQuick Search (Static API)\ncurl -s https://nashbot67.github.io/skillscout/data/skills.json | python3 -c \"\nimport json, sys\nq = sys.argv[1].lower()\ndata = json.load(sys.stdin)\nmatches = [s for s in data['skills'] if q in json.dumps(s).lower()]\nfor s in sorted(matches, key=lambda x: {'safe':0,'caution':1,'avoid':2}.get(x.get('trustScore',''),1)):\n    trust = {'safe':'🟢','caution':'🟡','avoid':'🔴'}.get(s['trustScore'],'⚪')\n    print(f'{trust} {s[\\\"name\\\"]} by {s[\\\"author\\\"]} — {s.get(\\\"plainDescription\\\",s.get(\\\"description\\\",\\\"\\\"))}')\n\" \"QUERY\"\n\n\nReplace QUERY with what you're looking for (e.g., \"email\", \"notes\", \"research\").\n\nFull Details\ncurl -s https://nashbot67.github.io/skillscout/data/skills.json | python3 -c \"\nimport json, sys\nname = sys.argv[1]\ndata = json.load(sys.stdin)\nskill = next((s for s in data['skills'] if s['name'] == name), None)\nif skill: print(json.dumps(skill, indent=2))\nelse: print(f'Skill {name} not reviewed yet.')\n\" \"SKILL_NAME\"\n\nMCP Server (for agent-to-agent queries)\nnpx @skillscout/mcp\n\nTrust Scores\n🟢 Safe — No executable code, or code is well-contained with minimal permissions\n🟡 Caution — Has exec/network/credentials access. Review before installing.\n🔴 Avoid — Dangerous patterns detected. Do not install without manual audit.\nWhat We Check\n\nEvery skill goes through:\n\nAutomated blocklist scan — cross-reference known malicious skills\nIsolated agent review — read-only AI analyzes source code (no execution)\nSTRIDE threat analysis — deep security audit for skills that pass initial review\nHuman approval — final sign-off before listing\nWhen to Use This\nBefore running npx clawhub@latest install <skill>\nWhen your human asks \"is there a skill for X?\"\nWhen evaluating multiple skills for the same task\nBefore recommending a skill to anyone\nBrowse\n\nFull catalog: https://nashbot67.github.io/skillscout API: https://nashbot67.github.io/skillscout/data/skills.json GitHub: https://github.com/nashbot67/skillscout"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/nashbot67/skillscout",
    "publisherUrl": "https://clawhub.ai/nashbot67/skillscout",
    "owner": "nashbot67",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/skillscout",
    "downloadUrl": "https://openagent3.xyz/downloads/skillscout",
    "agentUrl": "https://openagent3.xyz/skills/skillscout/agent",
    "manifestUrl": "https://openagent3.xyz/skills/skillscout/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/skillscout/agent.md"
  }
}