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

promptdiff

v1.0.1

Published

Compare prompt versions. See what broke your AI. glitch the diff.

Downloads

19

Readme

promptdiff

Compare prompt versions. See what broke your AI.

npm license

Documentation · Report Bug · All Tools

Install

npm install -g promptdiff

Usage

# compare two prompt files
promptdiff v1.txt v2.txt

# inline diff (shows changes within text)
promptdiff v1.txt v2.txt --format inline

# side by side view
promptdiff v1.txt v2.txt --format side

# compare text directly
promptdiff -t "You are a helpful assistant" "You are a coding expert"

# stats only
promptdiff v1.txt v2.txt --stats
# prompt diff stats:
#   before:     15 words, 89 chars
#   after:      18 words, 102 chars
#   added:      5
#   removed:    2
#   unchanged:  13
#   similarity: 72%

Output Formats

Unified (default)

--- prompt-v1.txt
+++ prompt-v2.txt

  You are a
- helpful assistant.
+ coding expert.
  Be concise
+ and precise.

// 72% similar | +5 -2

Inline

You are a [-helpful assistant.][+coding expert.] Be concise[+ and precise.]

Side by Side

┌──────────────────────┬──────────────────────┐
│ BEFORE               │ AFTER                │
├──────────────────────┼──────────────────────┤
│ You are a helpful    │ You are a coding     │
│ assistant.           │ expert.              │
│ Be concise.          │ Be concise and       │
│                      │ precise.             │
└──────────────────────┴──────────────────────┘

Options

| Flag | Description | Default | |------|-------------|---------| | -f, --format | Output format: inline, unified, side | unified | | -t, --text | Compare text strings directly | false | | -s, --stats | Show statistics only | false | | --no-color | Disable colored output | false | | -w, --width | Width for side-by-side view | 40 | | -o, --output | Save diff to file | - |

Pro Tips

Version control your prompts

# see what changed since last commit
promptdiff <(git show HEAD~1:prompt.txt) prompt.txt

# compare branches
promptdiff <(git show main:prompt.txt) <(git show feature:prompt.txt)

Track prompt evolution

# save diffs for documentation
promptdiff v1.txt v2.txt -o changelog/v1-v2.diff

More tools from pnkd.dev

View all tools →

License

MIT © pnkd.dev


pnkd.dev — glitch the system. break the prompt.