From claude-resources
Creates separate suggestion PRs from unstaged changes, grouped by topics like formatting or refactoring, each based on the current PR branch. Use after /pr-make-suggestion-edit or on 'suggestion to pr' request.
npx claudepluginhub takazudo/claude-resourcesThis skill uses the workspace's default tool permissions.
Create separate pull requests for each suggestion topic from the unstaged changes, with each PR based on the current PR branch.
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.
Create separate pull requests for each suggestion topic from the unstaged changes, with each PR based on the current PR branch.
This command is typically used after /pr-make-suggestion-edit which leaves unstaged changes. These changes represent suggestions to improve the current PR, grouped by topic.
git status, git diff --stat, git diffExamples of topics:
Present the groupings to the user for confirmation.
For each topic, create a separate PR:
Create a new branch based on CURRENT branch (not base branch)
git checkout -b suggest/[descriptive-topic-name] $ORIGINAL_BRANCH
Selectively stage only files for this topic
Create commit following project conventions
git commit -m "suggest: [clear description]"
Push and create PR targeting the original PR branch
gh pr create --base $ORIGINAL_BRANCH --title "suggest: [title]"
Return to original branch for next topic
List all created PRs and remaining unstaged changes.
suggest/suggest: /pr-make-suggestion-edit as a pair