Quick Start Guide
Learn how to start your automation journey in Kognitos.
Overview
Kognitos empowers you to write automations in plain English, turning natural-language instructions into executable workflows. This guide will walk you through core concepts, the development lifecycle, and the basics of writing an automation.
Make sure you're all set up before jumping in!
Core Concepts
Let’s kick things off with two important ideas: agents and automations.
Agents
An agent is a dedicated execution environment. Each agent comes with its own skills and settings, enabling it to operate independently. Agents are created to handle specific business tasks and can contain one or more automations to complete them.
Automations
An automation is a set of instructions that tells Kognitos what to do — process data, work with documents, send emails, call other processes, and more. These are workflows that can take the form of an early idea (playground) or a complete process.
Automation Lifecycle
Automations come in different forms as they evolve from early ideas into production-ready processes, following this lifecycle:
Playground
Every automation starts as a playground. These are initial automation workflows used to explore, create, and test new ideas.
Draft Process
Once a playground automation is working as intended, solidify it as a draft process. Drafts let you refine and test the workflow in a structured way before finalizing it for production.
Published Process
When your automation is finalized and production-ready, promote it to a published process. These workflows are reliable, secure, and fully ready to execute business tasks.
Start in the Playground
Start in the Playground — your initial workspace for writing and testing automations.
Create a New Playground
Create a new Playground by navigating to Playground , then click on + New Playground.

Write Your Automation
The input area of the editor is where you can define your automation workflow.

Looking for Auto-Write? Describe your intent in plain English and let auto-write draft the workflow for you.
Writing Automations
Kognitos automations are written in English. They are composed of small, readable steps called procedures. By combining multiple procedures, you can form a complete automation workflow.
What is a Procedure?
A procedure is a single automation task. Each procedure describes a specific action and follows a defined grammatical syntax that Kognitos understands, such as extract data
, create a table
, or send an email
. Procedures are the building blocks for Kognitos automations.
Building a Workflow
Combine procedures to create an end-to-end automation. For example, you might extract fields from a receipt, summarize them in a table, and then email the result:
upload a document where
the file is Uber-Receipt.pdf
extract data from the document where
the first field is "date"
the first field's format is "text"
the second field is "location"
the second field's format is "text"
the third field is "total"
the third field's format is "text"
create a table where
the column names are "Date", "Start Location", "Total Cost"
the row count is 1
insert a row in the table where
the Date is the data's date
the Start Location is the data's location
the Total Cost is the data's total
send an email where
the recipient is [email protected]
the subject "Rideshare Receipt Summary"
the message is the table
Auto-Write (HAL)
With Kognitos’ Hyperautomation Lifecycle (HAL), you can describe what you want in plain English and let the platform auto-write the automation for you. No need to worry about syntax or structure; write naturally (e.g., “extract date and total from a receipt and email me a summary”).
HAL interprets your intent, selects the right actions, and produces a draft workflow that you can run or edit as needed, allowing you to move from idea to execution faster.
Language & Logic
Beyond procedures, use keywords, comments, conditionals, and other elements to write and structure automations in Kognitos. Learn more below:
Books
A Book is a set of related automation procedures (tasks) that can extend an agent’s capabilities. Adding a Book to an agent enables the agent to learn new skills and integrate with external tools. Kognitos offers many Books that can be added to your agents, which are built around either:
A specific domain (Document Processing, HTML)
An integration (Microsoft Excel, Slack, Salesforce, etc.)
How to Add a Book to Your Agent
Click on Books from the left navigation menu.
Click on + New Book.
Search for the name of the Book you'd like to add and click on it.

If the Book requires configuration, you will be prompted to provide configuration details.
Click Add to finish adding your Book.
Publish your agent.
IMPORTANT: After learning a Book, be sure to create a new Playground. Playgrounds that were created before a Book was added will not be able to recognize the new addition.
Last updated
Was this helpful?