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

ai-humanizer-skill

v2.1.0

Published

A Claude Code / Agent skill that rewrites AI-generated text to read naturally and survive AI detectors (GPTZero, Originality, Turnitin, Copyleaks, Pangram, DetectGPT, Binoculars). Includes a before/after detection-risk scorer.

Readme

ai-humanizer-skill

A Claude skill that rewrites AI-generated text so it reads as natural human writing and holds up against AI detectors. It goes beyond surface "signs of AI writing" and targets the signals detectors actually measure, then ships a scorer that estimates a before/after detection-risk number.

Honest disclaimer. AI detectors are unreliable and uncalibrated. A Stanford study (Liang et al., 2023) found they flagged 61% of non-native-English essays as AI. There is a proven impossibility result: as models approach human text, the best detector approaches a coin flip. This tool is for legitimate writing improvement — polishing AI-assisted drafts and helping people who are falsely flagged. No method beats every detector, and trained classifiers (Pangram, GPTZero 3.2b) may be unbeatable by tooling. Use it honestly.

Install

# install for your user (~/.claude/skills)
npx ai-humanizer-skill install

# or into the current project (./.claude/skills)
npx ai-humanizer-skill install --project

Then restart Claude Code and run /ai-humanizer, or just ask Claude to "humanize this text".

Other commands:

npx ai-humanizer-skill where        # show install destination
npx ai-humanizer-skill uninstall    # remove it
npx ai-humanizer-skill --help

What it does

AI detectors split into two families that need opposite tactics. The skill handles both:

| Family | Examples | Beaten by | |---|---|---| | Statistical / zero-shot | DetectGPT, Binoculars, GPTZero's perplexity component, most free tools | Genuinely raising perplexity (specific diction) and burstiness (varied sentence length), plus a real structural rebuild | | Trained neural classifier | Pangram, GPTZero 3.2b, Originality.ai, Turnitin, Copyleaks | Matching a real human voice + a detector-feedback loop. Synonym swaps and generic humanizers are adversarially trained into these. |

Six levers: raise perplexity, raise burstiness, rebuild logic (not words), match a real voice, strip Unicode/formatting watermarks, and recursive/back-translation paraphrase for watermark removal. It refuses to break facts or over-edit formal writing.

Before/after detection scoring

The skill bundles scripts/score.py (Python 3, standard library only). It estimates a 0–100 detection-risk score from measurable signals — burstiness (σ/μ of sentence length), lexical-tell density, Unicode artifacts, and vocabulary richness.

python ~/.claude/skills/ai-humanizer/scripts/score.py mytext.txt
echo "some text" | python ~/.claude/skills/ai-humanizer/scripts/score.py

Example movement from the included test cases:

| Case | Risk before | Risk after | |---|---|---| | Free prose | 75/100 (likely AI) | 0/100 (likely human) | | Technical | 67/100 | 4.6/100 | | Math proof | 47/100 | 7.3/100 |

Caveat: the score estimates the statistical detector family only. A low score does not guarantee a trained classifier (Pangram, GPTZero) will pass the text. The only ground truth is running a real detector and feeding its sentence-level highlights back in — the skill's detector-feedback workflow does exactly that.

Contents

skill/
├── SKILL.md                    operational guide (the skill Claude loads)
├── scripts/score.py            before/after detection-risk estimator
└── reference/
    ├── detector-landscape.md   per-detector teardowns + research citations
    └── test-cases.md           three worked before/after examples with scores

Requirements

  • Node.js >= 16 (for the installer)
  • Python 3 (only for the optional score.py)
  • Claude Code, or any host that loads ~/.claude/skills

License

MIT © mlswijerathne