用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/chungchihhan/super-resume --skill setup命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| 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.