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

@karmaniverous/jeeves-meta

v0.4.2

Published

Fastify HTTP service for the Jeeves Meta synthesis engine

Downloads

638

Readme

@karmaniverous/jeeves-meta

HTTP service for the Jeeves knowledge synthesis engine. Provides a Fastify API, built-in croner-based scheduler, single-threaded synthesis queue, and a Commander CLI.

Features

  • Fastify HTTP API/status, /metas, /preview, /synthesize, /seed, /unlock, /config/validate
  • Built-in scheduler — croner-based cron with adaptive backoff
  • Synthesis queue — single-threaded, priority-aware, deduplicated
  • Three-step orchestration — architect, builder, critic with conditional re-architecture
  • Discovery via watcher — scan-based meta discovery with configurable domain tags
  • Ownership tree — hierarchical scoping with child meta rollup
  • Archive management — timestamped snapshots with configurable pruning
  • Lock staging — write to .lock → copy to meta.json → archive (crash-safe)
  • Virtual rule registration — registers 3 watcher inference rules at startup with retry
  • Progress reporting — real-time synthesis events via gateway channel messages
  • Graceful shutdown — stop scheduler, release locks, close server
  • Config hot-reload — schedule, reportChannel, log level reload without restart
  • Token tracking — per-step counts with exponential moving averages
  • CLIstatus, list, detail, preview, synthesize, seed, unlock, validate, service commands
  • Zod schemas — validated meta.json and config with open schema support

Install

npm install -g @karmaniverous/jeeves-meta

Quick Start

# Start the service
jeeves-meta start --config /path/to/jeeves-meta.config.json

# Check status
jeeves-meta status

# List all metas
jeeves-meta list

# Run synthesis
jeeves-meta synthesize

# Install as a system service (prints OS-specific instructions)
jeeves-meta service install --config /path/to/jeeves-meta.config.json

HTTP API

| Method | Path | Description | |--------|------|-------------| | GET | /status | Service health, queue state, dependency checks | | GET | /metas | List metas with filtering and field projection | | GET | /metas/:path | Single meta detail with optional archive | | GET | /preview | Dry-run: preview inputs for next synthesis | | POST | /synthesize | Enqueue synthesis (stalest or specific path) | | POST | /seed | Create .meta/ directory + meta.json | | POST | /unlock | Remove .lock file from a meta entity | | GET | /config/validate | Return sanitized active configuration |

Configuration

See the Configuration Guide for all fields, defaults, and environment variable substitution.

Documentation

  • Guides — concepts, configuration, orchestration, scheduling, architecture
  • CLI Reference — all commands with usage

License

BSD-3-Clause