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

megalaunch-elizaos-plugin

v1.0.0

Published

MegaLaunch plugin for elizaOS — launch meme tokens on Solana/pump.fun with AI-generated art, bundled buys, and Jito-powered launches

Readme

@megalaunch/elizaos-plugin

elizaOS plugin for MegaLaunch — a Solana meme token launch service. Lets your elizaOS agent programmatically launch meme coins on pump.fun with AI-generated art, bundled buys, and Jito-powered MEV protection.

What is MegaLaunch?

MegaLaunch is an automated token launch service for Solana/pump.fun. It handles:

  • AI-generated token art — unique images created for each launch
  • Bundled buys — coordinated multi-wallet purchases at launch
  • Jito-powered MEV protection — front-run resistant launches
  • AI narrative selection — optional AI-driven trending name/theme selection

Two packages are available: Basic (2 SOL) and Premium (5 SOL).

Installation

npm install @megalaunch/elizaos-plugin

Configuration

1. Add to your character file

Add the plugin to your character's plugins array:

{
  "name": "MyAgent",
  "plugins": ["@megalaunch/elizaos-plugin"],
  "settings": {
    "secrets": {
      "MEGALAUNCH_API_KEY": "ml_your_api_key_here"
    }
  }
}

2. Or set via environment variable

export MEGALAUNCH_API_KEY="ml_your_api_key_here"

Optional: Custom API URL

export MEGALAUNCH_API_URL="https://your-custom-endpoint/api/v1"

Available Actions

LAUNCH_TOKEN

Launch a new meme token on pump.fun.

Triggers: "launch a token", "create a meme coin", "deploy token"

Examples:

User: Launch a meme token called Moon Dog with symbol $MDOG
User: Launch a premium token with AI pick, theme animal
User: Create a meme coin called Rocket Cat, ticker $RCAT, premium package

Parameters extracted from natural language:

  • Token name and symbol (e.g., "called Moon Dog", "$MDOG")
  • Package: basic (default) or premium
  • AI pick mode: "let AI pick", "AI pick"
  • Theme: war, money, hype, animal, fire, ice
  • Description: "description: '...'"

CHECK_LAUNCH_ORDER

Check the status of an existing launch order.

Triggers: "check order", "order status", "launch status"

Examples:

User: Check the status of order #42
User: What's the status of my launch order 15?

GET_LAUNCH_PRICING

Get current pricing for launch packages.

Triggers: "launch cost", "how much to launch", "pricing"

Examples:

User: How much does it cost to launch a token?
User: What are the MegaLaunch pricing tiers?

Provider

The plugin includes a megalaunch_context provider that automatically injects MegaLaunch service status into the agent's context. This gives the agent awareness of:

  • Service operational status
  • Number of recent launches
  • Average launch time

API Reference

This plugin wraps the MegaLaunch REST API:

| Endpoint | Method | Description | |----------|--------|-------------| | /status | GET | Service health and stats | | /pricing | GET | Package pricing | | /orders | POST | Create launch order | | /orders | GET | List orders | | /orders/:id | GET | Get order details | | /orders/:id/cancel | POST | Cancel order |

Base URL: https://vernal.zylos.coco.xyz/megalaunch/api/v1

Full API documentation: See the OpenAPI spec

Development

# Install dependencies
npm install

# Build
npm run build

# Watch mode
npm run dev

License

MIT