install-anti-slop

install-anti-slop is a skill for Claude Code, Codex from dmmulroy/anti-slop. It costs 48 tokens per session (1,863 once invoked), scanned A, original, MIT.

A setup guide and bundled Oxlint plugin for adding anti-slop rules to a local JavaScript or TypeScript repository. Oxlint is a tool that checks source code for problems and unwanted patterns.

In plain words
What is it for?
Use it to install the plugin, connect it to Oxlint, and adapt the configuration to the project’s package manager and tooling layout.
Why use it?
It helps add consistent code-quality rules without overwriting the repository’s existing lint setup.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Codex; mentions OpenCode.

Good fit Use it to install the plugin, connect it to Oxlint, and adapt the configuration to the project’s package manager and tooling layout.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dmmulroy/anti-slop/install-anti-slop
About the project

dmmulroy/anti-slop is an Oxlint ruleset for rejecting low-evidence and low-signal TypeScript and JavaScript patterns. Teams copy it into their repositories and adapt the rules to their own standards, while its catalogue skill helps install and configure the vendored files.

dmmulroy/anti-slop · 4,362 stars · on GitHub

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add dmmulroy/anti-slop --skill install-anti-slop
Clone the repo
git clone --depth 1 https://github.com/dmmulroy/anti-slop

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for install-anti-slop

README.md
[![agentmods](https://agentmods.dev/badge/skills/dmmulroy/anti-slop/install-anti-slop/github.svg)](https://agentmods.dev/skills/dmmulroy/anti-slop/install-anti-slop)
Your own site
<a href="https://agentmods.dev/skills/dmmulroy/anti-slop/install-anti-slop"><img src="https://agentmods.dev/badge/skills/dmmulroy/anti-slop/install-anti-slop/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for install-anti-slop

Your own site · 80×15
<a href="https://agentmods.dev/skills/dmmulroy/anti-slop/install-anti-slop"><img src="https://agentmods.dev/badge/skills/dmmulroy/anti-slop/install-anti-slop.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,863 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 8 Sept 2026
  • Snyk pass 8 Sept 2026
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00048 $0.01863
Opus 5 $0.00024 $0.00932
Sonnet 5 $0.00010 $0.00373
Haiku 4.5 $0.00005 $0.00186

Measured yesterday against content hash 2cb88a6ec0c5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

install-anti-slop scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

The scan reads SKILL.md. This mod also ships 37 executable files (assets/anti-slop/effect/index.ts, assets/anti-slop/effect/rules/no-manual-effect-error-tag.ts, assets/anti-slop/effect/rules/no-manual-tag-comparison.ts, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

skills/install-anti-slop/SKILL.md · 128 lines

How it starts

The opening of the file, as written. The whole thing — 128 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Install or update anti-slop

Anti-slop is vendored code: the target repository owns its rules, diagnostics, tests, and configuration. Preserve those choices when bringing in upstream changes.

Choose the path

Read the repository's agent instructions and git status. Identify its package manager, Oxlint/Vite+ configuration, and any existing anti-slop entry points, including renamed or relocated copies referenced by jsPlugins.

  • Existing installation — update, upgrade, migrate, or reconfigure: read Update a vendored installation and follow that procedure instead of the fresh-install steps below.
  • No installation — fresh install: follow the procedure below. If the user requested an update but no installation can be found, confirm the target before installing.

Complete when the operation and target path are established and pre-existing work is identified.

Fresh install

  1. Copy the bundled plugin from this skill. Run from the target repository:

    node <skill-directory>/scripts/install.mjs
    

    This creates tools/oxlint/anti-slop/. Pass another relative destination as the first argument when the repository has an established tooling layout. The script refuses to replace an existing destination; route existing copies through the update procedure rather than --force.

    Preserve the nested vendor/eslint-stylistic/LICENSE and UPSTREAM.md; they travel with the copied rule. Readability enforcement is self-contained and requires no Stylistic plugin dependency.

    Complete when the files, including vendored license and provenance, exist at the agreed destination without replacing an existing copy.

  2. Install current compatible dependencies rather than trusting versions remembered by the agent:

    • If the repository already depends on oxlint, read its installed version from the package manager or lockfile and install @oxlint/plugins at exactly that version. Pin it exactly rather than by range so future upgrades move both packages together.
    • Only when the repository has no oxlint dependency, query npm view oxlint version and npm view @oxlint/plugins version, then install the same current version of both packages.
    • oxlint is a development dependency. The copied source imports @oxlint/plugins, so install it as a development dependency for a local-only plugin.
    • Do not replace the package manager or rewrite unrelated dependency ranges.

Read the full file on GitHub · 128 lines

Files

What ships with it

40 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday Changed · +9 lines 2cb88a6ec0c5
  2. 2d ago Changed · +11 lines · -19 tokens per session 3ce06f04ca55
  3. 9d ago Changed c4f283bae76c
  4. 12d ago First seen · 108 lines · 67 tokens per session scan A 4d769c56bcaa

Subscribe to this mod's changes

install-anti-slop is a skill published in the GitHub repository dmmulroy/anti-slop (4,362 stars, last pushed yesterday), licensed MIT. It adds 48 tokens to every session and 1,863 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

biome-anti-slop

Install and configure vendored Biome anti-slop GritQL rules in a local TypeScript or JavaScript repository. Use when a user asks to add, configure, update, or migrate Biome anti-slop lint rules.

NorbertBodziony/biome-anti-slop · 53 tokens

biome

Biome - Fast all-in-one toolchain for web projects (linter + formatter in Rust, 100x faster than ESLint).

bobmatnyc/claude-mpm-skills · 30 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens

create-pr

Creates a GitHub PR with a Linear-ticket-prefixed title and a decision-led, narrative description for Prisma 8. Use when the user wants to create a pull request, open a PR, or submit changes for review.

prisma/orm · 48 tokens

no-bare-casts

Writing as in TypeScript or TSX production code, modifying a file that contains a bare as cast, silencing a type error with a cast, encountering as unknown as, or reviewing a cast site.

prisma/orm · 52 tokens

schema-exploration

Lists tables, describes columns and data types, identifies foreign key relationships, and maps entity relationships in a database. Use when the user asks about database schema, table structure, column types, what tables exist, ERD, foreign keys, or how entities relate.

langchain-ai/deepagents · 57 tokens