Agent skill
jj:bookmark
Create a jj bookmark for the current commit with a descriptive name
Stars
163
Forks
31
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/jj-bookmark
SKILL.md
Create Bookmark
Create a jj bookmark for the current commit with a descriptive name.
Process
- Run
jj log -r ::@ --limit 10to see recent commits and understand the work theme - Generate a short, descriptive name (2-4 words, kebab-case, no slashes)
- Create the bookmark:
- If
@is empty:jj bookmark create john/<name> -r @- - If
@has changes:jj bookmark create john/<name>
- If
Naming Examples
| Work Description | Bookmark Name |
|---|---|
| Adding user authentication | john/add-user-auth |
| Fixing token refresh bug | john/fix-token-refresh |
| Refactoring database config | john/refactor-db-config |
| Adding rate limiting | john/add-rate-limiting |
Didn't find tool you were looking for?