Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

secure-dependency-health-check安全依赖健康检查

Agent Skill

secure-dependency-health-check 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

541

周安装

23

GitHub Stars

29

下载量

190
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:secure-dependency-health-check(安全依赖健康检查)
来源仓库:https://github.com/snyk/studio-recipes
仓库路径:skills/secure-dependency-health-check
安装命令:
npx skills add https://github.com/snyk/studio-recipes --skill secure-dependency-health-check
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/snyk/studio-recipes --skill secure-dependency-health-check

简介

用于评估项目依赖库的安全状态与更新可用性。

  • 适合在供应链风险管理或定期漏洞扫描中使用,预防第三方组件风险。
  • 通过 GitHub 仓库安装,使用 npx 命令扫描 package.json 或 requirements.txt。
  • 健康评分仅为参考,关键依赖升级前应充分测试兼容性。
  • secure-dependency-health-check 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Secure Dependency Health Check

Help developers and AI agents make informed decisions when selecting open-source packages by evaluating security health, vulnerability history, popularity, community, and maintenance status.

Core Principle: Choose dependencies wisely to minimize supply chain risk.


Quick Start

When asked to recommend a package:

  1. Identify the functional requirement
  2. Research candidate packages
  3. Run snyk_package_health_check on each candidate
  4. Compare and recommend the healthiest, most secure option

Phase 1: Understand Requirements

Goal: Clarify what the user needs before recommending packages.

Step 1.1: Identify Candidates

If user provided candidates:

  • Note each package name and version (if specified)
  • Identify the package ecosystem

If user needs suggestions:

  • Search for packages that meet the functional requirement
  • Select 2-4 top candidates based on popularity/relevance

Phase 2: Security & Health Analysis

Goal: Evaluate each candidate package's security posture and overall health.

Step 2.1: Run Package Health Check for Each Candidate

For each candidate package, run snyk_package_health_check with the package name, version, and ecosystem (npm, pypi, maven, nuget, or golang). Key fields returned:

  • overall_rating: "Healthy" or "Review recommended" — use as the primary evaluation metric
  • security: vulnerability counts by severity (critical/high/medium/low) and a security rating
  • maintenance: lifecycle status, latest release date, is_archived flag, and a maintenance rating ("Healthy", "Sustainable", or "Inactive")
  • popularity: download counts, dependent packages/repos, and a popularity rating
  • community: stargazers count, community file presence, and a rating ("Active" or "Sustainable")
  • latest_version: the most recent published version
  • recommendation: a human-readable summary of the overall assessment

Step 2.2: Review Tool Results

Surface the following from the tool response for comparison:

  • Overall rating ("Healthy" vs "Review recommended")
  • Security rating and vulnerability breakdown by severity
  • Maintenance rating and lifecycle status (check is_archived, latest_release_published_at)
  • Popularity and community ratings

Step 2.3: Disqualifiers

Immediately disqualify packages regardless of overall rating if:

  • Security issues found with critical or high severity vulnerabilities
  • Maintenance rating is "Inactive" or package is archived (is_archived: true)
  • No releases in 3+ years (check latest_release_published_at)
  • Known malicious package (supply chain attack)
  • Typosquatting indicators (similar name to popular package)

Phase 3: Generate Recommendation

Goal: Present a clear, actionable comparison.

Step 3.1: Comparison Table

## Package Comparison: [Use Case]

| Criteria | Package A | Package B | Package C |
|----------|-----------|-----------|-----------|
| **Overall Rating** | Healthy | Review recommended | Healthy |
| **Security Rating** | Security issues found | Security issues found | No known security issues |
| **Critical CVEs** | 0 | 1 | 0 |
| **High CVEs** | 1 | 2 | 0 |
| **Maintenance** | Healthy | Inactive | Healthy |
| **Last Release** | 2 weeks ago | 8 months ago | 1 month ago |
| **Downloads** | 500K | 2M | 300K |
| **Popularity** | Influential project | Influential project | Influential project |

### Recommendation: **Package C**

**Reasons**:
1. "Healthy" overall rating with no known security issues
2. Healthy maintenance rating - actively maintained with recent release
3. Fewest vulnerabilities across all severity levels

**Trade-offs**:
- Fewer downloads than Package B (less battle-tested)
- Consider if specific features of Package A/B are required

**Recommended version**: Use the `latest_version` from the tool response to pin an exact version.

Step 3.2: Alternative Scenarios

If no package meets the security threshold:

## Warning: No Secure Option Available

All evaluated packages have significant security concerns:
- Package A: 2 Critical CVEs (actively exploited)
- Package B: Abandoned - no updates in 3 years
- Package C: Multiple high-severity vulnerabilities with no fix available

### Alternatives:
1. **Implement in-house**: For simple functionality
2. **Fork and fix**: If one package is close but has fixable issues
3. **Wait**: If updates are expected soon
4. **Accept risk**: With documented justification and monitoring

Phase 4: Integration Guidance

Goal: Help the user safely add the recommended package.

Step 4.1: Post-Installation Scan

Recommend running snyk_sca_scan after installation to verify the full dependency tree doesn't introduce unexpected vulnerabilities.

Step 4.2: Monitoring Recommendation

Advise committing lock files, enabling vulnerability notifications, and checking for security updates regularly.


Error Handling

Package Not Found

  • Verify package name and ecosystem
  • Check for typos
  • Search for alternative names

Scan Fails or Insufficient Data

  • The tool may return "Snyk doesn't have sufficient information about this package" for some packages
  • Retry once; if still no data, fall back to manual research
  • Report partial results with disclaimer that the tool could not assess this package

No Candidates Meet Threshold

  • Report why each failed
  • Suggest alternatives (in-house, fork, wait)
  • Document risk if user proceeds anyway

Constraints

  1. Never recommend packages with known exploits
  2. Always specify exact version in recommendations
  3. Disclose limitations if full analysis isn't possible
  4. Update recommendations if user provides new constraints

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33%
按下载量换算63

Claude

32.34%
按下载量换算61

Cursor

19.74%
按下载量换算38

Gemini CLI

8.27%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills