Get started with xpander in 5 simple steps - from configuration to production deployment
Start from a new or existing agent
xpander agent new
and following the wizard. Install the xpander CLI by running npm install -g xpander-cli
The Agent Workbench is used to control and test the agent backend
Download and customize your agent code
init
command is used to download the entire agent code to your local machine, pre-scaffolded with the desired framework (runtime environment - i.e. Agno), as well as the configuration of the agent.Task sources
tab in the Workbench.Add your business logic
@on_task
decorator registers your function as an event handler that processes incoming tasks from Slack, WebUI, or webhooks.The @register_tool
decorator makes your custom functions available to the AI agent, allowing it to call your business logic when needed.Read more about these decorators in the Events and Tools sections of the API Reference.Test locally
Deploy to your environment