What problem does it solve? Setting up a custom Oxlint plugin by hand involves 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 opinionated TypeScript lint rules) into the target repository via a guarded install script that refuses to overwrite existing files without --force. - Configuration Merging: Registers the plugin in oxlint.config.*, .oxlintrc*, or Vite+ configs, merges ignore patterns for agent tooling directories, and enables 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 banning chained type assertions, unknown parameters, module mocking, and unsafe dictionary types across their TypeScript codebase. Run this Skill to vendor the plugin, wire it into Oxlint, and verify with the repository's lint and typecheck commands. ## Quick Start Ask the agent to install the anti-slop Oxlint plugin into this repository and enable all of its lint rules.