wp-project-triage
Installation
SKILL.md
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
1) Detect project kind
# Plugin detection
if grep -l "Plugin Name:" *.php 2>/dev/null; then
echo "KIND: plugin"
fi