AgentSkillsCN

dependency-helper

管理并审计项目依赖项。在检查过时的软件包、安全漏洞,或尝试理解项目的依赖关系图(npm、pip、cargo)时使用此功能。

SKILL.md
--- frontmatter
name: dependency-helper
description: Manage and audit project dependencies. Use when checking for outdated packages, security vulnerabilities, or trying to understand the dependency graph of a project (npm, pip, cargo).

Dependency Helper

Overview

This skill provides utilities to manage project dependencies across different ecosystems. It helps keep packages up-to-date and secure.

Tasks

1. Update Checks

  • Check Updates: Run scripts/check_updates.sh to see which dependencies have newer versions available.

2. Security Auditing

  • Audit Security: Run scripts/audit_security.sh to check for known vulnerabilities in your project's dependencies.

References

Common Commands

  • NPM: npm install, npm uninstall, npm update
  • Pip: pip install -r requirements.txt, pip freeze > requirements.txt
  • Cargo: cargo update, cargo add