| name | jj-vcs |
| description | Guides agents through using the Jujutsu (jj) version control system. Activate when the user mentions jj, jujutsu, or when working in a repository with a .jj directory. Teaches proper workflow for atomic commits and change management. |
Jujutsu (jj) Version Control System
This skill helps you work with Jujutsu, a Git-compatible VCS with mutable commits and automatic rebasing.
Tested with jj v0.37.0 - Commands may differ in other versions.
Important: Automated/Agent Environment
When running as an agent, always use -m flags to provide messages inline rather than relying on editor prompts:
jj desc -m "message"
jj new -m "message"
jj squash -m "message"
jj commit -m "message"
Editor-based commands will fail in non-interactive environments.
Core Concepts
The Working Copy is a Commit
In jj, your working directory is always a commit (referenced as @). Changes are automatically snapshotted when you run any jj command. There is no staging area.
Commits Are Mutable
CRITICAL: Unlike git, jj commits can be freely modified. This enables a high-quality commit workflow:
- Create a commit with your intended message first
- Make your changes
- The commit automatically captures your work
- Refine the commit using
squash, split, or absorb as needed
Change IDs vs Commit IDs
- Change ID: A stable identifier (like
tqpwlqmp) that persists when a commit is rewritten
- Commit ID: A content hash (like
3ccf7581) that changes when commit content changes
Prefer using Change IDs when referencing commits in commands.
Essential Workflow
Starting Work: Describe First, Then Code
Always create your commit message before writing code:
jj desc -m "Add user authentication to login endpoint"
jj st
Creating Atomic Commits
Each commit should represent ONE logical change. Use this format for commit messages:
"Verb object" - exactly one sentence, no period
Examples:
- "Add validation to user input forms"
- "Fix null pointer in payment processor"
- "Remove deprecated API endpoints"
- "Update dependencies to latest versions"
Viewing History
jj log
jj log -p
jj show <change-id>
jj diff
Moving Between Commits
jj new
jj new -m "Commit message"
jj edit <change-id>
Refining Commits
Squashing Changes
Move changes from current commit into its parent:
jj squash
jj squash -i
Splitting Commits
Divide a commit that does too much:
jj split
jj split -r <change-id>
Absorbing Changes
Automatically distribute changes to the commits that last modified those lines:
jj absorb
Abandoning Commits
Remove a commit entirely (descendants are rebased to its parent):
jj abandon <change-id>
Working with Bookmarks (Branches)
Bookmarks are jj's equivalent to git branches:
jj bookmark create my-feature
jj bookmark move my-feature -r <change-id>
jj bookmark list
jj bookmark delete my-feature
Git Integration
Working with Existing Git Repos
jj git clone <url>
jj git init --colocate
Switching Between jj and git (Colocated Repos)
In a colocated repository (where both .jj/ and .git/ exist), you can use both jj and git commands. However, there are important considerations:
Switching to git mode (e.g., for merge workflows):
jj st
git checkout <branch-name>
Switching back to jj mode:
jj edit <change-id>
jj st
Important notes:
- Git may complain about uncommitted changes if jj's working copy differs from the git HEAD
- Always ensure your work is committed in jj before switching to git
- After git operations, jj will detect and incorporate the changes on next command
Pushing Changes (Mirrored Repository Context)
NOTE: You are likely working on a mirrored clone of the repository, not the original. This mirror has its own remote configured.
When the user asks you to push changes:
jj git push -b <bookmark-name>
jj git push -b main
Before pushing, ensure:
- Your bookmark points to the correct commit (bookmarks don't auto-advance like git branches)
- The commits are refined and atomic
- The user has explicitly requested the push
IMPORTANT: Unlike git branches, jj bookmarks do not automatically move when you create new commits. You must manually update them before pushing:
jj bookmark move my-feature --to @
jj git push -b my-feature
If no bookmark exists for your changes, create one first:
jj bookmark create my-feature
jj git push -b my-feature
Handling Conflicts
jj allows committing conflicts - you can resolve them later:
jj st
jj resolve
Preserving Commit Quality
IMPORTANT: Because commits are mutable, always refine them:
- Review your commit:
jj show @ or jj diff
- Is it atomic? One logical change per commit
- Is the message clear? "Verb object" format, one sentence
- Are there unrelated changes? Use
jj split to separate them
- Should changes be elsewhere? Use
jj squash or jj absorb
Quick Reference
| Action | Command |
|---|
| Describe commit | jj desc -m "message" |
| View status | jj st |
| View log | jj log |
| View diff | jj diff |
| New commit | jj new -m "message" |
| Edit commit | jj edit <id> |
| Squash to parent | jj squash |
| Split commit | jj split |
| Auto-distribute | jj absorb |
| Abandon commit | jj abandon <id> |
| Create bookmark | jj bookmark create <name> |
| Push bookmark | jj git push -b <name> |
Best Practices Summary
- Describe first: Set the commit message before coding
- One change per commit: Keep commits atomic and focused
- Use change IDs: They're stable across rewrites
- Refine commits: Leverage mutability for clean history
- Embrace the workflow: No staging area, no stashing - just commits