npx claudepluginhub psychquant/psychquant-claude-plugins --plugin mcp-toolsThis skill is limited to using the following tools:
對 MCP Server 的 GitHub repo 開 issue,記錄問題或需求,不中斷當前工作流程。
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.
對 MCP Server 的 GitHub repo 開 issue,記錄問題或需求,不中斷當前工作流程。
$1 = MCP Server 名稱(如 che-things-mcp、che-ical-mcp)$2+ = 問題描述(自然語言)從 MCP Server 名稱推斷 repo 位置:
# 方法 1: 從本地專案目錄的 git remote 推斷
cd ~/Library/CloudStorage/Dropbox/che_workspace/projects/mcp/$1 2>/dev/null && git remote get-url origin 2>/dev/null
# 方法 2: 從 Claude Code MCP 設定推斷
cat ~/.claude.json 2>/dev/null | python3 -c "
import json, sys
data = json.load(sys.stdin)
servers = data.get('mcpServers', {})
name = '$1'
if name in servers:
print(json.dumps(servers[name], indent=2))
else:
print(f'MCP server {name} not found in config')
"
# 方法 3: 從 plugin MCP 設定推斷
# 搜尋 ~/.claude/plugins/ 中的 mcp.json
如果找不到 repo,問用戶提供 GitHub repo URL。
根據問題描述自動分類:
| 關鍵字 | Label | Title 前綴 |
|---|---|---|
| bug、壞了、錯誤、crash、fail | bug | fix: |
| feature、功能、新增、加入 | enhancement | feat: |
| 改善、優化、refactor | enhancement | improve: |
| 其他 | enhancement | chore: |
gh issue create \
--repo {owner}/{repo} \
--title "{prefix} {簡短標題}" \
--body "$(cat <<'EOF'
## 描述
{用戶的問題描述,整理成結構化格式}
## 環境
- MCP Server: {$1}
- 版本: {從 binary 或 package.json 取得}
- 平台: macOS
## 備註
從 Claude Code 對話中記錄,待後續處理。
---
*Created via `/mcp-tools:mcp-issue`*
EOF
)" \
--label "{label}"
輸出:
格式:
Issue 已建立: {url}
#{number} [{label}] {title}