Every module is open. The registry is yours to extend.

Converged is not a box with sealed internals. Microservices, microfrontends and workflows all live in the repository: read them, fork them, rewrite one for your own machines, contribute it back. The list below is not maintained by hand — it is assembled from the source tree on every build, so a new module appears here exactly when it appears in the code.

Browse the registry

What is in the registry today

github.com/solenopsys/converged
55microservices — data domains and their APIs
35microfrontends — screens mounted at runtime
6workflows — processes on the DAG runtime
11solutions — ready-made module sets

How the openness works

The source tree is the only source of truth

This page is produced by walking the module tree. No list on it is hand-maintained, so the documentation cannot drift from the code: if it drifted, someone deleted a module.

A module is a directory

To add a microservice, create a folder that follows the naming convention and put a README beside it stating its purpose and its ownership boundary. The build picks it up with no edit to any registry.

Boundaries are held by contracts, not by trust

Modules never call each other directly. Everything travels as typed NRPC contracts over the bus, and each microservice owns its own storage volume — a foreign module physically cannot reach another's data.

Anyone can add a module

A machine adapter, a payment integration, an industry-specific workflow, one extra screen — all of it is added the same way the base modules are. What is useful to others goes into the shared registry; what is specific stays in the deployment.

Review, not a free-for-all

Open does not mean unchecked. A module must declare its area of responsibility, respect the architectural boundaries, and never ask for wider access than it needs.

Assembled for your shop

The same modules compose into different profiles: a 3D printing bureau, a CNC job shop, a lab, a network of sites. The solution decides the composition — not a build flag.

01 / SOLUTIONS

Modules ship in sets

A solution bundles microservices, microfrontends and workflows that together cover a whole area of work. The composition and dependencies below are read from solutions.json in the sources.

AI layer12 modulesrequires: Security

Agents, assistants, threads and contexts: the conversational interface to the platform, and autonomous action under the same permissions a human has.

ms-agentmicroservice

Runs autonomous AI-agent workflows and orchestrates multi-step LLM tasks.

modules/microservices/ai/ms-agent
ms-assistantmicroservice

Provides assistant-style AI interactions for end users and internal tools.

modules/microservices/ai/ms-assistant
ms-contextsmicroservice
modules/microservices/ai/ms-contexts
ms-callsmicroservice

Provides call-related communication workflows and call session handling.

modules/microservices/communications/ms-calls
ms-chatsmicroservice

Generates and serves chart-oriented communication or reporting artifacts.

modules/microservices/communications/ms-chats
ms-threadsmicroservice

Manages threaded conversations and related message context.

modules/microservices/communications/ms-threads
mf-agentsmicrofrontend

Owns AI Agents UI: agent catalog/list pages, agent config forms, run/trigger controls, and execution status panels.

modules/microfrontends/ai/mf-agents
mf-assistantsmicrofrontend

Owns Assistants UI: assistant chat/workspace views, assistant configuration panels, and assistant session interaction components.

modules/microfrontends/ai/mf-assistants
mf-contextsmicrofrontend
modules/microfrontends/ai/mf-contexts
mf-callsmicrofrontend

Owns Calls UI: call session screens, call controls, call participant/status panels, and call history presentation widgets.

modules/microfrontends/communications/mf-calls
mf-chatsmicrofrontend

Owns Charts UI: reusable communication/report chart widgets, chart configuration controls, and chart drill-down interactions.

modules/microfrontends/communications/mf-chats
mf-threadsmicrofrontend

Owns Threads UI: threaded conversation lists, thread detail panels, reply composers, and thread state indicators.

modules/microfrontends/communications/mf-threads
Analytics7 modulesrequires: Security

Logs, telemetry, counters and resource usage: platform observability and the metering behind billing.

ms-countersmicroservice
modules/microservices/analytics/ms-counters
ms-logsmicroservice

Collects and stores operational logs for platform services.

modules/microservices/analytics/ms-logs
ms-telemetrymicroservice

Captures telemetry events and technical health signals from services.

modules/microservices/analytics/ms-telemetry
ms-usagemicroservice

Tracks usage counters and consumption metrics for product features.

modules/microservices/analytics/ms-usage
mf-logsmicrofrontend

Owns Logs UI: log stream/table views, log search/filter controls, and log detail drill-down panels for operators.

modules/microfrontends/analytics/mf-logs
mf-telemetrymicrofrontend

Owns Telemetry UI: technical signal views, metrics graphs, event timelines, and service-health visual components.

modules/microfrontends/analytics/mf-telemetry
mf-usagemicrofrontend

Owns Usage UI: feature-consumption charts, usage counters, quota/limit displays, and usage period comparison screens.

modules/microfrontends/analytics/mf-usage
Content8 modulesrequires: Security

Structures, markdown, galleries, landings and documentation — everything public pages and internal handbooks are assembled from.

ms-galerymicroservice

Manages gallery-style media collections and related metadata.

modules/microservices/content/ms-galery
ms-markdownmicroservice

Processes markdown content, rendering/transformation workflows, and related APIs.

modules/microservices/content/ms-markdown
ms-structmicroservice

Builds and serves structured content representations used by other services.

modules/microservices/content/ms-struct
mf-docsmicrofrontend

Owns Docs UI: document browsing, document detail views, editing/preview interfaces, and documentation navigation components.

modules/microfrontends/content/mf-docs
mf-galerymicrofrontend

Owns Gallery UI: media gallery grids, media preview/detail views, gallery organization controls, and gallery filtering/search.

modules/microfrontends/content/mf-galery
mf-landingmicrofrontend

Owns Landing UI: landing pages, hero/section composition, and public-facing content presentation blocks.

modules/microfrontends/content/mf-landing
mf-markdownmicrofrontend

Owns Markdown UI: markdown editor surfaces, live preview panels, markdown content formatting controls, and publish-ready views.

modules/microfrontends/content/mf-markdown
mf-structmicrofrontend

Owns Structured Content UI: schema-driven content forms, structured block editors, and structured content preview/validation views.

modules/microfrontends/content/mf-struct
Requests and files6 modules

Intake of requests, file storage, unpacking and model analysis, together with the slicing and CAM processors.

ms-requestsmicroservice

Processes service/business requests submitted by users or organizations.

modules/microservices/business/ms-requests
ms-filesmicroservice

Provides file metadata APIs and file-management workflows.

modules/microservices/data/ms-files
ms-storemicroservice

Implements generic storage-domain operations for service data.

modules/microservices/data/ms-store
mf-requestsmicrofrontend

Owns Requests UI: request inbox/list screens, request detail/timeline views, and request status/action forms.

modules/microfrontends/business/mf-requests
Security5 modules

Identity, authentication, OAuth and the access model. The base almost everything else rests on.

ms-accessmicroservice

Manages access-control rules and permission checks.

modules/microservices/sequrity/ms-access
ms-authmicroservice

Handles authentication workflows and credential/session validation.

modules/microservices/sequrity/ms-auth
ms-identitymicroservice

Maintains identity profiles and identity-linked core attributes.

modules/microservices/sequrity/ms-identity
ms-oauthmicroservice

Implements OAuth-specific authorization flows and provider handshakes.

modules/microservices/sequrity/ms-oauth
mf-authmicrofrontend

Owns Auth UI: sign-in/sign-up/reset flows, session/security screens, and authentication guard/redirect UX behavior.

modules/microfrontends/sequrity/mf-auth
Club core3 modules

Site installation and its parameters: what every other product-layer solution needs before it can come up.

ms-installmicroservice
modules/microservices/ms-install
Companies2 modulesrequires: Club core

Member records, their details and relations — the directory that geography and sites refer to.

ms-companiesmicroservice

Manages company entities and organization-related business metadata.

modules/microservices/ms-companies
mf-companiesmicrofrontend

Owns the Companies UI: company list/grid views, company profile pages, create/edit company forms, and company-specific filters/search.

modules/microfrontends/mf-companies
Geography4 modulesrequires: Companies

Countries, regions and map markers: where members are, and how that shows up in the catalogue.

ms-geomicroservice

Provides geospatial and timezone-related domain functionality.

modules/microservices/ms-geo
ms-markermicroservice

Manages marker/tag-like entities used for labeling and grouping.

modules/microservices/ms-marker
mf-geomicrofrontend

Owns Geo UI features: map-based views, location selectors, geo lookup panels, and timezone/location presentation widgets.

modules/microfrontends/mf-geo
mf-markermicrofrontend

Owns Marker UI: tag/marker management tables, create/edit marker dialogs, and marker assignment interfaces used in the portal.

modules/microfrontends/mf-marker
Mailing2 modulesrequires: Club core

Email to club members: lists, sending, and delivery accounting.

ms-mailingmicroservice

Handles mailing workflows, templates, and outbound email orchestration.

modules/microservices/ms-mailing
mf-mailingmicrofrontend

Owns Mailing UI: campaign/message compose screens, template pickers, preview panels, recipient selection UI, and send/status controls.

modules/microfrontends/mf-mailing
Sites2 modulesrequires: Companies

Members' physical production sites: addresses, composition, and the company each belongs to.

ms-placesmicroservice

Manages places/location entities and place-specific metadata.

modules/microservices/ms-places
mf-placesmicrofrontend

Owns Places UI: place directory pages, place detail panels, place edit forms, and place search/filter controls.

modules/microfrontends/mf-places
Sales1 modulerequires: Club core

The storefront and request handling on the club side.

mf-salesmicrofrontend

Owns Sales UI: sales pipeline views, opportunity/order lists, sales detail pages, and sales KPI widgets specific to this domain.

modules/microfrontends/mf-sales

A dependency means the solution will not come up without it: enable AI and you get security with it.

02 / REGISTRY

Every module, by domain

The full list of what the repository holds. A domain is a folder in the source tree; a module's purpose is the first paragraph of its README.

AI and agents8 modules
mf-agentsmicrofrontend

Owns AI Agents UI: agent catalog/list pages, agent config forms, run/trigger controls, and execution status panels.

modules/microfrontends/ai/mf-agents
mf-assistantsmicrofrontend

Owns Assistants UI: assistant chat/workspace views, assistant configuration panels, and assistant session interaction components.

modules/microfrontends/ai/mf-assistants
mf-contextsmicrofrontend
modules/microfrontends/ai/mf-contexts
mf-functionsmicrofrontend
modules/microfrontends/ai/mf-functions
ms-agentmicroservice

Runs autonomous AI-agent workflows and orchestrates multi-step LLM tasks.

modules/microservices/ai/ms-agent
ms-assistantmicroservice

Provides assistant-style AI interactions for end users and internal tools.

modules/microservices/ai/ms-assistant
ms-contextsmicroservice
modules/microservices/ai/ms-contexts
ms-functionsmicroservice
modules/microservices/ai/ms-functions
Analytics and telemetry9 modules
mf-dasboardsmicrofrontend

Owns Analytics Dashboard UI: overview dashboards, KPI cards, trend charts, and dashboard-level filters/date ranges.

modules/microfrontends/analytics/mf-dasboards
mf-logsmicrofrontend

Owns Logs UI: log stream/table views, log search/filter controls, and log detail drill-down panels for operators.

modules/microfrontends/analytics/mf-logs
mf-telemetrymicrofrontend

Owns Telemetry UI: technical signal views, metrics graphs, event timelines, and service-health visual components.

modules/microfrontends/analytics/mf-telemetry
mf-usagemicrofrontend

Owns Usage UI: feature-consumption charts, usage counters, quota/limit displays, and usage period comparison screens.

modules/microfrontends/analytics/mf-usage
ms-countersmicroservice
modules/microservices/analytics/ms-counters
ms-dashboardmicroservice
modules/microservices/analytics/ms-dashboard
ms-logsmicroservice

Collects and stores operational logs for platform services.

modules/microservices/analytics/ms-logs
ms-telemetrymicroservice

Captures telemetry events and technical health signals from services.

modules/microservices/analytics/ms-telemetry
ms-usagemicroservice

Tracks usage counters and consumption metrics for product features.

modules/microservices/analytics/ms-usage
Automation and orchestration7 modules
mf-dagmicrofrontend

Owns DAG Automation UI: workflow graph editor/viewer, node/link configuration dialogs, and run-status monitoring screens.

modules/microfrontends/automation/mf-dag
mf-shedullermicrofrontend

Owns Scheduler UI: recurring job configuration pages, schedule calendars/tables, and job run history/next-run indicators.

modules/microfrontends/automation/mf-sheduller
mf-webhooksmicrofrontend

Owns Webhooks UI: webhook endpoint list/forms, event subscription settings, delivery history, and retry controls.

modules/microfrontends/automation/mf-webhooks
ms-dagmicroservice

Executes DAG-based automation pipelines and dependency-aware jobs.

modules/microservices/automation/ms-dag
ms-kubernetesmicroservice
modules/microservices/automation/ms-kubernetes
ms-shedullermicroservice

Stores and serves automation schedule data and execution history.

modules/microservices/automation/ms-sheduller
ms-webhooksmicroservice

Receives and dispatches webhook events for external integrations.

modules/microservices/automation/ms-webhooks
Business domain11 modules
mf-ordersmicrofrontend
modules/microfrontends/business/mf-orders
mf-requestsmicrofrontend

Owns Requests UI: request inbox/list screens, request detail/timeline views, and request status/action forms.

modules/microfrontends/business/mf-requests
ms-billingmicroservice

Handles billing domain operations such as plans, charges, and billing state.

modules/microservices/business/ms-billing
ms-equipmentmicroservice

Manages equipment entities, metadata, and related lifecycle operations.

modules/microservices/business/ms-equipment
ms-eventsmicroservice
modules/microservices/business/ms-events
ms-financemicroservice
modules/microservices/business/ms-finance
ms-ordersmicroservice
modules/microservices/business/ms-orders
ms-requestsmicroservice

Processes service/business requests submitted by users or organizations.

modules/microservices/business/ms-requests
ms-reviewsmicroservice

Stores and manages user or partner reviews and moderation-related metadata.

modules/microservices/business/ms-reviews
ms-salesmicroservice

Handles sales-domain entities, sales flows, and related metrics preparation.

modules/microservices/business/ms-sales
ms-staffmicroservice

Manages staff records, roles, and staff-centric domain operations.

modules/microservices/business/ms-staff
Club (product layer)14 modules
mf-companiesmicrofrontend

Owns the Companies UI: company list/grid views, company profile pages, create/edit company forms, and company-specific filters/search.

modules/microfrontends/mf-companies
mf-geomicrofrontend

Owns Geo UI features: map-based views, location selectors, geo lookup panels, and timezone/location presentation widgets.

modules/microfrontends/mf-geo
mf-mailingmicrofrontend

Owns Mailing UI: campaign/message compose screens, template pickers, preview panels, recipient selection UI, and send/status controls.

modules/microfrontends/mf-mailing
mf-markermicrofrontend

Owns Marker UI: tag/marker management tables, create/edit marker dialogs, and marker assignment interfaces used in the portal.

modules/microfrontends/mf-marker
mf-placesmicrofrontend

Owns Places UI: place directory pages, place detail panels, place edit forms, and place search/filter controls.

modules/microfrontends/mf-places
mf-salesmicrofrontend

Owns Sales UI: sales pipeline views, opportunity/order lists, sales detail pages, and sales KPI widgets specific to this domain.

modules/microfrontends/mf-sales
ms-companiesmicroservice

Manages company entities and organization-related business metadata.

modules/microservices/ms-companies
ms-geomicroservice

Provides geospatial and timezone-related domain functionality.

modules/microservices/ms-geo
ms-installmicroservice
modules/microservices/ms-install
ms-mailingmicroservice

Handles mailing workflows, templates, and outbound email orchestration.

modules/microservices/ms-mailing
ms-markermicroservice

Manages marker/tag-like entities used for labeling and grouping.

modules/microservices/ms-marker
ms-placesmicroservice

Manages places/location entities and place-specific metadata.

modules/microservices/ms-places
Communications10 modules
mf-callsmicrofrontend

Owns Calls UI: call session screens, call controls, call participant/status panels, and call history presentation widgets.

modules/microfrontends/communications/mf-calls
mf-chatsmicrofrontend

Owns Charts UI: reusable communication/report chart widgets, chart configuration controls, and chart drill-down interactions.

modules/microfrontends/communications/mf-chats
mf-communitymicrofrontend

Owns Community UI: community feed/list pages, community post/detail views, and moderation/community action controls.

modules/microfrontends/communications/mf-community
mf-threadsmicrofrontend

Owns Threads UI: threaded conversation lists, thread detail panels, reply composers, and thread state indicators.

modules/microfrontends/communications/mf-threads
ms-callsmicroservice

Provides call-related communication workflows and call session handling.

modules/microservices/communications/ms-calls
ms-chatsmicroservice

Generates and serves chart-oriented communication or reporting artifacts.

modules/microservices/communications/ms-chats
ms-communitymicroservice

Supports community-level interactions and social communication features.

modules/microservices/communications/ms-community
ms-notifymicroservice

Coordinates notification workflows across channels.

modules/microservices/communications/ms-notify
ms-resonusmicroservice
modules/microservices/communications/ms-resonus
ms-threadsmicroservice

Manages threaded conversations and related message context.

modules/microservices/communications/ms-threads
Content and documents14 modules
mf-classifiermicrofrontend
modules/microfrontends/content/mf-classifier
mf-docsmicrofrontend

Owns Docs UI: document browsing, document detail views, editing/preview interfaces, and documentation navigation components.

modules/microfrontends/content/mf-docs
mf-galerymicrofrontend

Owns Gallery UI: media gallery grids, media preview/detail views, gallery organization controls, and gallery filtering/search.

modules/microfrontends/content/mf-galery
mf-landingmicrofrontend

Owns Landing UI: landing pages, hero/section composition, and public-facing content presentation blocks.

modules/microfrontends/content/mf-landing
mf-markdownmicrofrontend

Owns Markdown UI: markdown editor surfaces, live preview panels, markdown content formatting controls, and publish-ready views.

modules/microfrontends/content/mf-markdown
mf-scriptsmicrofrontend
modules/microfrontends/content/mf-scripts
mf-staticmicrofrontend
modules/microfrontends/content/mf-static
mf-structmicrofrontend

Owns Structured Content UI: schema-driven content forms, structured block editors, and structured content preview/validation views.

modules/microfrontends/content/mf-struct
ms-classifiermicroservice

Classifies incoming content/items into categories, labels, or intents.

modules/microservices/content/ms-classifier
ms-galerymicroservice

Manages gallery-style media collections and related metadata.

modules/microservices/content/ms-galery
ms-markdownmicroservice

Processes markdown content, rendering/transformation workflows, and related APIs.

modules/microservices/content/ms-markdown
ms-scriptsmicroservice
modules/microservices/content/ms-scripts
ms-staticmicroservice
modules/microservices/content/ms-static
ms-structmicroservice

Builds and serves structured content representations used by other services.

modules/microservices/content/ms-struct
Model conversion1 module
ms-modelconvertormicroservice

Converts models/data formats between internal and external representations.

modules/microservices/convertors/ms-modelconvertor
Files and storage4 modules
mf-dumpsmicrofrontend

Owns Data Dumps UI: export/dump creation forms, dump history tables, download actions, and dump status/progress indicators.

modules/microfrontends/data/mf-dumps
ms-dumpsmicroservice

Creates and manages data dumps/export snapshots.

modules/microservices/data/ms-dumps
ms-filesmicroservice

Provides file metadata APIs and file-management workflows.

modules/microservices/data/ms-files
ms-storemicroservice

Implements generic storage-domain operations for service data.

modules/microservices/data/ms-store
Message delivery providers4 modules
ms-pushmicroservice

Provider adapter for push-notification delivery.

modules/microservices/providers/ms-push
ms-sesmicroservice

Provider adapter for AWS SES email delivery.

modules/microservices/providers/ms-ses
ms-smsmicroservice

Provider adapter for SMS delivery channels.

modules/microservices/providers/ms-sms
ms-smtpmicroservice

Provider adapter for SMTP-based email delivery.

modules/microservices/providers/ms-smtp
Access and security8 modules
mf-authmicrofrontend

Owns Auth UI: sign-in/sign-up/reset flows, session/security screens, and authentication guard/redirect UX behavior.

modules/microfrontends/sequrity/mf-auth
mf-secretsmicrofrontend
modules/microfrontends/sequrity/mf-secrets
ms-accessmicroservice

Manages access-control rules and permission checks.

modules/microservices/sequrity/ms-access
ms-authmicroservice

Handles authentication workflows and credential/session validation.

modules/microservices/sequrity/ms-auth
ms-environmentmicroservice
modules/microservices/sequrity/ms-environment
ms-identitymicroservice

Maintains identity profiles and identity-linked core attributes.

modules/microservices/sequrity/ms-identity
ms-oauthmicroservice

Implements OAuth-specific authorization flows and provider handshakes.

modules/microservices/sequrity/ms-oauth
ms-secretsmicroservice
modules/microservices/sequrity/ms-secrets
Processes and workflows6 modules

A module need not belong to any solution: it exists, and you can wire it in by hand or fold it into a solution of your own.