From claude-resources
Prunes both local and remote Git branches that are fully merged, excluding protected branches like main, master, develop. Useful after PR merges or to clean stale branches on request.
npx claudepluginhub takazudo/claude-resourcesThis skill uses the workspace's default tool permissions.
Check and prune both local and 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 both local and remote branches that have been merged:
git branchgit branch --mergedgit fetch --prunegit branch -rgit branch -d <branch-name>git push origin --delete <branch-name>Important: Never delete:
Note: Remote deletion affects the repository for all users and cannot be easily undone. Ensure user confirmation before proceeding.