SifrBolt — Spark
WordPress command deck for SifrBolt — Spark features.
by SifrBolt · github.com/ecominmotion/sifrbolt-lite · 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/ecominmotion/sifrbolt-lite/archive/refs/heads/main.zipSifrBolt — Spark (Lite)
A lightweight WordPress command deck: page cache drop-in, autoload inspector, transients janitor, cron manager, Redis hints — telemetry OFF by default.
Description
SifrBolt — Spark gives operators a clean control deck:
- Page cache drop-in (
advanced-cache.php) with WooCommerce-aware bypasses and CalmSwitch integration. Opt-in from the Runway screen. - Autoload Inspector to review heavy
autoload=yesoptions, with JSON backup/restore. - Transients Janitor (weekly clean via WordPress APIs).
- Cron Manager (toggle
DISABLE_WP_CRONand guidance for real cron). - Redis capability hints (no client required).
- Telemetry controls that are OFF by default. When enabled, only aggregated Core Web Vitals buckets are sent; no URLs or content are collected.
This plugin does not install software from outside WordPress.org. Upgrade links point to external documentation only.
Requirements
- WordPress 6.2+
- PHP 8.1+
Privacy
By default, this plugin does not transmit any data. If you explicitly enable telemetry, it sends only anonymized, bucketed performance counters (no URLs/HTML/user data). You can disable telemetry at any time from the Command Deck.
Installation
- Upload the
sifrboltfolder to/wp-content/plugins/or install via “Add New Plugin”. - Activate the plugin.
- (Optional) From SifrBolt — Spark → Runway, enable the page cache drop-in (advanced-cache). This writes
wp-content/advanced-cache.phpand can be turned off at any time.
Frequently Asked Questions
Does this plugin install or update code from outside WordPress.org?
No. It uses WordPress APIs and offers links to documentation for optional upgrades.
What happens on deactivation/uninstall?
If the advanced-cache drop-in was created by SifrBolt, it’s removed on deactivate/uninstall. Scheduled events, mu-plugin bridges, cache directories, and plugin options are also cleaned up.
Screenshots
- Command Deck overview
- Autoload Inspector
- Transients Janitor
- Cron Manager
Changelog
0.1.2
- Adds autonomous release gates for syntax, PHPUnit, WordPress smoke, WooCommerce smoke, WordPress 6.9/PHP 8.4 smoke, and WordPress Plugin Check.
- Tightens WordPress.org package hygiene, direct-access protection, and admin input handling.
0.1.1
- First public submission: cache drop-in (opt-in), autoload inspector, transients janitor, cron manager, Redis hints, telemetry (off by default).
Upgrade Notice
0.1.2
Release-readiness hardening and automated compatibility checks.
0.1.1
Initial release.
Development
PHPCS baseline lives in phpcs.xml.dist and targets the WordPress Coding Standards.
To lint locally:
- Install PHPCS (for example
composer global require squizlabs/php_codesnifferorbrew install php-code-sniffer). - From the plugin root run
phpcs --standard=phpcs.xml.dist .. - To auto-fix safe sniffs run
phpcbf --standard=phpcs.xml.dist ..