npx claudepluginhub psychquant/psychquant-claude-plugins --plugin cli-toolsThis skill is limited to using the following tools:
從 GitHub Release 下載 CLI binary 並安裝到 `~/bin/`。
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
從 GitHub Release 下載 CLI binary 並安裝到 ~/bin/。
$1 = GitHub repo(如 PsychQuant/GiftHub)$2 = 版本號(可選,預設 latest)如果沒有提供 repo,用 AskUserQuestion 詢問。
REPO="{owner/repo}"
VERSION="${2:-latest}"
RELEASE_INFO=$(curl -fsSL "https://api.github.com/repos/$REPO/releases/latest")
TAG=$(echo "$RELEASE_INFO" | grep '"tag_name"' | grep -oE 'v[0-9]+\.[0-9]+\.[0-9]+')
RELEASE_INFO=$(curl -fsSL "https://api.github.com/repos/$REPO/releases/tags/v$VERSION")
echo "$RELEASE_INFO" | grep '"name"' | head -10
找到 binary asset(排除 .mcpb、.zip、.tar.gz)。
如果有多個 binary,用 AskUserQuestion 讓使用者選。
BINARY_NAME="{detected-binary-name}"
DOWNLOAD_URL=$(echo "$RELEASE_INFO" | grep "browser_download_url.*$BINARY_NAME" | grep -oE 'https://[^"]+')
mkdir -p ~/bin
curl -fsSL "$DOWNLOAD_URL" -o ~/bin/$BINARY_NAME
chmod +x ~/bin/$BINARY_NAME
# macOS: 清除 quarantine flag
xattr -cr ~/bin/$BINARY_NAME 2>/dev/null || true
file ~/bin/$BINARY_NAME
~/bin/$BINARY_NAME version 2>/dev/null || ~/bin/$BINARY_NAME --version 2>/dev/null
已安裝 {binary-name} {version} 到 ~/bin/
來源: https://github.com/{owner}/{repo}/releases/tag/{tag}