From codescope
Checks Codescope version against GitHub latest release, prompts user confirmation, installs updates via bash/PowerShell scripts for Linux/macOS/Windows. Keeps CLI tool current.
npx claudepluginhub onur-gokyildiz-bhi/codescope --plugin codescopeThis skill uses the workspace's default tool permissions.
Check for the latest version and update if available.
Checks for new versions of Claude Code npm package and ClawCode repo using bash/git/npm, prints safe update commands. Activates on /update or 'check for updates' queries.
Checks and updates CWF plugin across scopes to align with latest marketplace versions and fixes. Triggers: 'cwf:update', 'update cwf', 'check for updates'.
Checks bopen-tools plugin version against GitHub in ~70ms, returning JSON status (current/outdated/ahead). Use at session start, for update queries, or suspicious skill behavior.
Share bugs, ideas, or general feedback.
Check for the latest version and update if available.
Steps:
Get the current installed version:
codescope --version 2>/dev/null || codescope-mcp --version 2>/dev/null || echo "unknown"
Check the latest release from GitHub:
curl -fsSL https://api.github.com/repos/onur-gokyildiz-bhi/codescope/releases/latest 2>/dev/null | grep -o '"tag_name": *"[^"]*"' | head -1 | sed 's/.*"v\?\([^"]*\)"/\1/'
Compare versions. If they match, report "Already up to date" and stop.
If an update is available, ask the user for confirmation, then run the appropriate installer:
Windows (PowerShell):
powershell -Command "irm https://raw.githubusercontent.com/onur-gokyildiz-bhi/codescope/main/install.ps1 | iex"
Linux / macOS:
curl -fsSL https://raw.githubusercontent.com/onur-gokyildiz-bhi/codescope/main/install.sh | bash
Verify the update:
codescope --version
Report the result:
Codescope updated: v0.4.0 -> v0.5.0