DocumentationQuick Start Guide

Quick Start Guide

Get started with AIDEN in minutes. Follow this guide to set up your development environment and create your first intelligent agent.

Prerequisites

  • Node.js 18 or higher
  • npm 7 or higher
  • Docker Desktop (for local development)
  • An LLM provider API key (OpenAI, Anthropic, etc.)

Installation

Set up AIDEN in your development environment

Install the AIDEN CLI

npm install -g @aiden/cli

Install the AIDEN Command Line Interface globally

Initialize a new project

aiden init my-project

Create a new AIDEN project with default configuration

Install dependencies

cd my-project && npm install

Navigate to project directory and install required dependencies

Configuration

Configure your AIDEN environment

Set up environment variables

cp .env.example .env

Copy the example environment file and configure your settings

Configure LLM providers

aiden config set llm.provider openai

Set up your preferred LLM provider (OpenAI, Anthropic, etc.)

Initialize development environment

aiden dev init

Set up local development environment with required services

Create Your First Agent

Build and deploy your first intelligent agent

Create a new agent

aiden create agent my-first-agent

Generate a new agent with default capabilities

Configure agent behavior

aiden agent configure my-first-agent

Set up agent's core capabilities and behavior

Deploy the agent

aiden deploy my-first-agent

Deploy your agent to the development environment

Need Help?

Join our community or reach out to our support team for assistance