Liz is a lightweight framework for building AI agents, reimagined for developers who demand power and simplicity. Inspired by Eliza from AI16Z, but rebuilt from the ground up with a focus on developer experience and control.
Get up and running with Liz in minutes. Learn the basics of installation, configuration, and your first agent.
Understand Liz's Express-style middleware approach and how the pieces fit together.
Learn about Liz's built-in memory system using Prisma for storing agent interactions.
Explore how Liz handles LLM calls, structured outputs, and multi-provider support.
Build Twitter bots with automated posting, mention monitoring, and conversation threads.
See real-world examples and code snippets showing Liz in action.
# Clone the repository
git clone <your-repo>
cd liz
# Install dependencies
pnpm install
# Configure environment
cp .env.example .env
# Initialize database
npm run init-db
# Start development
npm run dev