0.2.3 • Published 7 months ago
init-eliza v0.2.3
🤖 Init-Eliza: AI Agent Builder CLI
A powerful CLI tool for building, managing, and deploying AI agents.
🌟 Features
- 🚀 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
📋 Prerequisites
- Node.js v23.3.0
- pnpm package manager
- Git
- Linux/Unix environment (Tested on Ubuntu 22.04)
Gitpod
🚀 Quick Start via npm
Install via npm:
Install Init-Eliza
npm i init-eliza
Run Init-Eliza
npx init-eliza
👨🏾💻 Installation (Manual Installation)
Clone the Repository
git clone https://github.com/W3bbieLabs/init-eliza.git cd init-eliza
Install Dependencies
npm install
Start the CLI
npm start
💻 Usage
Creating a New Agent
- 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
🤝 Contributing
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.
How to Contribute
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
📝 License
This project is licensed under the MIT License.
Useful dev snippets and resources
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?"}'