Claude-skill-registry jj:bookmark
Create a jj bookmark for the current commit with a descriptive name
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/jj-bookmark-jbott-nix-config" ~/.claude/skills/majiayu000-claude-skill-registry-jj-bookmark && rm -rf "$T"
manifest:
skills/data/jj-bookmark-jbott-nix-config/SKILL.mdsource content
Create Bookmark
Create a jj bookmark for the current commit with a descriptive name.
Process
- Run
to see recent commits and understand the work themejj log -r ::@ --limit 10 - 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 | |
| Fixing token refresh bug | |
| Refactoring database config | |
| Adding rate limiting | |