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

mesozoic

v1.0.4

Published

A runtime for AI agents

Readme

Meso

Run AI agents that live on Slack, remember conversations, and use tools — all from a single config file.

Built on Pi.

npm install -g mesozoic
meso init

How It Works

Each agent is a folder. You define its personality in markdown, configure models and safety rules in JSON, and drop custom tools into a directory. Meso handles the rest.

~/.meso/agents/rex/
  IDENTITY.md       ← who the agent is
  SOUL.md           ← core values
  agent.json        ← models, behavior, guardrails
  tools/            ← custom tools (auto-loaded)
  skills/           ← reusable prompt+tool bundles
  memory/           ← agent remembers over time

No Docker. No database. Just Node.

Features

Memory — agents save, search, and consolidate knowledge. A nightly dream job prunes stale memories and reinforces important ones.

Guardrails — four safety modes (off / permissive / standard / strict). Block dangerous commands, protect secrets, scope file access — all configurable per agent.

Model Rotation — define a fallback chain of models across providers. If one fails, the agent switches automatically and waits before retrying.

Voice Mode — talk to your agent in real-time. Local STT (Moonshine) and TTS (Kokoro) with Smart Turn detection and echo cancellation for natural conversations.

Quick Start

# Install
npm install -g mesozoic

# Full guided setup (creates agent, connects providers)
meso init

# Or step by step
meso new rex
meso login
meso start rex

Voice Mode

Talk to your agent instead of typing.

# One-time setup (downloads ~1GB of local models)
meso setup voice

# Start a voice conversation
meso run rex --voice

Voice mode runs STT and TTS locally — only the LLM uses your configured cloud model. Includes Smart Turn v3 for natural turn detection and WebRTC echo cancellation for barge-in (interrupt the agent mid-sentence).

Commands

# Setup
meso init                # Full guided setup
meso new <agent>         # Create agent
meso configure <agent>   # Personality, guardrails, settings
meso setup voice         # Setup voice mode (models, mic, speaker)

# Running
meso start [agent]       # Start agent (background)
meso stop [agent]        # Stop
meso restart [agent]     # Restart
meso status              # Running agents
meso run <agent> --tui   # Chat in terminal
meso run <agent> --voice # Voice conversation

# Management
meso logs <agent> -f     # Tail logs
meso login               # Connect model providers
meso upgrade [agent]     # Apply config updates
meso doctor <agent>      # Health check

Agent Configuration

Everything lives in agent.json:

{
  "name": "Rex",
  "models": {
    "main": [
      { "provider": "anthropic", "id": "claude-sonnet-4-6" },
      { "provider": "openai-codex", "id": "gpt-5.4" }
    ]
  },
  "behavior": {
    "stopWord": "stop",
    "continuousDmSession": true
  },
  "runtime": {
    "thinking": "off",
    "compaction": { "enabled": true }
  }
}

Personality in markdown:

# IDENTITY.md
You are Rex, a coding assistant that lives on Slack.

# SOUL.md
- be useful
- be concise
- use tools when needed

Guardrails in guardrails.local.json:

{
  "mode": "standard",
  "blockedCommands": ["rm -rf /"],
  "allowedPaths": ["/Users/me/projects"]
}

License

MIT