# Kendo Angular Accessibility

> Retrieves accessibility guidance for Kendo UI for Angular components including WCAG 2.2 Level AA guidelines and component-specific ARIA, keyboard navigation, and focus management information. Use when implementing accessible Kendo UI for Angular components, auditing for accessibility compliance, or needing WCAG guidance.

- Skill: `telerik/kendo-angular-accessibility` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add telerik/kendo-angular-accessibility`
- Raw SKILL.md: https://api.skillmd.com/api/skills/telerik/kendo-angular-accessibility/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Web & Frontend
- Author: telerik (https://skillmd.com/u/telerik)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/telerik/kendo-angular-accessibility

---


## Kendo UI for Angular — Accessibility Assistant

### WCAG 2.2 Level AA Guidelines

For foundational WCAG 2.2 Level AA guidelines, read [wcag-guidelines.md](wcag-guidelines.md). These apply to all components throughout implementation.

### Calling the Accessibility Assistant

Use the `kendo_accessibility_assistant` MCP tool to retrieve component-specific accessibility guidance. Always pass `includeGeneralGuidelines=false` — the WCAG guidelines are already loaded from the file above and are never returned by the tool in this configuration.

**Tool call:**
```
kendo_accessibility_assistant({
    query="<Specific accessibility question about the component>",
    component="<ComponentName>",
    includeGeneralGuidelines=false
})
```

**Examples:**
```
kendo_accessibility_assistant({
    query="What ARIA attributes, keyboard navigation, and screen reader support does the Grid provide?",
    component="Grid",
    includeGeneralGuidelines=false
})
```

```
kendo_accessibility_assistant({
    query="How to ensure the DatePicker is accessible with keyboard navigation and proper labels?",
    component="DatePicker",
    includeGeneralGuidelines=false
})
```

```
kendo_accessibility_assistant({
    query="How to add accessible labels to individual form inputs?",
    component="Forms",
    includeGeneralGuidelines=false
})
```

### Query Guidelines

- One component per call
- Focus on specific aspects: ARIA attributes, keyboard navigation, focus management, screen reader behavior
- Apply findings alongside the foundational rules in [wcag-guidelines.md](wcag-guidelines.md)

