From arc-probe
Checks GitHub release status: lists versions, views details, verifies assets, compares with local builds, aligns plugin versions. Useful for release verification workflows.
npx claudepluginhub vzco/arc-probe --plugin arc-probeThis skill uses the workspace's default tool permissions.
Verify the state of published releases and compare with local builds.
Builds Tauri binaries for ARC Probe, packages CLI zip and NSIS installer, creates GitHub release assets including updater manifest and README, updates versions, and publishes to GitHub.
Sanitizes GitHub repos for public release (secrets scan, artifact removal, LICENSE/README validation) then creates tags and publishes via gh CLI.
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.
Verify the state of published releases and compare with local builds.
cd public-repo
gh release list
gh release view <tag>
Look for:
# Download and inspect
gh release download <tag> -D /tmp/arc-probe-check
cd /tmp/arc-probe-check
powershell -NoProfile -Command "Expand-Archive -Path '*.zip' -DestinationPath './extracted'"
ls -lh extracted/
Should contain: probe.exe, probe-inject.exe, probe-shell.dll, README.md
# Check if local binaries are newer
ls -lh build/probe.exe build/probe-inject.exe build/probe-shell.dll
If local files are newer than the release, consider a new release.
# Plugin version in repo
grep '"version"' plugin/.claude-plugin/plugin.json
# Marketplace version
grep -A2 '"arc-probe"' public-repo/.claude-plugin/marketplace.json | grep version
# Latest release tag
gh release list --limit 1
All three should match. If they don't, run /arc-probe:bump-version and /arc-probe:release.