Skip to content

User Guide

Welcome to the Atomemo User Guide! This guide will help you quickly master the platform's core features, from creating your first AI Agent to building complex automation workflows.

Quick Navigation

Getting Started

Workflow Building

Trigger Nodes

Entry points for workflows, defining when to start execution:

Action Nodes

Execute specific operation tasks:

Tool Nodes

Provide callable tool capabilities for AI Agents:

AI Agent Development

Team Collaboration

  • Permission Management (In Development) - Configure team member access rights

Core Concepts

Workflows

A workflow is an automated process composed of multiple nodes. Each workflow includes:

  • Triggers: Define when the workflow starts
  • Nodes: Execute specific operations
  • Connections: Define data flow direction

Nodes

Nodes are the basic building blocks of workflows, categorized as:

  • Trigger: Start the workflow
  • Action: Execute specific tasks
  • Transform: Process data
  • Control: Flow control

Expressions

Expressions are used to dynamically access and process data:

javascript
// Access data from previous node
$json.userId

// Access output from specific node
$node["Webhook"].json.email

// Use built-in functions
$now()
$randomInt(1, 100)

Best Practices

1. Organize Nodes Properly

  • Use clear node naming
  • Add comments for complex logic
  • Group related nodes together

2. Error Handling

  • Add error catching nodes
  • Configure retry strategies
  • Log errors properly

3. Performance Optimization

  • Avoid unnecessary node executions
  • Use conditional branches to reduce computation
  • Set reasonable timeout values

4. Security

  • Use credential management for sensitive information
  • Validate external input data
  • Limit API call frequency

Next Steps

Need Help?