Claude Skills
CollectionsCompareWorkflowsNominate
Sign inSign up
© 2026 Curated Agent Skills·Learn more about Agent Skills
Back to repository

deps-dev

verified

Look up the latest version of any package using deps.dev API. Use this skill when checking package versions, updating dependencies, adding new packages to a project, or verifying current library versions.

View on GitHub

Marketplace

ccc

trancong12102/ccc

Plugin

ccc-core

Repository

trancong12102/ccc
3stars

core/skills/deps-dev/SKILL.md

Last Verified

February 3, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/trancong12102/ccc/blob/main/core/skills/deps-dev/SKILL.md -a claude-code --skill deps-dev

Installation paths:

Claude
.claude/skills/deps-dev/
Powered by add-skill CLI

Instructions

# Package Version Lookup

Query deps.dev to get the latest stable version of open source packages.

## Usage

Use the Python script at `scripts/deps-dev.py`.

### Get Latest Version

```bash
# npm package
python scripts/deps-dev.py package --system npm --package express

# Scoped npm package
python scripts/deps-dev.py package --system npm --package "@types/node"

# PyPI package
python scripts/deps-dev.py package --system pypi --package requests

# Go module
python scripts/deps-dev.py package --system go --package "github.com/gin-gonic/gin"

# Cargo crate
python scripts/deps-dev.py package --system cargo --package serde

# Show recent versions
python scripts/deps-dev.py package --system npm --package express --all-versions
```

### Get Specific Version Details

```bash
python scripts/deps-dev.py version --system npm --package express --version 5.0.0
```

## Supported Ecosystems

| Ecosystem | System ID |
| --------- | --------- |
| npm | `npm` |
| PyPI | `pypi` |
| Go | `go` |
| Cargo | `cargo` |
| Maven | `maven` |
| NuGet | `nuget` |
| RubyGems | `rubygems` |

## Ecosystem Detection

Identify the ecosystem from project files:

- `package.json` → npm
- `requirements.txt`, `pyproject.toml` → pypi
- `go.mod` → go
- `Cargo.toml` → cargo
- `pom.xml`, `build.gradle` → maven
- `*.csproj` → nuget
- `Gemfile` → rubygems

## Rules

- Use `--format json` for structured output when needed
- The script handles URL encoding automatically
- Use `--all-versions` to see recent version history

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
1482 chars