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

openhermit

v0.5.0

Published

OpenHermit — multi-agent platform CLI & server

Readme

OpenHermit CLI

The openhermit package publishes the hermit and openhermit commands. The CLI configures the gateway, manages agents, opens TUI chat sessions, edits agent config/secrets, manages schedules, and reads operational status/logs.

Install

npm install -g openhermit

For repository development:

npm install
npm run dev:cli -- --help

Common Flow

hermit setup
hermit gateway start
hermit agents create main
hermit agents start main
hermit chat --agent main

hermit setup writes .env, can start the local Docker Compose PostgreSQL service, applies Drizzle migrations from packages/store/drizzle, and sets OPENHERMIT_TOKEN to the admin token for CLI convenience.

Commands

| Area | Commands | |------|----------| | Setup | hermit setup | | Gateway | hermit gateway start, stop, run, status | | Agents | hermit agents list, create <agentId> [--name] [--workspace-dir] [--owner], start, stop, restart, delete | | Chat | hermit chat [--agent <id>] [--resume] [--session <sessionId>] | | Config | hermit config show, get <key>, set <key> <value> | | Secrets | hermit config secrets list, set <key> <value>, remove <key> | | Skills | hermit skills list, assignments, scan, register <id> --name --description --path, delete <id>, enable <id> --agent <id>, disable <id> --agent <id> | | MCP | hermit mcp list, assignments, enable <id> --agent <id>, disable <id> --agent <id> | | Schedules | hermit schedules list [--status], create --prompt ... [--cron ... | --run-at ...], pause, resume, delete, runs | | Operations | hermit status, hermit stats, hermit doctor, hermit logs [-f] [-n N] [--json] |

Agent-scoped commands default to OPENHERMIT_AGENT_ID or main.

Environment

| Variable | Description | |----------|-------------| | DATABASE_URL | PostgreSQL connection string | | DATABASE_URL_TEST | Test database URL used by the repository test script | | GATEWAY_ADMIN_TOKEN | Bearer token for admin APIs and CLI management | | GATEWAY_JWT_SECRET | JWT signing secret for browser/device auth | | OPENHERMIT_TOKEN | CLI bearer token, usually the admin token | | OPENHERMIT_GATEWAY_URL | Gateway URL, default http://127.0.0.1:4000 | | OPENHERMIT_AGENT_ID | Default agent ID, default main |

Package Contents

The published package bundles the CLI, gateway entrypoint, and built static UI assets copied from the gateway admin UI and end-user web app during prepublishOnly.

See the repository README and docs for the platform architecture.