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
Step 2: Add a trigger
Triggers are events that start your workflow. Every workflow needs at least one trigger.Other trigger types
| Trigger | When it fires |
|---|---|
| Start | When you manually run the workflow |
| Scheduled Trigger | On a schedule (hourly, daily, custom) |
| App Trigger | When something happens in a connected app |
| Webhook | When an external system sends a request |
| AI Lookout | When AI detects a specific condition |
Step 3: Add an action
Actions are the tasks your workflow performs. Let’s add a simple one.
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
You’ve built and run your first CogniAgent workflow.
Bonus: schedule it
Once your workflow works end-to-end, you can run it automatically:- Add a Scheduled Trigger node.
- Connect it to the same Ask AI node.
- Configure when it should run (daily, weekly, cron, etc.), then save.
What’s next?
Now that you understand the basics, explore these topics:Understanding Workflows
Learn about triggers, actions, and logic in depth.
Browse All Nodes
Discover all the nodes available in CogniAgent.
Build a Real Workflow
Follow a complete example with real-world use case.
Glossary
Learn the terminology used throughout CogniAgent.
Common questions
What if my workflow doesn't run?
What if my workflow doesn't run?
Check that all nodes are properly connected. Every node needs an input connection (except triggers) and workflows need at least one trigger.
Can I edit a workflow after running it?
Can I edit a workflow after running it?
Yes. Make your changes and save. The next run will use the updated workflow.
How do I pass data between nodes?
How do I pass data between nodes?
Each node’s output is available to subsequent nodes. See Passing Information Between Nodes for details.
