Accessibility conferences prep for 2027, Safari closes UX gaps, and federated AI agents prove they can scale in production healthcare environments. Today's posts show infrastructure decisions paying off in the real world.
Axe-con 2027 registration is now open!
Deque's February 2027 conference lineup pairs Chris Coyier on AI testing with Jennison Asuncion on engineering collaboration, signaling where accessibility conversations are headed next year. The call for presenters stays open until October 30, which means if your team has production case studies around automated testing or design system patterns, you have six weeks to pitch. Four tracks (Development, Design, Organizational Success, Wildcard) mean the conference is treating accessibility as a cross-functional problem, not just a compliance checkbox.
How Included Health Built Federated Agents for Healthcare Navigation with Deep Agents and LangGraph
Included Health's Dot assistant uses a supergraph where different product teams own domain-specific workflows (scheduling, urgent care, specialists) while Deep Agents maintain consistent voice and context across handoffs. This architecture choice solved the classic multi-agent problem: who owns the conversation state when a member's question spans domains? Since August, they've logged 75% higher chat engagement, 95%+ clinical routing accuracy, and 99% detection of high-risk situations, all validated by human clinicians.
// Conceptual LangGraph federated routing
const supergraph = new StateGraph({
routing: async (state) => {
if (state.intent === 'schedule') return 'schedulingAgent';
if (state.intent === 'urgent_care') return 'urgentCareAgent';
return 'fallbackAgent';
},
deepAgents: {
voiceConsistency: true,
contextPersistence: 'cross-domain'
}
});Intelligent automation and the new era of guided testing
Deque's Automated Intelligent Guided Tests (IGTs) use AI to evaluate keyboard navigation, focus management, and alt text quality in seconds, work that previously required human specialists and manual testing time. The tests run directly in code editors via the Axe MCP Server, shifting accessibility checks left to where developers write code instead of waiting for QA cycles. The reasoning output is reviewable, which matters when you need to understand why a test flagged a specific focus trap or alt text pattern.
// Axe MCP Server integration example
import { axeMCPServer } from '@axe-core/mcp-server';
const results = await axeMCPServer.runIGT({
tests: ['keyboard-navigation', 'focus-management', 'alt-text-quality'],
reasoning: true
});Web-Perf Wednesday 010: Safari Keeps Scrolled Content in Place
Safari 27 adds scroll anchoring so content stays put when elements load above the viewport, matching Chrome and Firefox behavior from years ago. The release also tightens HTTP cache directive handling (max-age, no-store) and supports Service Worker static routing API to skip worker startup for predetermined routes. Chrome DevTools now offers reproducible CPU throttling tiers and complete soft-navigation analysis in Performance Insights, making cross-machine performance comparisons actually reliable.
Accessibility tooling is automating specialist work, federated agent architectures are shipping with measurable outcomes, and browser vendors are closing long-standing UX and performance gaps. The common thread: infrastructure that scales human judgment instead of replacing it.