Marketplace
What it’ll do
Section titled “What it’ll do”A first-party registry hosted at marketplace.promptgate.dev distributing signed PromptGate plugins:
- Provider plugins — new ProviderContract implementations (think: a future
@promptgate/provider-replicatefor Replicate, etc.) - Guardrail plugins — additional input checks beyond the four built-ins
- Alert plugins — notification sinks (Slack, PagerDuty, custom webhooks)
- OAuth plugins — pre-baked OAuth client templates (similar to today’s Quick-Fill presets but discoverable)
Plugins ship as signed packages (@promptgate/...). The signature is verified at install time so you can’t accidentally pick up a malicious lookalike.
Installation flow (planned)
Section titled “Installation flow (planned)”docker compose exec app php artisan plugin:install @promptgate/provider-replicateThis will:
- Download the package from
marketplace.promptgate.dev. - Verify the signature against PromptGate’s signing root.
- Register the plugin’s services with the container.
- Run any plugin-specific migrations.
- Surface the plugin in the admin UI.
Uninstall:
php artisan plugin:uninstall @promptgate/provider-replicateWhy a marketplace?
Section titled “Why a marketplace?”PromptGate ships with 8 providers and 4 guardrails. There’s a long tail of less-common providers, niche guardrails (e.g. industry-specific PII detectors), alert sinks, and OAuth presets that don’t justify in-tree inclusion but make sense as community packages.
A marketplace gives:
- Discoverability — one place to find what’s out there.
- Signing — trust by default; reject unsigned packages.
- Versioning — pin a specific version per deployment.
- Updates — easy upgrade path with rollback.
Until then
Section titled “Until then”You can still extend PromptGate by dropping classes into app/Services/... and registering them in the appropriate container — see Adding a Provider for the pattern. That works for in-tree forks; the marketplace adds the distribution + signing pieces.
Tracking
Section titled “Tracking”- This page will update once the marketplace ships.
- The dev story for plugin authors is at Developing Plugins.
© Akyros Labs LLC. All rights reserved.