Local defensive fetch-and-handoff skill for WordPress.org plugin packages.
It searches plugin metadata, downloads public plugin ZIP files, extracts them into
a disposable workspace, and outputs JSON handoff data. Vulnerability audit,
triage, confirmation, severity, and final reporting are delegated to
PHP-Code-Audit-Skill's php-audit-pipeline; WordPress-specific checks are
handled by php-wordpress-audit.
python3 scripts/wp_plugin_hunter.py search \
--query "booking" \
--max-plugins 25 \
--workspace ./wp-audit-runspython3 scripts/wp_plugin_hunter.py slugs \
--slug contact-form-7 \
--slug woocommerce \
--workspace ./wp-audit-runsReports are written under:
./wp-audit-runs/reports/
After review, copy or symlink this directory into your Codex skills directory:
cp -r wp-plugin-audit-hunter ~/.codex/skills/Restart the agent session so the skill list refreshes.
- The script only talks to WordPress.org metadata/download endpoints.
- It does not scan live WordPress sites.
- This skill does not scan plugin source for vulnerabilities.
- Use
php-audit-pipelinefor all audit, triage, confirmation, exploitability analysis, and final reporting.