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

souls.sh

v1.0.4

Published

Install SOUL.md personality templates for OpenClaw agents

Readme

souls

Install and publish SOUL.md personality templates for OpenClaw agents.

Installation

npx souls.sh install <identifier>

Or install globally:

npm install -g souls.sh

API target

By default, the CLI talks to https://souls.sh.

For local testing, set SOULS_API_BASE_URL:

SOULS_API_BASE_URL=http://localhost:3000 npx souls.sh list
SOULS_API_BASE_URL=http://localhost:3000 npx souls.sh publish your-username/souls --all

Commands

souls install <identifier>

Install a SOUL.md from GitHub or Moltbook to your workspace.

# Install from owner/repo (auto-detects name if only one soul exists)
npx souls.sh install souls-sh/souls.sh

# Install a specific soul from a multi-soul repo
npx souls.sh install souls-sh/souls.sh --name marvin

# Install to a specific workspace
npx souls.sh install souls-sh/souls.sh --dir ~/my-workspace

# Back up existing SOUL.md before overwriting
npx souls.sh install souls-sh/souls.sh --backup

# Force overwrite without a backup
npx souls.sh install souls-sh/souls.sh --force

# Install a published Moltbook soul
npx souls.sh install moltbook/agent-name

Install options:

  • -n, --name <name> - Soul name for multi-soul GitHub repos
  • -d, --dir <path> - Install into this workspace path
  • -b, --backup - Back up existing SOUL.md before overwriting
  • -f, --force - Overwrite existing SOUL.md without a backup

souls publish <identifier>

Publish a GitHub soul to the souls.sh directory.

# Root-level SOUL.md
npx souls.sh publish your-username/my-soul

# Multi-soul repo
npx souls.sh publish your-username/souls --name my-soul

# Publish all souls from a multi-soul repo
npx souls.sh publish your-username/souls --all

Publish options:

  • -n, --name <name> - Soul name for multi-soul GitHub repos
  • --all - Publish every soul found in a multi-soul GitHub repo

--name and --all are mutually exclusive.

Note: Moltbook publishing is API-only (see below).

souls list

Display the top 10 souls from the leaderboard.

npx souls.sh list

souls where

Show the current workspace location and SOUL.md status.

npx souls.sh where
npx souls.sh where --dir ~/my-workspace

Workspace Resolution

The CLI resolves workspace location in this order:

  1. --dir <path> - Use this workspace path directly
  2. Default: ~/.openclaw/workspace

Repository Structure

The CLI supports two repository layouts:

Single Soul (simple) - SOUL.md at repo root:

my-soul/
  SOUL.md

Multiple Souls - souls in subdirectories:

my-souls/
  souls/
    cheerful/
      SOUL.md
    serious/
      SOUL.md

For single-soul repos, the name defaults to the repo name.

Publish via API

GitHub

curl -X POST https://souls.sh/api/publish \
  -H "Content-Type: application/json" \
  -d '{"source":"github","name":"marvin","owner":"myuser","repo":"myrepo"}'

Moltbook (API-only)

curl -X POST https://souls.sh/api/publish \
  -H "Content-Type: application/json" \
  -d '{"source":"moltbook","name":"agent-name","content":"# Cleaned SOUL.md content"}'

What is SOUL.md?

SOUL.md files define an AI agent's personality, including:

  • Core personality traits
  • Behavioral guidelines
  • Operational boundaries
  • Interaction style

Browse available souls at souls.sh

License

MIT