What problem does it solve? Setting up a custom Oxlint plugin requires copying rule source files, installing matching dependency versions, and merging plugin registration, ignore patterns, and rule severity into an existing lint configuration without breaking unrelated setup. This Skill automates that installation and migration workflow while preserving existing configuration and uncommitted work. ## Core Features & Use Cases - Bundled Plugin Installation: Copies a vendored anti-slop Oxlint plugin with 15 lint rules into the target repository, refusing to overwrite existing files unless forced. - Configuration Merging: Registers the plugin in oxlint.config.ts, .oxlintrc.json, or Vite+ lint config, merging ignore patterns for agent tooling directories and enabling all anti-slop rules at error severity. - Dependency Alignment: 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, unknown parameters, module mocking, and unsafe dictionary types across their TypeScript codebase; this Skill installs the plugin, wires up the config, and runs lint and typecheck to verify. ## Quick Start Install the anti-slop Oxlint plugin into this repository and enable all of its lint rules in my existing Oxlint configuration.