ソース情報
- リポジトリ
- AxGord/claude-workflow
- ソースの最終更新活動
- 2026年7月8日 18:54
- 検出された SKILL.md の言語
- 英語
- スター
- 5
- フォーク
- 2
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/AxGord/claude-workflow --skill mcp-setupコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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.