npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

eslint-plugin-agentlint

v0.1.2

Published

ESLint plugin that makes your UI accessible to AI agents

Readme

eslint-plugin-agentlint

Static AST checker for AI agent accessibility rules on JSX and HTML elements.

Why?

AI agents (browser automation, LLM-driven tools, RPA bots) interact with your UI through the DOM — not through pixels. When your components lack stable selectors, use hover-only interactions, or communicate state only through CSS classes, agents fail silently.

eslint-plugin-agentlint catches these patterns at build time, the same way eslint-plugin-jsx-a11y catches human accessibility issues.

The same principles that make UIs work for screen readers make them work for AI agents. If you already care about a11y, you're halfway there.

Installation

First, install ESLint:

npm install --save-dev eslint

Then install eslint-plugin-agentlint:

npm install --save-dev eslint-plugin-agentlint

Note: This plugin requires ESLint 9+ and supports flat config (eslint.config.js) only.

Usage

Flat Config (eslint.config.js)

Use the recommended shareable config:

import agentlint from "eslint-plugin-agentlint";

export default [
  agentlint.configs.recommended,
  // ... your other config
];

Or the strict config (all rules set to error):

import agentlint from "eslint-plugin-agentlint";

export default [
  agentlint.configs.strict,
];

Manual Configuration

To configure rules individually:

import agentlint from "eslint-plugin-agentlint";

export default [
  {
    plugins: { agent: agentlint },
    languageOptions: {
      parserOptions: {
        ecmaFeatures: { jsx: true },
      },
    },
    rules: {
      "agent/require-stable-selector": "warn",
      "agent/no-hover-only-action": "warn",
      "agent/no-css-only-state": "warn",
      "agent/require-semantic-interactive": "error",
      "agent/no-dynamic-position-instability": "warn",
      "agent/require-action-context": "warn",
      "agent/require-modal-dismiss": "warn",
    },
  },
];

Supported Rules

| Rule | Description | Recommended | Strict | Fixable | |------|-------------|:-----------:|:------:|:-------:| | require-stable-selector | Interactive elements must have a stable selector (data-testid, data-agent-id, or id) | warn | error | wrench | | no-hover-only-action | Actions must not be gated behind hover-only interactions | warn | error | wrench | | no-css-only-state | Component state must be exposed via attributes, not just CSS classes | warn | error | wrench | | require-semantic-interactive | Interactive elements must use semantic HTML, not <div onClick> | error | error | wrench | | no-dynamic-position-instability | Conditionally rendered interactive elements need stable identifiers | warn | error | wrench | | require-action-context | Forms must have accessible names so agents can distinguish them | warn | error | wrench | | require-modal-dismiss | Modals must have aria-modal so agents know how to dismiss them | warn | error | wrench |

Rule Options

require-stable-selector

Accepts additional attribute names to treat as stable selectors:

"agent/require-stable-selector": ["warn", {
  additionalAttributes: ["data-cy", "data-qa"]
}]

Configs

| Config | Description | |--------|-------------| | recommended | All rules enabled at their default severity (mostly warn) | | strict | All rules set to error |

Philosophy

  1. Agent accessibility ~ Human accessibility. If screen readers can use it, agents probably can too. This plugin extends that principle.
  2. Build-time, not runtime. Catch issues before they ship, in the workflow you already have.
  3. Fix, don't just complain. Every rule provides an auto-fix. Fixes are conservative — only applied when intent is unambiguous.
  4. Explain the why. Error messages tell you why agents care, not just what's wrong.

Complementary Tools

This plugin works alongside, not instead of:

Contributing

Contributions welcome! See CONTRIBUTING.md for guidelines.

License

eslint-plugin-agentlint is licensed under the MIT License.