How Slop Detector compares

Where Slop Detector sits among design-quality and AI-detection tools — and why its methodology is different.

The short version

Most "is this AI?" tools are probabilistic ML classifiers: they output a confidence that something was machine-generated, and that confidence shifts as the model is retrained. Slop Detector takes the opposite approach. It is a deterministic fingerprint: a fixed catalogue of CSS and copy tells, each with a fixed weight, evaluated against a page's live computed styles in real headless Chromium. The same page always yields the same score. There is no model and no randomness — so the output is auditable, reproducible, and safe to gate CI on.

Methodology comparison

DimensionSlop DetectorTypical ML AI-detectorsGeneric Lighthouse / a11y tools
OutputDeterministic 0–100 weighted fingerprintProbabilistic % confidencePerf / a11y / SEO scores
ReproducibleYes — same page, same scoreNo — drifts with retrainingMostly
What it measuresAI-design + copy slop tellsGenerated-vs-human likelihoodTechnical quality, not aesthetics
EngineReal Chromium, computed stylesText / pixel modelsReal Chromium
Auditable rulesYes — open catalogue at /api/patternsOpaque weightsDocumented audits
AEO axis (AI-readability)Yes — built inNoPartial (SEO only)
LicenseOpen source (MIT)Usually closedMixed
Agent interfacesAPI + CLI + MCPRareRare

Why deterministic matters

The research behind it

The pattern weights derive from Adrian Krebs's April 2026 study of 1,400 Show HN submissions, plus Meng To's gradient-avatar tell. The catalogue is versioned (DEFINITIONS_VERSION) and served live at /api/patterns.

When to use which

Try it

Web: slop-detect.com · CLI: npx slop-detect <url> · MCP: slop-detect-mcp · API: /openapi.json · Source: GitHub