agentreadme

Report · marked 26 Aug 2026

SeleniumHQ/selenium

Solid foundations, held back in a few specific places.

Java · 34,392 stars · 5,296 files · branch trunk

Fix these first

01
File sizes fit in context
A single file that fills the context window forces an agent to work from fragments, and it will confidently edit code it never saw. Splitting the worst offenders pays for itself immediately.
02
Instruction quality
Worth fixing: it never states a build, test, or run command; has no code blocks.
03
Repository weight
Large binaries and vendored trees slow every operation an agent performs. Git LFS or a separate assets repo keeps the working tree navigable.

The full marking

Every deduction below names the file or setting it came from.

Instructions 21/27 A-

Whether the repo tells an agent how to behave before it starts guessing.

Agent instruction file 12/12
AGENTS.md is present, which is the format the most tools read.
Also found: CLAUDE.md, Copilot instructions
Instruction quality 6/12
Real instructions, with gaps.
Worth fixing: it never states a build, test, or run command; has no code blocks.
5,364 characters, a workable length
uses headings, so an agent can skim it
README as an entry point 3/3
README has a clear getting-started section.
Setup 18/20 A

Whether an agent can install the project and get it running without a human.

Deterministic install 6/6
pnpm-lock.yaml pins the dependency tree.
Found pnpm-lock.yaml
Discoverable commands 6/6
Commands are declared where an agent will look for them.
scripts/ directory
Environment config 2/4
Env vars are mentioned in the README but there's no example file to copy.
Add a .env.example listing every variable with a safe placeholder value. It's the cheapest possible fix and it unblocks the whole first run.
Pinned runtime version 2/2
The language runtime version is pinned.
Found .nvmrc
Reproducible environment 2/2
.devcontainer/devcontainer.json gives a known-good environment.
Verification loop 19/22 A

Whether an agent can check its own work. This is the category that most decides whether agent output is trustworthy.

Tests exist 8/8
1362 test files against 3804 source files.
e.g. common/src/web/cn-test.html, dotnet/test/README.md, dotnet/test/remote/AssemblyTeardown.cs
Test command is discoverable 7/7
An agent can find and run `pytest`.
Continuous integration 4/4
35 GitHub Actions workflows define what "passing" means.
Lint and format rules 0/3
No linter or formatter config. Style is tribal knowledge, so agent output will drift from yours.
A formatter config is the cheapest way to stop reviewing whitespace in agent diffs. It moves style from opinion to a command.
Static type checking n/a
Not applicable — the Java compiler type checks every build.
Context economy 9/20 C

Whether the repo fits in a context window, or fights it.

No committed build output 6/6
No generated directories committed.
.gitignore hygiene 3/3
.gitignore covers 169 patterns.
File sizes fit in context 0/6
7 source files are over 100KB.
A single file that fills the context window forces an agent to work from fragments, and it will confidently edit code it never saw. Splitting the worst offenders pays for itself immediately.
cpp/iedriver/Generated/atoms.h — 931KB
third_party/cpp/civetweb/civetweb.c — 527KB
third_party/js/qunit/qunit.js — 268KB
Repository weight 0/5
About 2386MB checked out. Large enough that cloning and searching are both slow.
Large binaries and vendored trees slow every operation an agent performs. Git LFS or a separate assets repo keeps the working tree navigable.

Here is your AGENTS.md

Drafted from what is actually in this repository: the install command from your lockfile, the commands you already declare, your real directory layout. Anything marked TODO needs a person. Save it at the root as AGENTS.md.

AGENTS.md — drafted for SeleniumHQ/selenium
# AGENTS.md

A browser automation framework and ecosystem.

## Setup

```
pnpm install
```

## Commands

```
# TODO: nothing declares a build or test command, so an agent has to guess.
# This is the single most valuable section of this file. Fill it in.
```

## Layout

- `java/`        1502 source files
- `dotnet/`      698 source files
- `javascript/`  355 source files
- `rb/`          347 source files
- `py/`          285 source files
- `third_party/` 271 source files

## Conventions

- Tests live alongside the code they cover, following `common/src/web/cn-test.html`.
- CI defines what passing means. See `.github/workflows/bazel.yml`, and keep it green.
- TODO: add the two or three conventions a newcomer always gets wrong here.

## Gotchas

- `cpp/iedriver/Generated/atoms.h` is 931KB. It will not fit comfortably in context, so read it in parts.

---

Drafted by agentreadme.com from what is in this repository. Everything marked TODO
needs a human. Check it in as AGENTS.md at the root.

Open the raw markdown  or  curl -o AGENTS.md agentreadme.com/draft/SeleniumHQ/selenium.md

Show the mark

The badge re-checks daily, so it keeps up as the repository changes. Use mark again to force it now.

agent ready 78 out of 100

[![agent ready](https://agentreadme.com/badge/SeleniumHQ/selenium.svg)](https://agentreadme.com/SeleniumHQ/selenium)

Other Java repositories, marked

krahets/hello-algo 37 D iluwatar/java-design-patterns 59 B- Stirling-Tools/Stirling-PDF 71 B+ macrozheng/mall 29 F spring-projects/spring-boot 42 C doocs/advanced-java 54 C+

All Java repositories

Think this mark is wrong?

Every deduction above names the file it came from, so this can be settled by looking. If a check missed something, that is a rule worth fixing.

Open an issue, already filled in