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

gboy-character-selector

v1.0.0

Published

Select characters from the G*BOY universe for your OpenCLAW agent personality

Readme

G*BOY Character Selector

An OpenCLAW skill for switching your agent's personality between curated characters from the G*BOY universe.

Each character comes with a complete personality profile:

  • SOUL.md -- Internal values, tone, and behavioral principles (loaded every session)
  • IDENTITY.md -- External presentation: name, emoji, vibe, avatar path
  • Avatar image -- Displayed in OpenCLAW's Control UI

When you select a character, your current personality files are backed up automatically before the new ones are installed.

Characters

| | Name | Stat | Description | |---|---|---|---| | :brain: | Headcase | PSIONICS | A psionic operative who bends code through sheer mental force | | :thought_balloon: | Daydreamer | IMAGINATION | A visionary who codes what others can only imagine | | :unlock: | Thinktank | INTELLECT | A BLOC hacker who lives for the puzzle -- cracking systems and hoarding lore | | :fire: | Diehard | GUTS | An unbreakable BLOC loyalist who stands in the fire when everyone else runs | | :handshake: | Inside Man | TRUST | The BLOC's most connected operative -- earns trust and builds bridges |

Requirements

  • Node.js 22+
  • macOS or Linux

Install

npm install -g gboy-character-selector

As an OpenCLAW Skill

npm install -g gboy-character-selector

Then invoke it as /gboy-character-selector inside OpenCLAW.

From Source

git clone https://github.com/basedmereum/gboy-character-openclaw.git
cd gboy-character-openclaw
npm install
npm run build

Usage

# Interactive character selection (default)
node dist/index.js

# List all available characters
node dist/index.js list

# Interactive selection with confirmation
node dist/index.js select

# Restore a previous character from backup
node dist/index.js restore

Selecting a Character

Running select walks you through:

  1. Browse all G*BOY universe characters (emoji, name, description)
  2. Preview the character's personality (first lines of SOUL.md)
  3. Confirm your choice
  4. Current files are backed up, new character is installed
  5. Restart your OpenCLAW session to apply

Restoring a Backup

Running restore shows a list of timestamped backups. Pick one and your previous SOUL.md, IDENTITY.md, and avatar are restored to the workspace.

Adding a Character

Create a new directory under characters/ with a lowercase slug:

characters/my-character/
  character.yaml
  SOUL.md
  IDENTITY.md
  avatar.png

character.yaml defines the metadata:

name: "My Character"
slug: my-character
emoji: ":sparkles:"
description: "A short description of this character"
series: "BLOC"
  • slug must match ^[a-z0-9-]+$
  • SOUL.md defines personality, values, and communication style
  • IDENTITY.md defines name, emoji, vibe, and avatar path
  • avatar.png is optional but recommended

Rebuild and the new character appears in the selection list.

Workspace Paths

| Path | Purpose | |---|---| | ~/.openclaw/workspace/SOUL.md | Active personality | | ~/.openclaw/workspace/IDENTITY.md | Active identity | | ~/.openclaw/workspace/avatars/ | Active avatar image | | ~/.openclaw/backups/characters/ | Timestamped backups |

Development

npm run build       # Build with tsup
npm run dev         # Build in watch mode
npm test            # Run tests (vitest)
npm run test:watch  # Run tests in watch mode
npm run typecheck   # TypeScript type checking

Project Structure

src/
  index.ts              Entry point and command routing (commander)
  types.ts              Zod schemas and TypeScript interfaces
  fs-utils.ts           Shared filesystem utilities
  character-library.ts  Character discovery, YAML parsing, validation
  workspace-manager.ts  Backup, install, restore operations
  cli.ts                Interactive prompts and formatted output

characters/             Character definitions (YAML + markdown + avatars)
tests/                  Unit tests (vitest)

License

MIT