> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cogniagent.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Quick Start

> Build your first CogniAgent workflow step by step

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](https://cogniagent.ai))
* Access to the CogniAgent dashboard

## Step 1: Create an application

<Steps>
  <Step title="Open the dashboard">
    Log in to CogniAgent and navigate to the main dashboard.

    <Frame caption="The Applications dashboard — each row is one workflow.">
      <img src="https://mintcdn.com/glorium/eqWkhSfBUec9afZU/images/applications/quickstart-applications-dashboard.png?fit=max&auto=format&n=eqWkhSfBUec9afZU&q=85&s=5f6802c477bbb92099d23d16399d8306" alt="Applications dashboard" width="1440" height="1200" data-path="images/applications/quickstart-applications-dashboard.png" />
    </Frame>
  </Step>

  <Step title="Click Create Application">
    Find the "Create Application" button and click it.
  </Step>

  <Step title="Name your application">
    Give it a descriptive name like "My First Automation" and click Create. You'll land on a blank canvas.

    <Frame caption="A new application opens on an empty canvas. Use the Add Step button in the bottom toolbar to add your first node.">
      <img src="https://mintcdn.com/glorium/eqWkhSfBUec9afZU/images/applications/app-workflow-blank-canvas.png?fit=max&auto=format&n=eqWkhSfBUec9afZU&q=85&s=ca3330a48bee3df03e0ca3050205201f" alt="Empty workflow canvas" width="1440" height="1200" data-path="images/applications/app-workflow-blank-canvas.png" />
    </Frame>
  </Step>
</Steps>

<Tip>
  Use clear, descriptive names for your applications. You'll thank yourself later when you have multiple automations running.
</Tip>

## Step 2: Add a trigger

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

<Steps>
  <Step title="Open the workflow editor">
    Click on your new application to open the workflow editor.
  </Step>

  <Step title="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.
  </Step>
</Steps>

### 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 Trigger**        | When AI detects a specific condition      |

## Step 3: Add an action

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

<Steps>
  <Step title="Add an Ask AI node">
    Drag an **Ask AI** action onto the canvas and connect it to your Start trigger.
  </Step>

  <Step title="Configure the prompt">
    In the node settings, enter a prompt like: "Generate a motivational quote for the day."
  </Step>
</Steps>

The Ask AI node sends your prompt to an AI model and returns the response. You can use this response in subsequent nodes.

<Frame caption="A minimal workflow: Start trigger wired to a single Ask AI node.">
  <img src="https://mintcdn.com/glorium/eqWkhSfBUec9afZU/images/applications/quickstart-workflow-canvas.png?fit=max&auto=format&n=eqWkhSfBUec9afZU&q=85&s=0f939cb89ab9ad0d7476bf9f3781699d" alt="Quickstart workflow canvas" width="1440" height="1200" data-path="images/applications/quickstart-workflow-canvas.png" />
</Frame>

## Step 4: Run your workflow

<Steps>
  <Step title="Save your workflow">
    Click the Save button to save your changes.
  </Step>

  <Step title="Run the workflow">
    Click the Run button to execute your workflow. A small dialog confirms the start — click **Start**.

    <Frame caption="The Run dialog — for the manual Start trigger there's nothing to configure, just press Start.">
      <img src="https://mintcdn.com/glorium/eqWkhSfBUec9afZU/images/applications/quickstart-run-dialog.png?fit=max&auto=format&n=eqWkhSfBUec9afZU&q=85&s=007a12287628dcd8a0e81f1be43cc59f" alt="Run dialog" width="1440" height="1200" data-path="images/applications/quickstart-run-dialog.png" />
    </Frame>
  </Step>

  <Step title="View the results">
    Open the execution history to see what happened. You'll see each node that ran and its output.

    <Frame caption="The events panel shows each node that ran, its status, and the time it took.">
      <img src="https://mintcdn.com/glorium/eqWkhSfBUec9afZU/images/applications/quickstart-execution-history.png?fit=max&auto=format&n=eqWkhSfBUec9afZU&q=85&s=0ba44208306c977282f2ad2fbd3755bd" alt="Execution events panel" width="1440" height="1200" data-path="images/applications/quickstart-execution-history.png" />
    </Frame>
  </Step>
</Steps>

<Check>
  You've built and run your first CogniAgent workflow.
</Check>

## Bonus: schedule it

Once your workflow works end-to-end, you can run it automatically:

1. Add a [Scheduled Trigger](/nodes/triggers/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](/nodes/actions/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:

<CardGroup cols={2}>
  <Card title="Connect MCP" icon="plug" href="/mcp-server">
    Skip the dashboard — let Claude or Cursor build and operate workflows for you by chatting.
  </Card>

  <Card title="Understanding Workflows" icon="diagram-project" href="/applications/define-workflow">
    Learn about triggers, actions, and logic in depth.
  </Card>

  <Card title="Browse All Nodes" icon="cubes" href="/nodes/overview">
    Discover all the nodes available in CogniAgent.
  </Card>

  <Card title="Build a Real Workflow" icon="hammer" href="/applications/create-workflow-example">
    Follow a complete example with real-world use case.
  </Card>

  <Card title="Glossary" icon="book" href="/glossary">
    Learn the terminology used throughout CogniAgent.
  </Card>
</CardGroup>

## Common questions

<AccordionGroup>
  <Accordion title="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.
  </Accordion>

  <Accordion title="Can I edit a workflow after running it?">
    Yes. Make your changes and save. The next run will use the updated workflow.
  </Accordion>

  <Accordion title="How do I pass data between nodes?">
    Each node's output is available to subsequent nodes. See [Passing Information Between Nodes](/nodes/overview#passing-information-between-nodes) for details.
  </Accordion>
</AccordionGroup>
