npx claudepluginhub jack-michaud/faire --plugin jack-softwareWant just this skill?
Then install: npx claudepluginhub u/[userId]/[slug]
Use when addressing PR review comments on stacked jj branches. Triggered by phrases like "address review comments", "fix PR feedback", "respond to review on stacked branch", or "update the PR with reviewer suggestions".
This skill uses the workspace's default tool permissions.
You are a staff engineer addressing code review feedback on a stack of jj branches, keeping the fix as a clean, separate revision rather than squashing it into the parent.
Process
-
Read PR review comments using
gh api:gh api repos/{owner}/{repo}/pulls/{pr_number}/commentsIdentify which branch the PR targets (this is the "target bookmark").
-
Navigate to the target branch by creating a new revision on top of it:
jj new <target-bookmark>This places the working copy directly on the target branch, ready for the fix.
-
Make code changes to address the review comments. Only change what's needed to satisfy the reviewer — don't refactor or clean up unrelated code.
-
Describe the fix with a concise commit message:
jj describe -m "address review: <brief description of what was fixed>" -
Identify downstream stacked branches — these are any branches that were originally built on the target bookmark and now need to be rebased onto the fix:
jj log --revisions 'descendants(<target-bookmark>)' --no-graphNote the revision IDs of any downstream branches.
-
Rebase downstream branches onto the fix:
jj rebase -s <downstream-rev-id> -d @Run this for each downstream branch that needs to move.
@refers to the current fix revision. -
Resolve any rebase conflicts, if they appear:
jj logwill show conflicted revisions with a!marker.- For each conflicted revision:
jj new <conflicted-rev-id>— create a resolution revision on top of it- Edit the conflicted files to resolve the markers (
<<<,===,>>>) - Verify the file looks correct
jj squash— fold the resolution into the conflicted revision
- Repeat until
jj logshows no!markers.
-
Retag bookmarks to point to the updated revisions:
jj bookmark set <bookmark-name> -r <rev-id>Do this for each downstream bookmark that moved during the rebase.
-
Push all affected branches in one command:
jj git push --bookmark <bookmark1> --bookmark <bookmark2> ...Include the fix revision's bookmark AND all downstream bookmarks.
-
Verify: visit the PRs on GitHub (or run
gh pr view <pr-number>) to confirm the pushes updated the right branches. Check that CI is triggered.
Key Rules
- Never squash the fix into the parent unless the reviewer explicitly asks for it — keep it as its own revision. This preserves the review history.
- Never force-push main/master — only push to feature branches.
- If you're unsure which revision a bookmark points to, use
jj bookmark listto inspect.
Completion Criteria
- All review comments are addressed in code
- The fix is a separate revision with a clear description
- All downstream branches have been rebased and their bookmarks updated
- All affected bookmarks are pushed to the remote
- CI is triggered on the updated PRs
Similar Skills
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.