Getting Started with AGNT5

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


In this guide we will:

  1. Create an agnt5.dev account
  2. Install the AGNT5 SDK
  3. Create your first workflow
  4. Deploy and test

Choose Your Setup Method

Create Your First Agent

Once you have AGNT5 set up, let’s create a simple agent that can process tasks:

from agnt5 import Agent, Workflow

# Define your agent's workflow
@workflow
def customer_support_agent():
    """A simple customer support agent"""
    # Your agent logic here
    pass

# Deploy your agent
agent = Agent("customer-support")
agent.deploy(customer_support_agent)

Pro tip: Start with the CLI approach if you’re new to AGNT5. It provides the fastest way to get up and running with sensible defaults and built-in examples.

Next Steps

Now that you have AGNT5 running, you can:

Need Help?

If you encounter any issues during setup: