Skip to main content

vibe-check

Catch AI-vibecoded slop before it ships. A single-file, zero-dependency Python linter that detects 50 patterns of AI-generated code smell in web projects , from missing favicons to hardcoded API keys. It automates the mechanically-detectable part of the 50 Anti-Slop Rules standard.

vibe-check ./my-project
# 43 file(s) scanned. 7 error(s), 4 warning(s) found.

Why?

AI code assistants are incredible accelerators, but they reproduce common patterns from their training data at scale: placeholder copy, insecure defaults, skipped accessibility, and cargo-culted anti-patterns. vibe-check catches these automatically so you don't have to.

Quick Start

# pip install (recommended)
pip install vibe-linter

# Or download the single file (no pip needed)
curl -O https://raw.githubusercontent.com/Fayberr/vibe-check/main/vibe-check
chmod +x vibe-check

# Or clone
git clone https://github.com/Fayberr/vibe-check.git
cd vibe-check

# Run on a project
./vibe-check /path/to/project

# Production mode (stricter checks)
./vibe-check /path/to/project --prod

# Auto-fix what's fixable
./vibe-check /path/to/project --fix

# Audit prevention layers (AI co-author blocking, git hooks)
./vibe-check --setup

# Machine-readable for AI agents and CI
./vibe-check /path/to/project --json --quiet

# Only scan files changed since last git commit
./vibe-check /path/to/project --changed

Requirements: Python 3.9+. Nothing else.

What It Checks (55 automated rules)

vibe-check is built against the 50 Anti-Slop Rules, a numbered standard for AI-generated web work. Not every rule in that standard is mechanically detectable, so the tool automates the 55 concrete checks below and leaves 11 judgement-call rules to human or agent review. Spec rule numbers are given as (Rule N) where a check maps onto the standard; checks without one are vibe-check extensions that go beyond it.

Each bullet is a distinct rule id you'll see in --json output (shown in backticks). Rules marked (prod) only fire with --prod. To list the ids straight from the source: grep -oE "Finding\('[a-z0-9-]+'" vibe-check | sort -u , note that returns 56, because html-parse-error is an internal diagnostic rather than a slop rule. (The character class needs the 0-9 or it silently drops missing-h1 and multiple-h1.)

Domain & Branding

  • vercel-urls (Rule 1) , hardcoded vercel.app URL in source
  • ai-watermarks (Rule 4) , leftover AI builder watermarks ("Made with Lovable", "Created with v0", "built with bolt.new")
  • missing-favicon (Rule 3) , no <link rel="icon"> tag
  • default-favicon (Rule 3) , default Vite/React placeholder favicon left in place

Copywriting & Placeholder Content

  • em-dashes (Rule 12) , em-dash (U+2014) characters in copy (auto-fixable)
  • double-dash , -- used as a prose dash, e.g. "great , this works" (auto-fixable)
  • placeholder-copy (Rules 14, 16) , unedited placeholder text ("John Doe", "Jane Smith", "Trusted by 10,000+ creators", "Lorem ipsum")

Design & UI Hygiene

  • script-fonts (Rule 9) , cursive/script Google Font imports (Dancing Script, Pacifico, Great Vibes, Satisfy, Caveat)
  • emoji-in-ui (Rule 10) , emoji characters in rendered page content, use SVG icons instead
  • unstyled-selects , <select> elements in JSX/TSX with no className
  • inline-styles , inline style={{...}} objects (use Tailwind/CSS modules)
  • missing-input-autocomplete , <input type="password"> missing an autocomplete attribute
  • generic-gradient-palette (Rule 5) , the default AI indigo/violet/purple gradient (#6366f1/#8b5cf6/#a855f7, or bg-gradient-to-r from-indigo-500 to-purple-600)
  • gradient-hero-text (Rule 7) , gradient-filled headline text (bg-clip-text + text-transparent + a gradient, or the -webkit-background-clip: text CSS equivalent)

SEO & Accessibility

  • missing-meta-desc (Rule 30) , missing <meta name="description"> tag
  • default-title (Rule 23) , default framework tab title ("Vite + React")
  • long-title (Rule 24) , page title over 24 characters (browser tabs truncate)
  • missing-og-image (Rule 32) , missing og:image social preview tag
  • missing-h1 (Rule 34) , no <h1> element on the page
  • multiple-h1 (Rule 34) , more than one <h1> element on the page
  • img-no-alt-html (Rule 38) , <img> in .html missing alt text
  • img-no-alt (Rule 38) , <img> in JSX/TSX missing alt text
  • missing-lang (Rule 37) , missing lang attribute on <html>
  • missing-canonical (Rule 35, prod) , missing <link rel="canonical">
  • missing-sitemap (Rule 36, prod) , no sitemap.xml found
  • missing-llms-txt (Rule 29, prod) , no llms.txt found
  • missing-privacy-policy (Rule 18, prod) , no Privacy Policy file/route found
  • missing-terms (Rule 19, prod) , no Terms & Conditions file/route found
  • broken-buttons (Rule 20) , interactive elements with a dead href="#" target
  • json-ld-missing (Rule 33, prod) , no <script type="application/ld+json"> structured data. Only fires on pages that are already SEO surfaces (they carry a description, og: tags or a canonical), so app shells and extension popups are left alone
  • robots-blocks-crawlers (Rule 28) , robots.txt disallows / for *, Googlebot or Bingbot, de-indexing the whole site. Blocking only AI crawlers (GPTBot, CCBot, ...) is treated as deliberate and never flagged on its own

Technical & Code Quality

  • console-log (Rule 25) , console.log() calls left in .tsx files
  • exposed-source-maps (Rule 26) , .map files shipped in dist/public
  • dangerously-set-html , dangerouslySetInnerHTML in JSX/TSX
  • target-blank-noopener , target="_blank" without rel="noopener noreferrer"
  • as-type-casts , as type casts in TypeScript (prefer type narrowing)
  • tech-debt-markers , TODO/FIXME/HACK comments
  • oversized-bundle (Rule 27) , a shipped .js/.mjs/.cjs chunk over 500KB in dist/build/out/public. Reads the build output that is already on disk, so it needs no build step of its own

Security

  • xss-sinks (Rule 40) , innerHTML, outerHTML, insertAdjacentHTML, document.write, eval(), v-html, javascript: URLs
  • file-upload-gaps (Rule 41) , <input type="file"> without accept, multer without fileFilter, express.static over upload dirs
  • unsigned-webhooks (Rule 42) , a file handles a webhook route but has no HMAC signature verification
  • unsigned-webhooks-project (Rule 42) , same check, project-wide (webhook handler and verification live in different files)
  • hardcoded-secrets (Rule 43) , API keys, DB credentials, private keys, access tokens, DB connection strings with embedded credentials
  • broken-jwt (Rule 44) , verify=False, algorithms=["none"], ignoreExpiration:true, jwt.decode() without algorithm pinning
  • debug-mode (Rule 45) , DEBUG=True, NODE_ENV=development, Flask/Django/FastAPI debug flags left on
  • unsafe-deserialization (Rule 46) , pickle.loads(), yaml.load() without SafeLoader, torch.load() without weights_only, vm.runInNewContext()
  • math-random-security (Rule 47) , Math.random() used near token/auth/reset/session/csrf/nonce/otp context
  • missing-security-headers (Rule 48) , Express without helmet, Flask without Talisman, FastAPI without Secure
  • ssrf-user-urls (Rule 49) , unfiltered user input flowing into fetch()/axios/requests/httpx/urllib
  • no-rate-limiting (Rule 50) , no rate-limiting middleware on an Express/Flask/FastAPI server
  • rls-permissive-policy , Supabase/Postgres USING (true) or WITH CHECK (true) unconditional RLS policy
  • rls-disabled , DISABLE ROW LEVEL SECURITY in a SQL migration
  • supabase-service-role-key-exposed , a decoded JWT with role: "service_role" hardcoded in source

Git & AI-Attribution Hygiene

  • ai-co-author-trailers (Rule 51) , Co-Authored-By: Claude/GPT/Gemini/Copilot/Codex trailers in git commit history
  • claude-attribution , ~/.claude/settings.json leaves AI co-author trailers enabled (--fix corrects this at the source)

Specified but not automated

These 11 rules are part of the 50 Anti-Slop Rules standard but are not detected by vibe-check. They need visual, semantic, or runtime judgement that a regex pass can't make honestly, and a check that fires on "is this headline a buzzword?" would be mostly false positives. They stay on the human/agent review checklist, and double as the roadmap for future checks:

Rule Standard says Why not automated (yet)
2 No text-only unbranded logos Needs visual/asset judgement
6 No AI-slop stock photos / synthetic avatars Needs image analysis
8 No scroll animation bloat (Framer Motion / AOS) "Excessive" is a threshold call, not a pattern match
11 No single-page traps for complex apps Requires understanding app scope
13 No vague buzzword hero headlines Semantic judgement, high false-positive risk
15 No fake live visitor badges Needs semantic reading of the component
17 No fake metric counter bars Needs semantic reading of the component
21 No empty View Source (SSR/fallback) Requires rendering the page
22 No missing 404 page Router-dependent, varies per framework
31 No identical <title> tags across pages Needs cross-page correlation (planned, feasible)
39 No unhandled hydration / client-side errors Requires running the app

Rule 31 is the last genuinely mechanical gap and the best candidate to implement next. Rules 5, 7, 27, 28 and 33 used to sit in this table; each turned out to have a mechanical core worth checking even though the full rule needs judgement, so they now ship as the five rules marked generic-gradient-palette, gradient-hero-text, oversized-bundle, robots-blocks-crawlers and json-ld-missing above. All five default to warn, and each is deliberately narrow: they fire on the unambiguous case and stay quiet on the contextual one.

Output

๐Ÿ” Running Vibe-Check on: /home/user/my-project

๐Ÿ“„ src/components/Hero.jsx
  โœ– [ERROR] Found 1 target="_blank" link(s) without rel="noopener noreferrer" (lines 18).
  โš  [WARN]  Found 1 inline style={{...}} object(s) (lines 52).

๐Ÿ“„ src/utils/api.ts
  โœ– [ERROR] Found 1 hardcoded secret(s): L12:API key assignment.
  โš  [WARN]  Found 2 tech-debt marker(s): L5:TODO, L33:FIXME.

โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”
Scanned 43 file(s).
FAILED: 3 error(s), 3 warning(s) found.
  • ERROR , blocks CI, must fix
  • WARN , advisory, should fix

Exit Codes

Exit Meaning
0 Clean (or warnings only)
1 Errors found

Flags

Flag Description
--prod Stricter checks: legal pages, sitemaps, canonical tags
--fix Auto-fix fixable errors (em-dashes)
--changed Only scan files changed since last git commit
--no-cache Disable file-hash caching (always re-scan)
--setup Audit prevention layers (Claude attribution, git hooks). Add --json for AI agent consumption
--install-hooks Install git commit-msg hook to block AI co-author trailers
--install-hooks --global Install the commit-msg hook globally (all repos)
--install-hooks --server Install pre-receive hook on all bare repos under <path> (server-side, cannot be bypassed)
--json Output findings as machine-readable JSON (for AI agent consumption)
--quiet Suppress human-readable output (use with --json for clean machine output)

Defense Layers Against AI Co-Author Trailers

vibe-check provides layered defense. Each layer catches what the previous one might miss:

Layer Scope Bypassable? Install
1. Settings fix Per-machine (root cause) No vibe-check --fix
2. Commit-msg hook Client-side --no-verify vibe-check --install-hooks
3. Pre-receive hook Server-side (all pushes) No vibe-check --install-hooks --server ~/
4. Stop-hook scan Session-end (Claude Code) Machine scope Automatic
5. ai-co-author-trailers detection Retroactive scan Detection only Built-in

Recommended setup for self-hosted git servers:

vibe-check --setup              # audit: see what needs fixing
vibe-check --fix                # root cause: fix Claude Code settings
vibe-check --install-hooks --global  # client-side: block commits
vibe-check --install-hooks --server ~/    # server-side: block pushes

For AI Agents

If you are an AI agent, start with llms.txt for a structured guide to installing, configuring, and running vibe-check. It covers the recommended workflow, JSON output schema, decision logic, and all flags in a dense, AI-actionable format.

Machine-Readable Output (--json)

When --json is passed, vibe-check outputs a structured JSON object instead of human-readable text. This is designed for AI agent consumption and CI pipelines:

vibe-check . --json --quiet
{
  "status": "failed",
  "scanned": 43,
  "errors": 3,
  "warnings": 5,
  "findings": [
    {
      "rule": "target-blank-noopener",
      "severity": "error",
      "message": "Found 1 target=\"_blank\" link(s) without rel=\"noopener noreferrer\" (lines 18).",
      "line": 18,
      "file": "src/components/Hero.jsx"
    }
  ]
}
  • status: "ok", "warn" (warnings only), or "failed" (errors present)
  • findings: array of finding objects, each with rule, severity, message, optional line, file, and fixable
  • Exit code: 0 for ok/warn, 1 for failed

Git Hook: Blocking AI Co-Author Trailers

Start with vibe-check --setup , it audits your machine and tells you exactly which prevention layers are missing and how to install them.

Root cause fix: Run vibe-check --fix once. It sets attribution.commit and attribution.pr to "" in ~/.claude/settings.json, which tells Claude Code to never append Co-Authored-By trailers. This fixes the problem at the source.

The git hook below is the safety net, it blocks trailers that slip past the settings fix (e.g., from other AI tools or misconfigured machines).

The ai-co-author-trailers rule detects AI co-author trailers in past commits, but detection after the fact is not enough: GitHub caches contributors aggressively, making retroactive cleanup painful. The --install-hooks flag installs a git commit-msg hook that blocks commits before they happen:

# Per-repo (recommended)
vibe-check --install-hooks

# Or globally (all repos on the machine)
vibe-check --install-hooks --global

Once installed, any git commit with a Co-Authored-By: trailer referencing an AI tool (Claude, GPT, Gemini, Copilot, Codex) will be rejected. Emergency bypass: git commit --no-verify.

CI Integration

GitHub Actions

- name: Run vibe-check
  run: |
    pip install vibe-linter
    vibe-check . --prod

pre-commit

repos:
  - repo: https://github.com/Fayberr/vibe-check
    rev: main
    hooks:
      - id: vibe-check

Design

vibe-check is intentionally a single file with zero dependencies. This means:

  • Single pip install (or zero-dependency single file), no venv setup
  • Works on any machine with Python 3.9+
  • Runs in environments where package installs are blocked (CI, corporate)
  • Can be vendored directly into any project

The tool uses only Python's standard library: re, json, hashlib, argparse, pathlib, html.parser, subprocess.

False-Positive Suppression

Security checks are designed to minimize noise:

  • Comment lines are skipped (//, #, <!--)
  • Test/mock/fixture files are excluded
  • Environment variable references (process.env, os.environ) prevent secret-flagging
  • Placeholder values (changeme, your-api-key, TODO) are recognized
  • Per-project deduplication prevents repeat-warnings from multi-file frameworks

Configuration (.vibecheckrc)

Drop a .vibecheckrc (or .vibe-check.json) in your project root to override rule severities. Both a flat form and a nested rules form are accepted:

{
  "em-dashes": "off",
  "console-log": "warn"
}
{
  "rules": {
    "em-dashes": "off",
    "console-log": "warn"
  }
}

Each value is one of "error", "warn", or "off". Use the exact rule id from the What It Checks list above (e.g. em-dashes, not em-dash).

Caching

Findings are cached per file, keyed on the file's hash. An unchanged file has its findings replayed from cache instead of being re-read, so repeat scans are fast without changing the verdict: a cached run and a --no-cache run always report the same errors and warnings. Use --no-cache to force a full re-read.

The cache lives outside your project, at $XDG_CACHE_HOME/vibe-check/ (or ~/.cache/vibe-check/), so there is nothing to add to .gitignore. Override with VIBE_CHECK_CACHE_DIR.

The cache key includes a hash of vibe-check itself and of your resolved config, so upgrading the tool or editing .vibecheckrc invalidates every entry. New rules always fire on untouched code.

Upgrading from an older version: it wrote .vibe-check-cache.json into the project root and skipped unchanged files rather than replaying them, which meant a second scan of the same code reported fewer problems than the first. That file is now deleted automatically on the next scan.

Contributing

vibe-check is built for universality , every rule must make sense on any web project, not just one person's setup.

Before contributing a new check, verify:

  1. It catches a real, common AI-generated anti-pattern
  2. It has false-positive suppression (comment lines, test files, env var references)
  3. The error message is understandable to a stranger
  4. It works on the file types where the pattern commonly appears

Run the test suite:

python3 tests/test-rules.py
python3 tests/test-cache.py
python3 tests/test-stop-hook.py

FAQ

Q: Why not ESLint/Stylelint/some-other-linter? A: vibe-check catches patterns those tools don't , copywriting tropes, branding mistakes, security misconfigurations that span frameworks. It complements, not replaces, existing linters.

Q: What about false positives? A: Every check has suppression logic. If you hit a false positive, open an issue , we'll add a suppression pattern.

Q: Can I use this in my own projects? A: Yes. MIT licensed. Designed to be universal from day one.

Q: How is this different from other "vibe coding" critiques? A: This is an automated tool, not a blog post. It runs in CI, blocks deployments, and enforces rules mechanically , not by memory.

License

MIT , see LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vibe_linter-1.2.0.tar.gz (59.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vibe_linter-1.2.0-py3-none-any.whl (43.9 kB view details)

Uploaded Python 3

File details

Details for the file vibe_linter-1.2.0.tar.gz.

File metadata

  • Download URL: vibe_linter-1.2.0.tar.gz
  • Upload date:
  • Size: 59.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.11.2

File hashes

Hashes for vibe_linter-1.2.0.tar.gz
Algorithm Hash digest
SHA256 d45c1935060e23d9cf0225025820876ac62537972cc8ef4acd8a0250c57fbbbb
MD5 0ea3ead869ecd184fb69b18bfdfffef1
BLAKE2b-256 440071e65239ce43cb674cca14ca823acabde281cca285ba1bba5d2b0d624c83

See more details on using hashes here.

File details

Details for the file vibe_linter-1.2.0-py3-none-any.whl.

File metadata

  • Download URL: vibe_linter-1.2.0-py3-none-any.whl
  • Upload date:
  • Size: 43.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.11.2

File hashes

Hashes for vibe_linter-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5d5f259ce1183668741144587c830b6a3346d8f27eadc3b67bb1af43aaee0dcc
MD5 335899a10a0f08c0ad1c5882a4e98fa7
BLAKE2b-256 9d0839b797833b9e355752e55a70e3a45ee63b844cdc94d9a74939e0723f4455

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page