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

soul-md-cli

v1.0.0

Published

CLI validator, scorer, and generator for SOUL.md agent identity files.

Readme

soul-md-cli

npm version npm downloads License: MIT

CLI validator, scorer, and generator for SOUL.md agent identity files.

npx soul-md-cli validate my-agent.soul.md

Install

# Run without installing
npx soul-md-cli <command>

# Install globally
npm install -g soul-cli

Commands

validate <file>

Validates a .soul.md file against the SOUL.md schema. Exits 0 on pass, 1 on fail.

$ npx soul-md-cli validate marcus-aurelius.soul.md

  ✓ PASS  marcus-aurelius.soul.md
  Agent:   Marcus Aurelius
  Version: 1.0.0
$ npx soul-md-cli validate broken.soul.md

  ✗ FAIL  broken.soul.md
  Agent:   (missing)
  Version: 1.0.0

  Errors:
    [name] must have required property 'name'
    [personality] must NOT have fewer than 50 characters

Machine-readable output:

$ npx soul-md-cli validate marcus-aurelius.soul.md --json
{
  "pass": true,
  "file": "marcus-aurelius.soul.md",
  "name": "Marcus Aurelius",
  "version": "1.0.0",
  "errors": []
}

score <file>

Shows a completeness score (0–100) based on optional fields filled.

$ npx soul-md-cli score marcus-aurelius.soul.md

  marcus-aurelius.soul.md  90%  █████████░

  ✓  tone                    (47 chars)
  ✓  values                  (5 items)
  ✓  constraints             (3 items)
  ✓  knowledge_domains       (5 items)
  ✓  communication_style     (143 chars)
  ✓  memory_mode             (7 chars)
  ✓  goals                   (2 items)
  ✓  relationships           (3 items)
  ✓  language                (2 chars)
  ·  platform_hints

  Add 1 more optional field to reach 100%.

init

Interactive soul file generator. Prompts for name, description, personality, and tone, then writes a .soul.md file.

$ npx soul-md-cli init

  SOUL.md generator

  Agent name: Debate Coach
  One-line description: A rigorous debate coach who teaches argument structure and steelmanning.
  Personality (2-3 sentences): ...
  Tone: Demanding but fair. Finds logical fallacies before you finish the sentence.
  Output filename [debate-coach.soul.md]:

  ✓ Created debate-coach.soul.md
  Validate: soul-md-cli validate debate-coach.soul.md
  Score:    soul-md-cli score debate-coach.soul.md
  Deploy:   https://agenturo.app

Non-interactive mode:

npx soul-md-cli init --name "Debate Coach" --no-interactive

Deploy to Agenturo

Agenturo is the reference SOUL.md implementation. Create a soul file with soul-md-cli init, then deploy it as a live AI agent on your own subdomain (you.agenturo.app) — no code required.


Spec & examples

Full specification: soul-spec

Curated examples: awesome-soul-files


MIT License. Created by Anton Agafonov.