skills/setup/SKILL.md
Configure Super Resume settings (terminal preference, download binary if needed)
npx skillsauth add chungchihhan/super-resume setupInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Download the binary and configure your terminal.
Check in order:
# Check ~/.local/bin first (curl install or already symlinked)
ls "$HOME/.local/bin/super-resume" 2>/dev/null && echo "found:local" || \
# Then check plugin bin dir (marketplace install, not yet symlinked)
ls "${CLAUDE_PLUGIN_ROOT}/bin/super-resume" 2>/dev/null && echo "found:plugin" || \
echo "missing"
found:local → binary is ready, skip to Step 3found:plugin → binary exists but not symlinked, go to Step 2missing → download from GitHub releases:OS=$(uname -s | tr '[:upper:]' '[:lower:]')
ARCH=$(uname -m)
[ "$ARCH" = "x86_64" ] && ARCH="amd64"
[ "$ARCH" = "aarch64" ] || [ "$ARCH" = "arm64" ] && ARCH="arm64"
VERSION=$(grep -o '"version": *"[^"]*"' "${CLAUDE_PLUGIN_ROOT}/.claude-plugin/marketplace.json" | head -1 | grep -o '[0-9][0-9.]*')
FILENAME="super-resume_${VERSION}_${OS}_${ARCH}.tar.gz"
URL="https://github.com/chungchihhan/super-resume/releases/download/v${VERSION}/${FILENAME}"
mkdir -p "${CLAUDE_PLUGIN_ROOT}/bin"
curl -L "$URL" | tar -xz -C "${CLAUDE_PLUGIN_ROOT}/bin" super-resume
chmod +x "${CLAUDE_PLUGIN_ROOT}/bin/super-resume"
If download fails, tell the user:
Could not download the binary. Please check your internet connection or visit https://github.com/chungchihhan/super-resume/releases to download manually.
Only needed when binary is in ${CLAUDE_PLUGIN_ROOT}/bin/ (marketplace install):
mkdir -p "$HOME/.local/bin"
ln -sf "${CLAUDE_PLUGIN_ROOT}/bin/super-resume" "$HOME/.local/bin/super-resume"
Then check if ~/.local/bin is in PATH:
echo $PATH | grep -q "$HOME/.local/bin" && echo "in PATH" || echo "not in PATH"
If not in PATH, tell the user to add it to their shell config (~/.zshrc or ~/.bashrc):
export PATH="$HOME/.local/bin:$PATH"
And then reload: source ~/.zshrc (or ~/.bashrc).
"$HOME/.local/bin/super-resume" config terminal
If not configured, ask the user which terminal they use:
| Option | Terminal | |--------|----------| | 1 | Warp | | 2 | iTerm2 | | 3 | Terminal.app (macOS default) | | 4 | Kitty | | 5 | Alacritty |
Once user selects, run:
"$HOME/.local/bin/super-resume" config terminal <terminal-name>
Where <terminal-name> is one of: warp, iterm, terminal, kitty, alacritty
Tell the user setup is complete and they can now use:
/list-session - List sessions/go <n> - Resume a session (opens new tab in configured terminal)Enable Warp in System Settings → Privacy & Security → Accessibility so /go can type commands in the new tab.
tools
Remove a tag from a session (current session or by number from list)
tools
Unpin a session (current session or by number from list)
tools
Add a tag to a session (current session or by number from list)
development
Launch an interactive TUI to manage Claude Code sessions - view, pin, delete, tag, and preview sessions