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

st-card-skills

v3.4.1

Published

SillyTavern character card & world book CLI + AI coding assistant skills (Claude Code, Codex, Gemini CLI)

Downloads

3,092

Readme

st-card-skills

SillyTavern character card & world book CLI tool + AI coding assistant skills.

Supports Claude Code, Codex, and Gemini CLI.

Install

npm install -g st-card-skills@latest

This gives you two commands:

  • st-card-tools — CLI tool for reading/writing character cards and world books
  • st-card-skills — Install skill files for your AI coding assistant

Quick Start

# Install skill files (interactive runtime selector)
st-card-skills

# Configure SillyTavern path
st-card-tools init-config --st-root "/path/to/SillyTavern" --workspace "./workspace"

# Or use the setup wizard in Claude Code
/st:setup

CLI Tool (st-card-tools)

st-card-tools list-cards          # List character cards
st-card-tools read-card <name>    # Read card JSON
st-card-tools extract-card <name> # Extract card + greetings + regex scripts + world book to workspace
st-card-tools apply-card <name>   # Apply workspace back to PNG + world book
st-card-tools list-worlds         # List world books
st-card-tools read-world <name>   # Read world book entries
st-card-tools extract-world <name> # Extract world to workspace (entry .json + -content.txt)
st-card-tools apply-world <name>  # Apply workspace back to JSON

Skills Installer (st-card-skills)

# Install for a specific runtime
st-card-skills --claude
st-card-skills --codex
st-card-skills --gemini
st-card-skills --all

# Uninstall
st-card-skills --uninstall --claude

| Runtime | Install Location | |---------|-----------------| | Claude Code | ~/.claude/commands/st/ | | Codex | ~/.codex/skills/st-*/ | | Gemini CLI | ~/.gemini/commands/st/ |

Available Skills

| Skill | Description | |-------|-------------| | /st:setup | Configure SillyTavern path and workspace | | /st:help | Show all available commands and usage | | /st:quick_start | Learn tools & ask what user wants to do | | /st:mvu | Add or modify MVU variable system and frontend | | /st:image | Add image insertion system to a character card |

MVU Variable System

/st:mvu helps you add the MVU (MagVarUpdate) variable framework to any character card, or modify an existing one. It generates:

  • Zod schema script — Type-safe variable structure with validation and constraints
  • MVU runtime script — The MVU engine import
  • 5 world book entries — Variable list, update rules, output format, format reminder, initialization
  • 6 regex scripts — Hide/beautify variable update blocks, remove placeholders from prompts
  • Frontend status bar (optional) — Real-time variable display with tab layout

Templates are bundled in templates/mvu/ (world book metadata, regex configs, beautification HTML).

Image Insertion System

/st:image helps you add an image insertion system to any character card. It works by:

  1. World book entries tell the AI what images are available (directory of SFW/NSFW categories with numbered ranges)
  2. AI outputs path tags like [img_sfw:SFW/人物微笑/3.jpg] in its responses
  3. Regex scripts replace those tags with <img> HTML tags, loading images from your hosting URL

Features:

  • Custom hosting — Works with any image host (GitGud, GitHub, S3, self-hosted, etc.)
  • SFW + NSFW — NSFW images render with blur by default, click to reveal
  • Two modes — Inline narrative images and structured data images (forum posts, chat messages, etc.)

Templates are bundled in templates/image/ (world book metadata, regex configs, img rendering HTML).

License

MIT