What problem does it solve? Setting up a custom Oxlint plugin with opinionated anti-slop rules requires copying plugin source, resolving compatible dependency versions, merging lint configuration, and wiring ignore patterns correctly. This Skill automates that entire installation and migration workflow while preserving existing repository configuration and unrelated work. ## Core Features & Use Cases - Bundled Plugin Installation: Copies the anti-slop Oxlint plugin (15 lint rules) into the target repository via an install script that refuses to overwrite existing files without explicit review. - Configuration Merging: Registers the plugin in oxlint.config.ts, .oxlintrc.json, or Vite+ configs, merging ignore patterns for agent tooling directories and enabling all anti-slop rules at error severity. - Dependency Resolution: Queries npm for current compatible versions of oxlint and @oxlint/plugins and installs them with the repository's own package manager. - Use Case: A team wants to enforce rules against chained type assertions, unsafe dictionary types, module mocking, and unknown parameters across their TypeScript monorepo. Run this Skill to install the plugin, configure Oxlint, and verify with the repository's lint and typecheck commands. ## Quick Start Install the anti-slop Oxlint plugin into this repository and configure it with the existing lint setup.