원클릭으로
fix-jj-conflicts
Fix merge conflicts in a jj change and its ancestors, starting from the oldest conflict. Use only in clones that use Jujutsu.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Fix merge conflicts in a jj change and its ancestors, starting from the oldest conflict. Use only in clones that use Jujutsu.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Review Rust changes for correctness, robustness, documentation quality, and test coverage.
Guidelines for writing Rust tests in OpenFirma.
Write Rust tests for OpenFirma crates while avoiding redundant coverage.
Review changes ahead of opening a new PR, modifying an existing one or on demand by the user.
Edit a pre-existing GitHub pull request for OpenFirma. Use whenever you are asked to make changes to commits, branches or bookmarks that would affect an open GitHub PR.
Open a GitHub pull request for OpenFirma. Use whenever you are asked to open a PR.
SOC 직업 분류 기준
| name | fix-jj-conflicts |
| description | Fix merge conflicts in a jj change and its ancestors, starting from the oldest conflict. Use only in clones that use Jujutsu. |
Resolve all conflicts in a set of jj changes, starting from the oldest, then verify the result.
If $ARGUMENTS is empty, default to -b @.
$ARGUMENTS accepts one of these forms:
-s <rev> or --source <rev>: the revision and all descendants-b <rev> or --branch <rev>: the whole branch-r <revs> or --revisions <revs>: only the specified revisionsIf no flag is provided, treat the argument as -s <rev>.
jj log -r '(<target-revset>) & conflicts()'
Process conflicts from oldest to newest. In jj log output, the oldest change is closest to the bottom.
If no conflicts are found, report that and stop.
For each conflicted change:
jj log -r <conflicted-change>
jj diff -r <conflicted-change>
jj new -A <conflicted-change>
Resolve the files, remove all conflict markers, and describe the fix:
jj describe -m "CONFLICT FIX: <short description>"
If unsure about the correct resolution, ask the user rather than guessing.
Run:
just check
After each fix:
jj log -r '(<target-revset>) & conflicts()'
Skip downstream conflicts that disappeared after the ancestor fix.
After all conflicts are resolved, confirm no conflicts remain and verify the final state:
jj log -r '(<target-revset>) & conflicts()'
just check
Ask the user whether to squash fix changes into their parents:
jj squash --from <fix-change> --into <conflicted-change> -u
--ignore-immutable to a jj command.