dependency-evaluator
Evaluates whether a programming language dependency should be used by analyzing maintenance activity, security posture, community health, documentation quality, dependency footprint, production adoption, license compatibility, API stability, and funding sustainability. Use when users ask "should I use X or Y?", "are there better options for [feature]?", "what's a good library for [task]?", "how do we feel about [dependency]?", or when considering adding a new dependency, evaluating an existing dependency, or comparing/evaluating package alternatives.
What this skill does
# Dependency Evaluator Skill This skill helps evaluate whether a programming language dependency should be added to a project by analyzing multiple quality signals and risk factors. ## Purpose Making informed decisions about dependencies is critical for project health. A poorly chosen dependency can introduce security vulnerabilities, maintenance burden, and technical debt. This skill provides a systematic framework for evaluating dependencies before adoption. ## When to Use Activate this skill when users: - Ask about whether to use a specific package/library - Want to evaluate a dependency before adding it - Need to compare alternative packages - Ask "should I use X library?" - Want to assess the health of a dependency - Mention adding a new npm/pip/cargo/gem/etc. package - Ask about package recommendations for a use case ## Reference Files This skill uses progressive disclosure - core framework below, detailed guidance in reference files: | File | When to Consult | |------|-----------------| | **[WORKFLOW.md](./WORKFLOW.md)** | Detailed step-by-step evaluation process, performance tips, pitfalls | | **[SCRIPT_USAGE.md](./SCRIPT_USAGE.md)** | Automated data gathering script (optional efficiency tool) | | **[COMMANDS.md](./COMMANDS.md)** | Ecosystem-specific commands (npm, PyPI, Cargo, Go, etc.) | | **[SIGNAL_DETAILS.md](./SIGNAL_DETAILS.md)** | Deep guidance for scoring each of the 10 signals | | **[ECOSYSTEM_GUIDES.md](./ECOSYSTEM_GUIDES.md)** | Ecosystem-specific norms and considerations | | **[EXAMPLES.md](./EXAMPLES.md)** | Worked evaluation examples (ADOPT, AVOID, EVALUATE FURTHER) | | **[ERROR_HANDLING.md](./ERROR_HANDLING.md)** | Fallback strategies when data unavailable or commands fail | **Quick navigation by ecosystem:** - **npm** → COMMANDS.md § Node.js + ECOSYSTEM_GUIDES.md § npm - **PyPI** → COMMANDS.md § Python + ECOSYSTEM_GUIDES.md § PyPI - **Cargo** → COMMANDS.md § Rust + ECOSYSTEM_GUIDES.md § Cargo - **Go** → COMMANDS.md § Go + ECOSYSTEM_GUIDES.md § Go - **Other** → COMMANDS.md for ecosystem-specific commands ## Evaluation Framework Evaluate dependencies using these ten key signals: 1. **Activity and Maintenance Patterns** - Commit history, release cadence, issue responsiveness 2. **Security Posture** - CVE history, security policies, vulnerability response time 3. **Community Health** - Contributor diversity, PR merge rates, bus factor 4. **Documentation Quality** - API docs, migration guides, examples 5. **Dependency Footprint** - Transitive dependencies, bundle size 6. **Production Adoption** - Download stats, notable users, trends 7. **License Compatibility** - License type, transitive license obligations 8. **API Stability** - Breaking change frequency, semver adherence 9. **Bus Factor and Funding** - Organizational backing, sustainability 10. **Ecosystem Momentum** - Framework alignment, technology trends **For detailed investigation guidance**, see [SIGNAL_DETAILS.md](./SIGNAL_DETAILS.md). **For ecosystem-specific commands**, see [COMMANDS.md](./COMMANDS.md). **For ecosystem considerations**, see [ECOSYSTEM_GUIDES.md](./ECOSYSTEM_GUIDES.md). ## Evaluation Approach **Goal:** Provide evidence-based recommendations (ADOPT / EVALUATE FURTHER / AVOID) by systematically assessing 10 quality signals. **Process:** Quick assessment → Data gathering → Scoring → Report generation See **[WORKFLOW.md](./WORKFLOW.md)** for detailed step-by-step guidance, performance tips, and workflow variants. ### Automated Data Gathering (Recommended) A Python script (`scripts/dependency_evaluator.py`) automates initial data gathering for supported ecosystems (npm, pypi, cargo, go). The script: - Runs ecosystem commands automatically - Fetches GitHub API data - Outputs structured JSON - Uses only Python standard library (no external dependencies) - Saves 10-15 minutes per evaluation **Default approach:** Try the script first - it provides more complete and consistent data gathering. Only fall back to manual workflow if the script is unavailable or fails. **Use the script when:** Evaluating npm, PyPI, Cargo, or Go packages (most common ecosystems) **Use manual workflow when:** Unsupported ecosystem, Python unavailable, or script errors occur See **[SCRIPT_USAGE.md](./SCRIPT_USAGE.md)** for complete documentation. The skill works perfectly fine without the script using manual workflow. ## Before You Evaluate: Is a Dependency Needed? **Write it yourself if:** Functionality is <50 lines of straightforward code, or you only need a tiny subset of features. **Use a dependency if:** Problem is complex (crypto, dates, parsing), correctness is critical, or ongoing maintenance would be significant. See **[WORKFLOW.md](./WORKFLOW.md)** § Pre-Evaluation for detailed decision framework. ## Output Format Structure your evaluation report as: ```markdown ## Dependency Evaluation: <package-name> ### Summary [2-3 sentence overall assessment with recommendation] **Recommendation**: [ADOPT / EVALUATE FURTHER / AVOID] **Risk Level**: [Low / Medium / High] **Blockers Found**: [Yes/No] ### Blockers (if any) [List any dealbreaker issues - these override all scores] - ⛔ [Blocker description with specific evidence] ### Evaluation Scores | Signal | Score | Weight | Notes | |--------|-------|--------|-------| | Maintenance | X/5 | [H/M/L] | [specific evidence with dates/versions] | | Security | X/5 | [H/M/L] | [specific evidence] | | Community | X/5 | [H/M/L] | [specific evidence] | | Documentation | X/5 | [H/M/L] | [specific evidence] | | Dependency Footprint | X/5 | [H/M/L] | [specific evidence] | | Production Adoption | X/5 | [H/M/L] | [specific evidence] | | License | X/5 | [H/M/L] | [specific evidence] | | API Stability | X/5 | [H/M/L] | [specific evidence] | | Funding/Sustainability | X/5 | [H/M/L] | [specific evidence] | | Ecosystem Momentum | X/5 | [H/M/L] | [specific evidence] | **Weighted Score**: X/50 (adjusted for dependency criticality) ### Key Findings #### Strengths - [Specific strength with evidence] - [Specific strength with evidence] #### Concerns - [Specific concern with evidence] - [Specific concern with evidence] ### Alternatives Considered [If applicable, mention alternatives worth evaluating] ### Recommendation Details [Detailed reasoning for the recommendation with specific evidence] ### If You Proceed (for ADOPT recommendations) [Specific advice tailored to risks found] - Version pinning strategy - Monitoring recommendations - Specific precautions based on identified concerns ``` ## Scoring Weights Adjust signal weights based on dependency type: | Signal | Critical Dep | Standard Dep | Dev Dep | |--------|-------------|--------------|---------| | Security | High | Medium | Low | | Maintenance | High | Medium | Medium | | Funding | High | Low | Low | | License | High | High | Medium | | API Stability | Medium | Medium | High | | Documentation | Medium | Medium | Medium | | Community | Medium | Medium | Low | | Dependency Footprint | Medium | Low | Low | | Production Adoption | Medium | Medium | Low | | Ecosystem Momentum | Low | Medium | Low | **Critical Dependencies**: Auth, security, data handling - require higher bar for all signals **Standard Dependencies**: Utilities, formatting - balance all signals **Development Dependencies**: Testing, linting - lower security concerns, focus on maintainability ### Score Interpretation Rules **Blocker Override**: Any blocker issue → AVOID recommendation regardless of scores **Critical Thresholds**: - Security or Maintenance score ≤ 2 → Strongly reconsider regardless of other scores - Any High-weight signal ≤ 2 → Flag as significant concern in report - Overall weighted score < 25 → Default to EVALUATE FURTHER or AVOID - Overall weighted score ≥ 35 → Generally safe to ADOPT (if no blockers) **Weighting Priority**: Security and Maintenance typically matter more than Documentation or Ecosystem Momentum. A well-documented but unmaintained package is riskier than a poorl
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.