The ADA Context
The ADA Context
Every method in this book was learned building one real system, under a real deadline, for a real problem. The problem is document accessibility. The engineering only earned its keep by clearing a bar the problem set, so the problem comes first — before agents, before loops. Why is making a document accessible a hard, mission-driven problem, and why was it worth a professor's Spring Break to attack it?
The system is called DocAble, live in beta at scholaccess.com. It takes a PowerPoint deck, a Word document, a spreadsheet, or a PDF and remediates it toward the accessibility standards a university now has to meet. Why that is worth doing at all is the rest of the story.
A noble idea with a crushing implementation
The Americans with Disabilities Act starts from a simple promise: people with disabilities should have equal access to public life, able to work, travel, study, vote, and use services without barriers society could reasonably remove. Passed in 1990 and signed by George H. W. Bush, the ADA descends from a long American line — the Constitution, the Reconstruction Amendments, the Civil Rights Act of 1964, each one widening the circle of who counts as fully included. The wheelchair ramp and the elevator are its famous results, and they are welcome. They are not the part that generates a software problem.
The part that matters here is Title II, which covers state and local governments — including K–12 schools and public universities. Title II says a public entity must communicate with people who have disabilities as effectively as it communicates with everyone else. In 1990 that sentence was mostly about buildings and lectures and office hours. In 2026 it means something else, because a public university no longer communicates only in person. It communicates through websites, PDFs, slide decks, Word documents, spreadsheets, learning-management systems, videos, forms, exams, syllabi, and the thousand little files that pile up wherever people are allowed to upload things.
If those materials cannot be read by a screen reader, cannot be navigated by keyboard, lack captions, lack alternative text, or carry their meaning only through color or layout, then some students get a worse version of the university than others. That is not a hypothetical. It is a live legal hazard: accessibility lawsuits are filed every year by students who were not reasonably accommodated, and institutions have settled them for amounts ranging from the thousands into the millions.
The rule that changed the burden
Universities have been obligated to comply with Title II since 1990. For most of that time, they complied reactively. A student would hit an inaccessible document, request an accommodation, and the institution would scramble to respond. That process carries a morally awkward shape: the inaccessible artifact exists first, and the burden of discovering it and asking for a fix falls on the person who has already been excluded.
In 2024 the Department of Justice changed the shape. A final rule updated the Title II regulations for web content and mobile apps, and its premise was blunt. Public entities should not wait for people with disabilities to discover and report every barrier. The DOJ put it in the language of physical access: just as stairs can exclude a wheelchair user from a government building, inaccessible web content and documents can exclude people from government services. If a public entity provides a service through a website, an app, or the documents distributed through them, the accessibility of that content is part of the service. Just as Americans do not call ahead to check whether a building has a ramp, a student should not have to negotiate with a professor over whether the slides will be readable.
The rule set a technical standard — WCAG 2.1 Level AA — and, for large institutions, a deadline. Universities are not sitting on three PDFs and a cheerful little homepage. They are sitting on decades of accumulated digital sediment: course sites, admissions forms, scanned readings, lecture videos, and more. A deadline is a deadline, and this one landed on a mountain of files no one had ever been asked to climb.
What it costs to make one document accessible
Compliance is not free, and the cost is easiest to feel on a single deck. Open a PowerPoint slide deck — say, the "Syllabus Day" deck for a graduate course — and click the Accessibility tab in Microsoft PowerPoint. On a typical real deck it reports dozens of distinct problems: images missing alt text, slides missing titles, low-contrast text, tables without headers, a reading order the tool cannot verify. One real deck examined this way flagged 42 separate issues across its slides.
Addressing each issue takes a couple of minutes at best and, for a complex figure, much longer. Scale that to a course. A professor maintains on the order of ~100 assignable documents for the courses they teach — slide decks plus readings in Word and PDF. At a conservative 3 hours per document, remediating a course's materials by hand runs to roughly 300 hours — about 7.5 full work weeks. At a professor's salary that is over $20,000 for the materials of a single teaching load, and a research professor teaches more than one course. Multiply by the thousands of courses at one institution and the number stops being a budget line and starts being a reason the whole thing gets quietly deferred. This per-course estimate is the cost model the book returns to; other figures reconcile to it.
There are escape hatches, and each one closes on inspection:
- Pull the plug. A university could satisfy the letter of the rule by de-digitizing — removing the online materials so there is nothing inaccessible to fix. It would satisfy the letter and betray the spirit. Digital materials help everyone: captions serve the student in a noisy room and the student still learning English, not only the student who is deaf. No sane institution wants to become the one that took the slides away.
- Hire it out. External remediation vendors exist, and they quote on the order of $3 per page or slide — roughly $10,000 to $15,000 for one course's materials at the vendor's own rate. No vendor is staffed with people who can annotate graduate-level astrophysics or quantum mechanics, and no university is eager to pay that per course across every course it offers.
- Do it yourself. The professor has the specialized knowledge, and the professor is the one person whose time the institution values least for this task. At a research university, faculty are promoted on research; a large, uncompensated, recurring teaching-service chore is exactly the kind of work the incentive structure teaches them to avoid. The ongoing burden does not just fail to get done — it actively discourages updating course materials at all, freezing students into whatever version existed when the deadline hit.
Put these together and you have a genuine problem, not a manufactured one. A federal mandate with real consequences, a mountain of heterogeneous files, expertise that only the busiest people possess, and no affordable path from here to there.
Why a document is not just a file
Underneath the institutional bind sits a technical problem deeper than it looks, and it is why this became a software project worth building rather than a policy memo worth writing. A document is not merely a file. It is a visual and semantic artifact. It carries text, figures, tables, diagrams, reading order, hierarchy, emphasis, and all the small tricks by which humans convey meaning to other humans. To make it accessible, a machine has to recover enough of that meaning to present it through another channel — to a screen reader, to a keyboard, to a student who cannot see the figure the lecturer drew.
For years that was out of reach. Earlier language models could not take an arbitrary slide and make enough sense of it to be trusted. The turn came with frontier vision-language models. Feed one a rendered slide and it looks at the image and recovers useful semantic content — describes the figure, reads the equation, names what the slide is trying to say. That is one of the core technical problems of document accessibility, and it is now solvable well enough to build on.
Raw model capability is not a compliance strategy, though, and this is the seam the rest of the book lives in. You can paste a small deck into a chat model and get useful output. You cannot get a corrected file back, or a guarantee that the result satisfies WCAG, or any evidence that the meaning survived the trip. The model looks at a slide and understands something real. It understands nothing about university procurement, disability-resource workflows, faculty incentives, or the institutional alchemy that turns a federal mandate into a weekly email nobody reads. It is, as I like to put it, an infinite midwit: it knows everything and understands nothing. Turning that flash of capability into a system a university can trust — one that parses, repairs, validates, stamps its own work, and produces defensible evidence that it did the job — is not a model invocation. It is engineering. The kind of engineering this book is about.
That is the context. A real law, a real deadline, a real cost, and a real technical gap that had just barely become bridgeable. The next chapter tells what happened when one professor decided to bridge it — and how a one-week undergraduate project became a production system built almost entirely by machines.