Get started Getting Started with AGNT5

Getting Started with AGNT5

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

In this guide you’ll:

  1. Create an AGNT5 account
  2. Install the CLI or SDK
  3. Write and run your first workflow
  4. Deploy your first agent

Prerequisites

  • Sign up for a free AGNT5 account

  • Install Node.js (18+), Python (3.9+), or Go (if using the SDKs)

  • Set your API key:

    export AGNT5_API_KEY=your_api_key

Choose your setup method


Deploy your first agent

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

from agnt5 import Agent, workflow

@workflow
def customer_support():
    """Simple customer support workflow"""
    # Add steps here
    pass

agent = Agent("customer-support")
agent.deploy(customer_support)

Tip: If you’re new, start with the CLI — it bootstraps projects with sensible defaults and examples.


Next steps


Need help?