Package Manager
Browse and search available packages and modules for Kuetix Engine. Each package provides transition handlers that can be used in your WSL workflows.
Showing 8 of 8 packages
services/common
CoreCommon service transitions including response handlers, error formatting, and utility methods.
ResponseValueResponseErrorResponseEntityResponseLastSuccessconverse/speak
CoreConversation handlers for message processing and response generation.
Sayworkflow/repositorium
DataRepository operations for workflow data persistence and retrieval.
getsetdeletelistauth/login
SecurityAuthentication transitions for user login, token generation, and password validation.
CheckPasswordEncryptedIdGenerateTokenparameters/Request
CoreRequest parameter parsing and validation for workflow inputs.
RequestValidateassert
TestingAssertion utilities for testing and validation workflows.
IntegerStringBooleanEqualresponse
CoreResponse formatting and status code handling.
TrueFalseResponseErrorResponseLastSuccesshelpers
UtilitiesUtility functions for common operations like ID generation and string manipulation.
IdFormatParseUsing Packages in WSL
Import packages in your WSL workflow files:
module my_workflow
import services/common
import auth/login
workflow my_workflow {
start: Begin
state Begin {
action services/common/response.ResponseValue(message: "Hello", statusCode: 200)
end ok
}
}Create Your Own Package
Extend Kuetix Engine with custom modules and transitions. See the Module System documentation to learn how.