Interplay Services releases
Interplay Services WordPress plugin
by the Interplay team · github.com/interplay-design/interplay-services · website
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://github.com/interplay-design/interplay-services/archive/refs/heads/main.zipInterplay Services is the shared service layer for Interplay WordPress products. It operates as a must-use (MU) plugin, centralizing product registration, update delivery, GitHub-backed release checks, and the foundation for future license enforcement.
What It Does
- Registers Interplay-managed products in one system-wide registry.
- Injects native WordPress theme updates for the Intro theme.
- Supports GitHub Releases as the current update source.
- Supports private-repo downloads through a download proxy when authentication is required.
- Exposes a settings page for GitHub token management, license-key storage, and product visibility.
Current Managed Products
introtheme
Deployment Model
Interplay Services is deployed as a must-use plugin in wp-content/mu-plugins/interplay-services/. This means:
- The service layer is always loaded; it cannot be accidentally deactivated.
- Intro theme automatically installs and updates Interplay Services when needed.
- MU plugin updates are managed through custom Interplay deployment mechanisms.
Installation
When Intro is activated, it automatically:
- Detects if Interplay Services is installed.
- Downloads and extracts the MU plugin to
wp-content/mu-plugins/interplay-services/. - The plugin loads on the next page load (no activation step required).
Manual Install
If needed, manually place the Interplay Services folder in wp-content/mu-plugins/:
wp-content/mu-plugins/interplay-services/
└── interplay-services.php
└── src/
└── ...
Configuration
GitHub token
For private GitHub repositories, set a fine-grained PAT in one of these ways:
- WordPress admin:
Settings > Interplay Services wp-config.php:INTERPLAY_SERVICES_GITHUB_TOKEN- environment variable:
INTERPLAY_SERVICES_GITHUB_TOKEN
For public repositories, a token is not required for downloading public release assets.
License key
License enforcement is not active in this beta, but the plugin already supports sourcing a license key from:
- WordPress admin
INTERPLAY_SERVICES_LICENSE_KEYconstantINTERPLAY_SERVICES_LICENSE_KEYenvironment variable
Release Process
To publish an update that WordPress can detect:
- Bump the plugin version in
interplay-services.php. - Commit and push to
main. - Create a GitHub Release in
Interplay-Design/interplay-services. - Attach a plugin zip asset if you want a stable package filename; otherwise the updater can fall back to GitHub's generated source archive.
Architecture Overview
interplay-services.php: plugin bootstrap and constantssrc/Plugin.php: lightweight service container and boot sequencesrc/Registry/: managed product registrationsrc/Updater/: update orchestration, source drivers, and download proxysrc/Admin/SettingsPage.php: settings UI and product visibilitysrc/License/: current license-key storage and status handling
Notes
- The self-update path is wired through WordPress's native
update_pluginstransient andplugins_apimodal integration. - Public GitHub releases work without the authenticated download proxy.
- Private GitHub release assets still use the proxy path when a PAT is configured.
Releases
12 releases.
These releases are tags only. The author does not attach a packaged zip, so there are no download counts to report.