Jazz themed Claude spinnerVerbs

2 min read Original article ↗

Jazz themed Claude spinnerVerbs

git clone https://gist.github.com/b35434593e06fe4a2ea6eca13e4786da.git
cd b35434593e06fe4a2ea6eca13e4786da
./install-superdb.sh
./configure-claude.sh
{
"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"
]
}
}
#!/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
#!/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