Quick start

Build a working automation in about ten minutes.

This one is deliberately self-contained — it does not need any of your systems connected, so you can see how a workflow is put together before wiring it to anything real.


Step 1: Sign in

  1. Go to flow.work.studio
  2. Sign in with your email or SSO provider
  3. You'll land on the Dashboard

Step 2: Create Your First Automation

Open the Automations Section

  1. Click Automations in the left sidebar
  2. Click the + New Automation button

Choose a Trigger

Every automation starts with a trigger — the event that kicks off your workflow.

Trigger Type Description Example
Manual User clicks Run On-demand tasks
Webhook External app sends data Stripe payment received
Schedule Time-based Every Monday at 9 AM
Slack Slack message/command Slash command executed
Teams Microsoft Teams event Message received

For this tutorial, select Manual trigger.

Add Steps

Steps are the building blocks of your automation.

  1. Click the + button below your trigger
  2. Select VARIABLE to set a greeting
  3. Configure:
    • Name: greeting
    • Value: Hello from Flow!
  4. Click + again
  5. Select FUNCTION to process the greeting
  6. Add this code:

    const message = context.var.greeting;
    console.log("Automation executed:", message);
    return { message, timestamp: new Date().toISOString() };

Save and Test

  1. Click Save in the top-right
  2. Click Test to run your automation
  3. View the output in the test panel!

Step 3: Explore More Features

Now that you've built your first automation, here is what to explore next:

Connect to external services like Slack, Salesforce, or databases.

Set Up Connections →

Use CONDITION for branching, LOOP for iteration, and FUNCTION for custom code.

Learn About Steps →

Track execution history and debug issues.

View Automations →


What's Next?

Deep Dive
Build Real Workflows
Connect Apps

Ready to go deeper? The concepts behind Flow.

Concepts →

Follow step-by-step tutorials for common use cases.

Tutorials →

Set up integrations with your existing tools.

Connections →


Need help? Email support@work.studio.