What problem does it solve? Setting up a custom Oxlint plugin by hand involves copying rule source files, pinning compatible dependency versions, and wiring plugin registration into lint configuration. This Skill automates that entire setup so the anti-slop rule set is installed consistently without overwriting existing project configuration. ## Core Features & Use Cases - Bundled Plugin Installation: Copies the anti-slop Oxlint plugin (15 lint rules) into the target repository via a deterministic install script that refuses to overwrite existing files unless forced. - Configuration Integration: Registers the plugin in oxlint.config.ts, .oxlintrc.json, or Vite+ lint configuration and enables all anti-slop rules at error severity, merging with existing entries. - Dependency Management: 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 opinionated TypeScript rules banning chained type assertions, module mocking, and unsafe dictionary types. Run this Skill to copy the plugin, register it, and verify the lint setup in one pass. ## Quick Start Ask the agent to install and configure the anti-slop Oxlint plugin in the current repository and enable all of its lint rules.