npx claudepluginhub psychquant/psychquant-claude-plugins --plugin mcp-toolsThis skill is limited to using the following tools:
從 GitHub Release 下載並安裝 MCP Server binary 到 `~/bin`。
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
從 GitHub Release 下載並安裝 MCP Server binary 到 ~/bin。
部署新版本請用 /mcp-tools:mcp-deploy
$1 = 版本號(可選,如 v1.2.0)
v1.2.0)--list:列出所有可用版本檢查當前目錄是否為 MCP 專案:
pwd
ls -la
必須存在的檔案:
mcpb/manifest.json如果不存在,提示使用者:
請先
cd到 MCP 專案目錄
從 mcpb/manifest.json 取得:
name: 專案名稱(用於 GitHub repo)homepage 或 repository.url: GitHub URLcat mcpb/manifest.json
從 manifest.json 提取 GitHub owner 和 repo:
# 例:https://github.com/kiki830621/che-word-mcp → owner=kiki830621, repo=che-word-mcp
$1 = --list列出所有可用版本:
gh release list --repo {owner}/{repo}
顯示結果後結束,不執行安裝。
$1 有指定版本使用指定版本(確保格式為 v{version}):
VERSION="v1.2.0" # 或使用者指定的版本
取得最新版本:
VERSION=$(gh release list --repo {owner}/{repo} --limit 1 --json tagName -q '.[0].tagName')
echo "最新版本: $VERSION"
mkdir -p ~/bin
從 manifest.json 取得 binary 名稱:
# 從 server.entry_point 取得:server/CheWordMCP → CheWordMCP
BINARY_NAME=$(cat mcpb/manifest.json | grep '"entry_point"' | sed 's/.*"server\/\([^"]*\)".*/\1/')
echo "Binary: $BINARY_NAME"
gh release download {VERSION} \
--repo {owner}/{repo} \
--pattern "{BINARY_NAME}" \
--output ~/bin/{BINARY_NAME} \
--clobber
參數說明:
--pattern: 只下載 binary 檔案(不下載 .mcpb)--output: 直接輸出到 ~/bin--clobber: 覆蓋已存在的檔案chmod +x ~/bin/{BINARY_NAME}
ls -lh ~/bin/{BINARY_NAME}
file ~/bin/{BINARY_NAME}
# MCP 安裝完成
## 安裝資訊
- 專案: {project-name}
- 版本: {VERSION}
- Binary: ~/bin/{BINARY_NAME}
## GitHub Release
- URL: https://github.com/{owner}/{repo}/releases/tag/{VERSION}
## 下一步
- 測試: `claude mcp list` 確認 MCP 已連線
- 如需更新 Claude Code 設定,編輯 `~/.claude/settings.json`
# 安裝最新版
/mcp-install
# 安裝指定版本
/mcp-install v1.2.0
# 列出所有版本
/mcp-install --list
# 下載並安裝最新版
gh release download --repo kiki830621/che-word-mcp --pattern "CheWordMCP" --output ~/bin/CheWordMCP --clobber
chmod +x ~/bin/CheWordMCP
| 問題 | 解決方案 |
|---|---|
| gh 未登入 | 執行 gh auth login |
| 找不到 release | 確認版本號正確,使用 --list 查看 |
| 權限不足 | 確認 ~/bin 目錄權限 |
| binary 無法執行 | macOS 可能需要允許:System Settings → Privacy & Security |
| 命令 | 用途 | 使用時機 |
|---|---|---|
/mcp-deploy | 編譯 + 打包 + 發布 + 安裝 | 開發完成後發布新版 |
/mcp-install | 從 GitHub 下載安裝 | 在其他機器安裝、更新版本 |
Reproducibility:/mcp-install 確保安裝的是已發布的 release 版本,可重現且版本明確。