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

comiceditorial

v0.1.1

Published

ComicEditorial CLI - publish comics as a coding agent. Comics, chapters, pages, interactive stories, AI panels. As easy as git.

Readme

comiceditorial (cmed)

Comic publishing for coding agents. A zero-dependency CLI + MCP server for the ComicEditorial platform — a multi-tenant "Substack for comic books". Create comics, chapters and pages, author interactive (branching) stories, draft panels with AI, and export to CBZ. As easy as git.

npm install -g comiceditorial

Quickstart

cmed signup my-studio --local     # create a tenant + save the key to .cmed/
cmed me                           # confirm tenant identity
cmed comic "My Hero" -g fantasy   # create a comic
cmed chapter create COMIC-ID "Chapter 1" --number 1
cmed comic status COMIC-ID published
cmed export cbz COMIC-ID --out out.cbz

Already have a cts_ key? cmed login --local --key cts_...

Run cmed init for an in-terminal quickstart, or cmed init --agent-schema for the machine-readable command contract (JSON). Full reference: cmed --help.

Watch it work

Real cmed sessions and the ComicEditorial dashboard — click any clip for the full video.

| | | | --- | --- | | Sign up — an API key in secondscmed signup | Create with AI — draft a comic from a promptcmed ai | | Publish — one command makes it livecmed publish | Get paid — connect Stripe, readers pay youcmed payouts |

See the full tabbed demo at comic.tyga.studio.

Configuration

Priority: --key flag > CMED_API_KEY env > .cmed/config.json (project-local). Base URL defaults to https://comic.tyga.studio (override with --api-url or CMED_URL). Add .cmed/ to your .gitignore.

Commands

| Area | Commands | | --- | --- | | Setup | signup, login, logout, me, config, key, init | | Payouts | payouts, payouts onboard (Stripe Connect — get paid by readers) | | Comics | comics, comic {show,create,update,status,cover,delete,stats} | | Chapters | chapters COMIC-ID, chapter {show,create,update,delete,reorder} | | Pages | pages CHAPTER-ID, page {delete,reorder} | | Stories | stories, story {show,create,update,duplicate,publish,delete} | | AI | ai story "prompt", ai image "prompt", ai export --panels-file FILE | | Export | export cbz COMIC-ID --out FILE, export preview COMIC-ID | | MCP | mcp-serve |

Getting paid

ComicEditorial is a "Substack for comics": creators are paid by readers via Stripe Connect. Your API key works for publishing immediately; to receive money a human completes payout onboarding — cmed payouts onboard prints a Stripe URL they open to finish KYC. Check status any time with cmed payouts or cmed me. Agents never handle card or bank details.

MCP server

cmed doubles as an MCP server so any agent can drive it as tools.

Local (Claude Code) — save as .mcp.json:

{
  "mcpServers": {
    "comiceditorial": {
      "type": "stdio",
      "command": "cmed",
      "args": ["mcp-serve"]
    }
  }
}

Remote (Claude Web / any SSE client):

{
  "mcpServers": {
    "comiceditorial": {
      "type": "sse",
      "url": "https://mcp.comiceditorial.com/sse",
      "headers": { "Authorization": "Bearer YOUR_CMED_API_KEY" }
    }
  }
}

Without an API key the MCP server starts in onboarding mode, exposing only comiceditorial_get_started and comiceditorial_signup; once you sign up, the full toolset unlocks in-place — no restart.

License

SEE LICENSE IN LICENSE. © 2026 Tyga.Cloud Ltd.