wp-project-triage
bởi wordpress
Kiểm tra kho lưu trữ WordPress xác định với đầu ra JSON có cấu trúc để hướng dẫn quy trình làm việc. Phát hiện loại dự án (plugin, theme, block theme, WP core, Gutenberg, full site) và xuất báo cáo JSON đã được xác thực schema bao gồm công cụ, kiểm thử và gợi ý phiên bản. Chạy qua script phát hiện Node.js tại thư mục gốc của kho lưu trữ; xuất các trường project.kind, signals và tooling để hướng dẫn các quy trình làm việc tiếp theo. Xác định sự hiện diện của công cụ PHP/Node và khung kiểm thử để thông báo các lệnh và quy ước nào...
npx skills add https://github.com/wordpress/agent-skills --skill wp-project-triageWP 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.