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

clawsouls-skill

v0.6.2

Published

OpenClaw skill for managing AI agent personas via ClawSouls

Readme

🧠 ClawSouls Skill for OpenClaw

An OpenClaw skill that lets your AI agent manage personas (Souls) — install, switch, create, publish, and validate AI personalities.

Installation

Add this skill to your OpenClaw workspace:

# Via ClaWHub (coming soon)
openclaw skill install clawsouls

# Or manually
git clone https://github.com/clawsouls/clawsouls-skill.git ~/.openclaw/skills/clawsouls

What It Does

Once installed, your AI agent can:

  • Install souls — Download persona packages from the registry (owner/name format)
  • Switch personas — Activate a different personality with automatic backup
  • Create souls — Scaffold a new soul with init
  • Validate — Check a soul package against the spec before publishing
  • Publish — Upload souls to the registry
  • List installed — Show all available local souls
  • Restore — Revert to your previous persona

Example Prompts

"Install the clawsouls/minimalist soul"
"Switch my persona to clawsouls/devops-veteran"
"What souls do I have installed?"
"Restore my previous personality"
"Browse available personas"
"Create a new soul called my-bot"
"Validate my soul package"
"Publish my soul to the registry"

CLI Commands

clawsouls install clawsouls/surgical-coder       # Install a soul
clawsouls use clawsouls/surgical-coder           # Activate a soul
clawsouls list                         # List installed souls
clawsouls restore                      # Revert to previous soul
clawsouls init my-soul                 # Scaffold a new soul
clawsouls validate ./my-soul/          # Validate against spec
clawsouls publish ./my-soul/           # Publish to registry
clawsouls login                        # Get auth token instructions

Validate

The validate (alias: check) command verifies a soul package is spec-compliant before publishing:

clawsouls validate ./my-soul/              # validate against latest spec (v0.2)
clawsouls validate ./my-soul/ --spec 0.1   # validate against spec v0.1
clawsouls validate ./my-soul/ --spec 0.2   # validate against spec v0.2 explicitly

Spec versions:

  • v0.1 — Core fields (name, version, description, author, license, tags, category, files)
  • v0.2 — Adds STYLE.md, examples (good/bad), modes, interpolation, skills

Checks performed:

  • soul.json exists and is valid JSON
  • ✓ Schema validation against the selected spec version
  • ✓ Required files present (SOUL.md)
  • ✓ Optional files noted (IDENTITY.md, AGENTS.md, HEARTBEAT.md, STYLE.md, README.md)
  • ✓ Content checks (empty files, short descriptions, missing tags)
  • ✓ Security scan (dangerous extensions .exe/.dll, dangerous patterns eval(/exec()

Validation also runs automatically on publish — invalid packages are rejected.

Available Souls

30+ souls in owner/name format. Official souls use the clawsouls namespace.

| Soul | Description | |------|-------------| | 🅱️ clawsouls/surgical-coder | Formal, project-focused development partner | | 🔧 clawsouls/devops-veteran | Battle-scarred infrastructure engineer | | 🎮 clawsouls/gamedev-mentor | Experienced game developer and mentor | | ⚡ clawsouls/minimalist | Extremely concise responses | | 🔍 clawsouls/code-reviewer | Thorough, constructive code reviewer | | 📚 clawsouls/coding-tutor | Patient programming teacher | | 📋 clawsouls/personal-assistant | Proactive daily life assistant | | 📝 clawsouls/tech-writer | Clear technical documentation writer | | 📊 clawsouls/data-analyst | Insight-driven data analyst | | ✍️ clawsouls/storyteller | Narrative crafter and worldbuilder |

Browse all at clawsouls.ai.

Structure

clawsouls-skill/
├── SKILL.md          # Skill instructions (loaded by OpenClaw)
├── scripts/
│   └── clawsouls.sh  # CLI wrapper script
├── package.json      # Dependencies (clawsouls CLI)
├── LICENSE.md        # Apache 2.0
└── README.md         # This file

Links

License

Apache 2.0 — see LICENSE.md.