- 🚀 Quick Setup & Easy Management
- 🎮 Multi-Agent Management
- 🐦 Rapid Twitter Bot Deployment
- 🛠️ Advanced Customization Options
- 🛠️ Easy Interface
- 🆕 Create new agents
▶️ Start existing agents- 🗑️ Remove agents
- 📋 List all agents
- Node.js v23.3.0
- pnpm package manager
- Git
- Linux/Unix environment (Tested on Ubuntu 22.04)
Install via npm:
-
Install Init-Eliza
npm i init-eliza
-
Run Init-Eliza
npx init-eliza
-
Clone the Repository
git clone https://github.com/W3bbieLabs/init-eliza.git cd init-eliza
-
Install Dependencies
npm install
-
Start the CLI
npm start
- Select "Create Agent" from the main menu
- Enter your agent's name when prompted
- Select agent type:
- Create Twitter Agent
- Create Local Agent
- For Twitter agents, enter credentials:
- Username
- Password
- Provide a description for your agent
- This will be used to generate the agent's personality, style and behavior
- The system will:
- Clone the Eliza repository
- Install dependencies
- Generate character configuration
- Set up environment variables
- Start your agent automatically
We are a small, open-source team and welcome contributions! We're particularly interested in help with:
- Adding support for AI API integrations:
- OpenAI GPT models
- Anthropic Claude
- Other LLM providers
- Expanding client platform support:
- Discord bot integration
- Telegram bot capabilities
- Additional messaging platforms
- Developing agent swarm capabilities:
- Multi-agent coordination
- Swarm behavior patterns
- Agent-to-agent communication
- Improving code modularity:
- Refactoring into reusable components
- Better separation of concerns
- Creating well-defined interfaces
- Implementing design patterns
If you'd like to help with any of these features or have other ideas, please feel free to contribute! We appreciate all forms of help, from code contributions to documentation improvements.
To contribute to this project, please follow these steps:
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add some amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
This project is licensed under the MIT License.
Get List of Agents
curl -X GET http://localhost:3000/agents
Get Agent Info
curl -X GET http://localhost:3000/agents/e0e10e6f-ff2b-0d4c-8011-1fc1eee7cb32
Send message to agent
curl -X POST http://localhost:3000/{insert_agent_name}/message -H "Content-Type: application/json" -d '{ "text": "Hello, how are you today?"}'