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

@vxnus/siduri

v0.1.5

Published

Experimental CLI for installing and configuring Siduri companions

Readme

@vxnus/siduri

Experimental CLI for creating, diagnosing, and managing standalone Siduri companions powered by the @siduri-x/* organ ecosystem.

Requires Node.js 20 or newer.

npx @vxnus/siduri create my-companion

Prerequisites

  • Node.js: v20.0.0 or newer
  • LLM API Key: e.g. OPENROUTER_API_KEY for Brain organ
  • Optional Local Services:
    • Docker: For running local PostgreSQL database (docker compose up -d / npm run services:up) and/or VOICEVOX engine.
    • Non-Docker Alternatives: Cloud databases (Supabase, Neon) or standalone VOICEVOX Desktop App.

Features

  • Manifest-Driven Organ Discovery: Dynamically discovers installed @siduri-x/* organs and generates custom, standalone ESM instance code.
  • Interactive Configuration Wizard: Model catalog discovery for OpenRouter, manifest inspection for E Knowledge Hub, and guided organ parameters.
  • Zero Monolithic Bundling: Scaffolds standard Node.js ESM projects with explicit dependency trees.
  • Diagnostics (siduri doctor): Runs environment variable validation, external service checks, database health probes, and organ-specific assertions.
  • Database Migrations (siduri db push): Inspects database-owning organs (such as @siduri-x/memory) and executes SQL migrations with SHA-256 integrity checksums.

CLI Usage

1. Create a Standalone Companion

npx @vxnus/siduri create [directory]

The interactive wizard allows you to name your companion, configure organ providers and models, and inspect Knowledge manifests. It generates:

my-companion/
├── package.json          # ESM package referencing only selected @siduri-x/* organs
├── siduri.config.json    # Selected organ configurations
├── siduri.schema.json    # Composed JSON Schema from organ manifests
├── .env.example          # Only environment variables required by selected organs
├── README.md             # Instance-specific guide
├── docker-compose.yml    # Scaffolds PostgreSQL / VOICEVOX when selected
└── src/
    └── index.js          # Direct runtime bootstrapping with explicit organ factories

2. Run Diagnostics

npx @vxnus/siduri doctor [directory]

Inspects active configuration, checks required/optional environment variables, and executes health probes.

3. Apply Migrations

npx @vxnus/siduri db push [directory]

Runs database migrations exclusively for configured database organs. If no database organs are selected (e.g. Brain + Hands), reports that no migrations are needed.

Local Development

From the repository root:

pnpm --filter @vxnus/siduri build
pnpm --filter @vxnus/siduri test

License

Licensed under the Apache License, Version 2.0.