The digest proves file identity
A matching SHA-256 shows that the downloaded bytes match the package whose digest you entered. It catches corruption and unexpected replacement between publication and installation.
Extending the platform
Flirexa can load community extensions, payment integrations, and license-gated commercial capabilities. The same flexibility that makes plugins useful also means an operator must understand what code is being trusted.
Three plugin boundaries
Community extensions use the normal plugin manifest and declare the community feature. They can add integrations or operator-specific workflows and may load on the FREE tier.
Payment integrations implement the provider contract used to create invoices and confirm settlement. They must never grant service because a customer returned to a success URL. Access changes only after provider-confirmed settlement.
Paid capabilities use the same discovery model but require a feature present in the signed license. The repository contains the integration boundary while protected commercial implementation is delivered through the licensed release pipeline.
Install by URL
The admin panel accepts a versioned .tar.gz URL and a published SHA-256 digest. It downloads the package, checks the digest, applies archive safety limits, and installs into the plugin directory.
A matching SHA-256 shows that the downloaded bytes match the package whose digest you entered. It catches corruption and unexpected replacement between publication and installation.
A harmful package can have a perfectly valid digest. Review the source, publisher, requested configuration, outbound connections, and data access before trusting it.
The installer rejects path traversal and oversized archive entries so a package cannot simply write arbitrary files outside its installation boundary through crafted paths.
A backend plugin runs inside the application environment. Treat it like server code, not a browser theme. Back up first and test on a non-production installation.
Operator checklist
Flirexa does not currently operate a public plugin marketplace. A package appearing in a repository is not an endorsement by Flirexa.
For developers
A good plugin owns a narrow responsibility, declares its feature requirement, uses namespaced routes, and does not phone home without the operator's explicit consent.
Use a clear manifest, a stable route prefix, and documented environment variables. Avoid hidden dependencies on private operator state.
Payment callbacks need signature verification, idempotency, amount and currency checks, and provider settlement before access is granted.
Tag releases, attach the exact archive, publish its digest, document migrations, and explain how to roll back.