MiladyAI is an open-source AI agent organization building at the intersection of culture, creativity, and autonomous intelligence. Our agents are fully deployed on — the leading open-source multi-agent AI framework.
We believe the future of AI is agentic, open, and community-driven. Every agent we ship runs on elizaOS and is available for the community to fork, remix, and extend.
All MiladyAI agents run on the runtime. elizaOS is a powerful, modular framework for building autonomous AI agents that operate across social platforms, APIs, and on-chain environments.
elizaOS runtime
├── AgentRuntime ← orchestrates everything
├── Character Files ← agent persona & config (.json)
├── Plugins ← modular capabilities
│ ├── Actions ← what the agent does
│ ├── Providers ← context fed into the agent
│ └── Evaluators ← how the agent scores outputs
├── Clients ← Twitter, Discord, Telegram, ...
└── Memory (RAG) ← vector-based long-term memory
| Repository | elizaOS Role | Description |
|---|---|---|
| 🌸 milady-agent | elizaOS character + plugins | The flagship MiladyAI social agent |
| 🎭 characters | elizaOS character files | All MiladyAI agent persona configs |
| 🧠 knowledge | elizaOS RAG/memory | Curated knowledge bases for agents |
| 🔮 plugin-onchain | elizaOS Action | On-chain interactions via elizaOS |
| 📡 plugin-feeds | elizaOS Provider | Real-time context injection |
| 📦 sdk | TypeScript/Python | SDK wrapping elizaOS for MiladyAI |
| 📚 docs | — | Documentation and guides |
MiladyAI extends elizaOS through a suite of purpose-built plugins. Here's the core plugin pattern we follow:
import { Plugin } from "@elizaos/core";
export const miladyPlugin: Plugin = {
name: "milady-core",
description: "Core MiladyAI capabilities for elizaOS agents",
actions: [/* elizaOS Actions */],
providers: [/* elizaOS Providers */],
evaluators: [/* elizaOS Evaluators */],
};Our elizaOS character files wire everything together:
{
"name": "Milady",
"modelProvider": "anthropic",
"clients": ["twitter", "discord", "telegram"],
"plugins": [
"@miladyai/plugin-onchain",
"@elizaos/plugin-bootstrap",
"@elizaos/plugin-image-generation"
]
}Whether you're an elizaOS contributor, an AI researcher, or just here to build with us:
- 🔌 Build a new elizaOS plugin for MiladyAI agents
- 🎭 Remix a character file and propose it via PR
- 🐛 Fix bugs — check issues tagged
good first issue - 📖 Read our Contributing Guide to understand the elizaOS plugin workflow
- 💬 Join the conversation on Discord or GitHub Discussions
"The most beautiful machine is the one that understands you."
MiladyAI · Built on elizaOS · Made with 🌸 by the community · github.com/milady-ai












