Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/AxGord/claude-workflow --skill ide-zedコマンドは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 | ide-zed |
| description | Zed IDE integration rules |
Read can't read binary files (PNG, etc.) — Zed bug #48133 (open, P2). Use display tree for state, not screenshots.
Stale Playwright processes accumulate → pkill -f playwright 2>/dev/null if browser behaves unexpectedly.
clangd relative -I paths in .clangd resolve from the source file's directory, not the project root (when no compile_commands.json exists). Files in subdirectories (e.g. project/common/foo.cpp) will fail to find includes specified as -I./some-dir in .clangd CompileFlags.Add.
WRONG — .clangd:
CompileFlags:
Add: [-I./native, -I./project/common]
RIGHT — compile_flags.txt in the project root:
-I./native
-I./project/common
clangd uses the compile_flags.txt parent directory as CWD, so paths resolve correctly from the root. Keep .clangd for non-path flags (warnings, diagnostics, If/PathMatch overrides) only.