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. |
| inFakt | ✅ Live | Invoicing | Accounting/invoicing adapter with KSeF indirection — issues documents and reads back clearance status. |
| KSeF | ✅ Live | Invoicing | Polish national e-invoicing (KSeF 2.0 API). FA(3) issuance + clearance, KSeF number + UPO, KOR corrections — async submit → poll → UPO model. |
| Subiekt nexo | ✅ Live | Invoicing | Invoicing via the Sfera bridge (Windows service): issue invoices + receipts, corrections, status + PDF. First InvoicingPort adapter. |
| 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. |
| ERLI | ✅ Live | Marketplace | Polish marketplace. OfferManager (create/update offers, push stock, reconcile status, restock on cancellation) + OrderSource (webhook + inbox-poll). The second live marketplace. |
| DPD | ✅ Live | Shipping | DPD Polska — labels and tracking via DPDInfoServices, courier pickup. On the ShippingProviderPort. |
| InPost | ✅ Live | Shipping | ShipX integration: paczkomat + courier + labels + webhooks. Establishes the ShippingProviderPort. |
| PrestaShop | ✅ Live | Shop | Catalog, inventory, full order flow. Ships a companion PrestaShop module (OL Dynamic Carrier) for marketplace-shipping round-trip. |
| WooCommerce | ✅ Live | Shop | Source + destination + inventory. Order ingestion, product publish (incl. bulk), via the WooCommerce REST API. Guided setup wizard. |
| Fakturownia | 📋 Planned | Invoicing | Invoicing adapter. |
| iFirma | 📋 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 on the ShippingProviderPort. |
| FedEx | 📋 Planned | Shipping | Shipping adapter on 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. |
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.
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.