Track top WordPress plugin compatibility#374
Merged
Merged
Conversation
Add a WordPress.org popular-plugin manifest with install and merge support policy for the top 100 plugins. Add an offline validator and docs page so plugin compatibility coverage is explicit and testable.
Merged
adamziel
added a commit
that referenced
this pull request
May 18, 2026
## Release `v0.1.45` Version bump and release metadata update for `v0.1.45`. **Changelog draft:** * Support remote clone SSH credentials ([#373](#373)) * Track top WordPress plugin compatibility ([#374](#374)) * Add top plugin install smoke ([#375](#375)) * Document remote-site onboarding flow ([#376](#376)) **Full changelog:** v0.1.44...release/v0.1.45 ## Next steps 1. **Review** the changes in this pull request. 2. **Push** any additional edits to this branch (`release/v0.1.45`). 3. **Merge** this pull request to publish `v0.1.45`. Merging will automatically build ForkPress binaries, create a GitHub release, and update the Homebrew formula. Co-authored-by: Codex <codex@openai.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What it does
Adds a checked-in compatibility target for the current WordPress.org top 100 popular plugins.
The new manifest records, for each ranked plugin:
install_support: wp-admin-plugin-installmerge_support: generic-auditorsemantic-recipe-plus-generic-auditRationale
“Support the top 100 plugins” needs a concrete artifact. Without a manifest, we cannot tell whether a release covers the same target over time or whether a plugin moved from generic audit coverage to semantic validator coverage.
This does not overclaim automatic semantic conflict repair for every plugin. The default support model remains generic DB/file merge plus durable
plugin-validator-uncheckedaudit decisions when an active plugin has no validator.Implementation
Added
scripts/popular-plugin-compat.mjs:refreshpulls the WordPress.org popular-plugin API and writesruntime/cow/plugin-compat/popular-wordpress-plugins.json.validateis offline and enforces exactly 100 unique ranked plugins with declared install and merge support policy.Added
docs/top-plugin-support.mdand linked it from the docs sidebar and plugin validator docs.Testing instructions