This pull request adds opt-in Antigravity support to the skillpack build
and install scripts.
Documentation updates for skill file locations:
* Adds `.agents/skills/` as the project-level directory for Antigravity
skill files.
* Adds `antigravity-global` for installing skills to
`~/.gemini/antigravity/skills/`.
* Keeps Antigravity out of the default build and install target lists so
existing defaults remain unchanged.
🤖 Partially developed with [Claude Code](https://claude.com/claude-code)
---------
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
## What does this PR do?
Updates the default compatibility targets across all Agent Skills,
documentation, and the evaluation harness to assume WordPress 7.0 and
PHP 7.4.0 as the baseline.
## Why is this change necessary?
WordPress 7.0 ("Armstrong") has officially retired support for PHP 7.3
and below, making PHP 7.4.0 the hard minimum. To ensure the agents
generate safe, actively maintained, and compatible code, the skills'
compatibility contracts have been bumped from WP 6.9+ (PHP 7.2.24+) to
WP 7.0+ (PHP 7.4.0+).
Addresses https://github.com/WordPress/agent-skills/issues/68
---------
Co-authored-by: Jeffrey Paul <jeffpaul@hotmail.com>
Integrates Cursor as a target for building and installing skillpacks.
This allows for easy distribution and installation of skills for the Cursor editor, in addition to Codex and VS Code.
Updates scripts to include Cursor in build and installation options, with support for global installation.
Co-authored-by: thierrypigot <contact@wearewp.pro>
- Add 'claude' target for project-level installation (.claude/skills/)
- Add 'claude-global' target for user-level installation (~/.claude/skills/)
- Add --global flag as shorthand for --targets=claude-global
- Add --skills flag for selective skill installation
- Add --list flag to show available skills
- Add --dry-run flag to preview installation
- Update README with Claude Code installation instructions