Skip to main content

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

Core

Common service transitions including response handlers, error formatting, and utility methods.

Methods:
ResponseValueResponseErrorResponseEntityResponseLastSuccess

converse/speak

Core

Conversation handlers for message processing and response generation.

Methods:
Say

workflow/repositorium

Data

Repository operations for workflow data persistence and retrieval.

Methods:
getsetdeletelist

auth/login

Security

Authentication transitions for user login, token generation, and password validation.

Methods:
CheckPasswordEncryptedIdGenerateToken

parameters/Request

Core

Request parameter parsing and validation for workflow inputs.

Methods:
RequestValidate

assert

Testing

Assertion utilities for testing and validation workflows.

Methods:
IntegerStringBooleanEqual

response

Core

Response formatting and status code handling.

Methods:
TrueFalseResponseErrorResponseLastSuccess

helpers

Utilities

Utility functions for common operations like ID generation and string manipulation.

Methods:
IdFormatParse

Using 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
    }
}

Learn more about WSL →

Create Your Own Package

Extend Kuetix Engine with custom modules and transitions. See the Module System documentation to learn how.