بنقرة واحدة
gh-release-check
Check the status of GitHub releases — list versions, verify assets, compare with local builds
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Check the status of GitHub releases — list versions, verify assets, compare with local builds
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Full analysis of a single function — disassemble, identify args, find string refs, callers/callees, RTTI, generate signature, label in GUI
Fully analyze a C++ virtual function table — detect params, find string refs, measure sizes, and label all entries
Detect function parameters from prologue and register usage — infer types, count, and calling convention
Discover a C++ class by name via RTTI — map its vtable, disassemble key virtual functions, explore inheritance hierarchy, and label everything
Find all functions that call a given function address — shows argument setup, string refs, and containing function names
Compare a function between sessions — generate a signature, find it after binary update, compare disassembly, report changes
| name | gh-release-check |
| description | Check the status of GitHub releases — list versions, verify assets, compare with local builds |
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.