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-intern-market

v0.1.1

Published

Starter template for creating Eliza plugins with examples for Tavily and Exa search

Readme

Eliza Plugin Starter Template

This repository provides a starter template for creating plugins for the Eliza AI agent framework. It includes example implementations for search functionality using Tavily and Exa APIs.

Prerequisites

  • Node.js 23+
  • pnpm
  • TypeScript knowledge

Getting Started

  1. Clone this repository:
git clone https://github.com/yourusername/eliza-plugin-starter.git
cd eliza-plugin-starter
  1. Install dependencies:
pnpm install
  1. Compile the TypeScript code:
pnpm tsc
  1. Run the project using the 'direct' client:
pnpm exec node --loader ts-node/esm ./src/scripts/load-with-plugin.ts --characters=./characters/eternalai.character.json

Note: Only the 'direct' client will work within this repo since it uses mocked capabilities of the real client. Plugins developed here can be directly transposed into the main Eliza repository.

Project Overview

This starter template is designed to work with the 'direct' client within this repository due to the mocked capabilities of the real client. Plugins developed here are fully compatible with the main Eliza repository and can be directly transposed.

Project Structure

src/
  ├── plugins/
  │   ├── tavily/     # Tavily search plugin implementation
  │   └── exa/        # Exa search plugin implementation
  ├── common/         # Shared utilities and types
  └── index.ts        # Main entry point

Creating a Plugin

See the Plugin Development Guide for detailed instructions on creating your own plugin.

Running the Project

You can run the project using the following command:

pnpm exec node --loader ts-node/esm ./src/scripts/load-with-plugin.ts --characters=./characters/eternalai.character.json

Alternatively, to simplify this process, use the predefined script:

pnpm mock-eliza --characters=./characters/eternalai.character.json

This script will prompt for a comma-separated list of character files to load.

Note: The 'mock-eliza' script uses the 'direct' client because the project contains mocked capabilities of the real client.

Example Plugins

This template includes two example plugin implementations:

  1. Tavily Search Plugin: Demonstrates web search capabilities using the Tavily API
  2. Exa Search Plugin: Shows how to integrate with the Exa search API

Check the individual plugin directories for specific documentation and usage instructions.

Contributing

Contributions are welcome! Please read our Contributing Guide for details.

License

MIT