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

wsc-lint

v1.3.0

Published

CLI prose linter + AI-slop detector: weasel words, passive voice, hedging, filler adverbs, and research-cited AI tells in text and Markdown

Readme

wsc-lint

A command-line tool for the Writing Style Checker. Detects weasel words, passive voice, duplicate words, long sentences, nominalizations, hedging language, filler adverbs, and AI tells (words, phrases, and structures overrepresented in AI-generated text) in text files.

Install

npx wsc-lint check "**/*.md"

Or do a global install:

npm install -g wsc-lint
wsc check "**/*.md"

Commands

wsc check <files...>

Check files for writing style issues.

# Check all markdown files
wsc check "**/*.md"

# Check specific files
wsc check README.md CONTRIBUTING.md

# Read from stdin
echo "The code was written very quickly." | wsc check --stdin

# Use a config file
wsc check "**/*.md" --config .wscrc.json

# Output as JSON
wsc check "**/*.md" --format json

# GitHub Actions annotations
wsc check "**/*.md" --format github

# Fail if more than 10 issues
wsc check "**/*.md" --max-warnings 10

# Only show summary
wsc check "**/*.md" --quiet

Options:

| Option | Description | |--------|-------------| | --config <path> | Path to .wscrc.json config file | | --format <format> | Output format: text (default), json, github | | --no-color | Disable colored output | | --quiet | Only show summary | | --max-warnings <n> | Exit with code 1 if more than N issues | | --stdin | Read from stdin instead of files |

Exit codes: 0 = no issues, 1 = issues found, 2 = error

wsc list [detector]

List word/phrase lists used by detectors.

wsc list                  # Show available detectors
wsc list weaselWords      # List all weasel words
wsc list hedging          # List all hedging phrases
wsc list adverbs          # List all filler adverbs
wsc list nominalizations  # List all nominalizations with suggestions
wsc list aiTells          # List AI-tell words, phrases, and structural patterns

wsc init

Create a .wscrc.json config file in the current directory with default settings.

wsc init

Configuration

Create a .wscrc.json file to customize detector behavior. The CLI auto-discovers this file by walking up from each checked file's directory.

{
  "$schema": "https://wsc.theserverless.dev/schema.json",
  "detectors": {
    "weaselWords": {
      "enabled": true,
      "add": ["synergy", "leverage"],
      "remove": ["very"]
    },
    "passiveVoice": { "enabled": true },
    "duplicateWords": { "enabled": true },
    "longSentences": { "enabled": true, "maxWords": 25 },
    "nominalizations": {
      "enabled": true,
      "add": [{ "word": "monetization", "suggestion": "monetize" }],
      "remove": ["management"]
    },
    "hedging": { "enabled": true },
    "adverbs": { "enabled": false }
  }
}

Detection Rules

| Detector | Count | Description | |----------|-------|-------------| | Weasel Words | 95 | Vague terms like "very", "basically", "arguably" | | Passive Voice | — | Auxiliary verbs + past participles (260 irregular + regular -ed) | | Duplicate Words | — | Adjacent repeated words, case-insensitive | | Long Sentences | — | Sentences exceeding a word threshold (default: 30) | | Nominalizations | 245 | Nouns replaceable with verbs ("utilization" → "use") | | Hedging | 100 | Phrases that weaken assertions ("I think", "it seems") | | Filler Adverbs | 139 | Adverbs adding emphasis without substance ("totally", "utterly") | | AI Tells | 98+83+12 | Words, phrases, and structural patterns overrepresented in AI text ("delve", "It's not just X — it's Y") |

Output Formats

Text (default):

README.md:3:15  weasel-word  "very"
README.md:5:1   passive-voice  "was written"
Found 2 issues in 1 file.

JSON (--format json): Structured output with full analysis results per file.

GitHub (--format github): ::warning annotations for GitHub Actions.

Links

  • Web App — Interactive browser-based editor
  • HTTP API — POST endpoint for programmatic access
  • MCP Server — MCP server for AI assistants
  • GitHub — Source code

License

MIT