{
  "schemaVersion": "1.0",
  "item": {
    "slug": "osv-scanner",
    "name": "OSV Scanner",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/MoeNassi/osv-scanner",
    "canonicalUrl": "https://clawhub.ai/MoeNassi/osv-scanner",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/osv-scanner",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=osv-scanner",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "scanner.py",
      "SKILL.md",
      "template/ScanResult.txt",
      "packages/packages-lin.txt",
      "packages/packages.json"
    ],
    "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",
      "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/osv-scanner"
    },
    "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/osv-scanner",
    "agentPageUrl": "https://openagent3.xyz/skills/osv-scanner/agent",
    "manifestUrl": "https://openagent3.xyz/skills/osv-scanner/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/osv-scanner/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": "IMPORTANT !!!!",
        "body": "change ScanResult file extension from txt -> xlsx located in template"
      },
      {
        "title": "🔍 NPM & Node.js Vulnerability Scanner (OSV API)",
        "body": "A lightweight tool that scans your Node.js/NPM dependencies and Linux Packages for known vulnerabilities by using the Google OSV API. It reads your project packages and instantly returns any related CVEs."
      },
      {
        "title": "🧠 How It Works",
        "body": "Reads packages/package.json / packages/package.txt\nCollects all dependency names and versions\nSends them to the OSV API\nReceives and displays any vulnerabilities (CVEs) affecting those packages\n\nLinux\n\n- python3 -m venv .venv\r\n- pip install requests openpyxl\r\n- source .venv/bin/activate\r\n- copy packages.json to /packages folder and name it exactly like this 'packages.json' for nodejs otherwise for python use this command:\r\n    - pip freeze > packages.txt\r\n- python3 scanner.py npm\n\nWindows\n\n- python3 -m venv .venv\r\n- pip install requests openpyxl\r\n- ./.venv/Script/Activate.ps1\r\n- copy packages.json to /packages folder and name it exactly like this 'packages.json' for nodejs otherwise for python use this command:\r\n    - pip freeze > packages.txt\r\n- python3 scanner.py npm"
      }
    ],
    "body": "IMPORTANT !!!!\n\nchange ScanResult file extension from txt -> xlsx located in template\n\n🔍 NPM & Node.js Vulnerability Scanner (OSV API)\n\nA lightweight tool that scans your Node.js/NPM dependencies and Linux Packages for known vulnerabilities by using the Google OSV API. It reads your project packages and instantly returns any related CVEs.\n\n🧠 How It Works\nReads packages/package.json / packages/package.txt\nCollects all dependency names and versions\nSends them to the OSV API\nReceives and displays any vulnerabilities (CVEs) affecting those packages\n\nLinux\n\n- python3 -m venv .venv\r\n- pip install requests openpyxl\r\n- source .venv/bin/activate\r\n- copy packages.json to /packages folder and name it exactly like this 'packages.json' for nodejs otherwise for python use this command:\r\n    - pip freeze > packages.txt\r\n- python3 scanner.py npm\n\n\nWindows\n\n- python3 -m venv .venv\r\n- pip install requests openpyxl\r\n- ./.venv/Script/Activate.ps1\r\n- copy packages.json to /packages folder and name it exactly like this 'packages.json' for nodejs otherwise for python use this command:\r\n    - pip freeze > packages.txt\r\n- python3 scanner.py npm"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/MoeNassi/osv-scanner",
    "publisherUrl": "https://clawhub.ai/MoeNassi/osv-scanner",
    "owner": "MoeNassi",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/osv-scanner",
    "downloadUrl": "https://openagent3.xyz/downloads/osv-scanner",
    "agentUrl": "https://openagent3.xyz/skills/osv-scanner/agent",
    "manifestUrl": "https://openagent3.xyz/skills/osv-scanner/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/osv-scanner/agent.md"
  }
}