WCAGent: Open-Source AI Agent for Automated Accessibility QA
An autonomous AI accessibility QA agent called WCAGent has been open-sourced. It uses LLMs and MCPs (Model Context Protocols) to observe, reason, and act on accessibility violations via a CLI interface.
Key Features
- Detects WCAG violations — scans web pages for accessibility issues per WCAG standards
- Assigns severity levels — classifies each violation (critical, serious, moderate, minor)
- Generates detailed reports — outputs structured reports with violation details and remediation suggestions
- Automatically raises GitHub issues — creates actionable GitHub issues for each violation, so devs can track fixes directly in their workflow
- Works like an actual QA engineer — instead of just dumping raw scan results, WCAGent reasons about the context and provides human-readable feedback
How It Works
WCAGent runs as a CLI tool. It leverages LLMs to interpret accessibility rules and MCPs to interact with external systems (like GitHub). The agent can be invoked with a URL to audit, and it returns a report with severity tags and auto-generated GitHub issues.
Get Started
Clone the repo and run:
git clone https://github.com/AbhishekX-dev/WCAGent-ai-agent.git
cd WCAGent-ai-agent
pip install -r requirements.txt
python wcagent.py --url https://example.comFull documentation and setup instructions are on the GitHub page.
Who It's For
This tool is aimed at developers and QA engineers who need to integrate accessibility checks into CI/CD pipelines without manual intervention.
📖 Read the full source: r/ClaudeAI
👀 See Also

SmallClaw V1.0.3 Adds Webhooks, n8n Automation, and MCP Server Support
SmallClaw V1.0.3 introduces webhook endpoints for external service triggers, local automation workflows with n8n, and MCP server connections for tool integration. The update maintains the tool's focus on running with small local LLMs.

Visual Studio 2022 Extension Adds Native Ollama Integration for Local LLMs
A free extension for Visual Studio 2022 connects directly to local Ollama endpoints, enabling private AI coding assistance without switching between tools. It supports models like DeepSeek and Llama 3 with cloud fallback options.

7-Agent System in Claude Code Replaces Sprint Ceremonies for Solo Devs
A PM-turned-solo-dev built a 7-agent team inside Claude Code that handles QA, PR review, security, architecture, and backlog grooming — all triggered by a single /review command.

Claude AI Session Compaction Issues and Workarounds
Default compaction in Claude AI sessions can degrade retrieval accuracy from ~9.75/10 to ~5/10, causing hallucinations. The user tested with 418K tokens and found manual compaction using Opus maintains accuracy while default compaction fails.