with one click
delete-releases
Delete all GitHub releases for a given E2SAR version
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Delete all GitHub releases for a given E2SAR version
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | delete-releases |
| description | Delete all GitHub releases for a given E2SAR version |
| disable-model-invocation | true |
| user-invocable | true |
| argument-hint | <version> |
| allowed-tools | Bash |
Delete all GitHub releases matching version $ARGUMENTS.
Releases follow the naming pattern: E2SAR-<version>-<branch>-<os>-<distro_version> where os is ubuntu, rocky, or debian.
Steps:
First list all releases matching the version to show the user what will be deleted:
gh release list --limit 100 | grep "E2SAR-$ARGUMENTS-"
Show the list to the user and ask for confirmation before deleting.
If the user confirms, delete each matching release:
gh release list --limit 100 | grep "E2SAR-$ARGUMENTS-" | awk '{print $1}' | xargs -I {} gh release delete {} --yes
Verify deletion by listing releases again to confirm they are gone.
Important: