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

@pilotpirxie/ghostwriter

v1.0.11

Published

CLI to split ebooks into chapters and paraphrase with citations.

Readme

ghostwriter

TypeScript CLI tool for splitting documents and ebooks and processing chapters with LLMs. Summarize, translate, rewrite and extract information from the documents.

Supports PDF, EPUB, Markdown, and TXT formats. Works with both OpenAI and Claude.

Quick Start

npx @pilotpirxie/ghostwriter --provider claude --api-key YOUR_KEY run book.pdf -o output

Commands

# split and process ebook in one step.
npx @pilotpirxie/ghostwriter run book.pdf -o output

# split ebook into chapters without AI processing
npx @pilotpirxie/ghostwriter split book.epub -o chapters

# process pre-split chapter files with AI
npx @pilotpirxie/ghostwriter paraphrase chapters/ -o processed

Options

| Flag | Description | Default | | -------------------------- | ---------------------------------------- | ------------------------------------------------------------ | | --provider <name> | AI provider: openai or claude | openai | | --model-name <name> | Model identifier | gpt-4o-mini (OpenAI) or claude-3-haiku-20240307 (Claude) | | --api-key <key> | API key | - | | --prompt-header <text> | Custom instruction for AI | Default paraphrase | | --temperature <n> | Sampling temperature (0-2) | 0.4 | | --max-tokens <n> | Max tokens per call | 1200 (Claude) | | --max-chars-per-call <n> | Max input chars per call | 8000 | | -f, --format <format> | Force format: pdf|epub|txt|md | Auto-detect | | --md-heading-level <1-6> | Markdown heading level for splits | 2 | | --pandoc-path <path> | Custom pandoc binary path | pandoc | | --top-p <n> | Nucleus sampling parameter | - |

Examples

Summarize chapters:

npx @pilotpirxie/ghostwriter --prompt-header "Summarize in 3 bullet points" run book.pdf -o summaries

Translate to Spanish:

npx @pilotpirxie/ghostwriter --prompt-header "Translate to Spanish" run book.epub -o spanish

Custom style:

npx @pilotpirxie/ghostwriter --prompt-header "Rewrite as a pirate" run story.pdf -o pirate-version

Minion style using Claude:

npx @pilotpirxie/ghostwriter --provider claude --prompt-header "Rewrite the chapter using minions from Despicable me style" run book.epub -o output

Requirements

  • Node.js 20+
  • OpenAI or Anthropic API key for paraphrasing
  • Pandoc (optional, fallback for parsing)

Set OPENAI_API_KEY or ANTHROPIC_API_KEY environment variable, or use --api-key flag.

License

MIT