What problem does it solve? Setting up a custom Oxlint plugin with opinionated TypeScript lint rules requires copying plugin source, installing matching dependency versions, and carefully merging configuration without breaking existing lint setups. This Skill automates that entire installation and migration process while preserving unrelated work in the repository. ## Core Features & Use Cases - Bundled Plugin Installation: Copies the anti-slop Oxlint plugin (15 rules rejecting low-evidence TypeScript patterns like chained assertions, unknown parameters, and unsafe dictionary types) into the target repository via a deterministic script. - Configuration Merging: Registers the plugin in oxlint.config.*, .oxlintrc*, or Vite+ configs, merging ignore patterns and enabling all rules at error severity without overwriting existing settings. - 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 stricter TypeScript hygiene across their monorepo. Run this Skill to vendor the anti-slop plugin, wire it into the existing Oxlint setup, and verify with the project's lint and typecheck commands. ## Quick Start Install the anti-slop Oxlint plugin into this repository and configure it with our existing lint setup.