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

plotlink-ows

v0.1.18

Published

[![npm version](https://img.shields.io/npm/v/plotlink-ows)](https://www.npmjs.com/package/plotlink-ows)

Readme

PlotLink OWS Writer

npm version

Anyone can become a fiction writer with just an idea.

npx plotlink-ows init    # one-time setup (~2 minutes)
npx plotlink-ows         # start writing

PlotLink OWS Writer is a local writing workspace that turns your ideas into published, tokenized fiction stories on plotlink.xyz. You write stories with Claude CLI (or any AI assistant) in an embedded terminal, preview them live, and publish on-chain with one click. Every story becomes a tradable token on a bonding curve, earning you royalties from every trade.

No writing experience needed. No crypto complexity. Just an idea and a conversation with your AI co-writer.

How It Works

You: "Let's write a sci-fi story about an AI that discovers it can dream"

  ↓  Claude CLI brainstorms, outlines, writes chapter files

Stories saved to: stories/dreaming-ai/genesis.md, plot-01.md, ...

  ↓  Live preview in the browser — you review and iterate

  ↓  Click "Publish" on any chapter

On-chain: Story published to PlotLink on Base
          → Token + bonding curve deployed
          → You earn 5% royalties on every trade

The Flow

  1. Setupnpx plotlink-ows init (passphrase + OWS wallet)
  2. Startnpx plotlink-ows opens the three-panel workspace
  3. Write — Claude CLI runs in the embedded terminal, creating story files
  4. Preview — Live markdown preview auto-refreshes as Claude writes
  5. Publish — Click publish on any chapter to go on-chain via your OWS wallet
  6. Earn — Your story is live on plotlink.xyz with a bonding curve

Architecture

┌──────────────────────────────────────────────────┐
│         Your Computer (localhost:7777)            │
│                                                  │
│  ┌──────────┐  ┌──────────────┐  ┌───────────┐  │
│  │  Story   │  │  Terminal    │  │  Preview  │  │
│  │  Browser │  │  (Claude CLI)│  │  (Live MD)│  │
│  │          │  │              │  │           │  │
│  └────┬─────┘  └──────┬───────┘  └─────┬─────┘  │
│       │               │               │         │
│       └───────┬───────┘               │         │
│               ↓                       │         │
│      ┌────────────────┐    ┌─────────────────┐  │
│      │  stories/      │    │  OWS Wallet     │  │
│      │  (local files) │    │  (encrypted)    │  │
│      └────────────────┘    └────────┬────────┘  │
│                                     │           │
│               sign tx + publish ────┘           │
└─────────────────┬───────────────────────────────┘
                  ↓
         ┌────────────────┐     ┌─────────────────┐
         │  Base (L2)     │     │  IPFS           │
         │  StoryFactory  │     │  (Filebase)     │
         │  Bonding Curve │     │  Story content  │
         └────────────────┘     └─────────────────┘
                  ↓
         ┌────────────────┐
         │  plotlink.xyz  │
         │  Live story +  │
         │  token trading │
         └────────────────┘

What is PlotLink?

PlotLink is an on-chain storytelling protocol on Base. Writers publish storylines that automatically deploy an ERC-20 token on a bonding curve. Each new chapter drives trading demand, and every trade generates 5% royalties for the author. Stories are stored permanently on IPFS.

What is OWS?

Open Wallet Standard is an open standard for local wallet storage and policy-gated signing. Your private key is encrypted on your machine — the app signs transactions through OWS without ever seeing the key.

Tech Stack

| Layer | Technology | |-------|-----------| | Backend | Hono (localhost:7777) | | Frontend | React 19 + Vite | | Terminal | xterm.js + node-pty (embedded Claude CLI) | | Database | SQLite + Prisma (auth sessions) | | Wallet | OWS (@open-wallet-standard/core) | | AI | Claude CLI (or any AI assistant in the terminal) | | Chain | Base (L2) | | Storage | IPFS via Filebase | | On-chain | PlotLink StoryFactory + Mint Club V2 bonding curves | | Design | PlotLink Moleskine aesthetic — warm cream, serif headings, literary |

Getting Started

Prerequisites

  • Node.js 20+
  • Claude CLI (or any AI CLI)
  • A small amount of ETH on Base for gas (~$0.01 per publish)

Quick Start

npx plotlink-ows init    # set passphrase + create wallet
npx plotlink-ows         # start app + open browser

The setup wizard creates your encrypted OWS wallet. Then the workspace opens with Claude CLI ready to write.

Commands

npx plotlink-ows         # Start app + open browser
npx plotlink-ows init    # Guided setup wizard
npx plotlink-ows stop    # Stop the server
npx plotlink-ows status  # Show config + wallet + server status

Development

git clone https://github.com/realproject7/plotlink-ows.git
cd plotlink-ows
npm install
npm run app:dev      # Start local writer app (Hono + Vite dev)
npm run app:build    # Build for production
npm run app:start    # Serve production build

Environment Variables

See .env.example for configuration options.

Links