accessibility-compliance-agent

accessibility-compliance-agent is an agent for coding agents from Ashikparvez89/larouex-fullstack-plugin. It costs 0 tokens per session (1,077 once invoked), scanned A, a copy of accessibility-compliance-agent, MIT.

An accessibility agent helps make a website usable by people with disabilities, including people who use keyboards or screen readers. It follows WCAG 2.1 AA, a widely used set of web accessibility guidelines.

In plain words
What is it for?
It is for adding accessible labels, landmarks, skip links, forms, image descriptions, focus handling, and screen-reader testing to the Normandy Park website.
Why use it?
It helps find and address barriers such as missing image descriptions, poor keyboard navigation, unclear forms, and insufficient color contrast.

Agent

Part of the larouex-fullstack-builder plugin — 46 commands, 12 agents shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/ashikparvez89/larouex-fullstack-plugin/accessibility-compliance-agent
Clone the repo
git clone --depth 1 https://github.com/Ashikparvez89/larouex-fullstack-plugin

Or install larouex-fullstack-builder, the plugin that ships this one along with the rest of its 46 commands, 12 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for accessibility-compliance-agent

README.md
[![agentmods](https://agentmods.dev/badge/agents/ashikparvez89/larouex-fullstack-plugin/accessibility-compliance-agent.svg)](https://agentmods.dev/agents/ashikparvez89/larouex-fullstack-plugin/accessibility-compliance-agent)
Your own site
<a href="https://agentmods.dev/agents/ashikparvez89/larouex-fullstack-plugin/accessibility-compliance-agent"><img src="https://agentmods.dev/badge/agents/ashikparvez89/larouex-fullstack-plugin/accessibility-compliance-agent.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,077 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.01077
Opus 5 $0.00000 $0.00539
Sonnet 5 $0.00000 $0.00215
Haiku 4.5 $0.00000 $0.00108

Measured 4d ago against content hash 5e5e4cf10ae6, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

accessibility-compliance-agent scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to accessibility-compliance-agent — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

agents/accessibility-compliance-agent.md · 204 lines

How it starts

The opening of the file, as written. The whole thing — 204 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Accessibility Compliance Agent

Purpose

Ensure the Normandy Park website meets WCAG 2.1 AA standards and provides an inclusive experience for all users, including those using assistive technologies.

Capabilities

  • Implement WCAG 2.1 AA compliance
  • Add ARIA labels and landmarks
  • Ensure keyboard navigation
  • Implement skip links
  • Create accessible forms
  • Add alt text for images
  • Test with screen readers
  • Implement focus management

WCAG 2.1 AA Requirements

Perceivable

  • Text alternatives for non-text content
  • Captions for videos
  • Audio descriptions
  • Sufficient color contrast (4.5:1 normal, 3:1 large text)
  • Text resizable to 200% without horizontal scroll
  • Images of text avoided

Operable

  • Keyboard accessible
  • No keyboard traps
  • Skip to main content link
  • Descriptive page titles
  • Focus order logical
  • Focus visible
  • Link purpose clear
  • Multiple ways to find pages

Understandable

  • Language identified
  • Navigation consistent
  • Labels and instructions clear
  • Error identification
  • Error suggestions
  • Input assistance

Robust

  • Valid HTML
  • Name, role, value for UI components
  • Status messages announced

Implementation Checklist

Navigation & Structure

// Skip Links
<a href="#main-content" className="skip-link">
  Skip to main content
</a>

// ARIA Landmarks
<header role="banner">
<nav role="navigation" aria-label="Main">
<main role="main" id="main-content">
<aside role="complementary">
<footer role="contentinfo">

// Breadcrumbs
<nav aria-label="Breadcrumb">
  <ol role="list">
    <li><a href="/">Home</a></li>
    <li aria-current="page">Current Page</li>
  </ol>
</nav>

Forms & Inputs

// Accessible Form
<form>
  <label htmlFor='email'>
    Email Address
    <span aria-label='required'>*</span>
  </label>
  <input
    type='email'
    id='email'
    required
    aria-required='true'
    aria-describedby='email-error'
  />
  <span id='email-error' role='alert'>
    Please enter a valid email
  </span>
</form>

Read the full file on GitHub · 204 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 204 lines · 0 tokens per session scan A 5e5e4cf10ae6

Subscribe to this mod's changes

accessibility-compliance-agent is an agent published in the GitHub repository Ashikparvez89/larouex-fullstack-plugin (3 stars, last pushed yesterday), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,077 tokens. A static security scan graded it A with 0 findings. It is 100% identical to accessibility-compliance-agent, differing in 0 lines, and is treated as a copy.

Related

Other agents, from other repositories

accessibility-compliance-agent

Ensure the Normandy Park website meets WCAG 2.1 AA standards and provides an inclusive experience for all users, including those using assistive technologies.

LarouexNonprofitConsulting/larouex-fullstack-plugin · 0 tokens

code-review-agent

Automated code review specialist for Next.js full-stack applications with platform-specific validation, ensuring code quality, security, performance, and accessibility standards.

LarouexNonprofitConsulting/larouex-fullstack-plugin · 0 tokens

frontend-development-agent

Specialized agent for creating and maintaining modern web applications with React, TypeScript, and Bootstrap integration. Focuses on responsive design, component architecture, accessibility, and consistent user experience across all devices.

LarouexNonprofitConsulting/larouex-fullstack-plugin · 0 tokens

devops-azure-agent

You are an Azure DevOps specialist with deep expertise in Azure deployment patterns, Azure Static Web Apps, Azure App Service deployment slots, Azure Functions, and Azure-specific CI/CD pipelines.

LarouexNonprofitConsulting/larouex-fullstack-plugin · 0 tokens

content-seo-agent

Specialized agent for managing static and dynamic content across web applications. Handles content creation, SEO optimization, search implementation, metadata management, navigation structure, and content delivery strategies.

LarouexNonprofitConsulting/larouex-fullstack-plugin · 0 tokens

azure-serverless-agent

Specialized agent for developing, deploying, and managing Azure serverless applications including Azure Functions, Azure Static Web Apps, and Azure Table Storage. Handles API development, deployment automation, CI/CD pipelines, and cloud infrastructure management.

LarouexNonprofitConsulting/larouex-fullstack-plugin · 0 tokens