INTEGRATIONS
What's live today, what's next.
The public scorecard. Honest about gaps — either on the roadmap or intentionally out of scope. This is a living document, not a fixed roadmap.
| Integration | Status | Category | Capability |
|---|---|---|---|
| Anthropic / OpenAI | ✅ Live | AI | Content suggestion router for offer descriptions. Admin-switchable provider. Per-provider encrypted key storage. Anthropic prompt-caching wired in. |
| Allegro | ✅ Live | Marketplace | Full offer suite: lister, reader, creator, status reader, field updater. OAuth, cursor-based event journal. GPSR data, category lookup by EAN, seller policies, safety attachments. |
| PrestaShop | ✅ Live | Shop | Catalog, inventory, full order flow. Ships a companion PrestaShop module (OL Dynamic Carrier) for marketplace-shipping round-trip. |
| Subiekt nexo | 🚧 In progress | Invoicing | Invoicing via Sfera bridge. First InvoicingPort adapter. |
| InPost | 🚧 In progress | Shipping | ShipX integration: paczkomat + courier + labels + webhooks. Establishes the ShippingProviderPort. |
| Fakturownia | 📋 Planned | Invoicing | Invoicing adapter. |
| iFirma | 📋 Planned | Invoicing | Invoicing adapter. |
| inFakt | 📋 Planned | Invoicing | Invoicing adapter. |
| wFirma | 📋 Planned | Invoicing | Invoicing adapter. |
| Amazon | 📋 Planned | Marketplace | Marketplace adapter via SP-API. |
| Bol.com | 📋 Planned | Marketplace | Marketplace adapter. |
| eBay | 📋 Planned | Marketplace | Marketplace adapter via eBay Sell API. |
| Empik Marketplace | 📋 Planned | Marketplace | Marketplace adapter. |
| OLX | 📋 Planned | Marketplace | Marketplace adapter. |
| DHL | 📋 Planned | Shipping | Shipping adapter (pending the ShippingProviderPort). |
| DPD | 📋 Planned | Shipping | Shipping adapter (pending the ShippingProviderPort). |
| FedEx | 📋 Planned | Shipping | Shipping adapter (pending the ShippingProviderPort). |
| GLS | 📋 Planned | Shipping | Shipping adapter. |
| ORLEN Paczka | 📋 Planned | Shipping | Shipping adapter. |
| BigCommerce | 📋 Planned | Shop | Shop adapter via BigCommerce v3 API. |
| Magento | 📋 Planned | Shop | Shop adapter via Magento 2 REST API. |
| Shopify | 📋 Planned | Shop | Shop adapter via Storefront + Admin API. |
| WooCommerce | 📋 Planned | Shop | Shop adapter via WooCommerce REST API. |
CAPABILITY PORTS
What an integration is made of.
Every integration is a set of "ports" — abstractions over what a system can do. An adapter implements only the ports each client actually needs. The set of ports grows as the platform does.
OrderSource
Reads orders from a platform.
OrderProcessor
Writes orders to a platform; status updates; cancellations.
OfferLister
Lists offers on a marketplace.
OfferCreator
Creates new offers from product + category.
OfferReader / OfferStatusReader
Reads offer details, status, and events.
OfferFieldUpdater
Updates specific fields on an existing offer.
CategoryBrowser / CategoryBarcodeMatcher
Browses marketplace categories; matches products by EAN.
CategoryParametersReader
Reads required parameters for a category.
CatalogProductReader
Reads catalog product data (for prefilling listings).
SellerPoliciesReader
Reads saved seller policies (returns, shipping, etc.).
ResponsibleProducerReader
Reads GPSR (EU product-safety) data.
SafetyAttachmentUploader
Uploads product safety attachments.
ShippingProviderPort
Shipping operations (in development with InPost).
InvoicingPort
Invoicing operations (in development with Subiekt nexo).
WRITE AN ADAPTER
Don't see what you need?
The plugin SDK lets you write your own adapter — for a new marketplace, a custom carrier, an internal ERP. The generator scaffolds the structure. The test-kit lets you test against real containers.
pnpm create-adapter my-platform
cd libs/integrations/my-platform
# Implement OrderSource, OfferLister,
# or whatever ports your platform needs.
pnpm test # → real Postgres + Redis
pnpm dev:stack:up # → see it running Missing adapter? Start with the repo.
Code, docs, plugin SDK — all on GitHub.