Overview
noslop is a lightweight NPM package that detects and flags common AI-generated filler phrases — the kind of generic, meaningless text that AI models tend to produce (e.g., “It’s important to note that…”, “In today’s fast-paced world…”).
Usage
npm install noslop
import { detectSlop } from 'noslop';
const result = detectSlop("It's worth noting that this is a game-changer.");
// { score: 0.8, matches: ["It's worth noting", "game-changer"] }
Why
AI-assisted writing is powerful but tends toward homogeneous, cliche-heavy output. noslop helps maintain authentic voice by flagging the most common patterns so writers can revise them.
Used internally in the content-machine pipeline as a quality gate before publishing.