From claude-resources
Prunes remote Git branches merged into origin/main without touching local branches. Fetches latest info, excludes protected branches like main/develop, confirms before deletion.
npx claudepluginhub takazudo/claude-resourcesThis skill uses the workspace's default tool permissions.
Check and prune remote branches that have been merged:
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Check and prune remote branches that have been merged:
git fetch --prunegit branch -rgit branch -r --merged origin/main (or appropriate main branch)git push origin --delete <branch-name> for each branchImportant: Never delete:
Note: This operation affects the remote repository and cannot be easily undone. Ensure user confirmation before proceeding.