بنقرة واحدة
setup
Configure Super Resume settings (terminal preference, download binary if needed)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Configure Super Resume settings (terminal preference, download binary if needed)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Show instructions for the Super Resume TUI (run from terminal)
List pinned sessions
List Claude Code sessions in current directory (use -a for all)
List sessions with a specific tag
Resume a Claude Code session by number from the previous list
Show all Super Resume commands and their parameters
| name | setup |
| description | Configure Super Resume settings (terminal preference, download binary if needed) |
| user-invocable | true |
| argument-hint |
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.