Getting Started¶
Install (Claude Code, via the 88plug marketplace)¶
# 1. Add the marketplace (once per machine)
/plugin marketplace add 88plug/claude-code-plugins
# 2. Install this plugin
/plugin install use-latest-version@88plug
That is all. No environment variables, no API keys. On first launch the plugin compiles itself and starts the MCP server automatically.
First calls¶
Ask your assistant things like:
- "What's the latest version of
expresson npm?" ->get_latest_version - "Is
requests==2.28.0current?" ->compare_versions - "Scan this project and tell me what's outdated." ->
check_outdated - "Plan an upgrade for this repo, then show me the diff before applying." ->
optimize_versions->validate_upgrade_plan->apply_upgrades(dry run)
The upgrade pipeline¶
The four project tools are designed to chain:
optimize_versions— scans the project and returns a plan (per dependency: keep / upgrade / downgrade / remove, with risk).validate_upgrade_plan— checks that plan for breaking (major) bumps, circular dependencies, and constraint violations.apply_upgrades— writes the plan to the manifests. Defaults to a dry run; passdry_run: falseto actually write. Backs up every file first.
See the Tool Reference for every tool and its arguments.