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

@elizaos/plugin-eliza-classic-root

v2.0.0-alpha.1

Published

Classic ELIZA pattern matching plugin for elizaOS. Provides a testable chat response interface for agents without requiring an LLM.

Readme

@elizaos/plugin-eliza-classic

Classic ELIZA pattern matching plugin for elizaOS. Provides a testable chat response interface for agents without requiring an LLM.

Overview

This plugin implements Joseph Weizenbaum's original 1966 ELIZA pattern matching algorithm as an elizaOS model provider. It's useful for:

  • Testing: Validate agent workflows without API costs
  • Development: Rapid iteration without LLM latency
  • Education: Understand how pattern matching chatbots work
  • Offline use: No internet connection required

Installation

# TypeScript/JavaScript
bun add @elizaos/plugin-eliza-classic

# Python
pip install elizaos-plugin-eliza-classic

# Rust
cargo add elizaos-plugin-eliza-classic

Usage

TypeScript

import { AgentRuntime, ModelType } from "@elizaos/core";
import { elizaClassicPlugin } from "@elizaos/plugin-eliza-classic";

const runtime = new AgentRuntime({
  character: { name: "ELIZA" },
  plugins: [elizaClassicPlugin],
});

await runtime.initialize();

const response = await runtime.useModel(ModelType.TEXT_LARGE, {
  prompt: "I feel sad today",
});
// => "I am sorry to hear that you are feeling that way."

Python

from elizaos_plugin_eliza_classic import ElizaClassicPlugin

plugin = ElizaClassicPlugin()

response = plugin.generate_response("I feel sad today")
# => "I am sorry to hear that you are feeling that way."

# Or use as elizaOS plugin
from elizaos_plugin_eliza_classic import create_eliza_classic_elizaos_plugin

plugin = create_eliza_classic_elizaos_plugin()
# Pass to AgentRuntime

Rust

use elizaos_plugin_eliza_classic::ElizaClassicPlugin;

let plugin = ElizaClassicPlugin::new();
let response = plugin.generate_response("I feel sad today");
// => "I am sorry to hear that you are feeling that way."

How It Works

ELIZA uses a keyword-based pattern matching system:

  1. Keywords: Input is scanned for keywords with associated weights
  2. Pattern Matching: Each keyword has regex patterns with capture groups
  3. Response Selection: A random response template is chosen
  4. Pronoun Reflection: Captured groups have pronouns reflected (I → you, my → your)
  5. Substitution: Captured text is inserted into the response template

Example Pattern

Keyword: "remember" (weight: 5)
Pattern: /do you remember (.*)/i
Responses:
  - "Did you think I would forget $1?"
  - "Why do you think I should recall $1 now?"

Input: "Do you remember my birthday?" Output: "Did you think I would forget your birthday?"

Model Types Supported

| Model Type | Description | | ------------ | --------------------------- | | TEXT_LARGE | Full ELIZA pattern matching | | TEXT_SMALL | Same as TEXT_LARGE |

Configuration

No configuration required. The plugin works out of the box.

Testing

# TypeScript
npx vitest

# Python
pytest

# Rust
cargo test

License

MIT