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

@dhf-hermes/grix

v0.5.4

Published

Standalone Hermes skill bundle for Grix workflows.

Readme


name: grix-hermes description: Hermes skill bundle installer. Installs the grix-hermes bundle, configures Hermes skills directory, enables 8 skill directories, sets up a daily update cron job, and provides post-install verification.

Grix Hermes

grix-hermes is a Hermes skill bundle published to npm. After installation, Hermes can load 8 Grix skills and their shared runtime.

Capabilities

  • Installs @dhf-hermes/grix to ~/.hermes/skills/grix-hermes
  • Provides the Hermes skills.external_dirs path
  • Provides 8 Grix skill directories
  • Creates a daily update cron job
  • Outputs skill list and manifest for post-install verification

Quick Install

npx @dhf-hermes/grix install

Install actions:

  1. Fetches the latest @dhf-hermes/grix via npm
  2. Installs the full bundle to ~/.hermes/skills/grix-hermes
  3. Creates a daily update cron job: grix-hermes-daily-update, runs at 06:00

Post-install verification:

node ~/.hermes/skills/grix-hermes/bin/grix-hermes.js list
node ~/.hermes/skills/grix-hermes/bin/grix-hermes.js manifest
hermes skills list

Manual Install

Manual install is for environments that need explicit control over the install directory and Hermes profile.

1. Determine Hermes directory

Default HERMES_HOME:

~/.hermes

Default install directory:

~/.hermes/skills/grix-hermes

When using a custom HERMES_HOME, replace ~/.hermes in the paths below with your directory.

2. Fetch the npm package

tmp="$(mktemp -d)"
npm install --prefix "$tmp/prefix" @dhf-hermes/grix

Package directory:

$tmp/prefix/node_modules/@dhf-hermes/grix

3. Install the full bundle

install_dir="${HERMES_HOME:-$HOME/.hermes}/skills/grix-hermes"
node "$tmp/prefix/node_modules/@dhf-hermes/grix/bin/grix-hermes.js" install --dest "$install_dir" --force --skip-cron

The full bundle contains:

  • bin
  • lib
  • shared
  • 8 skill directories
  • Bundled node_modules

4. Configure Hermes

Edit the target Hermes profile config file:

  • Default profile: ~/.hermes/config.yaml
  • Named profile: ~/.hermes/profiles/<PROFILE_NAME>/config.yaml

Configure skills.external_dirs:

skills:
  external_dirs:
    - ~/.hermes/skills/grix-hermes

Visible skills for the target profile:

  • grix-admin
  • grix-egg
  • grix-group
  • grix-query
  • grix-register
  • grix-update
  • message-send
  • message-unsend

5. Configure daily updates

hermes cron add --name grix-hermes-daily-update --skill grix-update "0 6 * * *" 'Use the grix-update skill with {"install_dir":"~/.hermes/skills/grix-hermes"}'

6. Clean up temp directory

rm -rf "$tmp"

Skill List

| Skill | Capability | | --- | --- | | grix-admin | Remote Grix Agent management: API agents, categories, assignment, status, and API key rotation | | grix-egg | Hermes Agent incubation orchestration: empty agent creation, profile binding, gateway startup, and acceptance | | grix-group | Grix group lifecycle management: create, query, members, and roles | | grix-query | Contact, session, and message lookup | | grix-register | HTTP registration, login, and API agent creation | | grix-update | Skill bundle update and reinstall to Hermes skills directory | | message-send | Message sending and Grix deep-link card generation | | message-unsend | Message retraction |

Installation Verification

node ~/.hermes/skills/grix-hermes/bin/grix-hermes.js list
node ~/.hermes/skills/grix-hermes/bin/grix-hermes.js manifest
hermes skills list

Acceptance criteria:

  • list shows 8 skills
  • manifest outputs grix-hermes and 8 skill entries
  • hermes skills list scans ~/.hermes/skills/grix-hermes