git clone https://gist.github.com/b35434593e06fe4a2ea6eca13e4786da.git
cd b35434593e06fe4a2ea6eca13e4786da
./install-superdb.sh
./configure-claude.sh
Last active
February 3, 2026 02:48
-
-
Save chrismo/b35434593e06fe4a2ea6eca13e4786da to your computer and use it in GitHub Desktop.
Jazz themed Claude spinnerVerbs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "spinnerVerbs": { | |
| "mode": "replace", | |
| "verbs": [ | |
| "Improvising", | |
| "Jamming", | |
| "Riffing", | |
| "Swinging", | |
| "Scatting", | |
| "Grooving", | |
| "Vamping", | |
| "Beboppin'", | |
| "Noodling", | |
| "Syncopating", | |
| "Comping", | |
| "Soloing", | |
| "Laying down tracks", | |
| "Finding the pocket", | |
| "Trading fours", | |
| "Taking it to the bridge", | |
| "Hitting the changes", | |
| "Playing the head", | |
| "Working the turnaround", | |
| "Catching the groove", | |
| "Substituting the Tritone", | |
| "Flatting the Fifth", | |
| "Sharping the Ninth", | |
| "Fully Altering the Dominant", | |
| "Taking the A Train", | |
| "Oleo-ing", | |
| "Shedding Rhythm Changes", | |
| "Taking Giant Steps", | |
| "Entering Monk's Dream", | |
| "Freeloading", | |
| "Playing it cool like Miles", | |
| "Sequestering Days", | |
| "Dolphin Dancing", | |
| "Blue Bossa-ing", | |
| "Getting Misty", | |
| "Summertiming", | |
| "Footprinting", | |
| "Shedding Peggy's Blue Skylight" | |
| ] | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Merge spinner verbs into Claude Code settings using SuperDB | |
| set -e | |
| settings="$HOME/.claude/settings.json" | |
| config="$(dirname "$0")/claude-code-settings.json" | |
| command -v super >/dev/null || { echo "super not found - see https://superdb.org"; exit 1; } | |
| if [[ -f "$settings" ]]; then | |
| super -J -c "{...this, ...$(<"$config")}" "$settings" > "$settings.tmp" && mv "$settings.tmp" "$settings" | |
| else | |
| echo "Gotta get hip to Claude first, daddy-o!" | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Install SuperDB via asdf | |
| set -e | |
| command -v asdf >/dev/null || { echo "asdf not found - see https://asdf-vm.com"; exit 1; } | |
| asdf plugin list 2>/dev/null | grep -q "^superdb$" || asdf plugin add superdb https://github.com/chrismo/asdf-superdb.git | |
| asdf install superdb latest | |
| asdf local superdb latest 2>/dev/null || asdf set superdb latest |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://code.claude.com/docs/en/changelog#2123