Getting Started with AGNT5

How to get started in 5 minutes using the CLI and SDK.


Install the CLI

The CLI provisions your local development environment, runs the Local Development Dashboard with logs and tracing, and deploys to cloud.

Prerequisites:

  • Docker is required for Encore to set up local databases.

Create your application

Create a new AGNT5 application with an interactive setup wizard. You can start from scratch or use pre-built templates to quickly bootstrap common agent patterns.

agnt5 create
Using templates to speed up development

You can use pre-built templates to quickly start with a specific agent type:

agnt5 create --template deep-research-agent

Available templates:

  • deep-research-agent - Research assistant with web search capabilities
  • customer-support - Customer support chatbot with context management
  • data-analyst - Data analysis agent with SQL and visualization tools

Start your app & Explore Local Development Dashboard

Run you app locally using your docker environment

agnt5 dev up

You should see this

More on how to configure environmnet can be found at . For stopping the service run agnt5 dev down.

Deploy your application

Once your workflow runs locally, you can deploy it as an agent:

agnt5 deploy

Next steps


Need help?