Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,3 +157,21 @@ Set up with: `npm run setup:hooks` or `bash bin/setup-hooks.sh`.
## JSON / YAML

Indent with 2 spaces (not tabs). See `.editorconfig`.

## Local Development Environment

The shared WordPress dev install for testing this plugin is at `../wordpress` (relative to this repo root).

- **URL**: http://wordpress.local:8080
- **Admin**: http://wordpress.local:8080/wp-admin — `admin` / `admin`
- **WordPress version**: 7.0-RC2
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🌐 Web query:

What is the latest WordPress version as of April 2026?

💡 Result:

As of April 2026 (including April 8, 2026), the latest stable WordPress release is WordPress 6.9.4 (a security release), published March 11, 2026. [1] [2]

Note: WordPress 7.0 was still in release-candidate status in late March 2026, not yet the latest stable release. [3]

Sources:
[1] https://wordpress.org/download/
[2] https://wordpress.org/news/2026/03/wordpress-6-9-4-release/
[3] https://wordpress.org/news/


Consider using WordPress 6.9.4 (stable) instead of 7.0-RC2.

WordPress 7.0-RC2 is a pre-release version. As of April 2026, the latest stable release is WordPress 6.9.4 (released March 11, 2026). Documentation should reference stable versions when possible.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@AGENTS.md` at line 167, Update the WordPress version in the AGENTS.md line
that currently reads "**WordPress version**: 7.0-RC2" to reference the latest
stable release "**WordPress version**: 6.9.4" so the documentation points to a
stable release instead of a pre-release.

- **This plugin**: symlinked into `../wordpress/wp-content/plugins/$(basename $PWD)`
- **Reset to clean state**: `cd ../wordpress && ./reset.sh`

WP-CLI is configured via `wp-cli.yml` in this repo root — run `wp` commands directly from here without specifying `--path`.

```bash
wp plugin activate $(basename $PWD) # activate this plugin
wp plugin deactivate $(basename $PWD) # deactivate
wp db reset --yes && cd ../wordpress && ./reset.sh # full reset
```
2 changes: 2 additions & 0 deletions wp-cli.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
path: ../wordpress
url: http://wordpress.local:8080
Loading