ZelaxyDocs

Zelaxy Documentation

Complete reference for building AI-powered workflow automations with Zelaxy

Zelaxy Documentation

Zelaxy is an AI-powered workflow automation platform built on a modular, block-based architecture. You connect blocks on a visual canvas — each block performs a specific function — to create powerful automation pipelines without writing code.

How It Works

Every workflow in Zelaxy follows the same pattern:

  1. A trigger or starter initiates the workflow (user input, webhook, schedule, or event)
  2. Blocks process data — AI agents reason, conditions branch, tools fetch or send data
  3. Outputs flow between blocks using {{blockName.outputField}} references
  4. A response block (optional) returns the final result to the user

Core Concepts

ConceptDescription
BlocksSelf-contained processing units you drag onto the canvas. Each has inputs, configuration, and outputs.
ConnectionsLines between blocks that define data flow. A block's output becomes the next block's input.
VariablesReference any block's output with {{blockName.fieldName}} syntax — works everywhere.
ToolsExternal service integrations (Slack, Gmail, GitHub, etc.) that blocks can call.
TriggersEvents that start workflows automatically — webhooks, schedules, or service events.

Example: Customer Support Bot

Here's a simple workflow that auto-responds to support emails:

[Gmail Trigger] → [Agent Block] → [Condition Block] → [Gmail Send] / [Slack Notify]
  1. Gmail Trigger fires when a new email arrives
  2. Agent Block (GPT-4o) analyzes the email: classifies urgency, drafts a reply
  3. Condition Block checks {{agent.content}} for urgency level
  4. If urgent → Slack notifies the team; otherwise → Gmail sends the auto-reply

Block Categories

Core Blocks

The building blocks of every workflow — AI agents, conditions, routers, loops, functions, and more. See all blocks →

Tool Integrations

57+ external service integrations — messaging, email, databases, search, AI/ML, and more. See all tools →

Triggers

Webhooks, schedules, and service events that start workflows automatically. See all triggers →

Tech Stack

  • Framework: Next.js 15 (App Router) + React 19
  • Language: TypeScript (strict mode)
  • Runtime: Bun 1.2+
  • Database: PostgreSQL 17 + pgvector (Drizzle ORM)
  • Auth: better-auth with OAuth 2.0
  • UI: Tailwind CSS + shadcn/ui
  • Real-time: Socket.io
  • Background Jobs: Trigger.dev