Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core-concepts/index.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: 'Core Concepts'
title: 'Overview'
description: 'The building blocks of elizaOS'
---

Expand Down
2 changes: 1 addition & 1 deletion docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"tab": "Docs",
"groups": [
{
"group": "Get Started",
"group": "Getting Started",
"pages": ["index", "quickstart", "development"]
},
{
Expand Down
44 changes: 24 additions & 20 deletions index.mdx
Original file line number Diff line number Diff line change
@@ -1,26 +1,30 @@
---
title: Introduction
description: "Welcome to elizaos - Your AI Agent Framework"
---

<img
className="block dark:hidden"
src="/images/hero-light.png"
alt="Hero Light"
/>
<img
className="hidden dark:block"
src="/images/hero-dark.png"
alt="Hero Dark"
/>
Create AI agents with personalities, equip them with plugins, and send them out into the world.

## Getting Started
## What is elizaOS?

Build powerful AI agents with elizaos - a flexible framework for creating autonomous AI systems.
elizaOS is a TypeScript-based framework for building autonomous AI agents that can:

- **Define unique personalities and goals** through character files
- **Take actions in the real world** by equipping agents with plugins
- **Orchestrate multi-step workflows** through natural language conversations
- **Remember and learn** from interactions with persistent memory
- **Run anywhere** - locally for development or scaled for production

The elizaOS framework ships with 90+ official plugins spanning social platforms, blockchain networks, AI providers, generative models, DeFi protocols, gaming, and more. Its plugin architecture lets you mix and match capabilities without modifying core.

With elizaOS, you give your agent a personality and a goal, equip it with the right plugins, and let it work to achieve results. Your agents can trade on DEXs, manage social media accounts, create content, analyze data, or interact with any API or blockchain. They operate autonomously, taking actions based on their goals and the capabilities you've given them.

## Next Steps

Ready to build your first agent? Start here:

<CardGroup cols={2}>
<Card
title="Quick Setup"
title="Quickstart"
icon="rocket"
href="/quickstart"
>
Expand All @@ -31,35 +35,35 @@ Build powerful AI agents with elizaos - a flexible framework for creating autono
icon="code"
href="/development"
>
Learn how to develop and customize your agents
Develop and customize your agents
</Card>
</CardGroup>

## Core Features
## Core Concepts

Explore the powerful capabilities that make elizaos the choice for AI agent development.
Explore the powerful capabilities that make elizaOS the go-to choice for AI agent development.

<CardGroup cols={2}>
<Card
title="Agent Architecture"
icon="brain"
href="/deep-dive/architecture"
>
Understand the core agent system and architecture
Understand the core agent architecture
</Card>
<Card
title="API Reference"
icon="terminal"
href="/api-reference/agents/create-a-new-agent"
>
Complete API documentation for all elizaos modules
Complete API documentation for elizaOS
</Card>
<Card
title="Plugins"
icon="puzzle-piece"
href="/core-concepts/plugins"
>
Extend functionality with the plugin ecosystem
Learn about plugins and their capabilities
</Card>
<Card
title="Examples"
Expand Down