Skip to content

Package Library

The Package Library shows all WASM packages installed on your system. From here you can update packages, uninstall ones you no longer need, and publish your own packages.

Navigate to Library → Packages in the sidebar to view your installed packages.

Each installed package shows:

  • Package name and icon
  • Current version installed
  • Update available indicator (if a newer version exists)
  • Action buttons for update and uninstall
  1. Find the package with an update available
  2. Click the Update button
  3. Wait for the new version to download

If you have multiple packages with updates available:

  1. Click the Update All button at the top
  2. All outdated packages will update sequentially
  1. Find the package you want to remove
  2. Click the Uninstall button
  3. Confirm the removal

After uninstalling:

  • The package’s nodes will no longer appear in the workflow editor
  • Any workflows using those nodes will show errors
  • You can reinstall the package anytime from the Store

Click Publish Package to open the publishing wizard:

  • Click Select File or drag your .wasm file
  • The file will be validated automatically
  • Maximum file size: 50MB

Review and edit your package metadata:

FieldDescription
IDUnique identifier (e.g., my-org.my-package)
NameDisplay name
VersionSemantic version (e.g., 1.0.0)
DescriptionWhat your package does
AuthorYour name or organization
LicenseOpen source license (MIT, Apache-2.0, etc.)
RepositoryGitHub repository URL (optional)
HomepageProject website (optional)
KeywordsSearch terms to help users find your package

Configure what system access your package needs:

  • File System Access: Can read/write files
  • Network Access: Can make HTTP requests
  • Environment Access: Can read environment variables
  • Process Access: Can spawn processes (rarely needed)
  • Review all information
  • Accept the terms of service
  • Click Publish Package

After submission, your package enters the review queue. You’ll be notified when it’s approved or if changes are needed.

Your published packages can have these statuses:

StatusMeaning
Pending ReviewWaiting for admin approval
ActiveApproved and available in the store
Changes RequestedReviewer requested modifications
DeprecatedStill works but not recommended
DisabledRemoved from the registry

For testing packages during development:

  1. Build your WASM module locally
  2. In Library → Packages, use Install from file
  3. Select your local .wasm file
  4. Test the package in your workflows
  5. When ready, publish to the registry

This lets you iterate quickly without going through review for every change.

  • Ensure the file is a valid .wasm module
  • Check file size is under 50MB
  • Verify your internet connection
  • Package ID must be in org.package-name format
  • Version must follow semver (e.g., 1.0.0)
  • Description is required
  • Most packages are reviewed within 48-72 hours
  • Complex packages may take longer
  • Contact support if waiting more than a week