Getting Started with AGNT5
How to get started in 5 minutes using the CLI and SDK.
In this guide you’ll:
- Create an AGNT5 account
- Install the CLI or SDK
- Write and run your first workflow
- 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.