Skip to main content

Quick Start

Get your first automation running in CogniAgent. This guide walks you through creating a simple workflow from scratch.

What you’ll build

A simple workflow you run manually. It starts with a Start trigger and uses an Ask AI action to generate a motivational quote. This teaches you the core concepts: applications, workflows, triggers, and actions.

Prerequisites

  • A CogniAgent account (sign up here)
  • Access to the CogniAgent dashboard

Step 1: Create an application

1

Open the dashboard

Log in to CogniAgent and navigate to the main dashboard.
2

Click Create Application

Find the “Create Application” button and click it.
3

Name your application

Give it a descriptive name like “My First Automation” and click Create.
Use clear, descriptive names for your applications. You’ll thank yourself later when you have multiple automations running.

Step 2: Add a trigger

Triggers are events that start your workflow. Every workflow needs at least one trigger.
1

Open the workflow editor

Click on your new application to open the workflow editor.
2

Add a Start trigger

From the nodes panel, drag a Start trigger onto the canvas. This is the simplest trigger — it runs when you manually start the workflow.

Other trigger types

TriggerWhen it fires
StartWhen you manually run the workflow
Scheduled TriggerOn a schedule (hourly, daily, custom)
App TriggerWhen something happens in a connected app
WebhookWhen an external system sends a request
AI LookoutWhen AI detects a specific condition

Step 3: Add an action

Actions are the tasks your workflow performs. Let’s add a simple one.
1

Add an Ask AI node

Drag an Ask AI action onto the canvas and connect it to your Start trigger.
2

Configure the prompt

In the node settings, enter a prompt like: “Generate a motivational quote for the day.”
The Ask AI node sends your prompt to an AI model and returns the response. You can use this response in subsequent nodes.

Step 4: Run your workflow

1

Save your workflow

Click the Save button to save your changes.
2

Run the workflow

Click the Run button to execute your workflow.
3

View the results

Open the execution history to see what happened. You’ll see each node that ran and its output.
You’ve built and run your first CogniAgent workflow.

Bonus: schedule it

Once your workflow works end-to-end, you can run it automatically:
  1. Add a Scheduled Trigger node.
  2. Connect it to the same Ask AI node.
  3. Configure when it should run (daily, weekly, cron, etc.), then save.
If you want the result sent somewhere, add an App Action node after Ask AI (for example, post to Slack or send an email).

What’s next?

Now that you understand the basics, explore these topics:

Common questions

Check that all nodes are properly connected. Every node needs an input connection (except triggers) and workflows need at least one trigger.
Yes. Make your changes and save. The next run will use the updated workflow.
Each node’s output is available to subsequent nodes. See Passing Information Between Nodes for details.