npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

init-eliza

v0.2.3

Published

Create Eliza apps with ease

Downloads

17

Readme

🤖 Init-Eliza: AI Agent Builder CLI

Init-Eliza Banner License: MIT Node.js Version npm version

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

Open in Gitpod

🚀 Quick Start via npm

Install via npm:

  1. Install Init-Eliza

    npm i init-eliza
  2. Run Init-Eliza

    npx init-eliza

👨🏾‍💻 Installation (Manual Installation)

  1. Clone the Repository

    git clone https://github.com/W3bbieLabs/init-eliza.git
    cd init-eliza
  2. Install Dependencies

    npm install
  3. Start the CLI

    npm start

💻 Usage

Creating a New Agent

  1. Select "Create Agent" from the main menu
  2. Enter your agent's name when prompted
  3. Select agent type:
    • Create Twitter Agent
    • Create Local Agent
  4. For Twitter agents, enter credentials:
    • Username
    • Email
    • Password
  5. Provide a description for your agent
    • This will be used to generate the agent's personality, style and behavior
  6. 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:

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

📝 License

This project is licensed under the MIT License.

Useful dev snippets and resources

Eliza Direct Client

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?"}'

Models Supported

OpenAI API

🙏 Acknowledgments