wp-project-triage
Use when you need a deterministic inspection of a WordPress repository (plugin/theme/block theme/WP core/Gutenberg/full site) including tooling/tests/version hints, and a structured JSON report to guide workflows and guardrails.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o wp-project-triage.zip https://jpskill.com/download/17351.zip && unzip -o wp-project-triage.zip && rm wp-project-triage.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/17351.zip -OutFile "$d\wp-project-triage.zip"; Expand-Archive "$d\wp-project-triage.zip" -DestinationPath $d -Force; ri "$d\wp-project-triage.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
wp-project-triage.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
wp-project-triageフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 3
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
WP Project Triage
どのような時に使うか
このスキルは、変更を加える前に、自分がどのような種類の WordPress リポジトリにいるのか、どのようなコマンドや規約に従うべきかを素早く理解するために使用します。
必要な入力
- リポジトリのルート(現在の作業ディレクトリ)。
手順
- 検出器を実行します(JSON を標準出力に出力します)。
node skills/wp-project-triage/scripts/detect_wp_project.mjs
- 正確な出力コントラクトが必要な場合は、以下を参照してください。
skills/wp-project-triage/references/triage.schema.json
- レポートを使用して、ワークフローのガードレールを選択します。
- プロジェクトの種類(
project kind(s)) - 存在する PHP/Node ツール
- テストの有無
- バージョンのヒントとソース
- プロジェクトの種類(
- レポートに必要なシグナルがない場合は、推測するのではなく、検出器を更新してください。
検証
- JSON はパース可能であり、
project.kind、signals、およびtoolingを含む必要があります。 - 構造/ツールに影響を与える変更(
theme.json、block.json、ビルド構成の追加など)後には、再実行してください。
失敗モード / デバッグ
unknownと報告された場合は、リポジトリのルートが正しいかどうかを確認してください。- スキャンが遅い場合は、スクリプトで無視するディレクトリを追加/拡張してください。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
WP Project Triage
When to use
Use this skill to quickly understand what kind of WordPress repo you’re in and what commands/conventions to follow before making changes.
Inputs required
- Repo root (current working directory).
Procedure
- Run the detector (prints JSON to stdout):
node skills/wp-project-triage/scripts/detect_wp_project.mjs
- If you need the exact output contract, read:
skills/wp-project-triage/references/triage.schema.json
- Use the report to select workflow guardrails:
- project kind(s)
- PHP/Node tooling present
- tests present
- version hints and sources
- If the report is missing signals you need, update the detector rather than guessing.
Verification
- The JSON should parse and include:
project.kind,signals, andtooling. - Re-run after changes that affect structure/tooling (adding
theme.json,block.json, build config).
Failure modes / debugging
- If it reports
unknown, check whether the repo root is correct. - If scanning is slow, add/extend ignore directories in the script.
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (1,485 bytes)
- 📎 references/triage.schema.json (4,480 bytes)
- 📎 scripts/detect_wp_project.mjs (19,183 bytes)