用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AxGord/claude-workflow --skill mcp-setup命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Debugging meta-patterns — what to do when fixes don't stick
Game dev precision and physics gotchas
Claude Code configuration gotchas — permission rule syntax and evaluation order, settings hierarchy, plugin install scopes, hook behavior
基于 SOC 职业分类
正在显示 SKILL.md
| name | mcp-setup |
| description | MCP server setup and troubleshooting |
npm info <name> to verify before installingnpm info → npx -y <pkg> --help → claude mcp add. Caveat: many MCP servers don't implement --help and just wait on stdio — wrap validation in timeout 10 … so it can't hang./mcp can reconnect already-registered servers, but registering a NEW server requires a session restart. Get the config right the first time.claude mcp add <name> -- uvx <pkg> — uvx launches PyPI packages over stdio, no venv management.claude mcp add --transport http <name> <url> (also --transport sse for legacy SSE servers).project scope lives in .mcp.json at the repo root (checked in); local scope lives in ~/.claude.json under that project's entry (NOT in the repo); user scope is global in ~/.claude.json.mcp__plugin_<plugin>_<server>__<tool> — the full name must stay under the 64-char API limit, so keep plugin/server names short.claude mcp list for statusnpm whoami — fix stale token if needednpm info <pkg> deprecated — check if abandoned~/Library/Caches/ms-playwright-mcp/mcp-chrome-* on macOS, ~/.cache/ms-playwright-mcp/mcp-chrome-* on Linux) is locked by a stale SingletonLock symlink (often pointing at an unrelated regular Chrome pid). The MCP server refuses even after browser_close.killing the pid the lock points at (it may be the user's real browser). Stay with ONE browser server per session; alternating between two hits the lock again.