A minimal CLI tool to scaffold ELIZA applications with zero configuration. Get started building your own ELIZA-style chatbot in seconds.
You can create a new ELIZA app with your preferred package manager:
# npm
npx create-eliza-app@latest path
# pnpm
pnpm dlx create-eliza-app@latest path
# bun
bunx create-eliza-app@latest path
# deno
deno run -A npm:create-eliza-app@latest path
--name
: Name of the template to use (default: "eliza")--dir
: Directory where the project will be created (default: current directory)--registry
: Custom registry URL for templates
Once your project is created:
-
Navigate to the project directory:
cd your-project-name
-
Copy the example environment file:
cp .env.example .env
-
Install dependencies:
pnpm install
-
Start the development server:
pnpm start
🤖 auto updated with automd