Agent skill
version
Search and fetch the latest version of a Go or Python package.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/testing/version
SKILL.md
Version Fetcher Skill
Fetch latest package versions for Go and Python packages.
Tools
get_go_version
Fetch the latest version of a Go package/module.
Example: get_go_version github.com/gin-gonic/gin
bash scripts/go-version.sh "$PACKAGE"
Parameters:
PACKAGE(required): Go module path (e.g., github.com/gin-gonic/gin)
Alternative
Get the latest version of all the go mod files using go list -m -u all
get_python_version
Fetch the latest version of a Python package from PyPI.
Example: get_python_version requests
bash scripts/python-version.sh "$PACKAGE"
Parameters:
PACKAGE(required): Python package name (e.g., requests, numpy)
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?