dependency-auditor
Scans project dependencies for vulnerabilities, license compliance issues, and upgrade opportunities across Python, Node.js, Go, and Rust. Use when auditing dependencies, checking licenses, planning upgrades, or assessing supply chain security.
What this skill does
# Dependency Auditor > **Skill Type:** POWERFUL > **Category:** Engineering > **Domain:** Dependency Management & Security ## Overview The **Dependency Auditor** is a comprehensive toolkit for analyzing, auditing, and managing dependencies across multi-language software projects. This skill provides deep visibility into your project's dependency ecosystem, enabling teams to identify vulnerabilities, ensure license compliance, optimize dependency trees, and plan safe upgrades. In modern software development, dependencies form complex webs that can introduce significant security, legal, and maintenance risks. A single project might have hundreds of direct and transitive dependencies, each potentially introducing vulnerabilities, license conflicts, or maintenance burden. This skill addresses these challenges through automated analysis and actionable recommendations. ## Core Capabilities ### 1. Vulnerability Scanning & CVE Matching **Comprehensive Security Analysis** - Scans dependencies against built-in vulnerability databases - Matches Common Vulnerabilities and Exposures (CVE) patterns - Identifies known security issues across multiple ecosystems - Analyzes transitive dependency vulnerabilities - Provides CVSS scores and exploit assessments - Tracks vulnerability disclosure timelines - Maps vulnerabilities to dependency paths **Multi-Language Support** - **JavaScript/Node.js**: package.json, package-lock.json, yarn.lock - **Python**: requirements.txt, pyproject.toml, Pipfile.lock, poetry.lock - **Go**: go.mod, go.sum - **Rust**: Cargo.toml, Cargo.lock - **Ruby**: Gemfile, Gemfile.lock - **Java/Maven**: pom.xml, gradle.lockfile - **PHP**: composer.json, composer.lock - **C#/.NET**: packages.config, project.assets.json ### 2. License Compliance & Legal Risk Assessment **License Classification System** - **Permissive Licenses**: MIT, Apache 2.0, BSD (2-clause, 3-clause), ISC - **Copyleft (Strong)**: GPL (v2, v3), AGPL (v3) - **Copyleft (Weak)**: LGPL (v2.1, v3), MPL (v2.0) - **Proprietary**: Commercial, custom, or restrictive licenses - **Dual Licensed**: Multi-license scenarios and compatibility - **Unknown/Ambiguous**: Missing or unclear licensing **Conflict Detection** - Identifies incompatible license combinations - Warns about GPL contamination in permissive projects - Analyzes license inheritance through dependency chains - Provides compliance recommendations for distribution - Generates legal risk matrices for decision-making ### 3. Outdated Dependency Detection **Version Analysis** - Identifies dependencies with available updates - Categorizes updates by severity (patch, minor, major) - Detects pinned versions that may be outdated - Analyzes semantic versioning patterns - Identifies floating version specifiers - Tracks release frequencies and maintenance status **Maintenance Status Assessment** - Identifies abandoned or unmaintained packages - Analyzes commit frequency and contributor activity - Tracks last release dates and security patch availability - Identifies packages with known end-of-life dates - Assesses upstream maintenance quality ### 4. Dependency Bloat Analysis **Unused Dependency Detection** - Identifies dependencies that aren't actually imported/used - Analyzes import statements and usage patterns - Detects redundant dependencies with overlapping functionality - Identifies oversized packages for simple use cases - Maps actual vs. declared dependency usage **Redundancy Analysis** - Identifies multiple packages providing similar functionality - Detects version conflicts in transitive dependencies - Analyzes bundle size impact of dependencies - Identifies opportunities for dependency consolidation - Maps dependency overlap and duplication ### 5. Upgrade Path Planning & Breaking Change Risk **Semantic Versioning Analysis** - Analyzes semver patterns to predict breaking changes - Identifies safe upgrade paths (patch/minor versions) - Flags major version updates requiring attention - Tracks breaking changes across dependency updates - Provides rollback strategies for failed upgrades **Risk Assessment Matrix** - Low Risk: Patch updates, security fixes - Medium Risk: Minor updates with new features - High Risk: Major version updates, API changes - Critical Risk: Dependencies with known breaking changes **Upgrade Prioritization** - Security patches: Highest priority - Bug fixes: High priority - Feature updates: Medium priority - Major rewrites: Planned priority - Deprecated features: Immediate attention ### 6. Supply Chain Security **Dependency Provenance** - Verifies package signatures and checksums - Analyzes package download sources and mirrors - Identifies suspicious or compromised packages - Tracks package ownership changes and maintainer shifts - Detects typosquatting and malicious packages **Transitive Risk Analysis** - Maps complete dependency trees - Identifies high-risk transitive dependencies - Analyzes dependency depth and complexity - Tracks influence of indirect dependencies - Provides supply chain risk scoring ### 7. Lockfile Analysis & Deterministic Builds **Lockfile Validation** - Ensures lockfiles are up-to-date with manifests - Validates integrity hashes and version consistency - Identifies drift between environments - Analyzes lockfile conflicts and resolution strategies - Ensures deterministic, reproducible builds **Environment Consistency** - Compares dependencies across environments (dev/staging/prod) - Identifies version mismatches between team members - Validates CI/CD environment consistency - Tracks dependency resolution differences ## Technical Architecture ### Scanner Engine (`dep_scanner.py`) - Multi-format parser supporting 8+ package ecosystems - Built-in vulnerability database with 500+ CVE patterns - Transitive dependency resolution from lockfiles - JSON and human-readable output formats - Configurable scanning depth and exclusion patterns ### License Analyzer (`license_checker.py`) - License detection from package metadata and files - Compatibility matrix with 20+ license types - Conflict detection engine with remediation suggestions - Risk scoring based on distribution and usage context - Export capabilities for legal review ### Upgrade Planner (`upgrade_planner.py`) - Semantic version analysis with breaking change prediction - Dependency ordering based on risk and interdependence - Migration checklists with testing recommendations - Rollback procedures for failed upgrades - Timeline estimation for upgrade cycles ## Use Cases & Applications ### Security Teams - **Vulnerability Management**: Continuous scanning for security issues - **Incident Response**: Rapid assessment of vulnerable dependencies - **Supply Chain Monitoring**: Tracking third-party security posture - **Compliance Reporting**: Automated security compliance documentation ### Legal & Compliance Teams - **License Auditing**: Comprehensive license compliance verification - **Risk Assessment**: Legal risk analysis for software distribution - **Due Diligence**: Dependency licensing for M&A activities - **Policy Enforcement**: Automated license policy compliance ### Development Teams - **Dependency Hygiene**: Regular cleanup of unused dependencies - **Upgrade Planning**: Strategic dependency update scheduling - **Performance Optimization**: Bundle size optimization through dep analysis - **Technical Debt**: Identifying and prioritizing dependency technical debt ### DevOps & Platform Teams - **Build Optimization**: Faster builds through dependency optimization - **Security Automation**: Automated vulnerability scanning in CI/CD - **Environment Consistency**: Ensuring consistent dependencies across environments - **Release Management**: Dependency-aware release planning ## Integration Patterns ### CI/CD Pipeline Integration ```bash # Security gate in CI python dep_scanner.py /project --format json --fail-on-high python license_checker.py /project --policy strict --format json ``` ### Scheduled Audits ```bash
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.