Chimy’s AI Coding Lab is the showcase portal of the WP Maker plugin series: it presents the open-source plugins, themes, and apps developed by Chimy’s AI Coding Lab, with documentation links. It also serves as the platform core framework — modular management, SPA admin customization, REST API security, and app support. Advanced capabilities (image/media optimization, data synchronization, batch processing, etc.) are provided by dedicated standalone plugins in the wp-maker-* series.
Working together with WP Maker Admin, it can fully replace the native WordPress admin with a modern SPA management interface.
Some features have been split into standalone plugins (wp-maker-* series) that can be installed on demand.
wpmaker/v1/admin/*), JSON-driven settings pages and field groupsAll modules are described by manifest.json with metadata and SPA menu configuration, managed by ModuleManager:
Each plugin ships its own acf-json/ field groups registered via acf/settings/load_json; configuration is managed via ACF Options Page + Local JSON. When ACF is not installed, the OptionsController fallback reads and writes configuration directly.
External plugins can register via ModuleManager:
\WPMaker\Core\ModuleManager::registerModulePath( __DIR__ );
wpmaker/v1/admin/* — platform administration (options, modules, system, network, categories, comments, users, etc.)wpmaker/v1/sync/* — WatermelonDB data sync (pull/push, provided by the standalone wp-maker-sync plugin)wpmaker/v1/sites/* — private-site APIsThe core works without ACF; the SPA settings pages fall back to the OptionsController when ACF is not present.
The Case Portal page lets an administrator manually refresh the WP Maker component catalog. The catalog is hosted on Gitee (https://gitee.com), an open-source code hosting service. No request is made automatically: the catalog is fetched only when an administrator clicks the “Refresh catalog” button, and the response is cached locally for 12 hours. Only the extension catalog data is downloaded; no personal data is sent.
Gitee terms of service: https://gitee.com/terms
Gitee privacy policy: https://gitee.com/privacy
This plugin does not collect user data, does not perform remote telemetry, and does not send any information to the author’s server.
All external interactions are enabled explicitly by the site administrator; the plugin itself has no phone-home behavior.