feat: improved WASM module architecture into a single module interface#212
Merged
jeroenrinzema merged 6 commits intomainfrom Apr 24, 2026
Merged
feat: improved WASM module architecture into a single module interface#212jeroenrinzema merged 6 commits intomainfrom
jeroenrinzema merged 6 commits intomainfrom
Conversation
IamKirbki
requested changes
Apr 14, 2026
Contributor
IamKirbki
left a comment
There was a problem hiding this comment.
The requested comments are underneath
Refactor WASM module build and registry to use a unified internal/integrations/modules directory for both providers and actions. Update Makefiles, Dockerfile, and CI to match. Introduce unified IntegrationManifest and Capability types. Update provider modules to declare capabilities. Refactor action and provider registries to use the new integration loader. Update code and tests for new structure.
35d2bcf to
5fcda4e
Compare
Replace HasProvider and HasActions with ProviderSpec and ActionsSpec checks. Update related logic and tests accordingly. Also unify "Add member" aria-labels in organization members view.
- Move all provider and action modules to a flat `modules/` directory - Update Makefiles and import paths to match new structure - Update integration registry to support unified loading for actions and providers - Update WASM registry facades for providers and actions - Update test WASM binaries - Update router and integration setup in console for new module paths - Update documentation and references to reflect new module locations
…patibility fallbacks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Right now we have WASM modules for actions and providers. This PR combines these modules into a simplified architecture where we could expose multiple capabilities from within a single module.