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

plugin-memeooorr

v0.2.3

Published

Eliza plugin for memeooor Agent. Provides a comprehensive set of features for interacting with Twitter and analyzing cryptocurrency tokens. Enables agent builders using eliza framework to integrate agents.fun.

Readme

plugin-memeooorr

Eliza plugin for memeooor Agent. Provides a comprehensive set of features for interacting with Twitter and analyzing cryptocurrency tokens. Enables agent builders using eliza framework to integrate agents.fun.

:warning: Warning The code within this repository is provided without any warranties. It is important to note that the code has not been audited for potential security vulnerabilities. Using this code could potentially lead to loss of funds, compromised data, or asset risk. Exercise caution and use this code at your own risk. Please refer to the LICENSE file for details about the terms and conditions. The plugin for now is specifically designed to be used with agents-fun-eliza.

Eliza Twitter Plugin

Overview

The Eliza Twitter Plugin is a modular component built on the ElizaOS framework, designed to empower autonomous agents with the ability to interact with Twitter and analyze cryptocurrency tokens. It enables agents to process messages, execute advanced decision-making, and perform various Twitter-based actions such as posting tweets, replying, liking, retweeting, and analyzing feedback.

This plugin provides:

  • Actions: Encapsulate logic for processing agent messages and generating responses.
  • Services: Twitter-specific functionality using ElizaOS clients.
  • Integrations: Leverages ElizaOS's modular architecture for seamless adaptability.

Features

Actions

  1. decideTwitterAction

    • Analyzes a persona, previous tweets, and engagement metrics to determine the next Twitter action.
    • Supports actions such as tweet, reply, like, retweet, follow, and more.
  2. decideTokenAction

    • Assists agents in managing meme tokens by analyzing the token lifecycle and making strategic decisions like summoning, hearting, or unleashing tokens.
    • Incorporates Twitter engagement metrics for holistic decision-making.

Services

The TwitterService integrates with the ElizaOS agent-twitter-client module to:

  • Post tweets.
  • Reply to tweets with conversational threads.
  • Perform rate-limited, authenticated Twitter interactions.
  • Format and handle alerts related to cryptocurrency trading.

Installation

Prerequisites

  • Node.js: Ensure Node.js is installed (version 14.x or higher).
  • pnpm: Install pnpm as the package manager.
  • ElizaOS: The plugin requires the ElizaOS core framework.

Usage

Actions

Decide Twitter Action

This action analyzes the agent's persona, past tweets, and other tweets to recommend the next engagement on Twitter.

Example:

const result = await runtime.invokeAction('decideTwitterAction', {
    persona: "Crypto Enthusiast",
    previousTweets: ["Exploring new meme tokens!", "The crypto market is thriving!"],
    otherTweets: ["What are your top picks this season?", "Check out this new token!"],
    time: "2025-01-22 12:00:00"
});

Decide Token Action

This action helps agents manage meme tokens and decide on the next steps to maximize portfolio value.

Example:

const result = await runtime.invokeAction('decideTokenAction', {
    memeCoins: [/* list of tokens */],
    latestTweet: "The market is on fire!",
    tweetResponses: [/* feedback */],
    balance: 5
});

Services

Reply to a Tweet

Use the TwitterScraper to reply to a specific tweet:

await twitterService.replyToTweet(id, message);

Development

Directory Structure

  • actions/: Contains the action logic.
  • services/: Implements services to interact with Twitter.
  • constants/: Stores shared constants and configurations.
  • types/: Defines TypeScript interfaces and types.

Contributing

Contributions are welcome! Please follow these steps:

  1. Fork the repository.
  2. Create a feature branch:
    git checkout -b feature-name
  3. Commit your changes:
    git commit -m "Add feature-name"
  4. Push the branch:
    git push origin feature-name
  5. Open a pull request.

Contact

For support or inquiries, reach out to (mailto:[email protected]).