Prune
A Claude Code plugin that turns issues, problem statements, and feature requests → reviewed plans → focused tasks → and produces high-quality code changes.
npx -y skills add metallurgical/ogre-runner --skill pruneAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Bulk-delete finished Ogre runtime data (rescue logs/tmp by default, optionally whole completed/stopped feature issues too) instead of targeting one issue at a time with /ogre:stop --delete.
SKILL.md
2.8 KB, as published. Nobody here has run it
/ogre:prune
Use this skill when the user wants to clean up accumulated Ogre runtime data
in bulk - most commonly the ad-hoc .ai/.ogre/{logs,tmp}/issue-rescue-<slug>/
directories every /ogre:rescue call creates, which have no other cleanup
path (/ogre:stop --delete targets one issue at a time, and nothing runs
automatically). Alias: /ogre:purge (identical, same flags).
Inputs
--all- also sweeps completed/stopped feature/execute issues, not just rescues. Without it, onlyrescue-*ledger tasks are ever considered.--older-than N- age safety margin in days (default1). Only tasks/ issues finished more than N days ago are eligible.--older-than 0overrides for immediate cleanup.--yes- actually deletes. Without it,ogre pruneonly previews what's eligible and deletes nothing (dry-run is the default, not opt-in).
Behavior
Run:
${CLAUDE_PLUGIN_ROOT}/scripts/ogre prune [--all] [--older-than N] [--yes]
Two-step by default - always run it once without --yes first and show the
user the preview (issue, finished date, reclaimable size) before adding
--yes. This is a bulk-delete operation; do not skip straight to --yes
just because the user said "clean it up" or "prune the old stuff" - show them
what's eligible, get their go-ahead on the specific list (not just the idea
in the abstract), then re-run with --yes. Exception: if the user's own
message already specifies age and scope precisely enough that the eligible
set is unambiguous (e.g. "purge everything --all --yes older than 7 days"),
running it directly is fine - they've already made the call.
What's eligible
- Default (rescue-only): a
rescue-*ledger issue is eligible only if every task under it is fully terminal (passed/failed/stopped- never touches one with anypending/runningtask) and its most recent finish timestamp is older than--older-thandays. --all: also considers regular feature/execute issues, but only ones whose ownstate.jsonstatus iscompletedorstopped- the same terminal states/ogre:statusalready flags as ready for/ogre:stop --archive/--delete. Never touches a mid-plan or mid-execution issue.- Deletion itself reuses the same primitive
/ogre:stop <issue> --deleteuses (files + ledger rows together) - there is exactly one deletion implementation, prune just applies it to a bulk-selected set.
When NOT to suggest this
Don't proactively suggest pruning unless the user brings up disk usage, clutter, or asks for cleanup - it's not something to run as a matter of routine maintenance on their behalf.