From claude-resources
Finds and deletes GitHub Actions caches across all non-archived repos for one or more GitHub owners (users/orgs) with parallel survey and verification via gh CLI.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-resources:dev-purge-gh-cache <owner> [owner...] [--survey-only]<owner> [owner...] [--survey-only]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Wipe GitHub Actions caches across all of an owner's repos in one shot. GH Actions
Wipe GitHub Actions caches across all of an owner's repos in one shot. GH Actions
caches are per-repo, so "purge for an account" means iterating every repo under
that owner. scripts/purge-gh-cache.sh does the whole survey → delete → verify
fan-out; this skill just drives it.
Run the bundled script with the owner name(s) the user gave. Pass the absolute path so the script can re-invoke itself for parallel workers:
bash $HOME/.claude/skills/dev-purge-gh-cache/scripts/purge-gh-cache.sh <owner1> [owner2 ...]
Survey first without deleting anything: add --survey-only (or -n).
Owners can be users or orgs; pass several to do them in one run.
The script reports the scope (caches found, MB) before deleting, deletes via
gh cache delete --all, then re-checks and prints ✅ ALL CLEAR or the repos
that still have caches.
If the user only named one owner, just run it for that one. If they asked to
"see what's there" rather than purge, use --survey-only.
gh authenticated with repo + workflow scopes (the script preflights auth).jq available.Verify with gh cache list, never the actions/cache/usage API. That
usage endpoint is GitHub's billing figure and is recomputed on a delay — it
keeps reporting the old size/count for up to ~24h after caches are deleted,
which falsely looks like the purge failed. The script verifies with the
real-time gh cache list instead.
No export -f for xargs parallelism. When the parent shell is zsh,
exported bash functions don't survive into xargs ... bash -c subshells
("command not found"). The script parallelizes by re-invoking itself with an
internal __count / __delete subcommand instead.
gh cache delete --all exits non-zero with "No caches to delete" on an
empty repo — that's expected and the script ignores it.
After a successful purge, the GitHub Storage usage figure in the UI/billing
may still show the old size for up to ~24h; the caches themselves are gone (confirmed by the live verification step).
npx claudepluginhub takazudo/claude-resources --plugin claude-resourcesAnalyzes GitHub Actions cache usage to detect bloat, stale caches, optimize keys, and compare across repos and orgs using gh CLI.
Reference for GitHub Actions workflow best practices, including runner context, timeout-minutes, caching, concurrency, and security. Use when writing or debugging .yml workflows.
Creates, audits, and optimizes GitHub Actions workflows for CI/CD, matrix builds, reusable workflows, composite actions, caching, and security hardening like pinning and permissions.