Description
AcrossAI Abilities Manager gives site administrators full visibility and control over every ability registered via the WordPress Abilities API (wp_get_ability()).
Features:
- Browse all abilities — a searchable, sortable, paginated table listing every registered ability with slug, provider, source, and current status.
- Toggle allow/disallow — enable or disable any ability site-wide with a single click. Changes are saved instantly without a page reload.
- Edit ability metadata — override
readonly,destructive,idempotent,show_in_rest,show_in_mcp,mcp_type, andmcp_serversfields per ability using a tri-state system (Yes / No / Inherit from registry). - Reset overrides — restore any ability back to its registry defaults with one click.
- Bulk actions — allow, disallow, or reset up to 50 abilities at once.
- Ability Library — enable or disable add-on ability groups from a dedicated Library page, with All/Specific mode controls per group.
- Add-ons page — browse, install, and manage free and premium add-ons directly from the WordPress admin. Powered by wpb-addons-page.
- MCP server list — view all registered MCP servers when the MCP Adapter plugin is active.
All overrides are stored in a dedicated database table. The WordPress ability registry is never modified — only the fields that differ from registry defaults are persisted.
Security:
- All endpoints require
manage_optionscapability. - All state-changing requests are protected by WordPress nonce verification.
- All input is sanitized; all output is escaped.
Third-party integrations (optional):
- MCP Adapter plugin — if active, the plugin displays a list of registered MCP servers inside the ability edit panel. No data is sent to any external service. The MCP Adapter plugin communicates only with your own WordPress installation.
This plugin makes no external HTTP requests. The Add-ons page lists free companion plugins hosted on WordPress.org; installing one uses the standard WordPress plugin installer, which contacts WordPress.org directly.
External Services
This plugin makes no external HTTP requests on its own.
The Add-ons page lists free companion plugins hosted on WordPress.org. Installing a listed add-on uses the standard WordPress plugin installer, which contacts WordPress.org on your behalf using WordPress core APIs — no external service is involved on the plugin’s side.
Privacy Policy
This plugin does not collect, store, or transmit any user data.
No data is sent to any external server without explicit user action.
Installation
- Upload the
acrossai-abilities-managerfolder to/wp-content/plugins/. - Activate the plugin through the Plugins menu in WordPress.
- Navigate to AcrossAI Abilities Manager in the WordPress admin menu.
Add-ons:
- Go to AcrossAI Add-ons to browse available companion plugins.
- All add-ons are free and hosted on WordPress.org; each card offers a one-click Install / Activate / Deactivate action via the standard WordPress plugin installer.
FAQ
-
Does this plugin support Multisite?
-
No. This plugin has not been tested on WordPress Multisite installations.
-
Does this plugin modify the WordPress ability registry?
-
No. The plugin stores only overrides — fields that differ from the registry defaults. The ability registry itself (
wp_get_ability()) is never modified. -
What happens when I reset an override?
-
The override row is deleted from the database. The ability will inherit its values from the registry again.
-
What is the Ability Library?
-
The Library page lets you enable or disable ability groups registered by add-on plugins. Each group shows an ON/OFF master toggle and an All/Specific mode selector. In Specific mode, individual ability slots can be toggled independently.
-
What is the MCP Adapter integration?
-
If the MCP Adapter plugin is active on your site, AcrossAI Abilities Manager will display the list of registered MCP servers in the ability edit panel. This is entirely optional — the plugin works without the MCP Adapter.
-
Does this plugin make external HTTP requests?
-
No. The plugin makes no external HTTP requests itself. The Add-ons page lists free companion plugins hosted on WordPress.org; installing one uses the standard WordPress plugin installer, which contacts WordPress.org on your behalf using WordPress core APIs.
Reviews
There are no reviews for this plugin.
Contributors & Developers
“AcrossAI Abilities Manager” is open source software. The following people have contributed to this plugin.
ContributorsTranslate “AcrossAI Abilities Manager” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
0.0.9
- New — six Zip abilities under FileManager for backup / restore workflows.
acrossai-abilities-manager/zip-createarchives a plugin, theme, uploads folder, mu-plugins folder, or any ABSPATH-relative path intowp-content/uploads/acrossai-backups/<random>.zipand returns the download URL + SHA-256.zip-uploadaccepts a zip via base64, chunked (up to 8 MB per chunk / 64 MB per session, filterable), or a remote URL and finalizes it into the same directory after validating thePK\x03\x04magic bytes.zip-extractextracts a zip already on disk or fetched from a URL into a resolved target directory (plugin / theme / uploads / mu-plugins / path); every archive entry is audited for zip-slip (..segments, absolute paths, backslashes, null bytes) before extraction.zip-downloadreturns a fresh URL + metadata for any managed zip.zip-listpaginates the managed directories, newest first.zip-deleteremoves a zip from the managed directories idempotently. The backups directory is hardened on first use with an.htaccessthat blocks PHP execution while keeping.zipdownloads reachable, plus an emptyindex.phpfor enumeration defense. All abilities enforcemanage_options; every mutating ability honoursDISALLOW_FILE_MODSvia the sharedFile_Mods_Guard. See PR #TBD. - New —
acrossai-abilities-manager/plugin-updateandacrossai-abilities-manager/theme-updateabilities. The Plugins and Themes categories previously shipped anupdate-checkreporter but no way to apply updates through the abilities API. The new abilities wrap WP corePlugin_Upgrader::bulk_upgrade()/Theme_Upgrader::bulk_upgrade()(same pattern as the existingplugin-install/theme-install), accept an array of plugin files / slugs or theme stylesheets, and return per-slug results withfrom_version,to_version,updated, andmessage. Plugin_Update additionally requiresupdate_plugins; Theme_Update additionally requiresupdate_themes. Idempotent: re-running when no update is available reportsupdated_count: 0with a clean success envelope. - Shared utilities:
Backups_StorageandZip_Target_Resolver. New helpers underincludes/Abilities/Utilities/.Backups_Storagemanages theacrossai-backups/andacrossai-staging/directories underwp-content/uploads/, generates enumeration-resistant random filenames, resolves managed paths withrealpath()boundary checks, and computes SHA-256 for the listing / download responses.Zip_Target_Resolvermaps(target_type, target)to an absolute filesystem path — plugin slugs resolve viaPlugin_Helpers(existing fuzzy resolver), theme stylesheets viaTheme_Helpers,uploadsviawp_get_upload_dir(),mu-pluginsviaWPMU_PLUGIN_DIR, andpathvalues via a strict inside-ABSPATH realpath check. - Zip_Upload chunk sweeper cron. A new daily cron (
acrossai_abilities_manager_zip_upload_sweep_chunks) sweeps abandoned chunk sessions fromwp-content/uploads/acrossai-staging/after the configurable TTL (default: 1 day, filterable viaacrossai_abilities_manager_zip_upload_session_ttl). Mirrors the existing Upload_Media sweeper. - New configurable limits.
acrossai_abilities_manager_zip_max_bytes(default 512 MB) caps the decompressed size of any zip written or extracted.acrossai_abilities_manager_zip_upload_chunk_max_bytes(default 8 MB base64) andacrossai_abilities_manager_zip_upload_session_max_bytes(default 64 MB base64) cap the chunked upload flow.
0.0.8
- Freemius integration removed entirely. The
freemius/wordpress-sdkcomposer dependency is dropped (upstreamacrossai-co/main-menu0.0.21+ no longer requires it). The plugin no longer sends any data to Freemius, no longer shows a Connect / Login / Buy affordance on the Add-ons page, and the entire Freemius vendored SDK tree (~2,000 files) is removed from the installable ZIP. If you previously connected a Freemius account tied to this plugin, that connection is now inert; anyfs_*orfreemius_*rows inwp_optionsare no longer read by anything and can be safely deleted (e.g.wp option list --search='fs_*'thenwp option delete <name>for each). This supersedes the 0.0.6 changelog entry about Freemius credentials — those credentials are no longer used. See PR #69. - Add-ons page — free-only, and this plugin excluded from its own listing. The Add-ons page (
?page=acrossai-addons) now lists only free companion plugins hosted on WordPress.org (Install / Activate / Deactivate via the standard WP plugin installer). This plugin no longer appears in its own Add-ons page — a small self-filter on theacrossai_addonshook removes it, since it’s obviously already active when the page renders. Other AcrossAI companion plugins (MCP Manager, Model Manager, Turn Off AI Features) still list normally. - Library page — title and Enable All / Disable All buttons on a single horizontal row. The «Ability Library» page heading and the bulk-action buttons introduced in 0.0.7 (Feature 052) now share one line at the top of the page (title anchored left, buttons anchored right). Saves vertical space; matches administrator expectations for admin page layouts.
- Dependencies:
acrossai-co/main-menubumped from0.0.14to0.0.23. Three-hop bump (0.0.21 0.0.22 0.0.23) accumulated during the release cycle. Consumer API surface (SettingsPage,MenuRegistrar,AddonsPageRenderer) preserved across each hop; no code changes required beyond removing the old\AcrossAI_Addon\AddonsPageinstantiation (class deleted upstream in 0.0.21 — its responsibilities moved into\AcrossAI_Main_Menu\MenuRegistrarwhich is registered automatically when the sharedSettingsPagebootstrap runs).
0.0.7
- Library page — bulk Enable All / Disable All action buttons. A new right-aligned header row above the tab strip on
?page=acrossai-abilities-libraryrenders two side-by-side buttons that toggle every ability category currently in view with a single click. Actions are scoped to the active tab: on theAlltab they touch every registered category; on a specific tab (Core, Blocks, Themes, Users, Cache, File Manager, Cron, Database, Plugins) they only touch categories whose ability metadata declares thattab_group. Categories in other tabs pass through byte-for-byte unchanged. Each category’s mode (All / Specific) and per-slug selections are preserved on both actions — a Disable All Enable All cycle is a lossless round-trip. Persisted via the existingPOST /acrossai-abilities-library/v1/abilities/configREST route (manage_options+ nonce, unchanged). See PR #68. - URL-synced tabs on the Library page. The active tab is now reflected in the browser URL as
?tab=<slug>. Deep-linkable, bookmarkable, and browser back / forward navigation re-syncs the visible tab. Direct-navigation to?page=acrossai-abilities-library&tab=themesopens the Themes tab on first paint. Invalid tab values silently fall back to the defaultAllview — no error, no console warning. The defaultAllview keeps the canonical URL clean by removing thetabquery arg entirely. - Disabled-card UI refresh on the Library page. Disabled category cards now show the master toggle + category label + chevron (visible whenever the category has at least one registered ability). Expanding the chevron on a disabled card reveals a readonly bullet-style preview of the abilities in that category (with descriptions). The All / Specific mode selector and interactive per-ability checkboxes remain hidden while the card is disabled — no interactive control can render on a disabled card even when the stored mode is
Specific. The stored mode and per-slug selections are preserved so re-enabling restores the prior configuration exactly. Manual per-card disable and bulkDisable Allproduce identical card DOM.
0.0.6
- BREAKING (downstream integrators) — 17 ability category slugs rebranded from
acrossai-core-abilities-<domain>toacrossai-abilities-manager-<domain>, and 176 ability slugs rebranded fromacrossai-core-abilities/<verb>toacrossai-abilities-manager/<verb>. The companionacrossai-core-abilitiesplugin’s entire 201-file runtime (17 Category_Registrars, 176 ability classes, 8 helper classes, plus the extra-MIME-types admin field) is absorbed into this plugin. Every category and ability slug is renamed uniformly; ability payload shapes and permission callbacks are preserved verbatim. Downstream code (MCP servers, REST/WP-CLI callers, integration tests) that referenced the legacyacrossai-core-abilities-*slugs by string must update on cutover. Ability payloads themselves are unchanged. See PR #65. - Absorbed extra-MIME-types Settings field lands under the Abilities tab. The companion plugin’s Core settings tab is retired; its «extra allowed upload MIME types» field now renders inside the shared Settings Abilities tab. The companion’s separate uninstall opt-in is folded into the manager’s existing single
acrossai_abilities_uninstall_delete_dataopt-in — no second checkbox appears. Activation-time migration copies the legacy option (acrossai_core_abilities_extra_mimesacrossai_abilities_manager_extra_mimes), OR-monotonically folds the legacy uninstall opt-in into the manager’s opt-in (never demotes a manager-true value), and deletes both legacy option rows. Existing admin configuration is preserved. See PR #65. - Retire the
acrossai-core-abilitiescompanion plugin. After upgrading to 0.0.6, deactivate and uninstall the standaloneacrossai-core-abilitiesplugin — all 176 abilities are now provided by this manager plugin directly. Keeping both plugins active will emit duplicate-registration notices from the WP Abilities API on every request. Removal of the companion plugin folder from production sites is an operational task, separate from this release. - Library page — Themes / Blocks / Plugins / Users / Database / Cron / Cache / File Manager get their own tabs. The absorbed categories are promoted from the shared «Core» tab into their own top-level tabs on the Ability Library page (
?page=acrossai-abilities-library). The «Core» tab stays pinned as the second option (immediately after «All») regardless of alphabetical ordering. The «No abilities registered yet» empty-state copy is updated for the new bundled reality. - Dependencies:
acrossai-co/main-menubumped from0.0.11to0.0.14. Adopts the Tabs base class extraction (0.0.14) and tab-scopedoption_group(0.0.13) — the latter fixes the cross-tab option-clobber bug where saving one Settings tab silently wiped other tabs’ options. See PR #66. - Freemius product identifiers rotated —
fs_product_idchanged from31230to34418,fs_public_keyrotated topk_d61a7ddb1a619f7697fbb4fc397b6. If you have a Freemius account tied to the previous product ID, reconnect on the Account submenu after upgrade.
0.0.5
- Dependencies:
acrossai-co/main-menubumped to0.0.11. Picks up the latest AcrossAI shared parent menu / dashboard / settings / add-ons page code from that package. No plugin-owned code changes in this release — the bump is the only functional delta vs 0.0.4.
0.0.4
- BREAKING (add-on developers) — Library display fields moved from top-level
$argsinto$args['meta']['acrossai']. The three Library-only fields introduced by Features 033 and 037 —sub_group,sub_group_label, andtab_group— are no longer read from the top level of the$argsarray passed towp_register_ability(). They must now be nested under$args['meta']['acrossai'], matching the existingmeta.mcp(MCP integration) andmeta.annotations(WP-core annotations) convention. This is a hard cut with no back-compat shim: any add-on that still passes the fields at the top level will silently render its Library card without a sub-group heading or custom tab placement. Migration: change'sub_group' => 'x'to'meta' => [ 'acrossai' => [ 'sub_group' => 'x' ] ](same forsub_group_labelandtab_group). Only affects add-ons that extendAbility_Definitionand use these Library display fields; abilities without them are unaffected. No end-user data migration, no DB schema change, no REST API change. - Plugin icon replaced with a vector (SVG) asset. The WordPress.org plugin directory now serves
.wordpress-org/icon.svgin place of the previous 128×128 / 256×256 JPG icons, so the icon renders sharp at any display density. Also removes the 772×250 and 1544×500 header banners from the directory listing — the plugin page will show the WordPress.org default header until banners are re-added. wp.org-assets-only change.
0.0.3
- Fix: plugin now activates on installs from WordPress.org. The 0.0.2 release ZIP shipped without the Composer autoloader (
vendor/autoload_packages.php) because the WordPress.org deploy workflow did not runcomposer installbefore uploading. Users installing 0.0.2 from the WordPress.org plugin directory saw the plugin activation guard trigger: «AcrossAI Abilities Manager cannot activate: the Composer autoloader is missing…». The 0.0.3 release ZIP includes the full production autoloader; no other code changes. If you already installed 0.0.2 and hit the activation error, delete the plugin folder and reinstall 0.0.3.
0.0.2
- Composer dependency refresh —
wpb-access-controlbumped to v2.0.0 (per-consumer database tables);acrossai-co/main-menubumped to v0.0.10 (now bundles the Add-ons page and includes the JS-side rebrand-sync fix that restores Install / Activate / Deactivate button behavior). The standaloneacrossai-co/addons-pagepackage has been removed from direct dependencies; the sameAcrossAI_Addon\AddonsPageclass now ships from themain-menupackage. - Per-consumer access-control storage — this plugin now owns its own
{prefix}abilities_access_controldatabase table, keeping its rules fully isolated from any other plugin embedding the same access-control library. The dedicated table is created automatically on plugin activation. - Add-ons submenu URL changed — the Add-ons page slug is now
acrossai-addons(waswpb-addons). Any bookmarks or external links pointing atwp-admin/admin.php?page=wpb-addonsshould be updated towp-admin/admin.php?page=acrossai-addons. The submenu location and behavior are otherwise unchanged. - BREAKING — Access Control rules from earlier releases are NOT migrated. If you previously configured Access Control rules on any ability, those rules were stored in the shared
{prefix}wpb_access_controltable and are no longer read by this release. After upgrading, please audit every ability’s Access Control panel and reconfigure any rules that were previously in place. The legacy table is left on disk (in case you need to reference the prior configuration) and can be dropped manually by a database administrator if desired:DROP TABLE {prefix}wpb_access_control;andDELETE FROM {prefix}options WHERE option_name = 'wpb_access_control_db_version';. - BREAKING — Ability execution logging removed. The dedicated Logs admin page, the log-retention Settings field, the
{prefix}acrossai_ability_logsdatabase table, and the/wp-json/acrossai-abilities-log/v1/logger/logsREST endpoint are all removed. If you rely on ability-execution logging for security monitoring or auditing, install a compatible logging plugin or hookwp_after_execute_abilitydirectly in your own consumer code — the upstream ability-execution events remain available. Bookmarks towp-admin/admin.php?page=acrossai-abilities-logsreceive the standard «page does not exist» response. External integrations polling the removed REST endpoint receive 404. On existing installs, the legacy logs table and its schema-version option are orphaned; opt into the «delete all data on uninstall» setting to drop them cleanly, or run manually:DROP TABLE {prefix}acrossai_ability_logs;andDELETE FROM {prefix}options WHERE option_name IN ('acrossai_abilities_log_retention_days', 'acrossai_ability_logs_db_version');.
0.0.1
- Initial release.
- Sitewide Ability Management: browse, toggle, edit, reset, bulk-action.
- Ability Library: enable/disable add-on ability groups with All/Specific mode controls.
- Add-ons page powered by wpb-addons-page with Freemius integration.
- MCP server listing via MCP Adapter integration.