The xpander-cli is a command-line interface for interacting with the xpander.ai control plane. It allows you to create and manage agents, update configurations, and automate workflows from your terminal.
# List available agentsxpander agents list# Create a new agentxpander agents create --name "My Agent" --type regular# Get details for a specific agentxpander agents get <agent-id># Delete an agentxpander agents delete <agent-id>
# List operations for an agentxpander operations list --agent <agent-id># Create a new operationxpander operations create --agent <agent-id> --name "My Operation" --type function# Update an operationxpander operations update <operation-id> --prompt "New prompt"# Delete an operationxpander operations delete <operation-id>