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

strikemd

v0.1.5

Published

AI-powered suggestion-mode editor for markdown. Run editorial checks and review changes Google Docs-style in the browser.

Readme

strikemd

AI-powered suggestion mode for markdown files. Run editorial checks and review changes Google Docs-style in the browser.

Features

  • 🔍 AI editorial checks — run prose checks like "remove redundancy", "hedge strong claims", "clarify unclear sentences" against any markdown file
  • 📝 Inline suggestions — see deletions, insertions, and replacements rendered inline with your document
  • Accept/reject — review each suggestion
  • 💬 Reviewer comments — every suggestion includes an explanation of why the change improves the text
  • 🔧 Custom checks — run strikemd init to customize which checks you use
  • 💾 Save in place — accepted changes write back to the original file

Install

Requires Bun.

bun install -g strikemd

Usage

strikemd my-essay.md

This opens a browser UI where you pick a check and model, run it, and review the suggestions.

Pass an API key with --key, the ANTHROPIC_API_KEY env var, or a .env file.

strikemd my-essay.md --key sk-ant-...

Other commands:

strikemd help       # show usage info
strikemd init       # create .strikemd/checks.md with default checks
strikemd -v         # print version

Built-in checks

  • Remove redundant sentences — cut sentences that repeat a point or add no new information
  • Hedge too-strong claims — qualify assertions that are stated too strongly
  • Replace rhetoric with substance — swap emotional appeals for concrete statements
  • Activate passive voice — rewrite passive constructions in active voice where it helps
  • Clarify unclear sentences — rewrite ambiguous or hard-to-parse sentences
  • Make the download explicit — turn abstract explanations into concrete frameworks

Custom checks

Run strikemd init to copy the default checks into .strikemd/checks.md. Edit that file to add, remove, or rewrite checks. Each # Heading becomes a check name, and the body becomes the prompt:

# Fix jargon

Find technical jargon that could be replaced with plain language. Rewrite for a general audience.

# Shorten paragraphs

Break paragraphs longer than 4 sentences into smaller ones.

When .strikemd/checks.md exists, it replaces the built-in checks entirely.

License

MIT